Skip to content

rts: Define ticky macro stubs

Matthew Pickering requested to merge wip/fix-ticky into master

These macros have long been undefined which has meant we were missing reporting these allocations in ticky profiles.

The most critical missing definition was TICK_ALLOC_HEAP_NOCTR which was missing all the RTS calls to allocate, this leads to a the overall ALLOC_RTS_tot number to be severaly underreported.

Of particular interest though is the ALLOC_STACK_ctr and ALLOC_STACK_tot counters which are useful to tracking stack allocations.

Fixes #23421 (closed)

cc @AndreasK

Merge request reports