Keil™, An ARM® Company

Technical Support

C51: STACK AND REENTRANT STACK SYMBOLIC NAMES


Information in this article applies to:

  • C51 Version 5.50

QUESTION

I wish to perform some debugging on my project and in order to set watchpoints I need to know the symbolic names given to the system stack and reentrant stack pointers. What are they?

ANSWER

The system stack is actually an SFR with the name SP.

The symbolic name of the reentrant stack depends on which memory model you are using:

  • Small: ?C_IBP
  • Compact: ?C_PBP
  • Large: ?C_XBP

You will be able to set watchpoints on these symbols to watch the system stack and reentrant stack pointers. If your debugging software allows it you may be able to do such things as stop execution when the stack pointer reaches the top of IDATA or the system and reentrant stack pointers point to the same location, thus detecting stack overflows.

MORE INFORMATION

SEE ALSO

Last Reviewed: Tuesday, October 24, 2006


Did this article provide the answer you needed?
 
Yes
No
Not Sure