When we have out-going arguments passing through stack and we do not
reserve the stack space in the prologue. Use BP to access stack objects
after adjusting the stack pointer before function calls.
callseq_start -> sp = sp - reserved_space
Use FP to access fixed stack objects.
Use BP to access non-fixed stack objects.
call @foo
callseq_end -> sp = sp + reserved_space
nit: can not use
nit: our other comments in this file don't use dollars when referencing SP/BP.