Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 1 | // $Id$ -*- C++ -*-- |
| 2 | //*************************************************************************** |
| 3 | // File: |
| 4 | // SparcInternals.h |
| 5 | // |
| 6 | // Purpose: |
| 7 | // This file defines stuff that is to be private to the Sparc |
| 8 | // backend, but is shared among different portions of the backend. |
| 9 | //**************************************************************************/ |
| 10 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 11 | |
| 12 | #ifndef SPARC_INTERNALS_H |
| 13 | #define SPARC_INTERNALS_H |
| 14 | |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 15 | #include "llvm/Target/TargetMachine.h" |
| 16 | #include "llvm/Target/MachineInstrInfo.h" |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 17 | #include "llvm/Target/MachineSchedInfo.h" |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 18 | #include "llvm/Target/MachineFrameInfo.h" |
| 19 | #include "llvm/Target/MachineCacheInfo.h" |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 20 | #include "llvm/Target/MachineRegInfo.h" |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 21 | #include "llvm/Type.h" |
Chris Lattner | 46cbff6 | 2001-09-14 16:56:32 +0000 | [diff] [blame] | 22 | #include <sys/types.h> |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 23 | |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 24 | class LiveRange; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 25 | class UltraSparc; |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 26 | class PhyRegAlloc; |
| 27 | |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 28 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 29 | // OpCodeMask definitions for the Sparc V9 |
| 30 | // |
| 31 | const OpCodeMask Immed = 0x00002000; // immed or reg operand? |
| 32 | const OpCodeMask Annul = 0x20000000; // annul delay instr? |
| 33 | const OpCodeMask PredictTaken = 0x00080000; // predict branch taken? |
| 34 | |
| 35 | |
| 36 | enum SparcInstrSchedClass { |
| 37 | SPARC_NONE, /* Instructions with no scheduling restrictions */ |
| 38 | SPARC_IEUN, /* Integer class that can use IEU0 or IEU1 */ |
| 39 | SPARC_IEU0, /* Integer class IEU0 */ |
| 40 | SPARC_IEU1, /* Integer class IEU1 */ |
| 41 | SPARC_FPM, /* FP Multiply or Divide instructions */ |
| 42 | SPARC_FPA, /* All other FP instructions */ |
| 43 | SPARC_CTI, /* Control-transfer instructions */ |
| 44 | SPARC_LD, /* Load instructions */ |
| 45 | SPARC_ST, /* Store instructions */ |
| 46 | SPARC_SINGLE, /* Instructions that must issue by themselves */ |
| 47 | |
| 48 | SPARC_INV, /* This should stay at the end for the next value */ |
| 49 | SPARC_NUM_SCHED_CLASSES = SPARC_INV |
| 50 | }; |
| 51 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 52 | |
| 53 | //--------------------------------------------------------------------------- |
| 54 | // enum SparcMachineOpCode. |
| 55 | // const MachineInstrDescriptor SparcMachineInstrDesc[] |
| 56 | // |
| 57 | // Purpose: |
| 58 | // Description of UltraSparc machine instructions. |
| 59 | // |
| 60 | //--------------------------------------------------------------------------- |
| 61 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 62 | enum SparcMachineOpCode { |
Chris Lattner | 9a3d63b | 2001-09-19 15:56:23 +0000 | [diff] [blame] | 63 | #define I(ENUM, OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE, \ |
| 64 | NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS) \ |
| 65 | ENUM, |
| 66 | #include "SparcInstr.def" |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 67 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 68 | // End-of-array marker |
| 69 | INVALID_OPCODE, |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 70 | NUM_REAL_OPCODES = PHI, // number of valid opcodes |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 71 | NUM_TOTAL_OPCODES = INVALID_OPCODE |
| 72 | }; |
| 73 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 74 | |
Chris Lattner | 9a3d63b | 2001-09-19 15:56:23 +0000 | [diff] [blame] | 75 | // Array of machine instruction descriptions... |
| 76 | extern const MachineInstrDescriptor SparcMachineInstrDesc[]; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 77 | |
| 78 | |
| 79 | //--------------------------------------------------------------------------- |
| 80 | // class UltraSparcInstrInfo |
| 81 | // |
| 82 | // Purpose: |
| 83 | // Information about individual instructions. |
| 84 | // Most information is stored in the SparcMachineInstrDesc array above. |
| 85 | // Other information is computed on demand, and most such functions |
| 86 | // default to member functions in base class MachineInstrInfo. |
| 87 | //--------------------------------------------------------------------------- |
| 88 | |
| 89 | class UltraSparcInstrInfo : public MachineInstrInfo { |
| 90 | public: |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 91 | /*ctor*/ UltraSparcInstrInfo(const TargetMachine& tgt); |
Vikram S. Adve | 4c5fe2d | 2001-11-14 18:48:36 +0000 | [diff] [blame] | 92 | |
| 93 | // |
| 94 | // All immediate constants are in position 0 except the |
| 95 | // store instructions. |
| 96 | // |
| 97 | virtual int getImmmedConstantPos(MachineOpCode opCode) const { |
| 98 | bool ignore; |
| 99 | if (this->maxImmedConstant(opCode, ignore) != 0) |
| 100 | { |
| 101 | assert(! this->isStore((MachineOpCode) STB - 1)); // first store is STB |
| 102 | assert(! this->isStore((MachineOpCode) STD + 1)); // last store is STD |
| 103 | return (opCode >= STB || opCode <= STD)? 2 : 1; |
| 104 | } |
| 105 | else |
| 106 | return -1; |
| 107 | } |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 108 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 109 | virtual bool hasResultInterlock (MachineOpCode opCode) const |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 110 | { |
| 111 | // All UltraSPARC instructions have interlocks (note that delay slots |
| 112 | // are not considered here). |
| 113 | // However, instructions that use the result of an FCMP produce a |
| 114 | // 9-cycle stall if they are issued less than 3 cycles after the FCMP. |
| 115 | // Force the compiler to insert a software interlock (i.e., gap of |
| 116 | // 2 other groups, including NOPs if necessary). |
| 117 | return (opCode == FCMPS || opCode == FCMPD || opCode == FCMPQ); |
| 118 | } |
| 119 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 120 | //------------------------------------------------------------------------- |
| 121 | // Code generation support for creating individual machine instructions |
| 122 | //------------------------------------------------------------------------- |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 123 | |
Vikram S. Adve | 5684c4e | 2001-10-18 00:02:06 +0000 | [diff] [blame] | 124 | // Create an instruction sequence to put the constant `val' into |
| 125 | // the virtual register `dest'. The generated instructions are |
| 126 | // returned in `minstrVec'. Any temporary registers (TmpInstruction) |
| 127 | // created are returned in `tempVec'. |
| 128 | // |
| 129 | virtual void CreateCodeToLoadConst(Value* val, |
| 130 | Instruction* dest, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 131 | std::vector<MachineInstr*>& minstrVec, |
| 132 | std::vector<TmpInstruction*>& tmp) const; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 133 | |
| 134 | |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 135 | // Create an instruction sequence to copy an integer value `val' |
| 136 | // to a floating point value `dest' by copying to memory and back. |
| 137 | // val must be an integral type. dest must be a Float or Double. |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 138 | // The generated instructions are returned in `minstrVec'. |
| 139 | // Any temp. registers (TmpInstruction) created are returned in `tempVec'. |
| 140 | // |
| 141 | virtual void CreateCodeToCopyIntToFloat(Method* method, |
| 142 | Value* val, |
| 143 | Instruction* dest, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 144 | std::vector<MachineInstr*>& minstr, |
| 145 | std::vector<TmpInstruction*>& temp, |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 146 | TargetMachine& target) const; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 147 | |
| 148 | // Similarly, create an instruction sequence to copy an FP value |
| 149 | // `val' to an integer value `dest' by copying to memory and back. |
| 150 | // See the previous function for information about return values. |
| 151 | // |
| 152 | virtual void CreateCodeToCopyFloatToInt(Method* method, |
| 153 | Value* val, |
| 154 | Instruction* dest, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 155 | std::vector<MachineInstr*>& minstr, |
| 156 | std::vector<TmpInstruction*>& temp, |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 157 | TargetMachine& target) const; |
Ruchira Sasanka | 67a463a | 2001-11-12 14:45:33 +0000 | [diff] [blame] | 158 | |
| 159 | // create copy instruction(s) |
| 160 | virtual void |
| 161 | CreateCopyInstructionsByType(const TargetMachine& target, |
| 162 | Value* src, |
| 163 | Instruction* dest, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 164 | std::vector<MachineInstr*>& minstr) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 167 | |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 168 | //---------------------------------------------------------------------------- |
| 169 | // class UltraSparcRegInfo |
| 170 | // |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 171 | // This class implements the virtual class MachineRegInfo for Sparc. |
| 172 | // |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 173 | //---------------------------------------------------------------------------- |
| 174 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 175 | class UltraSparcRegInfo : public MachineRegInfo { |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 176 | // The actual register classes in the Sparc |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 177 | // |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 178 | enum RegClassIDs { |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 179 | IntRegClassID, // Integer |
| 180 | FloatRegClassID, // Float (both single/double) |
| 181 | IntCCRegClassID, // Int Condition Code |
| 182 | FloatCCRegClassID // Float Condition code |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 183 | }; |
| 184 | |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 185 | |
| 186 | // Type of registers available in Sparc. There can be several reg types |
| 187 | // in the same class. For instace, the float reg class has Single/Double |
| 188 | // types |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 189 | // |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 190 | enum RegTypes { |
| 191 | IntRegType, |
| 192 | FPSingleRegType, |
| 193 | FPDoubleRegType, |
| 194 | IntCCRegType, |
| 195 | FloatCCRegType |
| 196 | }; |
| 197 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 198 | // **** WARNING: If the above enum order is changed, also modify |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 199 | // getRegisterClassOfValue method below since it assumes this particular |
| 200 | // order for efficiency. |
| 201 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 202 | |
| 203 | // reverse pointer to get info about the ultra sparc machine |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 204 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 205 | const UltraSparc *const UltraSparcInfo; |
| 206 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 207 | // Number of registers used for passing int args (usually 6: %o0 - %o5) |
| 208 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 209 | unsigned const NumOfIntArgRegs; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 210 | |
| 211 | // Number of registers used for passing float args (usually 32: %f0 - %f31) |
| 212 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 213 | unsigned const NumOfFloatArgRegs; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 214 | |
| 215 | // An out of bound register number that can be used to initialize register |
| 216 | // numbers. Useful for error detection. |
| 217 | // |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 218 | int const InvalidRegNum; |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 219 | |
| 220 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 221 | // ======================== Private Methods ============================= |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 222 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 223 | // The following methods are used to color special live ranges (e.g. |
| 224 | // method args and return values etc.) with specific hardware registers |
| 225 | // as required. See SparcRegInfo.cpp for the implementation. |
| 226 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 227 | void setCallOrRetArgCol(LiveRange *LR, unsigned RegNo, |
| 228 | const MachineInstr *MI, |
| 229 | std::hash_map<const MachineInstr *, |
| 230 | AddedInstrns *> &AIMap) const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 231 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 232 | MachineInstr *getCopy2RegMI(const Value *SrcVal, unsigned Reg, |
| 233 | unsigned RegClassID) const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 234 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 235 | void suggestReg4RetAddr(const MachineInstr *RetMI, |
| 236 | LiveRangeInfo &LRI) const; |
Ruchira Sasanka | cc3ccac | 2001-10-15 16:25:28 +0000 | [diff] [blame] | 237 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 238 | void suggestReg4CallAddr(const MachineInstr *CallMI, LiveRangeInfo &LRI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 239 | std::vector<RegClass *> RCList) const; |
Ruchira Sasanka | cc3ccac | 2001-10-15 16:25:28 +0000 | [diff] [blame] | 240 | |
| 241 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 242 | |
| 243 | // The following methods are used to find the addresses etc. contained |
| 244 | // in specail machine instructions like CALL/RET |
| 245 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 246 | Value *getValue4ReturnAddr(const MachineInstr *MInst) const; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 247 | const Value *getCallInstRetAddr(const MachineInstr *CallMI) const; |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 248 | unsigned getCallInstNumArgs(const MachineInstr *CallMI) const; |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 249 | |
| 250 | |
| 251 | // The following 3 methods are used to find the RegType (see enum above) |
| 252 | // of a LiveRange, Value and using the unified RegClassID |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 253 | int getRegType(const LiveRange *LR) const; |
| 254 | int getRegType(const Value *Val) const; |
| 255 | int getRegType(int reg) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 256 | |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 257 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 258 | // The following methods are used to generate copy instructions to move |
| 259 | // data between condition code registers |
| 260 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 261 | MachineInstr *cpCCR2IntMI(unsigned IntReg) const; |
| 262 | MachineInstr *cpInt2CCRMI(unsigned IntReg) const; |
Ruchira Sasanka | 3839e6e | 2001-11-03 19:59:59 +0000 | [diff] [blame] | 263 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 264 | // Used to generate a copy instruction based on the register class of |
| 265 | // value. |
| 266 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 267 | MachineInstr *cpValue2RegMI(Value *Val, unsigned DestReg, |
| 268 | int RegType) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 269 | |
| 270 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 271 | // The following 2 methods are used to order the instructions addeed by |
| 272 | // the register allocator in association with method calling. See |
| 273 | // SparcRegInfo.cpp for more details |
| 274 | // |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 275 | void moveInst2OrdVec(std::vector<MachineInstr *> &OrdVec, |
| 276 | MachineInstr *UnordInst, |
| 277 | PhyRegAlloc &PRA) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 278 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 279 | void OrderAddedInstrns(std::vector<MachineInstr *> &UnordVec, |
| 280 | std::vector<MachineInstr *> &OrdVec, |
| 281 | PhyRegAlloc &PRA) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 282 | |
| 283 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 284 | // To find whether a particular call is to a var arg method |
| 285 | // |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 286 | bool isVarArgCall(const MachineInstr *CallMI) const; |
Ruchira Sasanka | ae4bcd7 | 2001-11-10 21:20:43 +0000 | [diff] [blame] | 287 | |
Ruchira Sasanka | 868cf82 | 2001-11-09 23:49:14 +0000 | [diff] [blame] | 288 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 289 | public: |
| 290 | UltraSparcRegInfo(const UltraSparc &tgt); |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 291 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 292 | // To get complete machine information structure using the machine register |
| 293 | // information |
| 294 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 295 | inline const UltraSparc &getUltraSparcInfo() const { |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 296 | return *UltraSparcInfo; |
| 297 | } |
| 298 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 299 | // To find the register class of a Value |
| 300 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 301 | inline unsigned getRegClassIDOfValue(const Value *Val, |
| 302 | bool isCCReg = false) const { |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 303 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 304 | Type::PrimitiveID ty = Val->getType()->getPrimitiveID(); |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 305 | unsigned res; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 306 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 307 | if ((ty && ty <= Type::LongTyID) || (ty == Type::LabelTyID) || |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 308 | (ty == Type::MethodTyID) || (ty == Type::PointerTyID) ) |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 309 | res = IntRegClassID; // sparc int reg (ty=0: void) |
| 310 | else if (ty <= Type::DoubleTyID) |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 311 | res = FloatRegClassID; // sparc float reg class |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 312 | else { |
Chris Lattner | 49b8a9c | 2002-02-24 23:02:40 +0000 | [diff] [blame] | 313 | //std::cerr << "TypeID: " << ty << "\n"; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 314 | assert(0 && "Cannot resolve register class for type"); |
Chris Lattner | 8e5c0b4 | 2001-11-07 14:01:59 +0000 | [diff] [blame] | 315 | return 0; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 316 | } |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 317 | |
| 318 | if(isCCReg) |
| 319 | return res + 2; // corresponidng condition code regiser |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 320 | else |
| 321 | return res; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 322 | } |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 323 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 324 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 325 | // getZeroRegNum - returns the register that contains always zero this is the |
| 326 | // unified register number |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 327 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 328 | virtual int getZeroRegNum() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 329 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 330 | // getCallAddressReg - returns the reg used for pushing the address when a |
| 331 | // method is called. This can be used for other purposes between calls |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 332 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 333 | unsigned getCallAddressReg() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 334 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 335 | // Returns the register containing the return address. |
| 336 | // It should be made sure that this register contains the return |
| 337 | // value when a return instruction is reached. |
| 338 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 339 | unsigned getReturnAddressReg() const; |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 340 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 341 | |
| 342 | |
| 343 | // The following methods are used to color special live ranges (e.g. |
| 344 | // method args and return values etc.) with specific hardware registers |
| 345 | // as required. See SparcRegInfo.cpp for the implementation for Sparc. |
| 346 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 347 | void suggestRegs4MethodArgs(const Method *Meth, |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 348 | LiveRangeInfo& LRI) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 349 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 350 | void suggestRegs4CallArgs(const MachineInstr *CallMI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 351 | LiveRangeInfo& LRI, |
| 352 | std::vector<RegClass *> RCL) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 353 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 354 | void suggestReg4RetValue(const MachineInstr *RetMI, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 355 | LiveRangeInfo& LRI) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 356 | |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 357 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 358 | void colorMethodArgs(const Method *Meth, LiveRangeInfo &LRI, |
| 359 | AddedInstrns *FirstAI) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 361 | void colorCallArgs(const MachineInstr *CallMI, LiveRangeInfo &LRI, |
| 362 | AddedInstrns *CallAI, PhyRegAlloc &PRA, |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 363 | const BasicBlock *BB) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 364 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 365 | void colorRetValue(const MachineInstr *RetI, LiveRangeInfo& LRI, |
| 366 | AddedInstrns *RetAI) const; |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 367 | |
| 368 | |
Ruchira Sasanka | ab304c4 | 2001-09-30 23:19:57 +0000 | [diff] [blame] | 369 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 370 | // method used for printing a register for debugging purposes |
| 371 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 372 | static void printReg(const LiveRange *LR); |
Ruchira Sasanka | 89fb46b | 2001-09-18 22:52:44 +0000 | [diff] [blame] | 373 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 374 | // this method provides a unique number for each register |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 375 | // |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 376 | inline int getUnifiedRegNum(int RegClassID, int reg) const { |
| 377 | |
| 378 | if( RegClassID == IntRegClassID && reg < 32 ) |
| 379 | return reg; |
| 380 | else if ( RegClassID == FloatRegClassID && reg < 64) |
| 381 | return reg + 32; // we have 32 int regs |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 382 | else if( RegClassID == FloatCCRegClassID && reg < 4) |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 383 | return reg + 32 + 64; // 32 int, 64 float |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 384 | else if( RegClassID == IntCCRegClassID ) |
| 385 | return 4+ 32 + 64; // only int cc reg |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 386 | else if (reg==InvalidRegNum) |
| 387 | return InvalidRegNum; |
Ruchira Sasanka | e38bd533 | 2001-09-15 00:30:44 +0000 | [diff] [blame] | 388 | else |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 389 | assert(0 && "Invalid register class or reg number"); |
Chris Lattner | 6dad506 | 2001-11-07 13:49:12 +0000 | [diff] [blame] | 390 | return 0; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | // given the unified register number, this gives the name |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 394 | // for generating assembly code or debugging. |
| 395 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 396 | virtual const std::string getUnifiedRegName(int reg) const; |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 397 | |
| 398 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 399 | // returns the # of bytes of stack space allocated for each register |
| 400 | // type. For Sparc, currently we allocate 8 bytes on stack for all |
| 401 | // register types. We can optimize this later if necessary to save stack |
| 402 | // space (However, should make sure that stack alignment is correct) |
| 403 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 404 | inline int getSpilledRegSize(int RegType) const { |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 405 | return 8; |
Ruchira Sasanka | d00982a | 2002-01-07 19:20:28 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 408 | |
| 409 | // To obtain the return value contained in a CALL machine instruction |
| 410 | // |
Ruchira Sasanka | b3b6f53 | 2001-10-21 16:43:41 +0000 | [diff] [blame] | 411 | const Value * getCallInstRetVal(const MachineInstr *CallMI) const; |
| 412 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 413 | |
| 414 | // The following methods are used to generate "copy" machine instructions |
| 415 | // for an architecture. |
| 416 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 417 | MachineInstr * cpReg2RegMI(unsigned SrcReg, unsigned DestReg, |
| 418 | int RegType) const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 419 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 420 | MachineInstr * cpReg2MemMI(unsigned SrcReg, unsigned DestPtrReg, |
| 421 | int Offset, int RegType) const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 422 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 423 | MachineInstr * cpMem2RegMI(unsigned SrcPtrReg, int Offset, |
| 424 | unsigned DestReg, int RegType) const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 425 | |
Ruchira Sasanka | ef1b0cb | 2001-11-03 17:13:27 +0000 | [diff] [blame] | 426 | MachineInstr* cpValue2Value(Value *Src, Value *Dest) const; |
| 427 | |
| 428 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 429 | // To see whether a register is a volatile (i.e., whehter it must be |
| 430 | // preserved acorss calls) |
| 431 | // |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 432 | inline bool isRegVolatile(int RegClassID, int Reg) const { |
| 433 | return MachineRegClassArr[RegClassID]->isRegVolatile(Reg); |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 437 | virtual unsigned getFramePointer() const; |
| 438 | virtual unsigned getStackPointer() const; |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 440 | virtual int getInvalidRegNum() const { |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 441 | return InvalidRegNum; |
| 442 | } |
| 443 | |
Ruchira Sasanka | 2563a98 | 2002-01-07 20:28:49 +0000 | [diff] [blame] | 444 | // This method inserts the caller saving code for call instructions |
| 445 | // |
Ruchira Sasanka | 20c82b1 | 2001-10-28 18:15:12 +0000 | [diff] [blame] | 446 | void insertCallerSavingCode(const MachineInstr *MInst, |
| 447 | const BasicBlock *BB, PhyRegAlloc &PRA ) const; |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 448 | }; |
| 449 | |
| 450 | |
| 451 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 452 | |
| 453 | //--------------------------------------------------------------------------- |
| 454 | // class UltraSparcSchedInfo |
| 455 | // |
| 456 | // Purpose: |
| 457 | // Interface to instruction scheduling information for UltraSPARC. |
| 458 | // The parameter values above are based on UltraSPARC IIi. |
| 459 | //--------------------------------------------------------------------------- |
| 460 | |
| 461 | |
| 462 | class UltraSparcSchedInfo: public MachineSchedInfo { |
| 463 | public: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 464 | UltraSparcSchedInfo(const TargetMachine &tgt); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 465 | protected: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 466 | virtual void initializeResources(); |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 467 | }; |
| 468 | |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 469 | |
| 470 | //--------------------------------------------------------------------------- |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 471 | // class UltraSparcFrameInfo |
| 472 | // |
| 473 | // Purpose: |
| 474 | // Interface to stack frame layout info for the UltraSPARC. |
Vikram S. Adve | 00521d7 | 2001-11-12 23:26:35 +0000 | [diff] [blame] | 475 | // Starting offsets for each area of the stack frame are aligned at |
| 476 | // a multiple of getStackFrameSizeAlignment(). |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 477 | //--------------------------------------------------------------------------- |
| 478 | |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 479 | class UltraSparcFrameInfo: public MachineFrameInfo { |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 480 | public: |
Chris Lattner | 699683c | 2002-02-04 05:59:25 +0000 | [diff] [blame] | 481 | UltraSparcFrameInfo(const TargetMachine &tgt) : MachineFrameInfo(tgt) {} |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 482 | |
| 483 | public: |
| 484 | int getStackFrameSizeAlignment () const { return StackFrameSizeAlignment;} |
| 485 | int getMinStackFrameSize () const { return MinStackFrameSize; } |
| 486 | int getNumFixedOutgoingArgs () const { return NumFixedOutgoingArgs; } |
| 487 | int getSizeOfEachArgOnStack () const { return SizeOfEachArgOnStack; } |
| 488 | bool argsOnStackHaveFixedSize () const { return true; } |
| 489 | |
| 490 | // |
| 491 | // These methods compute offsets using the frame contents for a |
| 492 | // particular method. The frame contents are obtained from the |
| 493 | // MachineCodeInfoForMethod object for the given method. |
| 494 | // |
| 495 | int getFirstIncomingArgOffset (MachineCodeForMethod& mcInfo, |
| 496 | bool& pos) const |
| 497 | { |
| 498 | pos = true; // arguments area grows upwards |
| 499 | return FirstIncomingArgOffsetFromFP; |
| 500 | } |
| 501 | int getFirstOutgoingArgOffset (MachineCodeForMethod& mcInfo, |
| 502 | bool& pos) const |
| 503 | { |
| 504 | pos = true; // arguments area grows upwards |
| 505 | return FirstOutgoingArgOffsetFromSP; |
| 506 | } |
| 507 | int getFirstOptionalOutgoingArgOffset(MachineCodeForMethod& mcInfo, |
| 508 | bool& pos)const |
| 509 | { |
| 510 | pos = true; // arguments area grows upwards |
| 511 | return FirstOptionalOutgoingArgOffsetFromSP; |
| 512 | } |
| 513 | |
| 514 | int getFirstAutomaticVarOffset (MachineCodeForMethod& mcInfo, |
| 515 | bool& pos) const; |
| 516 | int getRegSpillAreaOffset (MachineCodeForMethod& mcInfo, |
| 517 | bool& pos) const; |
| 518 | int getTmpAreaOffset (MachineCodeForMethod& mcInfo, |
| 519 | bool& pos) const; |
| 520 | int getDynamicAreaOffset (MachineCodeForMethod& mcInfo, |
| 521 | bool& pos) const; |
| 522 | |
| 523 | // |
| 524 | // These methods specify the base register used for each stack area |
| 525 | // (generally FP or SP) |
| 526 | // |
| 527 | virtual int getIncomingArgBaseRegNum() const { |
| 528 | return (int) target.getRegInfo().getFramePointer(); |
| 529 | } |
| 530 | virtual int getOutgoingArgBaseRegNum() const { |
| 531 | return (int) target.getRegInfo().getStackPointer(); |
| 532 | } |
| 533 | virtual int getOptionalOutgoingArgBaseRegNum() const { |
| 534 | return (int) target.getRegInfo().getStackPointer(); |
| 535 | } |
| 536 | virtual int getAutomaticVarBaseRegNum() const { |
| 537 | return (int) target.getRegInfo().getFramePointer(); |
| 538 | } |
| 539 | virtual int getRegSpillAreaBaseRegNum() const { |
| 540 | return (int) target.getRegInfo().getFramePointer(); |
| 541 | } |
| 542 | virtual int getDynamicAreaBaseRegNum() const { |
| 543 | return (int) target.getRegInfo().getStackPointer(); |
| 544 | } |
| 545 | |
| 546 | private: |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 547 | // All stack addresses must be offset by 0x7ff (2047) on Sparc V9. |
| 548 | static const int OFFSET = (int) 0x7ff; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 549 | static const int StackFrameSizeAlignment = 16; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 550 | static const int MinStackFrameSize = 176; |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 551 | static const int NumFixedOutgoingArgs = 6; |
| 552 | static const int SizeOfEachArgOnStack = 8; |
Ruchira Sasanka | 67a463a | 2001-11-12 14:45:33 +0000 | [diff] [blame] | 553 | static const int StaticAreaOffsetFromFP = 0 + OFFSET; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 554 | static const int FirstIncomingArgOffsetFromFP = 128 + OFFSET; |
| 555 | static const int FirstOptionalIncomingArgOffsetFromFP = 176 + OFFSET; |
| 556 | static const int FirstOutgoingArgOffsetFromSP = 128 + OFFSET; |
| 557 | static const int FirstOptionalOutgoingArgOffsetFromSP = 176 + OFFSET; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 558 | }; |
| 559 | |
| 560 | |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 561 | //--------------------------------------------------------------------------- |
| 562 | // class UltraSparcCacheInfo |
| 563 | // |
| 564 | // Purpose: |
| 565 | // Interface to cache parameters for the UltraSPARC. |
| 566 | // Just use defaults for now. |
| 567 | //--------------------------------------------------------------------------- |
| 568 | |
| 569 | class UltraSparcCacheInfo: public MachineCacheInfo { |
| 570 | public: |
Chris Lattner | 7327d7e | 2002-02-04 00:04:35 +0000 | [diff] [blame] | 571 | UltraSparcCacheInfo(const TargetMachine &T) : MachineCacheInfo(T) {} |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 572 | }; |
| 573 | |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 574 | |
| 575 | //--------------------------------------------------------------------------- |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 576 | // class UltraSparcMachine |
| 577 | // |
| 578 | // Purpose: |
| 579 | // Primary interface to machine description for the UltraSPARC. |
| 580 | // Primarily just initializes machine-dependent parameters in |
| 581 | // class TargetMachine, and creates machine-dependent subclasses |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 582 | // for classes such as InstrInfo, SchedInfo and RegInfo. |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 583 | //--------------------------------------------------------------------------- |
| 584 | |
| 585 | class UltraSparc : public TargetMachine { |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 586 | private: |
| 587 | UltraSparcInstrInfo instrInfo; |
| 588 | UltraSparcSchedInfo schedInfo; |
| 589 | UltraSparcRegInfo regInfo; |
Vikram S. Adve | c152163 | 2001-10-22 13:31:53 +0000 | [diff] [blame] | 590 | UltraSparcFrameInfo frameInfo; |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 591 | UltraSparcCacheInfo cacheInfo; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 592 | public: |
| 593 | UltraSparc(); |
Vikram S. Adve | 339084b | 2001-09-18 13:04:24 +0000 | [diff] [blame] | 594 | |
Chris Lattner | 32f600a | 2001-09-19 13:47:12 +0000 | [diff] [blame] | 595 | virtual const MachineInstrInfo &getInstrInfo() const { return instrInfo; } |
| 596 | virtual const MachineSchedInfo &getSchedInfo() const { return schedInfo; } |
| 597 | virtual const MachineRegInfo &getRegInfo() const { return regInfo; } |
Vikram S. Adve | 7f37fe5 | 2001-11-08 04:55:13 +0000 | [diff] [blame] | 598 | virtual const MachineFrameInfo &getFrameInfo() const { return frameInfo; } |
Vikram S. Adve | 5afff3b | 2001-11-09 02:15:52 +0000 | [diff] [blame] | 599 | virtual const MachineCacheInfo &getCacheInfo() const { return cacheInfo; } |
Chris Lattner | 32f600a | 2001-09-19 13:47:12 +0000 | [diff] [blame] | 600 | |
| 601 | // |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 602 | // addPassesToEmitAssembly - Add passes to the specified pass manager to get |
| 603 | // assembly langage code emited. For sparc, we have to do ... |
Chris Lattner | 32f600a | 2001-09-19 13:47:12 +0000 | [diff] [blame] | 604 | // |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 605 | virtual void addPassesToEmitAssembly(PassManager &PM, std::ostream &Out); |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 606 | |
Chris Lattner | 4387e31 | 2002-02-03 23:42:19 +0000 | [diff] [blame] | 607 | private: |
| 608 | Pass *getMethodAsmPrinterPass(PassManager &PM, std::ostream &Out); |
| 609 | Pass *getModuleAsmPrinterPass(PassManager &PM, std::ostream &Out); |
Chris Lattner | 9530a6f | 2002-02-11 22:35:46 +0000 | [diff] [blame] | 610 | Pass *getEmitBytecodeToAsmPass(std::ostream &Out); |
Chris Lattner | 6edfcc5 | 2002-02-03 07:51:17 +0000 | [diff] [blame] | 611 | }; |
Chris Lattner | f6e0e28 | 2001-09-14 04:32:55 +0000 | [diff] [blame] | 612 | |
Chris Lattner | c6495ee | 2001-09-14 03:56:45 +0000 | [diff] [blame] | 613 | #endif |