| Chris Lattner | 72a364c | 2010-08-17 16:20:04 +0000 | [diff] [blame] | 1 | //===- PPCCallingConv.td - Calling Conventions for PowerPC -*- tablegen -*-===// |
| Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 2 | // |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 7 | // |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This describes the calling conventions for the PowerPC 32- and 64-bit |
| 11 | // architectures. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| Ulrich Weigand | 339d059 | 2012-11-05 19:39:45 +0000 | [diff] [blame] | 15 | /// CCIfSubtarget - Match if the current subtarget has a feature F. |
| 16 | class CCIfSubtarget<string F, CCAction A> |
| Eric Christopher | b521750 | 2014-08-06 18:45:26 +0000 | [diff] [blame] | 17 | : CCIf<!strconcat("static_cast<const PPCSubtarget&>" |
| 18 | "(State.getMachineFunction().getSubtarget()).", |
| 19 | F), |
| 20 | A>; |
| Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 21 | class CCIfNotSubtarget<string F, CCAction A> |
| Eric Christopher | b521750 | 2014-08-06 18:45:26 +0000 | [diff] [blame] | 22 | : CCIf<!strconcat("!static_cast<const PPCSubtarget&>" |
| 23 | "(State.getMachineFunction().getSubtarget()).", |
| 24 | F), |
| 25 | A>; |
| Ulrich Weigand | 339d059 | 2012-11-05 19:39:45 +0000 | [diff] [blame] | 26 | |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
| 28 | // Return Value Calling Convention |
| 29 | //===----------------------------------------------------------------------===// |
| 30 | |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 31 | // PPC64 AnyReg return-value convention. No explicit register is specified for |
| 32 | // the return-value. The register allocator is allowed and expected to choose |
| 33 | // any free register. |
| 34 | // |
| 35 | // This calling convention is currently only supported by the stackmap and |
| 36 | // patchpoint intrinsics. All other uses will result in an assert on Debug |
| 37 | // builds. On Release builds we fallback to the PPC C calling convention. |
| 38 | def RetCC_PPC64_AnyReg : CallingConv<[ |
| 39 | CCCustom<"CC_PPC_AnyReg_Error"> |
| 40 | ]>; |
| 41 | |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 42 | // Return-value convention for PowerPC |
| 43 | def RetCC_PPC : CallingConv<[ |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 44 | CCIfCC<"CallingConv::AnyReg", CCDelegateTo<RetCC_PPC64_AnyReg>>, |
| 45 | |
| Ulrich Weigand | 339d059 | 2012-11-05 19:39:45 +0000 | [diff] [blame] | 46 | // On PPC64, integer return values are always promoted to i64 |
| Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 47 | CCIfType<[i32, i1], CCIfSubtarget<"isPPC64()", CCPromoteToType<i64>>>, |
| 48 | CCIfType<[i1], CCIfNotSubtarget<"isPPC64()", CCPromoteToType<i32>>>, |
| Ulrich Weigand | 339d059 | 2012-11-05 19:39:45 +0000 | [diff] [blame] | 49 | |
| Dale Johannesen | 92dcf1e | 2008-03-17 02:13:43 +0000 | [diff] [blame] | 50 | CCIfType<[i32], CCAssignToReg<[R3, R4, R5, R6, R7, R8, R9, R10]>>, |
| Dale Johannesen | cf87e71 | 2008-03-17 17:11:08 +0000 | [diff] [blame] | 51 | CCIfType<[i64], CCAssignToReg<[X3, X4, X5, X6]>>, |
| Bill Schmidt | dee1ef8 | 2013-01-17 19:34:57 +0000 | [diff] [blame] | 52 | CCIfType<[i128], CCAssignToReg<[X3, X4, X5, X6]>>, |
| Ulrich Weigand | 85d5df2 | 2014-07-21 00:13:26 +0000 | [diff] [blame] | 53 | |
| 54 | // Floating point types returned as "direct" go into F1 .. F8; note that |
| 55 | // only the ELFv2 ABI fully utilizes all these registers. |
| 56 | CCIfType<[f32], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>, |
| 57 | CCIfType<[f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>, |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 58 | |
| Ulrich Weigand | 85d5df2 | 2014-07-21 00:13:26 +0000 | [diff] [blame] | 59 | // Vector types returned as "direct" go into V2 .. V9; note that only the |
| 60 | // ELFv2 ABI fully utilizes all these registers. |
| 61 | CCIfType<[v16i8, v8i16, v4i32, v4f32], |
| 62 | CCAssignToReg<[V2, V3, V4, V5, V6, V7, V8, V9]>>, |
| 63 | CCIfType<[v2f64, v2i64], |
| 64 | CCAssignToReg<[VSH2, VSH3, VSH4, VSH5, VSH6, VSH7, VSH8, VSH9]>> |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 65 | ]>; |
| 66 | |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 67 | // No explicit register is specified for the AnyReg calling convention. The |
| 68 | // register allocator may assign the arguments to any free register. |
| 69 | // |
| 70 | // This calling convention is currently only supported by the stackmap and |
| 71 | // patchpoint intrinsics. All other uses will result in an assert on Debug |
| 72 | // builds. On Release builds we fallback to the PPC C calling convention. |
| 73 | def CC_PPC64_AnyReg : CallingConv<[ |
| 74 | CCCustom<"CC_PPC_AnyReg_Error"> |
| 75 | ]>; |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 76 | |
| Bill Schmidt | d89f678 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 77 | // Note that we don't currently have calling conventions for 64-bit |
| 78 | // PowerPC, but handle all the complexities of the ABI in the lowering |
| 79 | // logic. FIXME: See if the logic can be simplified with use of CCs. |
| 80 | // This may require some extensions to current table generation. |
| 81 | |
| Bill Schmidt | 8470b0f | 2013-08-30 22:18:55 +0000 | [diff] [blame] | 82 | // Simple calling convention for 64-bit ELF PowerPC fast isel. |
| 83 | // Only handle ints and floats. All ints are promoted to i64. |
| 84 | // Vector types and quadword ints are not handled. |
| 85 | def CC_PPC64_ELF_FIS : CallingConv<[ |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 86 | CCIfCC<"CallingConv::AnyReg", CCDelegateTo<CC_PPC64_AnyReg>>, |
| 87 | |
| Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 88 | CCIfType<[i1], CCPromoteToType<i64>>, |
| Bill Schmidt | 8470b0f | 2013-08-30 22:18:55 +0000 | [diff] [blame] | 89 | CCIfType<[i8], CCPromoteToType<i64>>, |
| 90 | CCIfType<[i16], CCPromoteToType<i64>>, |
| 91 | CCIfType<[i32], CCPromoteToType<i64>>, |
| 92 | CCIfType<[i64], CCAssignToReg<[X3, X4, X5, X6, X7, X8, X9, X10]>>, |
| 93 | CCIfType<[f32, f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>> |
| 94 | ]>; |
| 95 | |
| Bill Schmidt | d89f678 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 96 | // Simple return-value convention for 64-bit ELF PowerPC fast isel. |
| 97 | // All small ints are promoted to i64. Vector types, quadword ints, |
| 98 | // and multiple register returns are "supported" to avoid compile |
| 99 | // errors, but none are handled by the fast selector. |
| 100 | def RetCC_PPC64_ELF_FIS : CallingConv<[ |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 101 | CCIfCC<"CallingConv::AnyReg", CCDelegateTo<RetCC_PPC64_AnyReg>>, |
| 102 | |
| Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 103 | CCIfType<[i1], CCPromoteToType<i64>>, |
| Bill Schmidt | d89f678 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 104 | CCIfType<[i8], CCPromoteToType<i64>>, |
| 105 | CCIfType<[i16], CCPromoteToType<i64>>, |
| 106 | CCIfType<[i32], CCPromoteToType<i64>>, |
| 107 | CCIfType<[i64], CCAssignToReg<[X3, X4]>>, |
| 108 | CCIfType<[i128], CCAssignToReg<[X3, X4, X5, X6]>>, |
| Ulrich Weigand | 85d5df2 | 2014-07-21 00:13:26 +0000 | [diff] [blame] | 109 | CCIfType<[f32], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>, |
| 110 | CCIfType<[f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>, |
| 111 | CCIfType<[v16i8, v8i16, v4i32, v4f32], |
| 112 | CCAssignToReg<[V2, V3, V4, V5, V6, V7, V8, V9]>>, |
| 113 | CCIfType<[v2f64, v2i64], |
| 114 | CCAssignToReg<[VSH2, VSH3, VSH4, VSH5, VSH6, VSH7, VSH8, VSH9]>> |
| Bill Schmidt | d89f678 | 2013-08-26 19:42:51 +0000 | [diff] [blame] | 115 | ]>; |
| 116 | |
| Chris Lattner | 4f2e4e0 | 2007-03-06 00:59:59 +0000 | [diff] [blame] | 117 | //===----------------------------------------------------------------------===// |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 118 | // PowerPC System V Release 4 32-bit ABI |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 119 | //===----------------------------------------------------------------------===// |
| 120 | |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 121 | def CC_PPC32_SVR4_Common : CallingConv<[ |
| Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 122 | CCIfType<[i1], CCPromoteToType<i32>>, |
| 123 | |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 124 | // The ABI requires i64 to be passed in two adjacent registers with the first |
| 125 | // register having an odd register number. |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 126 | CCIfType<[i32], CCIfSplit<CCCustom<"CC_PPC32_SVR4_Custom_AlignArgRegs">>>, |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 127 | |
| 128 | // The first 8 integer arguments are passed in integer registers. |
| Rafael Espindola | af25cf8 | 2010-02-16 01:50:18 +0000 | [diff] [blame] | 129 | CCIfType<[i32], CCAssignToReg<[R3, R4, R5, R6, R7, R8, R9, R10]>>, |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 130 | |
| 131 | // Make sure the i64 words from a long double are either both passed in |
| 132 | // registers or both passed on the stack. |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 133 | CCIfType<[f64], CCIfSplit<CCCustom<"CC_PPC32_SVR4_Custom_AlignFPArgRegs">>>, |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 134 | |
| 135 | // FP values are passed in F1 - F8. |
| 136 | CCIfType<[f32, f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>, |
| 137 | |
| 138 | // Split arguments have an alignment of 8 bytes on the stack. |
| 139 | CCIfType<[i32], CCIfSplit<CCAssignToStack<4, 8>>>, |
| 140 | |
| 141 | CCIfType<[i32], CCAssignToStack<4, 4>>, |
| 142 | |
| 143 | // Floats are stored in double precision format, thus they have the same |
| 144 | // alignment and size as doubles. |
| 145 | CCIfType<[f32,f64], CCAssignToStack<8, 8>>, |
| 146 | |
| 147 | // Vectors get 16-byte stack slots that are 16-byte aligned. |
| Hal Finkel | a6c8b51 | 2014-03-26 16:12:58 +0000 | [diff] [blame] | 148 | CCIfType<[v16i8, v8i16, v4i32, v4f32, v2f64, v2i64], CCAssignToStack<16, 16>> |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 149 | ]>; |
| 150 | |
| 151 | // This calling convention puts vector arguments always on the stack. It is used |
| 152 | // to assign vector arguments which belong to the variable portion of the |
| 153 | // parameter list of a variable argument function. |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 154 | def CC_PPC32_SVR4_VarArg : CallingConv<[ |
| 155 | CCDelegateTo<CC_PPC32_SVR4_Common> |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 156 | ]>; |
| 157 | |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 158 | // In contrast to CC_PPC32_SVR4_VarArg, this calling convention first tries to |
| 159 | // put vector arguments in vector registers before putting them on the stack. |
| 160 | def CC_PPC32_SVR4 : CallingConv<[ |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 161 | // The first 12 Vector arguments are passed in AltiVec registers. |
| Hal Finkel | 7811c61 | 2014-03-28 19:58:11 +0000 | [diff] [blame] | 162 | CCIfType<[v16i8, v8i16, v4i32, v4f32], |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 163 | CCAssignToReg<[V2, V3, V4, V5, V6, V7, V8, V9, V10, V11, V12, V13]>>, |
| Hal Finkel | 7811c61 | 2014-03-28 19:58:11 +0000 | [diff] [blame] | 164 | CCIfType<[v2f64, v2i64], |
| 165 | CCAssignToReg<[VSH2, VSH3, VSH4, VSH5, VSH6, VSH7, VSH8, VSH9, |
| 166 | VSH10, VSH11, VSH12, VSH13]>>, |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 167 | |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 168 | CCDelegateTo<CC_PPC32_SVR4_Common> |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 169 | ]>; |
| 170 | |
| 171 | // Helper "calling convention" to handle aggregate by value arguments. |
| 172 | // Aggregate by value arguments are always placed in the local variable space |
| 173 | // of the caller. This calling convention is only used to assign those stack |
| 174 | // offsets in the callers stack frame. |
| 175 | // |
| 176 | // Still, the address of the aggregate copy in the callers stack frame is passed |
| 177 | // in a GPR (or in the parameter list area if all GPRs are allocated) from the |
| 178 | // caller to the callee. The location for the address argument is assigned by |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 179 | // the CC_PPC32_SVR4 calling convention. |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 180 | // |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 181 | // The only purpose of CC_PPC32_SVR4_Custom_Dummy is to skip arguments which are |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 182 | // not passed by value. |
| 183 | |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 184 | def CC_PPC32_SVR4_ByVal : CallingConv<[ |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 185 | CCIfByVal<CCPassByVal<4, 4>>, |
| 186 | |
| Bill Schmidt | ef17c14 | 2013-02-06 17:33:58 +0000 | [diff] [blame] | 187 | CCCustom<"CC_PPC32_SVR4_Custom_Dummy"> |
| Tilmann Scheller | b93960d | 2009-07-03 06:45:56 +0000 | [diff] [blame] | 188 | ]>; |
| 189 | |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 190 | def CSR_Altivec : CalleeSavedRegs<(add V20, V21, V22, V23, V24, V25, V26, V27, |
| 191 | V28, V29, V30, V31)>; |
| 192 | |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 193 | def CSR_Darwin32 : CalleeSavedRegs<(add R13, R14, R15, R16, R17, R18, R19, R20, |
| 194 | R21, R22, R23, R24, R25, R26, R27, R28, |
| 195 | R29, R30, R31, F14, F15, F16, F17, F18, |
| 196 | F19, F20, F21, F22, F23, F24, F25, F26, |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 197 | F27, F28, F29, F30, F31, CR2, CR3, CR4 |
| 198 | )>; |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 199 | |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 200 | def CSR_Darwin32_Altivec : CalleeSavedRegs<(add CSR_Darwin32, CSR_Altivec)>; |
| 201 | |
| 202 | def CSR_SVR432 : CalleeSavedRegs<(add R14, R15, R16, R17, R18, R19, R20, |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 203 | R21, R22, R23, R24, R25, R26, R27, R28, |
| 204 | R29, R30, R31, F14, F15, F16, F17, F18, |
| 205 | F19, F20, F21, F22, F23, F24, F25, F26, |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 206 | F27, F28, F29, F30, F31, CR2, CR3, CR4 |
| 207 | )>; |
| 208 | |
| 209 | def CSR_SVR432_Altivec : CalleeSavedRegs<(add CSR_SVR432, CSR_Altivec)>; |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 210 | |
| 211 | def CSR_Darwin64 : CalleeSavedRegs<(add X13, X14, X15, X16, X17, X18, X19, X20, |
| 212 | X21, X22, X23, X24, X25, X26, X27, X28, |
| 213 | X29, X30, X31, F14, F15, F16, F17, F18, |
| 214 | F19, F20, F21, F22, F23, F24, F25, F26, |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 215 | F27, F28, F29, F30, F31, CR2, CR3, CR4 |
| 216 | )>; |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 217 | |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 218 | def CSR_Darwin64_Altivec : CalleeSavedRegs<(add CSR_Darwin64, CSR_Altivec)>; |
| 219 | |
| 220 | def CSR_SVR464 : CalleeSavedRegs<(add X14, X15, X16, X17, X18, X19, X20, |
| Roman Divacky | ef21be2 | 2012-03-06 16:41:49 +0000 | [diff] [blame] | 221 | X21, X22, X23, X24, X25, X26, X27, X28, |
| 222 | X29, X30, X31, F14, F15, F16, F17, F18, |
| 223 | F19, F20, F21, F22, F23, F24, F25, F26, |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 224 | F27, F28, F29, F30, F31, CR2, CR3, CR4 |
| 225 | )>; |
| Hal Finkel | 756810f | 2013-03-21 21:37:52 +0000 | [diff] [blame] | 226 | |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 227 | def CSR_SVR464_Altivec : CalleeSavedRegs<(add CSR_SVR464, CSR_Altivec)>; |
| 228 | |
| Hal Finkel | e6698d5 | 2015-02-01 15:03:28 +0000 | [diff] [blame^] | 229 | def CSR_SVR464_R2 : CalleeSavedRegs<(add CSR_SVR464, X2)>; |
| 230 | |
| 231 | def CSR_SVR464_R2_Altivec : CalleeSavedRegs<(add CSR_SVR464_Altivec, X2)>; |
| 232 | |
| Hal Finkel | 52727c6 | 2013-07-02 03:39:34 +0000 | [diff] [blame] | 233 | def CSR_NoRegs : CalleeSavedRegs<(add)>; |
| Hal Finkel | 756810f | 2013-03-21 21:37:52 +0000 | [diff] [blame] | 234 | |
| Hal Finkel | 934361a | 2015-01-14 01:07:51 +0000 | [diff] [blame] | 235 | def CSR_64_AllRegs: CalleeSavedRegs<(add X0, (sequence "X%u", 3, 10), |
| 236 | (sequence "X%u", 14, 31), |
| 237 | (sequence "F%u", 0, 31), |
| 238 | (sequence "CR%u", 0, 7))>; |
| 239 | |
| 240 | def CSR_64_AllRegs_Altivec : CalleeSavedRegs<(add CSR_64_AllRegs, |
| 241 | (sequence "V%u", 0, 31))>; |
| 242 | |
| 243 | def CSR_64_AllRegs_VSX : CalleeSavedRegs<(add CSR_64_AllRegs_Altivec, |
| 244 | (sequence "VSL%u", 0, 31), |
| 245 | (sequence "VSH%u", 0, 31))>; |
| 246 | |