Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 1 | //===-- SparcInternals.h ----------------------------------------*- C++ -*-===// |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 3 | // This file defines stuff that is to be private to the Sparc backend, but is |
| 4 | // shared among different portions of the backend. |
| 5 | // |
| 6 | //===----------------------------------------------------------------------===// |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 7 | |
| 8 | #ifndef SPARC_INTERNALS_H |
| 9 | #define SPARC_INTERNALS_H |
| 10 | |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 11 | #include "llvm/Target/TargetMachine.h" |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 12 | #include "llvm/Target/MachineSchedInfo.h" |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 13 | #include "llvm/Target/MachineFrameInfo.h" |
| 14 | #include "llvm/Target/MachineCacheInfo.h" |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 15 | #include "llvm/Target/MachineRegInfo.h" |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 16 | #include "llvm/Type.h" |
Chris Lattner | 46cbff6 | 2001-09-14 16:56:32 +0000 | [diff] [blame] | 17 | #include <sys/types.h> |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 18 | |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 19 | class LiveRange; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 20 | class UltraSparc; |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 21 | class PhyRegAlloc; |
Chris Lattner | 9aa697b | 2002-04-09 05:16:36 +0000 | [diff] [blame] | 22 | class Pass; |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 23 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 24 | // OpCodeMask definitions for the Sparc V9 |
| 25 | // |
| 26 | const OpCodeMask Immed = 0x00002000; // immed or reg operand? |
| 27 | const OpCodeMask Annul = 0x20000000; // annul delay instr? |
| 28 | const OpCodeMask PredictTaken = 0x00080000; // predict branch taken? |
| 29 | |
| 30 | |
| 31 | enum SparcInstrSchedClass { |
| 32 | SPARC_NONE, /* Instructions with no scheduling restrictions */ |
| 33 | SPARC_IEUN, /* Integer class that can use IEU0 or IEU1 */ |
| 34 | SPARC_IEU0, /* Integer class IEU0 */ |
| 35 | SPARC_IEU1, /* Integer class IEU1 */ |
| 36 | SPARC_FPM, /* FP Multiply or Divide instructions */ |
| 37 | SPARC_FPA, /* All other FP instructions */ |
| 38 | SPARC_CTI, /* Control-transfer instructions */ |
| 39 | SPARC_LD, /* Load instructions */ |
| 40 | SPARC_ST, /* Store instructions */ |
| 41 | SPARC_SINGLE, /* Instructions that must issue by themselves */ |
| 42 | |
| 43 | SPARC_INV, /* This should stay at the end for the next value */ |
| 44 | SPARC_NUM_SCHED_CLASSES = SPARC_INV |
| 45 | }; |
| 46 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 47 | |
| 48 | //--------------------------------------------------------------------------- |
| 49 | // enum SparcMachineOpCode. |
| 50 | // const MachineInstrDescriptor SparcMachineInstrDesc[] |
| 51 | // |
| 52 | // Purpose: |
| 53 | // Description of UltraSparc machine instructions. |
| 54 | // |
| 55 | //--------------------------------------------------------------------------- |
| 56 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 57 | enum SparcMachineOpCode { |
Chris Lattner | 9a3d63b | 2001-09-19 15:56:23 +0000 | [diff] [blame] | 58 | #define I(ENUM, OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE, \ |
| 59 | NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS) \ |
| 60 | ENUM, |
| 61 | #include "SparcInstr.def" |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 62 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 63 | // End-of-array marker |
| 64 | INVALID_OPCODE, |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 65 | NUM_REAL_OPCODES = PHI, // number of valid opcodes |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 66 | NUM_TOTAL_OPCODES = INVALID_OPCODE |
| 67 | }; |
| 68 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 9a3d63b | 2001-09-19 15:56:23 +0000 | [diff] [blame] | 70 | // Array of machine instruction descriptions... |
| 71 | extern const MachineInstrDescriptor SparcMachineInstrDesc[]; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 72 | |
| 73 | |
| 74 | //--------------------------------------------------------------------------- |
| 75 | // class UltraSparcInstrInfo |
| 76 | // |
| 77 | // Purpose: |
| 78 | // Information about individual instructions. |
| 79 | // Most information is stored in the SparcMachineInstrDesc array above. |
| 80 | // Other information is computed on demand, and most such functions |
| 81 | // default to member functions in base class MachineInstrInfo. |
| 82 | //--------------------------------------------------------------------------- |
| 83 | |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 84 | struct UltraSparcInstrInfo : public MachineInstrInfo { |
| 85 | UltraSparcInstrInfo(const TargetMachine& tgt); |
Vikram S. Adve | 4c5fe2d | 2001-11-14 18:48:36 +0000 | [diff] [blame] | 86 | |
| 87 | // |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 88 | // All immediate constants are in position 1 except the |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 89 | // store instructions and SETxx. |
Vikram S. Adve | 4c5fe2d | 2001-11-14 18:48:36 +0000 | [diff] [blame] | 90 | // |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 91 | virtual int getImmedConstantPos(MachineOpCode opCode) const { |
Vikram S. Adve | 4c5fe2d | 2001-11-14 18:48:36 +0000 | [diff] [blame] | 92 | bool ignore; |
| 93 | if (this->maxImmedConstant(opCode, ignore) != 0) |
| 94 | { |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 95 | assert(! this->isStore((MachineOpCode) STB - 1)); // 1st store opcode |
| 96 | assert(! this->isStore((MachineOpCode) STXFSR+1));// last store opcode |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 97 | if (opCode==SETSW || opCode==SETUW || opCode==SETX || opCode==SETHI) |
| 98 | return 0; |
| 99 | if (opCode >= STB && opCode <= STXFSR) |
| 100 | return 2; |
| 101 | return 1; |
Vikram S. Adve | 4c5fe2d | 2001-11-14 18:48:36 +0000 | [diff] [blame] | 102 | } |
| 103 | else |
| 104 | return -1; |
| 105 | } |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 106 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 107 | virtual bool hasResultInterlock (MachineOpCode opCode) const |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 108 | { |
| 109 | // All UltraSPARC instructions have interlocks (note that delay slots |
| 110 | // are not considered here). |
| 111 | // However, instructions that use the result of an FCMP produce a |
| 112 | // 9-cycle stall if they are issued less than 3 cycles after the FCMP. |
| 113 | // Force the compiler to insert a software interlock (i.e., gap of |
| 114 | // 2 other groups, including NOPs if necessary). |
| 115 | return (opCode == FCMPS || opCode == FCMPD || opCode == FCMPQ); |
| 116 | } |
| 117 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 118 | //------------------------------------------------------------------------- |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 119 | // Queries about representation of LLVM quantities (e.g., constants) |
| 120 | //------------------------------------------------------------------------- |
| 121 | |
| 122 | virtual bool ConstantMayNotFitInImmedField(const Constant* CV, |
| 123 | const Instruction* I) const; |
| 124 | |
| 125 | //------------------------------------------------------------------------- |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 126 | // Code generation support for creating individual machine instructions |
| 127 | //------------------------------------------------------------------------- |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 128 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 129 | // Create an instruction sequence to put the constant `val' into |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 130 | // the virtual register `dest'. `val' may be a Constant or a |
| 131 | // GlobalValue, viz., the constant address of a global variable or function. |
| 132 | // The generated instructions are returned in `mvec'. |
| 133 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
| 134 | // Any stack space required is allocated via mcff. |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 135 | // |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 136 | virtual void CreateCodeToLoadConst(const TargetMachine& target, |
| 137 | Function* F, |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 138 | Value* val, |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 139 | Instruction* dest, |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 140 | std::vector<MachineInstr*>& mvec, |
| 141 | MachineCodeForInstruction& mcfi) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 142 | |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 143 | // Create an instruction sequence to copy an integer value `val' |
| 144 | // to a floating point value `dest' by copying to memory and back. |
| 145 | // val must be an integral type. dest must be a Float or Double. |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 146 | // The generated instructions are returned in `mvec'. |
| 147 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
| 148 | // Any stack space required is allocated via mcff. |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 149 | // |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 150 | virtual void CreateCodeToCopyIntToFloat(const TargetMachine& target, |
| 151 | Function* F, |
| 152 | Value* val, |
| 153 | Instruction* dest, |
| 154 | std::vector<MachineInstr*>& mvec, |
| 155 | MachineCodeForInstruction& mcfi) const; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 156 | |
| 157 | // Similarly, create an instruction sequence to copy an FP value |
| 158 | // `val' to an integer value `dest' by copying to memory and back. |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 159 | // The generated instructions are returned in `mvec'. |
| 160 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
| 161 | // Any stack space required is allocated via mcff. |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 162 | // |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 163 | virtual void CreateCodeToCopyFloatToInt(const TargetMachine& target, |
| 164 | Function* F, |
| 165 | Value* val, |
| 166 | Instruction* dest, |
| 167 | std::vector<MachineInstr*>& mvec, |
| 168 | MachineCodeForInstruction& mcfi) const; |
| 169 | |
| 170 | // Create instruction(s) to copy src to dest, for arbitrary types |
| 171 | // The generated instructions are returned in `mvec'. |
| 172 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
| 173 | // Any stack space required is allocated via mcff. |
| 174 | // |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 175 | virtual void CreateCopyInstructionsByType(const TargetMachine& target, |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 176 | Function* F, |
| 177 | Value* src, |
| 178 | Instruction* dest, |
| 179 | std::vector<MachineInstr*>& mvec, |
| 180 | MachineCodeForInstruction& mcfi) const; |
| 181 | |
| 182 | // Create instruction sequence to produce a sign-extended register value |
| 183 | // from an arbitrary sized value (sized in bits, not bytes). |
Vikram S. Adve | f36f06b | 2002-09-05 18:34:31 +0000 | [diff] [blame] | 184 | // The generated instructions are appended to `mvec'. |
| 185 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 186 | // Any stack space required is allocated via mcff. |
| 187 | // |
| 188 | virtual void CreateSignExtensionInstructions(const TargetMachine& target, |
| 189 | Function* F, |
Vikram S. Adve | f36f06b | 2002-09-05 18:34:31 +0000 | [diff] [blame] | 190 | Value* srcVal, |
| 191 | unsigned int srcSizeInBits, |
| 192 | Value* dest, |
| 193 | std::vector<MachineInstr*>& mvec, |
| 194 | MachineCodeForInstruction& mcfi) const; |
| 195 | |
| 196 | // Create instruction sequence to produce a zero-extended register value |
| 197 | // from an arbitrary sized value (sized in bits, not bytes). |
| 198 | // The generated instructions are appended to `mvec'. |
| 199 | // Any temp. registers (TmpInstruction) created are recorded in mcfi. |
| 200 | // Any stack space required is allocated via mcff. |
| 201 | // |
| 202 | virtual void CreateZeroExtensionInstructions(const TargetMachine& target, |
| 203 | Function* F, |
| 204 | Value* srcVal, |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 205 | unsigned int srcSizeInBits, |
| 206 | Value* dest, |
| 207 | std::vector<MachineInstr*>& mvec, |
| 208 | MachineCodeForInstruction& mcfi) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 209 | }; |
| 210 | |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 211 | |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 212 | //---------------------------------------------------------------------------- |
| 213 | // class UltraSparcRegInfo |
| 214 | // |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 215 | // This class implements the virtual class MachineRegInfo for Sparc. |
| 216 | // |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 217 | //---------------------------------------------------------------------------- |
| 218 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 219 | class UltraSparcRegInfo : public MachineRegInfo { |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 220 | // The actual register classes in the Sparc |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 221 | // |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 222 | enum RegClassIDs { |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 223 | IntRegClassID, // Integer |
| 224 | FloatRegClassID, // Float (both single/double) |
| 225 | IntCCRegClassID, // Int Condition Code |
| 226 | FloatCCRegClassID // Float Condition code |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 227 | }; |
| 228 | |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 229 | |
| 230 | // Type of registers available in Sparc. There can be several reg types |
| 231 | // in the same class. For instace, the float reg class has Single/Double |
| 232 | // types |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 233 | // |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 234 | enum RegTypes { |
| 235 | IntRegType, |
| 236 | FPSingleRegType, |
| 237 | FPDoubleRegType, |
| 238 | IntCCRegType, |
| 239 | FloatCCRegType |
| 240 | }; |
| 241 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 242 | // **** WARNING: If the above enum order is changed, also modify |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 243 | // getRegisterClassOfValue method below since it assumes this particular |
| 244 | // order for efficiency. |
| 245 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 246 | |
| 247 | // reverse pointer to get info about the ultra sparc machine |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 248 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 249 | const UltraSparc *const UltraSparcInfo; |
| 250 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 251 | // Number of registers used for passing int args (usually 6: %o0 - %o5) |
| 252 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 253 | unsigned const NumOfIntArgRegs; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 254 | |
| 255 | // Number of registers used for passing float args (usually 32: %f0 - %f31) |
| 256 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 257 | unsigned const NumOfFloatArgRegs; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 258 | |
| 259 | // An out of bound register number that can be used to initialize register |
| 260 | // numbers. Useful for error detection. |
| 261 | // |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 262 | int const InvalidRegNum; |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 263 | |
| 264 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 265 | // ======================== Private Methods ============================= |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 266 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 267 | // The following methods are used to color special live ranges (e.g. |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 268 | // function args and return values etc.) with specific hardware registers |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 269 | // as required. See SparcRegInfo.cpp for the implementation. |
| 270 | // |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 271 | void suggestReg4RetAddr(MachineInstr *RetMI, |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 272 | LiveRangeInfo &LRI) const; |
Ruchira Sasanka | cc3ccac | 2001-10-15 16:25:28 +0000 | [diff] [blame] | 273 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 274 | void suggestReg4CallAddr(MachineInstr *CallMI, LiveRangeInfo &LRI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 275 | std::vector<RegClass *> RCList) const; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 276 | |
| 277 | void InitializeOutgoingArg(MachineInstr* CallMI, AddedInstrns *CallAI, |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 278 | PhyRegAlloc &PRA, LiveRange* LR, |
| 279 | unsigned regType, unsigned RegClassID, |
| 280 | int UniArgReg, unsigned int argNo, |
| 281 | std::vector<MachineInstr *>& AddedInstrnsBefore) |
| 282 | const; |
| 283 | |
| 284 | // The following 4 methods are used to find the RegType (see enum above) |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 285 | // for a reg class and a given primitive type, a LiveRange, a Value, |
| 286 | // or a particular machine register. |
| 287 | // The fifth function gives the reg class of the given RegType. |
| 288 | // |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 289 | int getRegType(unsigned regClassID, const Type* type) const; |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 290 | int getRegType(const LiveRange *LR) const; |
| 291 | int getRegType(const Value *Val) const; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 292 | int getRegType(int unifiedRegNum) const; |
Ruchira Sasanka | 3839e6e | 2001-11-03 19:59:59 +0000 | [diff] [blame] | 293 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 294 | // Used to generate a copy instruction based on the register class of |
| 295 | // value. |
| 296 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 297 | MachineInstr *cpValue2RegMI(Value *Val, unsigned DestReg, |
| 298 | int RegType) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 299 | |
| 300 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 301 | // The following 2 methods are used to order the instructions addeed by |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 302 | // the register allocator in association with function calling. See |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 303 | // SparcRegInfo.cpp for more details |
| 304 | // |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 305 | void moveInst2OrdVec(std::vector<MachineInstr *> &OrdVec, |
| 306 | MachineInstr *UnordInst, |
| 307 | PhyRegAlloc &PRA) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 308 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 309 | void OrderAddedInstrns(std::vector<MachineInstr *> &UnordVec, |
| 310 | std::vector<MachineInstr *> &OrdVec, |
| 311 | PhyRegAlloc &PRA) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 312 | |
| 313 | |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 314 | // Compute which register can be used for an argument, if any |
| 315 | // |
| 316 | int regNumForIntArg(bool inCallee, bool isVarArgsCall, |
| 317 | unsigned argNo, unsigned intArgNo, unsigned fpArgNo, |
| 318 | unsigned& regClassId) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 319 | |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 320 | int regNumForFPArg(unsigned RegType, bool inCallee, bool isVarArgsCall, |
| 321 | unsigned argNo, unsigned intArgNo, unsigned fpArgNo, |
| 322 | unsigned& regClassId) const; |
| 323 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 324 | public: |
| 325 | UltraSparcRegInfo(const UltraSparc &tgt); |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 326 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 327 | // To get complete machine information structure using the machine register |
| 328 | // information |
| 329 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 330 | inline const UltraSparc &getUltraSparcInfo() const { |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 331 | return *UltraSparcInfo; |
| 332 | } |
| 333 | |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 334 | // To find the register class used for a specified Type |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 335 | // |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 336 | unsigned getRegClassIDOfType(const Type *type, |
| 337 | bool isCCReg = false) const; |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 338 | |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 339 | // To find the register class of a Value |
| 340 | // |
| 341 | inline unsigned getRegClassIDOfValue(const Value *Val, |
| 342 | bool isCCReg = false) const { |
| 343 | return getRegClassIDOfType(Val->getType(), isCCReg); |
| 344 | } |
| 345 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 346 | // To find the register class to which a specified register belongs |
| 347 | // |
| 348 | unsigned getRegClassIDOfReg(int unifiedRegNum) const; |
| 349 | unsigned getRegClassIDOfRegType(int regType) const; |
Vikram S. Adve | dd55899 | 2002-03-18 03:02:42 +0000 | [diff] [blame] | 350 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 351 | // getZeroRegNum - returns the register that contains always zero this is the |
| 352 | // unified register number |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 353 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 354 | virtual int getZeroRegNum() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 355 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 356 | // getCallAddressReg - returns the reg used for pushing the address when a |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 357 | // function is called. This can be used for other purposes between calls |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 358 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 359 | unsigned getCallAddressReg() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 360 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 361 | // Returns the register containing the return address. |
| 362 | // It should be made sure that this register contains the return |
| 363 | // value when a return instruction is reached. |
| 364 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 365 | unsigned getReturnAddressReg() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 366 | |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 367 | // Number of registers used for passing int args (usually 6: %o0 - %o5) |
| 368 | // and float args (usually 32: %f0 - %f31) |
| 369 | // |
| 370 | unsigned const GetNumOfIntArgRegs() const { return NumOfIntArgRegs; } |
| 371 | unsigned const GetNumOfFloatArgRegs() const { return NumOfFloatArgRegs; } |
| 372 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 373 | // The following methods are used to color special live ranges (e.g. |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 374 | // function args and return values etc.) with specific hardware registers |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 375 | // as required. See SparcRegInfo.cpp for the implementation for Sparc. |
| 376 | // |
Chris Lattner | b7653df | 2002-04-08 22:03:57 +0000 | [diff] [blame] | 377 | void suggestRegs4MethodArgs(const Function *Meth, |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 378 | LiveRangeInfo& LRI) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 379 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 380 | void suggestRegs4CallArgs(MachineInstr *CallMI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 381 | LiveRangeInfo& LRI, |
| 382 | std::vector<RegClass *> RCL) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 383 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 384 | void suggestReg4RetValue(MachineInstr *RetMI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 385 | LiveRangeInfo& LRI) const; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 386 | |
Chris Lattner | b7653df | 2002-04-08 22:03:57 +0000 | [diff] [blame] | 387 | void colorMethodArgs(const Function *Meth, LiveRangeInfo &LRI, |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 388 | AddedInstrns *FirstAI) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 389 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 390 | void colorCallArgs(MachineInstr *CallMI, LiveRangeInfo &LRI, |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 391 | AddedInstrns *CallAI, PhyRegAlloc &PRA, |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 392 | const BasicBlock *BB) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 393 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 394 | void colorRetValue(MachineInstr *RetI, LiveRangeInfo& LRI, |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 395 | AddedInstrns *RetAI) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 396 | |
| 397 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 398 | // method used for printing a register for debugging purposes |
| 399 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 400 | static void printReg(const LiveRange *LR); |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 401 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 402 | // Each register class has a seperate space for register IDs. To convert |
| 403 | // a regId in a register class to a common Id, or vice versa, |
| 404 | // we use the folloing methods. |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 405 | // |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 406 | // This method provides a unique number for each register |
| 407 | inline int getUnifiedRegNum(unsigned regClassID, int reg) const { |
| 408 | |
| 409 | if (regClassID == IntRegClassID) { |
| 410 | assert(reg < 32 && "Invalid reg. number"); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 411 | return reg; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 412 | } |
| 413 | else if (regClassID == FloatRegClassID) { |
| 414 | assert(reg < 64 && "Invalid reg. number"); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 415 | return reg + 32; // we have 32 int regs |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 416 | } |
| 417 | else if (regClassID == FloatCCRegClassID) { |
| 418 | assert(reg < 4 && "Invalid reg. number"); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 419 | return reg + 32 + 64; // 32 int, 64 float |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 420 | } |
| 421 | else if (regClassID == IntCCRegClassID ) { |
| 422 | assert(reg == 0 && "Invalid reg. number"); |
| 423 | return reg + 4+ 32 + 64; // only one int CC reg |
| 424 | } |
| 425 | else if (reg==InvalidRegNum) { |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 426 | return InvalidRegNum; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 427 | } |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 428 | else |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 429 | assert(0 && "Invalid register class"); |
Chris Lattner | 6dad506 | 2001-11-07 13:49:12 +0000 | [diff] [blame] | 430 | return 0; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 431 | } |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 432 | |
| 433 | // This method converts the unified number to the number in its class, |
| 434 | // and returns the class ID in regClassID. |
| 435 | inline int getClassRegNum(int ureg, unsigned& regClassID) const { |
| 436 | if (ureg < 32) { regClassID = IntRegClassID; return ureg; } |
| 437 | else if (ureg < 32+64) { regClassID = FloatRegClassID; return ureg-32; } |
| 438 | else if (ureg < 4 +96) { regClassID = FloatCCRegClassID; return ureg-96; } |
| 439 | else if (ureg < 1 +100) { regClassID = IntCCRegClassID; return ureg-100;} |
| 440 | else if (ureg == InvalidRegNum) { return InvalidRegNum; } |
| 441 | else { assert(0 && "Invalid unified register number"); } |
Chris Lattner | b82d97e | 2002-07-25 06:08:32 +0000 | [diff] [blame] | 442 | return 0; |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | // Returns the assembly-language name of the specified machine register. |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 446 | // |
Chris Lattner | 9568568 | 2002-08-12 21:25:05 +0000 | [diff] [blame] | 447 | virtual const char * const getUnifiedRegName(int reg) const; |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 448 | |
| 449 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 450 | // returns the # of bytes of stack space allocated for each register |
| 451 | // type. For Sparc, currently we allocate 8 bytes on stack for all |
| 452 | // register types. We can optimize this later if necessary to save stack |
| 453 | // space (However, should make sure that stack alignment is correct) |
| 454 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 455 | inline int getSpilledRegSize(int RegType) const { |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 456 | return 8; |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 459 | |
Vikram S. Adve | a44c6c0 | 2002-03-31 19:04:50 +0000 | [diff] [blame] | 460 | // To obtain the return value and the indirect call address (if any) |
| 461 | // contained in a CALL machine instruction |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 462 | // |
Ruchira Sasanka | b3b6f53 | 2001-10-21 16:43:41 +0000 | [diff] [blame] | 463 | const Value * getCallInstRetVal(const MachineInstr *CallMI) const; |
Vikram S. Adve | a44c6c0 | 2002-03-31 19:04:50 +0000 | [diff] [blame] | 464 | const Value * getCallInstIndirectAddrVal(const MachineInstr *CallMI) const; |
Ruchira Sasanka | b3b6f53 | 2001-10-21 16:43:41 +0000 | [diff] [blame] | 465 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 466 | // The following methods are used to generate "copy" machine instructions |
| 467 | // for an architecture. |
| 468 | // |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 469 | // The function regTypeNeedsScratchReg() can be used to check whether a |
| 470 | // scratch register is needed to copy a register of type `regType' to |
| 471 | // or from memory. If so, such a scratch register can be provided by |
| 472 | // the caller (e.g., if it knows which regsiters are free); otherwise |
| 473 | // an arbitrary one will be chosen and spilled by the copy instructions. |
| 474 | // |
| 475 | bool regTypeNeedsScratchReg(int RegType, |
| 476 | int& scratchRegClassId) const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 477 | |
Vikram S. Adve | fe09fb2 | 2002-07-08 23:34:10 +0000 | [diff] [blame] | 478 | void cpReg2RegMI(std::vector<MachineInstr*>& mvec, |
| 479 | unsigned SrcReg, unsigned DestReg, |
| 480 | int RegType) const; |
| 481 | |
| 482 | void cpReg2MemMI(std::vector<MachineInstr*>& mvec, |
| 483 | unsigned SrcReg, unsigned DestPtrReg, |
| 484 | int Offset, int RegType, int scratchReg = -1) const; |
| 485 | |
| 486 | void cpMem2RegMI(std::vector<MachineInstr*>& mvec, |
| 487 | unsigned SrcPtrReg, int Offset, unsigned DestReg, |
| 488 | int RegType, int scratchReg = -1) const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 489 | |
Vikram S. Adve | 242a808 | 2002-05-19 15:25:51 +0000 | [diff] [blame] | 490 | void cpValue2Value(Value *Src, Value *Dest, |
Anand Shukla | cfb22d3 | 2002-06-25 20:55:50 +0000 | [diff] [blame] | 491 | std::vector<MachineInstr*>& mvec) const; |
Ruchira Sasanka | ef1b0cb | 2001-11-03 17:13:27 +0000 | [diff] [blame] | 492 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 493 | // To see whether a register is a volatile (i.e., whehter it must be |
| 494 | // preserved acorss calls) |
| 495 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 496 | inline bool isRegVolatile(int RegClassID, int Reg) const { |
| 497 | return MachineRegClassArr[RegClassID]->isRegVolatile(Reg); |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 501 | virtual unsigned getFramePointer() const; |
| 502 | virtual unsigned getStackPointer() const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 503 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 504 | virtual int getInvalidRegNum() const { |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 505 | return InvalidRegNum; |
| 506 | } |
| 507 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 508 | // This method inserts the caller saving code for call instructions |
| 509 | // |
Anand Shukla | 24787fa | 2002-07-11 00:16:28 +0000 | [diff] [blame] | 510 | void insertCallerSavingCode(std::vector<MachineInstr*>& instrnsBefore, |
| 511 | std::vector<MachineInstr*>& instrnsAfter, |
Vikram S. Adve | 6a49a1e | 2002-07-10 21:42:42 +0000 | [diff] [blame] | 512 | MachineInstr *MInst, |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 513 | const BasicBlock *BB, PhyRegAlloc &PRA ) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 514 | }; |
| 515 | |
| 516 | |
| 517 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 518 | |
| 519 | //--------------------------------------------------------------------------- |
| 520 | // class UltraSparcSchedInfo |
| 521 | // |
| 522 | // Purpose: |
| 523 | // Interface to instruction scheduling information for UltraSPARC. |
| 524 | // The parameter values above are based on UltraSPARC IIi. |
| 525 | //--------------------------------------------------------------------------- |
| 526 | |
| 527 | |
| 528 | class UltraSparcSchedInfo: public MachineSchedInfo { |
| 529 | public: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 530 | UltraSparcSchedInfo(const TargetMachine &tgt); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 531 | protected: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 532 | virtual void initializeResources(); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 533 | }; |
| 534 | |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 535 | |
| 536 | //--------------------------------------------------------------------------- |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 537 | // class UltraSparcFrameInfo |
| 538 | // |
| 539 | // Purpose: |
| 540 | // Interface to stack frame layout info for the UltraSPARC. |
Vikram S. Adve | 00521d7 | 2001-11-12 23:26:35 +0000 | [diff] [blame] | 541 | // Starting offsets for each area of the stack frame are aligned at |
| 542 | // a multiple of getStackFrameSizeAlignment(). |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 543 | //--------------------------------------------------------------------------- |
| 544 | |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 545 | class UltraSparcFrameInfo: public MachineFrameInfo { |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 546 | public: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 547 | UltraSparcFrameInfo(const TargetMachine &tgt) : MachineFrameInfo(tgt) {} |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 548 | |
| 549 | public: |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 550 | // These methods provide constant parameters of the frame layout. |
| 551 | // |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 552 | int getStackFrameSizeAlignment() const { return StackFrameSizeAlignment;} |
| 553 | int getMinStackFrameSize() const { return MinStackFrameSize; } |
| 554 | int getNumFixedOutgoingArgs() const { return NumFixedOutgoingArgs; } |
| 555 | int getSizeOfEachArgOnStack() const { return SizeOfEachArgOnStack; } |
| 556 | bool argsOnStackHaveFixedSize() const { return true; } |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 557 | |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 558 | // This method adjusts a stack offset to meet alignment rules of target. |
| 559 | // The fixed OFFSET (0x7ff) must be subtracted and the result aligned. |
| 560 | virtual int adjustAlignment (int unalignedOffset, |
| 561 | bool growUp, |
| 562 | unsigned int align) const { |
| 563 | return unalignedOffset + (growUp? +1:-1)*((unalignedOffset-OFFSET) % align); |
| 564 | } |
| 565 | |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 566 | // These methods compute offsets using the frame contents for a |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 567 | // particular function. The frame contents are obtained from the |
| 568 | // MachineCodeInfoForMethod object for the given function. |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 569 | // |
| 570 | int getFirstIncomingArgOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 571 | bool& growUp) const |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 572 | { |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 573 | growUp = true; // arguments area grows upwards |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 574 | return FirstIncomingArgOffsetFromFP; |
| 575 | } |
| 576 | int getFirstOutgoingArgOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 577 | bool& growUp) const |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 578 | { |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 579 | growUp = true; // arguments area grows upwards |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 580 | return FirstOutgoingArgOffsetFromSP; |
| 581 | } |
| 582 | int getFirstOptionalOutgoingArgOffset(MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 583 | bool& growUp)const |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 584 | { |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 585 | growUp = true; // arguments area grows upwards |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 586 | return FirstOptionalOutgoingArgOffsetFromSP; |
| 587 | } |
| 588 | |
| 589 | int getFirstAutomaticVarOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 590 | bool& growUp) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 591 | int getRegSpillAreaOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 592 | bool& growUp) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 593 | int getTmpAreaOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 594 | bool& growUp) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 595 | int getDynamicAreaOffset (MachineCodeForMethod& mcInfo, |
Vikram S. Adve | 6d78311 | 2002-04-25 04:40:24 +0000 | [diff] [blame] | 596 | bool& growUp) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 597 | |
| 598 | // |
| 599 | // These methods specify the base register used for each stack area |
| 600 | // (generally FP or SP) |
| 601 | // |
| 602 | virtual int getIncomingArgBaseRegNum() const { |
| 603 | return (int) target.getRegInfo().getFramePointer(); |
| 604 | } |
| 605 | virtual int getOutgoingArgBaseRegNum() const { |
| 606 | return (int) target.getRegInfo().getStackPointer(); |
| 607 | } |
| 608 | virtual int getOptionalOutgoingArgBaseRegNum() const { |
| 609 | return (int) target.getRegInfo().getStackPointer(); |
| 610 | } |
| 611 | virtual int getAutomaticVarBaseRegNum() const { |
| 612 | return (int) target.getRegInfo().getFramePointer(); |
| 613 | } |
| 614 | virtual int getRegSpillAreaBaseRegNum() const { |
| 615 | return (int) target.getRegInfo().getFramePointer(); |
| 616 | } |
| 617 | virtual int getDynamicAreaBaseRegNum() const { |
| 618 | return (int) target.getRegInfo().getStackPointer(); |
| 619 | } |
| 620 | |
| 621 | private: |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 622 | /*---------------------------------------------------------------------- |
| 623 | This diagram shows the stack frame layout used by llc on Sparc V9. |
| 624 | Note that only the location of automatic variables, spill area, |
| 625 | temporary storage, and dynamically allocated stack area are chosen |
| 626 | by us. The rest conform to the Sparc V9 ABI. |
| 627 | All stack addresses are offset by OFFSET = 0x7ff (2047). |
| 628 | |
| 629 | Alignment assumpteions and other invariants: |
| 630 | (1) %sp+OFFSET and %fp+OFFSET are always aligned on 16-byte boundary |
| 631 | (2) Variables in automatic, spill, temporary, or dynamic regions |
| 632 | are aligned according to their size as in all memory accesses. |
| 633 | (3) Everything below the dynamically allocated stack area is only used |
| 634 | during a call to another function, so it is never needed when |
| 635 | the current function is active. This is why space can be allocated |
| 636 | dynamically by incrementing %sp any time within the function. |
| 637 | |
| 638 | STACK FRAME LAYOUT: |
| 639 | |
| 640 | ... |
| 641 | %fp+OFFSET+176 Optional extra incoming arguments# 1..N |
| 642 | %fp+OFFSET+168 Incoming argument #6 |
| 643 | ... ... |
| 644 | %fp+OFFSET+128 Incoming argument #1 |
| 645 | ... ... |
| 646 | ---%fp+OFFSET-0--------Bottom of caller's stack frame-------------------- |
| 647 | %fp+OFFSET-8 Automatic variables <-- ****TOP OF STACK FRAME**** |
| 648 | Spill area |
| 649 | Temporary storage |
| 650 | ... |
| 651 | |
| 652 | %sp+OFFSET+176+8N Bottom of dynamically allocated stack area |
| 653 | %sp+OFFSET+168+8N Optional extra outgoing argument# N |
| 654 | ... ... |
| 655 | %sp+OFFSET+176 Optional extra outgoing argument# 1 |
| 656 | %sp+OFFSET+168 Outgoing argument #6 |
| 657 | ... ... |
| 658 | %sp+OFFSET+128 Outgoing argument #1 |
| 659 | %sp+OFFSET+120 Save area for %i7 |
| 660 | ... ... |
| 661 | %sp+OFFSET+0 Save area for %l0 <-- ****BOTTOM OF STACK FRAME**** |
| 662 | |
| 663 | *----------------------------------------------------------------------*/ |
| 664 | |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 665 | // All stack addresses must be offset by 0x7ff (2047) on Sparc V9. |
| 666 | static const int OFFSET = (int) 0x7ff; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 667 | static const int StackFrameSizeAlignment = 16; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 668 | static const int MinStackFrameSize = 176; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 669 | static const int NumFixedOutgoingArgs = 6; |
| 670 | static const int SizeOfEachArgOnStack = 8; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 671 | static const int FirstIncomingArgOffsetFromFP = 128 + OFFSET; |
| 672 | static const int FirstOptionalIncomingArgOffsetFromFP = 176 + OFFSET; |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 673 | static const int StaticAreaOffsetFromFP = 0 + OFFSET; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 674 | static const int FirstOutgoingArgOffsetFromSP = 128 + OFFSET; |
| 675 | static const int FirstOptionalOutgoingArgOffsetFromSP = 176 + OFFSET; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 676 | }; |
| 677 | |
| 678 | |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 679 | //--------------------------------------------------------------------------- |
| 680 | // class UltraSparcCacheInfo |
| 681 | // |
| 682 | // Purpose: |
| 683 | // Interface to cache parameters for the UltraSPARC. |
| 684 | // Just use defaults for now. |
| 685 | //--------------------------------------------------------------------------- |
| 686 | |
| 687 | class UltraSparcCacheInfo: public MachineCacheInfo { |
| 688 | public: |
Chris Lattner | 7327d7e | 2002-02-04 00:04:35 +0000 | [diff] [blame] | 689 | UltraSparcCacheInfo(const TargetMachine &T) : MachineCacheInfo(T) {} |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 690 | }; |
| 691 | |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 692 | |
| 693 | //--------------------------------------------------------------------------- |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 694 | // class UltraSparcMachine |
| 695 | // |
| 696 | // Purpose: |
| 697 | // Primary interface to machine description for the UltraSPARC. |
| 698 | // Primarily just initializes machine-dependent parameters in |
| 699 | // class TargetMachine, and creates machine-dependent subclasses |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 700 | // for classes such as InstrInfo, SchedInfo and RegInfo. |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 701 | //--------------------------------------------------------------------------- |
| 702 | |
| 703 | class UltraSparc : public TargetMachine { |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 704 | private: |
| 705 | UltraSparcInstrInfo instrInfo; |
| 706 | UltraSparcSchedInfo schedInfo; |
| 707 | UltraSparcRegInfo regInfo; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 708 | UltraSparcFrameInfo frameInfo; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 709 | UltraSparcCacheInfo cacheInfo; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 710 | public: |
| 711 | UltraSparc(); |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 712 | |
Chris Lattner | 32f600a | 2001-09-19 13:47:12 +0000 | [diff] [blame] | 713 | virtual const MachineInstrInfo &getInstrInfo() const { return instrInfo; } |
| 714 | virtual const MachineSchedInfo &getSchedInfo() const { return schedInfo; } |
| 715 | virtual const MachineRegInfo &getRegInfo() const { return regInfo; } |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 716 | virtual const MachineFrameInfo &getFrameInfo() const { return frameInfo; } |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 717 | virtual const MachineCacheInfo &getCacheInfo() const { return cacheInfo; } |
Chris Lattner | 32f600a | 2001-09-19 13:47:12 +0000 | [diff] [blame] | 718 | |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 719 | // getPrologEpilogCodeInserter - Inserts prolog/epilog code. |
| 720 | virtual Pass* getPrologEpilogInsertionPass(); |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 721 | |
Vikram S. Adve | e1f7280 | 2002-09-16 15:39:26 +0000 | [diff] [blame] | 722 | // getFunctionAsmPrinterPass - Writes out machine code for a single function |
| 723 | virtual Pass* getFunctionAsmPrinterPass(std::ostream &Out); |
| 724 | |
| 725 | // getModuleAsmPrinterPass - Writes generated machine code to assembly file. |
| 726 | virtual Pass* getModuleAsmPrinterPass(std::ostream &Out); |
| 727 | |
| 728 | // getEmitBytecodeToAsmPass - Emits final LLVM bytecode to assembly file. |
| 729 | virtual Pass* getEmitBytecodeToAsmPass(std::ostream &Out); |
Chris Lattner | 6edfcc5 | 2002-02-03 07:51:17 +0000 | [diff] [blame] | 730 | }; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 731 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 732 | #endif |