Email or username:

Password:

Forgot your password?
6 comments
Leonard Ritter

@morten_skaaning right - and globals can be stacks that move in parallel to the callstack.

Beatrix

@lritter @morten_skaaning i wonder how that performs compared to the dedicated native stack ๐Ÿค”

Leonard Ritter

@beatrix @morten_skaaning you're not passing through register values, it's all load store and heap allocations so - worse.

Beatrix

@lritter @morten_skaaning yeahโ€ฆ Iโ€™m mainly curious how array[sp++] compares to a push instructionโ€ฆ And how big part that is of the whole programโ€™s runtime โ€ฆ guess one could try to benchmark it ๐Ÿ˜…

Go Up