annotate doc/manual/callconvs/callconv_mips.tex @ 108:bf8aef292216

- mips clarifications in doc
author cslag
date Sat, 11 Jun 2016 21:38:46 +0200
parents dbca6763f2be
children 9aa75a74614c
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
101
1ce60358fbad - mips related cleanup, mostly comments, cpp macro lib
cslag
parents: 99
diff changeset
41 Currently, dyncall supports for MIPS 32-bit architectures the O32 calling convention, as well as EABI (which is used on the Homebrew SDK for
1ce60358fbad - mips related cleanup, mostly comments, cpp macro lib
cslag
parents: 99
diff changeset
42 the Playstation Portable). For MIPS 64-bit machines, dyncall supports the N32 and N64 calling conventions.
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}
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
50 Name & Alias & Brief description\\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
51 \hline
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
52 {\bf \$0} & {\bf \$zero} & Hardware zero \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
53 {\bf \$1} & {\bf \$at} & Assembler temporary \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
54 {\bf \$2-\$3} & {\bf \$v0-\$v1} & Integer results \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
55 {\bf \$4-\$11} & {\bf \$a0-\$a7} & Integer arguments\\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
56 {\bf \$12-\$15,\$24} & {\bf \$t4-\$t7,\$t8} & Integer temporaries \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
57 {\bf \$25} & {\bf \$t9} & Integer temporary, hold the address of the called function for all PIC calls (by convention) \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
58 {\bf \$16-\$23} & {\bf \$s0-\$s7} & Preserved \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
59 {\bf \$26,\$27} & {\bf \$kt0,\$kt1} & Reserved for kernel \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
60 {\bf \$28} & {\bf \$gp} & Global pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
61 {\bf \$29} & {\bf \$sp} & Stack pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
62 {\bf \$30} & {\bf \$s8} & Frame pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
63 {\bf \$31} & {\bf \$ra} & Return address, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
64 {\bf hi, lo} & & Multiply/divide special registers \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
65 {\bf \$f0,\$f2} & & Float results \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
66 {\bf \$f1,\$f3,\$f4-\$f11,\$f20-\$f23} & & Float temporaries \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
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.
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
79 \item first 8 integers or floats are passed independently in registers using \$a0-\$a7 and \$f12-\$f19, respectively.
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
80 \item if either integer or float registers are used up, the stack is used
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
81 \item 64-bit integers or floats are passed on two integer registers starting at an even register number, skipping one odd register.
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
82 \item \$a0-\$a7 and \$f12-\$f19 are not required to be preserved.
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
83 \item results are returned in \$v0 (32-bit), \$v0 and \$v1 (64-bit), \$f0 or \$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}
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
123 Name & Alias & Brief description\\
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
124 \hline
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
125 {\bf \$0} & {\bf \$zero} & hardware zero \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
126 {\bf \$1} & {\bf \$at} & assembler temporary \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
127 {\bf \$2-\$3} & {\bf \$v0-\$v1} & return value, scratch \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
128 {\bf \$4-\$7} & {\bf \$a0-\$a3} & first integer arguments, scratch\\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
129 {\bf \$8-\$15,\$24} & {\bf \$t0-\$t7,\$t8} & temporaries, scratch \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
130 {\bf \$25} & {\bf \$t9} & temporary, hold the address of the called function for all PIC calls (by convention) \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
131 {\bf \$16-\$23} & {\bf \$s0-\$s7} & preserved \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
132 {\bf \$26,\$27} & {\bf \$k0,\$k1} & reserved for kernel \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
133 {\bf \$28} & {\bf \$gp} & global pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
134 {\bf \$29} & {\bf \$sp} & stack pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
135 {\bf \$30} & {\bf \$fp} & frame pointer, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
136 {\bf \$31} & {\bf \$ra} & return address, preserve \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
137 {\bf hi, lo} & & multiply/divide special registers \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
138 {\bf \$f0-\$f3} & & float return value, scratch \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
139 {\bf \$f4-\$f11,\$f16-\$f19} & & float temporaries, scratch \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
140 {\bf \$f12-\$f15} & & first floating point arguments, scratch \\
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
141 {\bf \$f20-\$f31} & & preserved \\
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
142 \end{tabular*}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
143 \caption{Register usage on MIPS O32 calling convention}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
144 \end{table}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
145
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
146 \paragraph{Parameter passing}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
147
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
148 \begin{itemize}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
149 \item Stack grows down
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
150 \item Stack parameter order: right-to-left
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
151 \item Caller cleans up the stack
108
bf8aef292216 - mips clarifications in doc
cslag
parents: 104
diff changeset
152 \item Caller is required to always leave a 16-byte spill area for\$a0-\$a3 at the and of {\bf its} frame, to be used and spilled to by the callee, if needed
104
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
153 \item The different stack areas (local data, register save area, parameter area) are each aligned to 8 bytes.
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
154 \item generally, first four 32bit arguments are passed in registers \$a0-\$a3, respectively (see below for exceptions if first arg is a float)
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
155 \item subsequent parameters are passed vie the stack
104
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
156 \item 64-bit params passed via registers are passed using either two registers (starting at an even register number, skipping an odd one if necessary), or via the stack using an 8-byte alignment
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
157 \item if the very first call argument is a float, up to 2 floats or doubles can be passed via \$f12 and \$f14, respectively, for first and second argument
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
158 \item if any arguments are passed via float registers, skip \$a0-\$a3 for subsequent arguments as if the values were passed via them
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
159 \item note that if the first argument is not a float, but the second, it'll get passed via the \$a? registers
dbca6763f2be - complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents: 101
diff changeset
160 \item results are returned in \$v0 (32-bit int return values), \$f0 (32-bit float), \$v0 and \$v1 (64-bit int), \$f0 and \$f3 (64bit float)
98
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
161 \end{itemize}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
162
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
163 \paragraph{Stack layout}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
164
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
165 Stack directly after function prolog:\\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
166
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
167 \begin{figure}[h]
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
168 \begin{tabular}{5|3|1 1}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
169 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
170 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
171 \hhline{~=~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
172 local data & \hspace{4cm} & & \mrrbrace{12}{caller's frame} \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
173 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
174 register save area & return address & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
175 & s7 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
176 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
177 & s0 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
178 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
179 \mrlbrace{7}{parameter area} & \ldots & \mrrbrace{3}{stack parameters} & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
180 & \ldots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
181 & \ldots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
182 & a3 & \mrrbrace{4}{spill area} & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
183 & a2 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
184 & a1 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
185 & a0 & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
186 \hhline{~=~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
187 local data & & & \mrrbrace{5}{current frame} \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
188 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
189 register save area (with return address) & & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
190 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
191 parameter area & & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
192 & \vdots & & \\
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
193 \hhline{~-~~}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
194 \end{tabular}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
195 \caption{Stack layout on MIPS O32 calling convention}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
196 \end{figure}
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
197
db0b2f19e165 - MIPS o32 manual appendix
cslag
parents: 95
diff changeset
198 \newpage
95
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
199
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
200 \subsubsection{MIPS N32 32-bit Calling Convention}
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
201
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
202 @@@
9e99918065e6 - doc fixes (mainly for html output)
cslag
parents: 92
diff changeset
203