annotate doc/manual/callconvs/callconv_mips.tex @ 99:7aab1a3cb172

- doc clarification for mips o32 appendix
author cslag
date Sat, 04 Jun 2016 21:50:03 +0200
parents db0b2f19e165
children 1ce60358fbad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
1 %//////////////////////////////////////////////////////////////////////////////
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
2 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3 % Copyright (c) 2007,2009 Daniel Adler <dadler@uni-goettingen.de>,
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
4 % Tassilo Philipp <tphilipp@potion-studios.com>
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
5 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6 % Permission to use, copy, modify, and distribute this software for any
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
7 % purpose with or without fee is hereby granted, provided that the above
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
8 % copyright notice and this permission notice appear in all copies.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
9 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
10 % THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
11 % WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
12 % MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
13 % ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
14 % WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
15 % ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
16 % OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
17 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
18 %//////////////////////////////////////////////////////////////////////////////
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
19
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
20 \subsection{MIPS Calling Convention}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
21
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
22 \paragraph{Overview}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
23
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
24 The MIPS family of processors is based on the MIPS processor architecture.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
25 Multiple revisions of the MIPS Instruction set exist, namely MIPS I, MIPS II, MIPS III, MIPS IV, MIPS32 and MIPS64.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
26 Today, MIPS32 and MIPS64 for 32-bit and 64-bit respectively.\\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
27 Several add-on extensions exist for the MIPS family:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
28
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
29 \begin{description}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
30 \item [MIPS-3D] simple floating-point SIMD instructions dedicated to common 3D tasks.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
31 \item [MDMX] (MaDMaX) more extensive integer SIMD instruction set using 64 bit floating-point registers.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
32 \item [MIPS16e] adds compression to the instruction stream to make programs take up less room (allegedly a response to the THUMB instruction set of the ARM architecture).
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
33 \item [MIPS MT] multithreading additions to the system similar to HyperThreading.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
34 \end{description}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
35
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
36 Unfortunately, there is actually no such thing as "The MIPS Calling Convention". Many possible conventions are used
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
37 by many different environments such as \emph{O32}\cite{MIPSo32}, \emph{O64}, \emph{N32}, \emph{N64} and \emph{EABI}.\\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
38
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
39 \paragraph{\product{dyncall} support}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
40
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
41 Currently, dyncall supports the EABI calling convention which is used on the Homebrew SDK for the Playstation Portable.
95
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
42 As documentation for this EABI is unofficial, this port is currently experimental. It also supports O32, N32 and N64.
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
43
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
44 \subsubsection{MIPS EABI 32-bit Calling Convention}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
45
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
46 \paragraph{Register usage}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
47
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
48 \begin{table}[h]
77
e441ef3ec782 - manual layout tweaks
cslag
parents: 76
diff changeset
49 \begin{tabular*}{0.95\textwidth}{lll}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
50 Name & Alias & Brief description\\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
51 \hline
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
52 {\bf \$0} & {\bf \$zero} & Hardware zero \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
53 {\bf \$1} & {\bf \$at} & Assembler temporary \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
54 {\bf \$2-\$3} & {\bf \$v0-\$v1} & Integer results \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
55 {\bf \$4-\$11} & {\bf \$a0-\$a7} & Integer arguments\\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
56 {\bf \$12-\$15,\$24,\$25} & {\bf \$t4-\$t7,\$t8,\$t9} & Integer temporaries \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
57 {\bf \$25} & {\bf \$t9} & Integer temporary, hold the address of the called function for all PIC calls (by convention) \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
58 {\bf \$16-\$23} & {\bf \$s0-\$s7} & Preserved \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
59 {\bf \$26,\$27} & {\bf \$kt0,\$kt1} & Reserved for kernel \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
60 {\bf \$28} & {\bf \$gp} & Global pointer \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
61 {\bf \$29} & {\bf \$sp} & Stack pointer \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
62 {\bf \$30} & {\bf \$s8} & Frame pointer \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
63 {\bf \$31} & {\bf \$ra} & Return address \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
64 {\bf hi, lo} & & Multiply/divide special registers \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
65 {\bf \$f0,\$f2} & & Float results \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
66 {\bf \$f1,\$f3,\$f4-\$f11,\$f20-\$f23} & & Float temporaries \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
67 {\bf \$f12-\$f19} & & Float arguments \\
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 0
diff changeset
68 \end{tabular*}
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
69 \caption{Register usage on MIPS32 EABI calling convention}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
70 \end{table}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
71
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
72 \paragraph{Parameter passing}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
73
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
74 \begin{itemize}
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
75 \item Stack grows down
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
76 \item Stack parameter order: right-to-left
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
77 \item Caller cleans up the stack
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
78 \item Stack always aligned to 8 bytes.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
79 \item first 8 integers and floats are passed independently in registers using \$a0-\$a7 and \$f12-\$f19, respectively.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
80 \item if either integer or float registers are consumed up, the stack is used.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
81 \item 64-bit floats and integers are passed on two integer registers starting at an even register number, probably skipping one odd register.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
82 \item \$a0-\$a7 and \$f12-\$f19 are not required to be preserved.
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
83 \item results are returned in \$v0 (32-bit), \$v0 and \$v1 (64-bit), \$f0 (32 bit float) and \$f0 and \$f2 (2 $\times$ 32 bit float e.g. complex).
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
84 \end{itemize}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
85
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
86 \paragraph{Stack layout}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
87
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
88 Stack directly after function prolog:\\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
89
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
90 \begin{figure}[h]
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
91 \begin{tabular}{5|3|1 1}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
92 \hhline{~-~~}
92
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
93 & \vdots & & \\
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
94 \hhline{~=~~}
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
95 register save area & \hspace{4cm} & & \mrrbrace{5}{caller's frame} \\
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
96 \hhline{~-~~}
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
97 local data & & & \\
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
98 \hhline{~-~~}
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
99 \mrlbrace{3}{parameter area} & \ldots & \mrrbrace{3}{stack parameters} & \\
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
100 & \ldots & & \\
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
101 & \ldots & & \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
102 \hhline{~=~~}
92
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
103 register save area (with return address) & & & \mrrbrace{5}{current frame} \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
104 \hhline{~-~~}
92
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
105 local data & & & \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
106 \hhline{~-~~}
92
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
107 parameter area & & & \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
108 \hhline{~-~~}
92
5c3fa8897e0e - manual work
cslag
parents: 90
diff changeset
109 & \vdots & & \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
110 \hhline{~-~~}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
111 \end{tabular}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
112 \caption{Stack layout on mips32 eabi calling convention}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
113 \end{figure}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
114
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
115 \newpage
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
116
95
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
117 \subsubsection{MIPS O32 32-bit Calling Convention}
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
118
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
119 \paragraph{Register usage}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
120
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
121 \begin{table}[h]
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
122 \begin{tabular*}{0.95\textwidth}{lll}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
123 Name & Alias & Brief description\\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
124 \hline
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
125 {\bf \$0} & {\bf \$zero} & Hardware zero \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
126 {\bf \$1} & {\bf \$at} & Assembler temporary \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
127 {\bf \$2-\$3} & {\bf \$v0-\$v1} & Integer results, scratch \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
128 {\bf \$4-\$7} & {\bf \$a0-\$a3} & Integer arguments, scratch\\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
129 {\bf \$8-\$15,\$24,\$25} & {\bf \$t0-\$t7,\$t8,\$t9} & Integer temporaries, scratch \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
130 {\bf \$16-\$23} & {\bf \$s0-\$s7} & Preserved \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
131 {\bf \$26,\$27} & {\bf \$k0,\$k1} & Reserved for kernel \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
132 {\bf \$28} & {\bf \$gp} & Global pointer, preserve \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
133 {\bf \$29} & {\bf \$sp} & Stack pointer, preserve \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
134 {\bf \$30} & {\bf \$fp} & Frame pointer, preserve \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
135 {\bf \$31} & {\bf \$ra} & Return address \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
136
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
137
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
138 \end{tabular*}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
139 \caption{Register usage on MIPS O32 calling convention}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
140 \end{table}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
141
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
142 \paragraph{Parameter passing}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
143
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
144 \begin{itemize}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
145 \item Stack grows down
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
146 \item Stack parameter order: right-to-left
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
147 \item Caller cleans up the stack
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
148 \item The different stack areas (e.g. parameter area, register save area, ...) are always aligned to 8 bytes.
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
149 \item first 4 32bit arguments are passed in registers \$a0-\$a3, respectively
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
150 \item subsequent parameters are passed vie the stack
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
151 \item @@@unsure... 64-bit floats and integers are passed on two integer registers starting at an even register number, probably skipping one odd register.
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
152 \item results are returned in \$v0 (32-bit integer), \$v0 and \$v1 (64-bit integer/float)
99
7aab1a3cb172 - doc clarification for mips o32 appendix
cslag
parents: 98
diff changeset
153 \item note that only s? registers that are modified by the function are required to be preserved on save area
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
154 \end{itemize}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
155
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
156 \paragraph{Stack layout}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
157
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
158 Stack directly after function prolog:\\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
159
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
160 \begin{figure}[h]
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
161 \begin{tabular}{5|3|1 1}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
162 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
163 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
164 \hhline{~=~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
165 local data & \hspace{4cm} & & \mrrbrace{12}{caller's frame} \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
166 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
167 register save area & return address & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
168 & s7 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
169 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
170 & s0 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
171 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
172 \mrlbrace{7}{parameter area} & \ldots & \mrrbrace{3}{stack parameters} & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
173 & \ldots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
174 & \ldots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
175 & a3 & \mrrbrace{4}{spill area} & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
176 & a2 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
177 & a1 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
178 & a0 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
179 \hhline{~=~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
180 local data & & & \mrrbrace{5}{current frame} \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
181 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
182 register save area (with return address) & & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
183 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
184 parameter area & & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
185 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
186 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
187 \end{tabular}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
188 \caption{Stack layout on MIPS O32 calling convention}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
189 \end{figure}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
190
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
191 \newpage
95
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
192
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
193 \subsubsection{MIPS N32 32-bit Calling Convention}
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
194
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
195 @@@
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
196