用脚后跟都能想到, 目前的技术不会有automation. keol 的一些答案, 仔细的看看 keil 的网站,答案都有:
QUESTION
How can I determine the maximum stack size of my program?
ANSWER
There is no automatic way the tools can tell you the maximum stack depth or stack utilization. Because of asynchronous events and interrupts, the automation is too difficult.
However, you can use the µVision Simulator which provides the sp_max value in the register window. When you execute all features of your application, this gives you the maximum sp value that has been reached by your application. Make sure that your assumptions about the available stack are correct. Some 8051 variants have just 128 bytes on-chip RAM and therefore the stack space ends at 0x7F.
You should have more bytes available for executed interrupts. As a guideline, there should be enough space to execute the most complex interrupt of your application.
If you cannot use the µVision Simulator, use the following method, which works in any debugging tool. You may use the Monitor, the ISD51 In-system debugger, or any in-circuit emulator. The results should be similar.
Locate the beginning of the stack. If you use the C51 compiler, look for the ?STACK symbol. that is listed in the linker map file (*.M51 or *.MAP)
Fill the stack area with a known value or string. Something like "STACK---", since it's 8 characters long, displays nicely in a memory dump.
Run your program and make sure you execute every line of code (or as much as makes sense). Make sure you generate interrupts so that they are included in the profile. If your emulator has a code coverage feature, use it to make sure that every path is taken. You can do this with dScope's code coverage feature.
After your program runs a while, stop it and look at the stack area. You should see garbage for the part of the stack that has been used and the "STACK---" strings in the remainder of the stack. Count the number of complete strings, multiply by 8 (since "STACK---" is 8 bytes long), and you have the number of bytes of remaining stack space.
http://www.keil.com/support/docs/192.htm |