Sonsivri
 
*
Welcome, Guest. Please login or register.
Did you miss your activation email?
April 20, 2024, 12:02:17 00:02


Login with username, password and session length


Pages: [1]
Print
Author Topic: What is rerurn stack size in ICCAVR  (Read 4831 times)
0 Members and 1 Guest are viewing this topic.
30f4011
Active Member
***
Offline Offline

Posts: 131

Thank You
-Given: 753
-Receive: 96



« on: September 21, 2008, 07:42:30 07:42 »

Hi all,

I want to know that ,what the "Return stack size" is?
How it works?
What happen if its value changed?


thnk in advance Smiley
Logged
sam_des
Senior Member
****
Offline Offline

Posts: 253

Thank You
-Given: 124
-Receive: 146


« Reply #1 on: September 21, 2008, 06:30:39 18:30 »

Hi,

Most AVR compilers divide RAM stack into 2 sections - 1) Data Stack 2) Return Stack
Data stack stores the the local(auto for c) variables within a function/block. These are accessed by y-register.
On the other hand Return stack saves the return address when a function call/interrupt is executed. This is accessed internall by CPU using SPH/L registers & requires 2/3 byes depending on the AVR in use. 'Return Stack Size' specfies no. of byes/words set aside by compiler for calls/interrupt nesting etc.
e.g. If you specify return stack size=30 bytes for m8, then you can nest upto 15 function calls/interrupts.

If you want to know what actually this does - During startup compiler's init routine,
       1) SPH:L = Last address of RAM
       2) Y  =  (Last address of RAM) - Return Stack Size

Now when you call a function or interrupt occurres, SPH:L decreamented by 2/3 bytes automatically by CPU & increamented on return from function/interrupt.

When you declare a local variable, Y is decreamented by sizeof(var) by compiler inserted code & can be accessed by y-specific addressing modes. Just before returning from the function, compiler again inserts the code to re-increament the Y.

As in any stack, it must be balanced at entry/exit, complier takes care of that. Another major concern is stack overflow/underflow, that means,
   1) you nest more calls than your specified return stack size or
   2) you tried to return when there is nothing on return stack or
   3) you declare more local data than your data stack or
   3) you tried to access the local data when there is none.
Some compilers provide libs to check such conditions & allow to take corrective measure.

Take care that each compiler specify return stack size differently. For ICCAVR it is in 'bytes', for IAR it is no. of nesting levels. Read before you specify.

I hope it is clear.  Grin
If you have any doubts I'll be glad to clear them.

regards,
sam_des
Logged

Never be afraid to do something new. Remember Amateurs built the Ark, Professionals built the Titanic !
Pages: [1]
Print
Jump to:  


DISCLAIMER
WE DONT HOST ANY ILLEGAL FILES ON THE SERVER
USE CONTACT US TO REPORT ILLEGAL FILES
ADMINISTRATORS CANNOT BE HELD RESPONSIBLE FOR USERS POSTS AND LINKS

... Copyright © 2003-2999 Sonsivri.to ...
Powered by SMF 1.1.18 | SMF © 2006-2009, Simple Machines LLC | HarzeM Dilber MC