Rev 3386 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3386 | Rev 4718 | ||
|---|---|---|---|
| Line 43... | Line 43... | ||
| 43 | /** |
43 | /** |
| 44 | * 16-extended-word save area for %i[0-7] and %l[0-7] registers. |
44 | * 16-extended-word save area for %i[0-7] and %l[0-7] registers. |
| 45 | */ |
45 | */ |
| 46 | #define STACK_WINDOW_SAVE_AREA_SIZE (16 * STACK_ITEM_SIZE) |
46 | #define STACK_WINDOW_SAVE_AREA_SIZE (16 * STACK_ITEM_SIZE) |
| 47 | 47 | ||
| - | 48 | /* |
|
| - | 49 | * Six extended words for first six arguments. |
|
| - | 50 | */ |
|
| - | 51 | #define STACK_ARG_SAVE_AREA_SIZE (6 * STACK_ITEM_SIZE) |
|
| - | 52 | ||
| 48 | /** |
53 | /** |
| 49 | * By convention, the actual top of the stack is %sp + STACK_BIAS. |
54 | * By convention, the actual top of the stack is %sp + STACK_BIAS. |
| 50 | */ |
55 | */ |
| 51 | #define STACK_BIAS 2047 |
56 | #define STACK_BIAS 2047 |
| 52 | 57 | ||