Skip to content

Commit

Permalink
Scalar register cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sauraen committed Dec 30, 2024
1 parent 13cd4cc commit db28ec8
Show file tree
Hide file tree
Showing 3 changed files with 426 additions and 281 deletions.
3 changes: 3 additions & 0 deletions docs/Code/Counters.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ In the true codepath of Sched_TaskComplete:
OS_YIELD_DATA_SIZE - sizeof(F3DEX3YieldDataFooter));
osInvalDCache(footer, sizeof(F3DEX3YieldDataFooter));
bcopy(footer, &gRSPProfilingResults, sizeof(F3DEX3YieldDataFooter));
/* The second invalidate is to get the footer out of the CPU cache,
because it could get written back and overwrite newer data in RAM */
osInvalDCache(footer, sizeof(F3DEX3YieldDataFooter));
}
#endif
```
Expand Down
Loading

0 comments on commit db28ec8

Please sign in to comment.