blob: a2130bb67a0befb5076e9c119c260360b013efe7 [file] [log] [blame]
Jia Liuf54f60f2012-02-28 07:46:26 +00001//===-- MipsCallingConv.td - Calling Conventions for Mips --*- tablegen -*-===//
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +00002//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +00007//
Akira Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00009// This describes the calling conventions for Mips architecture.
Akira Hatanakae2489122011-04-15 21:51:11 +000010//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000011
12/// CCIfSubtarget - Match if the current subtarget has a feature F.
Daniel Sanders24b65722014-09-10 12:02:27 +000013class CCIfSubtarget<string F, CCAction A, string Invert = "">
14 : CCIf<!strconcat(Invert,
15 "static_cast<const MipsSubtarget&>"
Eric Christopherb5217502014-08-06 18:45:26 +000016 "(State.getMachineFunction().getSubtarget()).",
17 F),
18 A>;
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000019
Daniel Sanders24b65722014-09-10 12:02:27 +000020// The inverse of CCIfSubtarget
21class CCIfSubtargetNot<string F, CCAction A> : CCIfSubtarget<F, A, "!">;
22
Daniel Sandersb3ca3382014-09-26 10:06:12 +000023// For soft-float, f128 values are returned in A0_64 rather than V1_64.
24def RetCC_F128SoftFloat : CallingConv<[
25 CCAssignToReg<[V0_64, A0_64]>
26]>;
27
28// For hard-float, f128 values are returned as a pair of f64's rather than a
29// pair of i64's.
30def RetCC_F128HardFloat : CallingConv<[
31 CCBitConvertToType<f64>,
Daniel Sandersf3fe49a2014-10-07 09:29:59 +000032
33 // Contrary to the ABI documentation, a struct containing a long double is
34 // returned in $f0, and $f1 instead of the usual $f0, and $f2. This is to
35 // match the de facto ABI as implemented by GCC.
36 CCIfInReg<CCAssignToReg<[D0_64, D1_64]>>,
37
Daniel Sandersb3ca3382014-09-26 10:06:12 +000038 CCAssignToReg<[D0_64, D2_64]>
39]>;
40
41// Handle F128 specially since we can't identify the original type during the
42// tablegen-erated code.
43def RetCC_F128 : CallingConv<[
44 CCIfSubtarget<"abiUsesSoftFloat()",
45 CCIfType<[i64], CCDelegateTo<RetCC_F128SoftFloat>>>,
46 CCIfSubtargetNot<"abiUsesSoftFloat()",
47 CCIfType<[i64], CCDelegateTo<RetCC_F128HardFloat>>>
48]>;
49
Akira Hatanakae2489122011-04-15 21:51:11 +000050//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000051// Mips O32 Calling Convention
Akira Hatanakae2489122011-04-15 21:51:11 +000052//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000053
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000054// Only the return rules are defined here for O32. The rules for argument
Bruno Cardoso Lopes3b7b3012009-03-19 02:12:28 +000055// passing are defined in MipsISelLowering.cpp.
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000056def RetCC_MipsO32 : CallingConv<[
Akira Hatanaka27029882011-06-21 01:28:11 +000057 // i32 are returned in registers V0, V1, A0, A1
58 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>>,
Bruno Cardoso Lopes3e667cf2008-08-03 15:37:43 +000059
Bruno Cardoso Lopes2f5c8e32010-01-19 12:37:35 +000060 // f32 are returned in registers F0, F2
61 CCIfType<[f32], CCAssignToReg<[F0, F2]>>,
Bruno Cardoso Lopes3e667cf2008-08-03 15:37:43 +000062
Zoran Jovanovicf34b4542014-07-10 22:23:30 +000063 // f64 arguments are returned in D0_64 and D2_64 in FP64bit mode or
Akira Hatanakabfb66242013-08-20 23:38:40 +000064 // in D0 and D1 in FP32bit mode.
Zoran Jovanovicf34b4542014-07-10 22:23:30 +000065 CCIfType<[f64], CCIfSubtarget<"isFP64bit()", CCAssignToReg<[D0_64, D2_64]>>>,
Daniel Sanders24b65722014-09-10 12:02:27 +000066 CCIfType<[f64], CCIfSubtargetNot<"isFP64bit()", CCAssignToReg<[D0, D1]>>>
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000067]>;
68
Daniel Sandersca80f1a2014-11-01 17:38:22 +000069def CC_MipsO32_FP32 : CustomCallingConv;
70def CC_MipsO32_FP64 : CustomCallingConv;
71
72def CC_MipsO32_FP : CallingConv<[
73 CCIfSubtargetNot<"isFP64bit()", CCDelegateTo<CC_MipsO32_FP32>>,
74 CCIfSubtarget<"isFP64bit()", CCDelegateTo<CC_MipsO32_FP64>>
75]>;
76
Akira Hatanakae2489122011-04-15 21:51:11 +000077//===----------------------------------------------------------------------===//
Akira Hatanakad6af2c62011-09-23 19:08:15 +000078// Mips N32/64 Calling Convention
79//===----------------------------------------------------------------------===//
80
81def CC_MipsN : CallingConv<[
Akira Hatanakad608bac2012-02-17 02:20:26 +000082 // Promote i8/i16 arguments to i32.
83 CCIfType<[i8, i16], CCPromoteToType<i32>>,
Akira Hatanakad6af2c62011-09-23 19:08:15 +000084
85 // Integer arguments are passed in integer registers.
Akira Hatanakad608bac2012-02-17 02:20:26 +000086 CCIfType<[i32], CCAssignToRegWithShadow<[A0, A1, A2, A3,
87 T0, T1, T2, T3],
88 [F12, F13, F14, F15,
89 F16, F17, F18, F19]>>,
90
Akira Hatanakad6af2c62011-09-23 19:08:15 +000091 CCIfType<[i64], CCAssignToRegWithShadow<[A0_64, A1_64, A2_64, A3_64,
92 T0_64, T1_64, T2_64, T3_64],
93 [D12_64, D13_64, D14_64, D15_64,
94 D16_64, D17_64, D18_64, D19_64]>>,
95
96 // f32 arguments are passed in single precision FP registers.
97 CCIfType<[f32], CCAssignToRegWithShadow<[F12, F13, F14, F15,
98 F16, F17, F18, F19],
99 [A0_64, A1_64, A2_64, A3_64,
100 T0_64, T1_64, T2_64, T3_64]>>,
101
102 // f64 arguments are passed in double precision FP registers.
103 CCIfType<[f64], CCAssignToRegWithShadow<[D12_64, D13_64, D14_64, D15_64,
104 D16_64, D17_64, D18_64, D19_64],
105 [A0_64, A1_64, A2_64, A3_64,
106 T0_64, T1_64, T2_64, T3_64]>>,
107
108 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned.
Akira Hatanakad608bac2012-02-17 02:20:26 +0000109 CCIfType<[i32, f32], CCAssignToStack<4, 8>>,
110 CCIfType<[i64, f64], CCAssignToStack<8, 8>>
Akira Hatanakad6af2c62011-09-23 19:08:15 +0000111]>;
112
Akira Hatanaka0b8bc002011-11-14 19:02:54 +0000113// N32/64 variable arguments.
114// All arguments are passed in integer registers.
115def CC_MipsN_VarArg : CallingConv<[
Akira Hatanakad608bac2012-02-17 02:20:26 +0000116 // Promote i8/i16 arguments to i32.
117 CCIfType<[i8, i16], CCPromoteToType<i32>>,
118
119 CCIfType<[i32, f32], CCAssignToReg<[A0, A1, A2, A3, T0, T1, T2, T3]>>,
Akira Hatanaka0b8bc002011-11-14 19:02:54 +0000120
121 CCIfType<[i64, f64], CCAssignToReg<[A0_64, A1_64, A2_64, A3_64,
122 T0_64, T1_64, T2_64, T3_64]>>,
123
Akira Hatanaka0b8bc002011-11-14 19:02:54 +0000124 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned.
Akira Hatanakad608bac2012-02-17 02:20:26 +0000125 CCIfType<[i32, f32], CCAssignToStack<4, 8>>,
126 CCIfType<[i64, f64], CCAssignToStack<8, 8>>
Akira Hatanaka0b8bc002011-11-14 19:02:54 +0000127]>;
128
Akira Hatanakad6af2c62011-09-23 19:08:15 +0000129def RetCC_MipsN : CallingConv<[
Daniel Sandersb3ca3382014-09-26 10:06:12 +0000130 // f128 needs to be handled similarly to f32 and f64. However, f128 is not
131 // legal and is lowered to i128 which is further lowered to a pair of i64's.
132 // This presents us with a problem for the calling convention since hard-float
133 // still needs to pass them in FPU registers, and soft-float needs to use $v0,
134 // and $a0 instead of the usual $v0, and $v1. We therefore resort to a
135 // pre-analyze (see PreAnalyzeReturnForF128()) step to pass information on
136 // whether the result was originally an f128 into the tablegen-erated code.
137 //
138 // f128 should only occur for the N64 ABI where long double is 128-bit. On
139 // N32, long double is equivalent to double.
140 CCIfType<[i64],
141 CCIf<"static_cast<MipsCCState *>(&State)->WasOriginalArgF128(ValNo)",
142 CCDelegateTo<RetCC_F128>>>,
143
Daniel Sandersae275e32014-09-25 12:15:05 +0000144 // Aggregate returns are positioned at the lowest address in the slot for
145 // both little and big-endian targets. When passing in registers, this
146 // requires that big-endian targets shift the value into the upper bits.
147 CCIfSubtarget<"isLittle()",
Daniel Sanders19f01652014-10-24 13:09:19 +0000148 CCIfType<[i8, i16, i32, i64], CCIfInReg<CCPromoteToType<i64>>>>,
Daniel Sandersae275e32014-09-25 12:15:05 +0000149 CCIfSubtargetNot<"isLittle()",
Daniel Sandersf815c132014-10-24 14:46:00 +0000150 CCIfType<[i8, i16, i32, i64],
151 CCIfInReg<CCPromoteToUpperBitsInType<i64>>>>,
Daniel Sandersae275e32014-09-25 12:15:05 +0000152
Akira Hatanakad6af2c62011-09-23 19:08:15 +0000153 // i64 are returned in registers V0_64, V1_64
154 CCIfType<[i64], CCAssignToReg<[V0_64, V1_64]>>,
155
156 // f32 are returned in registers F0, F2
157 CCIfType<[f32], CCAssignToReg<[F0, F2]>>,
158
159 // f64 are returned in registers D0, D2
160 CCIfType<[f64], CCAssignToReg<[D0_64, D2_64]>>
161]>;
162
163//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000164// Mips EABI Calling Convention
Akira Hatanakae2489122011-04-15 21:51:11 +0000165//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes3b7b3012009-03-19 02:12:28 +0000166
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000167def CC_MipsEABI : CallingConv<[
168 // Promote i8/i16 arguments to i32.
169 CCIfType<[i8, i16], CCPromoteToType<i32>>,
170
171 // Integer arguments are passed in integer registers.
172 CCIfType<[i32], CCAssignToReg<[A0, A1, A2, A3, T0, T1, T2, T3]>>,
173
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +0000174 // Single fp arguments are passed in pairs within 32-bit mode
175 CCIfType<[f32], CCIfSubtarget<"isSingleFloat()",
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000176 CCAssignToReg<[F12, F13, F14, F15, F16, F17, F18, F19]>>>,
177
Daniel Sanders24b65722014-09-10 12:02:27 +0000178 CCIfType<[f32], CCIfSubtargetNot<"isSingleFloat()",
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000179 CCAssignToReg<[F12, F14, F16, F18]>>>,
180
Duncan Sands56ca6292011-04-25 06:21:43 +0000181 // The first 4 double fp arguments are passed in single fp registers.
Daniel Sanders24b65722014-09-10 12:02:27 +0000182 CCIfType<[f64], CCIfSubtargetNot<"isSingleFloat()",
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000183 CCAssignToReg<[D6, D7, D8, D9]>>>,
184
185 // Integer values get stored in stack slots that are 4 bytes in
186 // size and 4-byte aligned.
187 CCIfType<[i32, f32], CCAssignToStack<4, 4>>,
188
189 // Integer values get stored in stack slots that are 8 bytes in
190 // size and 8-byte aligned.
Daniel Sanders24b65722014-09-10 12:02:27 +0000191 CCIfType<[f64], CCIfSubtargetNot<"isSingleFloat()", CCAssignToStack<8, 8>>>
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000192]>;
193
194def RetCC_MipsEABI : CallingConv<[
195 // i32 are returned in registers V0, V1
196 CCIfType<[i32], CCAssignToReg<[V0, V1]>>,
197
198 // f32 are returned in registers F0, F1
199 CCIfType<[f32], CCAssignToReg<[F0, F1]>>,
200
201 // f64 are returned in register D0
Daniel Sanders24b65722014-09-10 12:02:27 +0000202 CCIfType<[f64], CCIfSubtargetNot<"isSingleFloat()", CCAssignToReg<[D0]>>>
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000203]>;
204
Akira Hatanakae2489122011-04-15 21:51:11 +0000205//===----------------------------------------------------------------------===//
Akira Hatanakaf0273602012-06-13 18:06:00 +0000206// Mips FastCC Calling Convention
207//===----------------------------------------------------------------------===//
208def CC_MipsO32_FastCC : CallingConv<[
209 // f64 arguments are passed in double-precision floating pointer registers.
Daniel Sanders24b65722014-09-10 12:02:27 +0000210 CCIfType<[f64], CCIfSubtargetNot<"isFP64bit()",
211 CCAssignToReg<[D0, D1, D2, D3, D4, D5, D6,
212 D7, D8, D9]>>>,
Sasa Stankovic86ebfe22014-08-22 09:23:22 +0000213 CCIfType<[f64], CCIfSubtarget<"isFP64bit()", CCIfSubtarget<"useOddSPReg()",
Akira Hatanakabfb66242013-08-20 23:38:40 +0000214 CCAssignToReg<[D0_64, D1_64, D2_64, D3_64,
215 D4_64, D5_64, D6_64, D7_64,
216 D8_64, D9_64, D10_64, D11_64,
217 D12_64, D13_64, D14_64, D15_64,
218 D16_64, D17_64, D18_64,
Sasa Stankovic86ebfe22014-08-22 09:23:22 +0000219 D19_64]>>>>,
220 CCIfType<[f64], CCIfSubtarget<"isFP64bit()", CCIfSubtarget<"noOddSPReg()",
221 CCAssignToReg<[D0_64, D2_64, D4_64, D6_64,
222 D8_64, D10_64, D12_64, D14_64,
223 D16_64, D18_64]>>>>,
Akira Hatanakaf0273602012-06-13 18:06:00 +0000224
225 // Stack parameter slots for f64 are 64-bit doublewords and 8-byte aligned.
226 CCIfType<[f64], CCAssignToStack<8, 8>>
227]>;
228
229def CC_MipsN_FastCC : CallingConv<[
230 // Integer arguments are passed in integer registers.
231 CCIfType<[i64], CCAssignToReg<[A0_64, A1_64, A2_64, A3_64, T0_64, T1_64,
232 T2_64, T3_64, T4_64, T5_64, T6_64, T7_64,
233 T8_64, V1_64]>>,
234
235 // f64 arguments are passed in double-precision floating pointer registers.
236 CCIfType<[f64], CCAssignToReg<[D0_64, D1_64, D2_64, D3_64, D4_64, D5_64,
237 D6_64, D7_64, D8_64, D9_64, D10_64, D11_64,
238 D12_64, D13_64, D14_64, D15_64, D16_64, D17_64,
239 D18_64, D19_64]>>,
240
241 // Stack parameter slots for i64 and f64 are 64-bit doublewords and
242 // 8-byte aligned.
243 CCIfType<[i64, f64], CCAssignToStack<8, 8>>
244]>;
245
246def CC_Mips_FastCC : CallingConv<[
247 // Handles byval parameters.
248 CCIfByVal<CCPassByVal<4, 4>>,
249
250 // Promote i8/i16 arguments to i32.
251 CCIfType<[i8, i16], CCPromoteToType<i32>>,
252
253 // Integer arguments are passed in integer registers. All scratch registers,
254 // except for AT, V0 and T9, are available to be used as argument registers.
Daniel Sanders24b65722014-09-10 12:02:27 +0000255 CCIfType<[i32], CCIfSubtargetNot<"isTargetNaCl()",
Sasa Stankovic4c80bda2014-02-07 17:16:40 +0000256 CCAssignToReg<[A0, A1, A2, A3, T0, T1, T2, T3, T4, T5, T6, T7, T8, V1]>>>,
257
258 // In NaCl, T6, T7 and T8 are reserved and not available as argument
259 // registers for fastcc. T6 contains the mask for sandboxing control flow
260 // (indirect jumps and calls). T7 contains the mask for sandboxing memory
261 // accesses (loads and stores). T8 contains the thread pointer.
262 CCIfType<[i32], CCIfSubtarget<"isTargetNaCl()",
263 CCAssignToReg<[A0, A1, A2, A3, T0, T1, T2, T3, T4, T5, V1]>>>,
Akira Hatanakaf0273602012-06-13 18:06:00 +0000264
265 // f32 arguments are passed in single-precision floating pointer registers.
Sasa Stankovicf4a9e3b2014-07-29 14:39:24 +0000266 CCIfType<[f32], CCIfSubtarget<"useOddSPReg()",
267 CCAssignToReg<[F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13,
268 F14, F15, F16, F17, F18, F19]>>>,
269
270 // Don't use odd numbered single-precision registers for -mno-odd-spreg.
271 CCIfType<[f32], CCIfSubtarget<"noOddSPReg()",
272 CCAssignToReg<[F0, F2, F4, F6, F8, F10, F12, F14, F16, F18]>>>,
Akira Hatanakaf0273602012-06-13 18:06:00 +0000273
274 // Stack parameter slots for i32 and f32 are 32-bit words and 4-byte aligned.
275 CCIfType<[i32, f32], CCAssignToStack<4, 4>>,
276
277 CCIfSubtarget<"isABI_EABI()", CCDelegateTo<CC_MipsEABI>>,
278 CCIfSubtarget<"isABI_O32()", CCDelegateTo<CC_MipsO32_FastCC>>,
279 CCDelegateTo<CC_MipsN_FastCC>
280]>;
281
Reed Kotler783c7942013-05-10 22:25:39 +0000282//==
283
284def CC_Mips16RetHelper : CallingConv<[
285 // Integer arguments are passed in integer registers.
286 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>>
287]>;
288
Akira Hatanakaf0273602012-06-13 18:06:00 +0000289//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000290// Mips Calling Convention Dispatch
Akira Hatanakae2489122011-04-15 21:51:11 +0000291//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000292
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000293def RetCC_Mips : CallingConv<[
294 CCIfSubtarget<"isABI_EABI()", CCDelegateTo<RetCC_MipsEABI>>,
Akira Hatanakad6af2c62011-09-23 19:08:15 +0000295 CCIfSubtarget<"isABI_N32()", CCDelegateTo<RetCC_MipsN>>,
296 CCIfSubtarget<"isABI_N64()", CCDelegateTo<RetCC_MipsN>>,
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000297 CCDelegateTo<RetCC_MipsO32>
298]>;
Akira Hatanaka5350c242012-03-01 22:27:29 +0000299
Daniel Sandersca80f1a2014-11-01 17:38:22 +0000300def CC_Mips_FixedArg : CallingConv<[
301 CCIfCC<"CallingConv::Fast", CCDelegateTo<CC_Mips_FastCC>>,
302
303 // FIXME: There wasn't an EABI case in the original code and it seems unlikely
304 // that it's the same as CC_MipsN
305 CCIfSubtarget<"isABI_O32()", CCDelegateTo<CC_MipsO32_FP>>,
306 CCDelegateTo<CC_MipsN>
307]>;
308
309def CC_Mips_VarArg : CallingConv<[
310 // FIXME: There wasn't an EABI case in the original code and it seems unlikely
311 // that it's the same as CC_MipsN_VarArg
312 CCIfSubtarget<"isABI_O32()", CCDelegateTo<CC_MipsO32_FP>>,
313 CCDelegateTo<CC_MipsN_VarArg>
314]>;
315
Akira Hatanaka5350c242012-03-01 22:27:29 +0000316//===----------------------------------------------------------------------===//
317// Callee-saved register lists.
318//===----------------------------------------------------------------------===//
319
320def CSR_SingleFloatOnly : CalleeSavedRegs<(add (sequence "F%u", 31, 20), RA, FP,
321 (sequence "S%u", 7, 0))>;
322
Zoran Jovanovic255d00d2014-07-10 15:36:12 +0000323def CSR_O32_FPXX : CalleeSavedRegs<(add (sequence "D%u", 15, 10), RA, FP,
324 (sequence "S%u", 7, 0))> {
325 let OtherPreserved = (add (decimate (sequence "F%u", 30, 20), 2));
326}
327
Akira Hatanaka5350c242012-03-01 22:27:29 +0000328def CSR_O32 : CalleeSavedRegs<(add (sequence "D%u", 15, 10), RA, FP,
329 (sequence "S%u", 7, 0))>;
330
Zoran Jovanovicf34b4542014-07-10 22:23:30 +0000331def CSR_O32_FP64 :
332 CalleeSavedRegs<(add (decimate (sequence "D%u_64", 30, 20), 2), RA, FP,
333 (sequence "S%u", 7, 0))>;
Akira Hatanakabfb66242013-08-20 23:38:40 +0000334
Daniel Sanders11c0c062014-04-16 10:23:37 +0000335def CSR_N32 : CalleeSavedRegs<(add D20_64, D22_64, D24_64, D26_64, D28_64,
336 D30_64, RA_64, FP_64, GP_64,
Akira Hatanaka5350c242012-03-01 22:27:29 +0000337 (sequence "S%u_64", 7, 0))>;
338
339def CSR_N64 : CalleeSavedRegs<(add (sequence "D%u_64", 31, 24), RA_64, FP_64,
340 GP_64, (sequence "S%u_64", 7, 0))>;
Reed Kotler783c7942013-05-10 22:25:39 +0000341
Jack Carter59817112013-05-16 20:08:49 +0000342def CSR_Mips16RetHelper :
Reed Kotler5c29d632013-12-15 20:49:30 +0000343 CalleeSavedRegs<(add V0, V1, FP,
344 (sequence "A%u", 3, 0), (sequence "S%u", 7, 0),
345 (sequence "D%u", 15, 10))>;