This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

NOAREG & AREG,

Hello,
I'm having trouble understanding the NOAREG, AREG & USING options. I'm also confused with R0-R7 & AR0-AR7.
I've read the support files and manual but i'm still confused.
May I know
a) How is it that using NOAREGs will allow me to disregard register bank currently used when writing function? ( will the registers be automatically saved to stack? )
b) What is the difference with R0 and AR0? How does the USING option affect R0 & AR0? (for example if i put the option "USING 2", have then use R4, does this mean that it is the actually R20 ie in bank 2, whiel AR4 is not affected by the using function)
c) How does USING help me to save stack space?
Best Regards,
AL

Parents
  • Do you mean that push AR7 is not reliable because the AR7 isn't reliably computed at compile time?

    AR7 is the absolute address of register R7 in one particular register bank - could be one of four possibilities depending on of x in the preceeding "USING x". Each possible direct address for R7 is unique.

    When a function is called, any of the four possible register banks could be selected at that instant and the compiler cannot predict which it will be.

Reply
  • Do you mean that push AR7 is not reliable because the AR7 isn't reliably computed at compile time?

    AR7 is the absolute address of register R7 in one particular register bank - could be one of four possibilities depending on of x in the preceeding "USING x". Each possible direct address for R7 is unique.

    When a function is called, any of the four possible register banks could be selected at that instant and the compiler cannot predict which it will be.

Children