Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 1 | //===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===// |
| 2 | // |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 3 | // This file defines a simple peephole instruction selector for the x86 target |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | #include "X86.h" |
Chris Lattner | 055c965 | 2002-10-29 21:05:24 +0000 | [diff] [blame] | 8 | #include "X86InstrInfo.h" |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 9 | #include "X86InstrBuilder.h" |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 10 | #include "llvm/Function.h" |
Chris Lattner | 67580ed | 2003-05-13 20:21:19 +0000 | [diff] [blame] | 11 | #include "llvm/Instructions.h" |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 12 | #include "llvm/DerivedTypes.h" |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 13 | #include "llvm/Constants.h" |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 14 | #include "llvm/Pass.h" |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 15 | #include "llvm/Intrinsics.h" |
Chris Lattner | 341a937 | 2002-10-29 17:43:55 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineFunction.h" |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/SSARegMap.h" |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineConstantPool.h" |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetMachine.h" |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 22 | #include "llvm/Target/MRegisterInfo.h" |
Chris Lattner | 67580ed | 2003-05-13 20:21:19 +0000 | [diff] [blame] | 23 | #include "llvm/Support/InstVisitor.h" |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 24 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 25 | /// BMI - A special BuildMI variant that takes an iterator to insert the |
Chris Lattner | 8bdd129 | 2003-04-25 21:58:54 +0000 | [diff] [blame] | 26 | /// instruction at as well as a basic block. This is the version for when you |
| 27 | /// have a destination register in mind. |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 28 | inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB, |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 29 | MachineBasicBlock::iterator &I, |
Chris Lattner | 8cc72d2 | 2003-06-03 15:41:58 +0000 | [diff] [blame] | 30 | int Opcode, unsigned NumOperands, |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 31 | unsigned DestReg) { |
Chris Lattner | d7d3872 | 2002-12-13 13:04:04 +0000 | [diff] [blame] | 32 | assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!"); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 33 | MachineInstr *MI = new MachineInstr(Opcode, NumOperands+1, true, true); |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 34 | I = MBB->insert(I, MI)+1; |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 35 | return MachineInstrBuilder(MI).addReg(DestReg, MOTy::Def); |
| 36 | } |
| 37 | |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 38 | /// BMI - A special BuildMI variant that takes an iterator to insert the |
| 39 | /// instruction at as well as a basic block. |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 40 | inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB, |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 41 | MachineBasicBlock::iterator &I, |
Chris Lattner | 8cc72d2 | 2003-06-03 15:41:58 +0000 | [diff] [blame] | 42 | int Opcode, unsigned NumOperands) { |
Chris Lattner | 8bdd129 | 2003-04-25 21:58:54 +0000 | [diff] [blame] | 43 | assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!"); |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 44 | MachineInstr *MI = new MachineInstr(Opcode, NumOperands, true, true); |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 45 | I = MBB->insert(I, MI)+1; |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 46 | return MachineInstrBuilder(MI); |
| 47 | } |
| 48 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 49 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 50 | namespace { |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 51 | struct ISel : public FunctionPass, InstVisitor<ISel> { |
| 52 | TargetMachine &TM; |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 53 | MachineFunction *F; // The function we are compiling into |
| 54 | MachineBasicBlock *BB; // The current MBB we are compiling |
| 55 | int VarArgsFrameIndex; // FrameIndex for start of varargs area |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 56 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 57 | std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs |
| 58 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 59 | // MBBMap - Mapping between LLVM BB -> Machine BB |
| 60 | std::map<const BasicBlock*, MachineBasicBlock*> MBBMap; |
| 61 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 62 | ISel(TargetMachine &tm) : TM(tm), F(0), BB(0) {} |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 63 | |
| 64 | /// runOnFunction - Top level implementation of instruction selection for |
| 65 | /// the entire function. |
| 66 | /// |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 67 | bool runOnFunction(Function &Fn) { |
Chris Lattner | 36b3603 | 2002-10-29 23:40:58 +0000 | [diff] [blame] | 68 | F = &MachineFunction::construct(&Fn, TM); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 70 | // Create all of the machine basic blocks for the function... |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 71 | for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) |
| 72 | F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I)); |
| 73 | |
Chris Lattner | 14aa7fe | 2002-12-16 22:54:46 +0000 | [diff] [blame] | 74 | BB = &F->front(); |
Chris Lattner | dbd7372 | 2003-05-06 21:32:22 +0000 | [diff] [blame] | 75 | |
Chris Lattner | dbd7372 | 2003-05-06 21:32:22 +0000 | [diff] [blame] | 76 | // Copy incoming arguments off of the stack... |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 77 | LoadArgumentsToVirtualRegs(Fn); |
Chris Lattner | 14aa7fe | 2002-12-16 22:54:46 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 79 | // Instruction select everything except PHI nodes |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 80 | visit(Fn); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 81 | |
| 82 | // Select the PHI nodes |
| 83 | SelectPHINodes(); |
| 84 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 85 | RegMap.clear(); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 86 | MBBMap.clear(); |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 87 | F = 0; |
Chris Lattner | 2a865b0 | 2003-07-26 23:05:37 +0000 | [diff] [blame] | 88 | // We always build a machine code representation for the function |
| 89 | return true; |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Chris Lattner | f0eb7be | 2002-12-15 21:13:40 +0000 | [diff] [blame] | 92 | virtual const char *getPassName() const { |
| 93 | return "X86 Simple Instruction Selection"; |
| 94 | } |
| 95 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 96 | /// visitBasicBlock - This method is called when we are visiting a new basic |
Chris Lattner | 33f53b5 | 2002-10-29 20:48:56 +0000 | [diff] [blame] | 97 | /// block. This simply creates a new MachineBasicBlock to emit code into |
| 98 | /// and adds it to the current MachineFunction. Subsequent visit* for |
| 99 | /// instructions will be invoked for all instructions in the basic block. |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 100 | /// |
| 101 | void visitBasicBlock(BasicBlock &LLVM_BB) { |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 102 | BB = MBBMap[&LLVM_BB]; |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 105 | /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function |
| 106 | /// from the stack into virtual registers. |
| 107 | /// |
| 108 | void LoadArgumentsToVirtualRegs(Function &F); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 109 | |
| 110 | /// SelectPHINodes - Insert machine code to generate phis. This is tricky |
| 111 | /// because we have to generate our sources into the source basic blocks, |
| 112 | /// not the current one. |
| 113 | /// |
| 114 | void SelectPHINodes(); |
| 115 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 116 | // Visitation methods for various instructions. These methods simply emit |
| 117 | // fixed X86 code for each instruction. |
| 118 | // |
Brian Gaeke | fa8d571 | 2002-11-22 11:07:01 +0000 | [diff] [blame] | 119 | |
| 120 | // Control flow operators |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 121 | void visitReturnInst(ReturnInst &RI); |
Chris Lattner | 2df035b | 2002-11-02 19:27:56 +0000 | [diff] [blame] | 122 | void visitBranchInst(BranchInst &BI); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 123 | |
| 124 | struct ValueRecord { |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 125 | Value *Val; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 126 | unsigned Reg; |
| 127 | const Type *Ty; |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 128 | ValueRecord(unsigned R, const Type *T) : Val(0), Reg(R), Ty(T) {} |
| 129 | ValueRecord(Value *V) : Val(V), Reg(0), Ty(V->getType()) {} |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 130 | }; |
| 131 | void doCall(const ValueRecord &Ret, MachineInstr *CallMI, |
| 132 | const std::vector<ValueRecord> &Args); |
Brian Gaeke | fa8d571 | 2002-11-22 11:07:01 +0000 | [diff] [blame] | 133 | void visitCallInst(CallInst &I); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 134 | void visitIntrinsicCall(LLVMIntrinsic::ID ID, CallInst &I); |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 135 | |
| 136 | // Arithmetic operators |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 137 | void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass); |
Chris Lattner | 68aad93 | 2002-11-02 20:13:22 +0000 | [diff] [blame] | 138 | void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); } |
| 139 | void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); } |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 140 | void doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI, |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 141 | unsigned DestReg, const Type *DestTy, |
| 142 | unsigned Op0Reg, unsigned Op1Reg); |
Chris Lattner | ca9671d | 2002-11-02 20:28:58 +0000 | [diff] [blame] | 143 | void visitMul(BinaryOperator &B); |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 144 | |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 145 | void visitDiv(BinaryOperator &B) { visitDivRem(B); } |
| 146 | void visitRem(BinaryOperator &B) { visitDivRem(B); } |
| 147 | void visitDivRem(BinaryOperator &B); |
| 148 | |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 149 | // Bitwise operators |
Chris Lattner | 68aad93 | 2002-11-02 20:13:22 +0000 | [diff] [blame] | 150 | void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); } |
| 151 | void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); } |
| 152 | void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); } |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 154 | // Comparison operators... |
| 155 | void visitSetCondInst(SetCondInst &I); |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 156 | bool EmitComparisonGetSignedness(unsigned OpNum, Value *Op0, Value *Op1, |
| 157 | MachineBasicBlock *MBB, |
| 158 | MachineBasicBlock::iterator &MBBI); |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 159 | |
| 160 | // Memory Instructions |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 161 | MachineInstr *doFPLoad(MachineBasicBlock *MBB, |
| 162 | MachineBasicBlock::iterator &MBBI, |
| 163 | const Type *Ty, unsigned DestReg); |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 164 | void visitLoadInst(LoadInst &I); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 165 | void doFPStore(const Type *Ty, unsigned DestAddrReg, unsigned SrcReg); |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 166 | void visitStoreInst(StoreInst &I); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 167 | void visitGetElementPtrInst(GetElementPtrInst &I); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 168 | void visitAllocaInst(AllocaInst &I); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 169 | void visitMallocInst(MallocInst &I); |
| 170 | void visitFreeInst(FreeInst &I); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 171 | |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 172 | // Other operators |
Brian Gaeke | a1719c9 | 2002-10-31 23:03:59 +0000 | [diff] [blame] | 173 | void visitShiftInst(ShiftInst &I); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 174 | void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass |
Brian Gaeke | fa8d571 | 2002-11-22 11:07:01 +0000 | [diff] [blame] | 175 | void visitCastInst(CastInst &I); |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 176 | void visitVANextInst(VANextInst &I); |
| 177 | void visitVAArgInst(VAArgInst &I); |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 178 | |
| 179 | void visitInstruction(Instruction &I) { |
| 180 | std::cerr << "Cannot instruction select: " << I; |
| 181 | abort(); |
| 182 | } |
| 183 | |
Brian Gaeke | 95780cc | 2002-12-13 07:56:18 +0000 | [diff] [blame] | 184 | /// promote32 - Make a value 32-bits wide, and put it somewhere. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 185 | /// |
| 186 | void promote32(unsigned targetReg, const ValueRecord &VR); |
| 187 | |
| 188 | /// EmitByteSwap - Byteswap SrcReg into DestReg. |
| 189 | /// |
| 190 | void EmitByteSwap(unsigned DestReg, unsigned SrcReg, unsigned Class); |
Brian Gaeke | 95780cc | 2002-12-13 07:56:18 +0000 | [diff] [blame] | 191 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 192 | /// emitGEPOperation - Common code shared between visitGetElementPtrInst and |
| 193 | /// constant expression GEP support. |
| 194 | /// |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 195 | void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator&IP, |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 196 | Value *Src, User::op_iterator IdxBegin, |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 197 | User::op_iterator IdxEnd, unsigned TargetReg); |
| 198 | |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 199 | /// emitCastOperation - Common code shared between visitCastInst and |
| 200 | /// constant expression cast support. |
| 201 | void emitCastOperation(MachineBasicBlock *BB,MachineBasicBlock::iterator&IP, |
| 202 | Value *Src, const Type *DestTy, unsigned TargetReg); |
| 203 | |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 204 | /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary |
| 205 | /// and constant expression support. |
| 206 | void emitSimpleBinaryOperation(MachineBasicBlock *BB, |
| 207 | MachineBasicBlock::iterator &IP, |
| 208 | Value *Op0, Value *Op1, |
| 209 | unsigned OperatorClass, unsigned TargetReg); |
| 210 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 211 | /// emitSetCCOperation - Common code shared between visitSetCondInst and |
| 212 | /// constant expression support. |
| 213 | void emitSetCCOperation(MachineBasicBlock *BB, |
| 214 | MachineBasicBlock::iterator &IP, |
| 215 | Value *Op0, Value *Op1, unsigned Opcode, |
| 216 | unsigned TargetReg); |
| 217 | |
| 218 | |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 219 | /// copyConstantToRegister - Output the instructions required to put the |
| 220 | /// specified constant into the specified register. |
| 221 | /// |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 222 | void copyConstantToRegister(MachineBasicBlock *MBB, |
| 223 | MachineBasicBlock::iterator &MBBI, |
| 224 | Constant *C, unsigned Reg); |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 225 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 226 | /// makeAnotherReg - This method returns the next register number we haven't |
| 227 | /// yet used. |
| 228 | /// |
| 229 | /// Long values are handled somewhat specially. They are always allocated |
| 230 | /// as pairs of 32 bit integer values. The register number returned is the |
| 231 | /// lower 32 bits of the long value, and the regNum+1 is the upper 32 bits |
| 232 | /// of the long value. |
| 233 | /// |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 234 | unsigned makeAnotherReg(const Type *Ty) { |
Chris Lattner | 7db1fa9 | 2003-07-30 05:33:48 +0000 | [diff] [blame] | 235 | assert(dynamic_cast<const X86RegisterInfo*>(TM.getRegisterInfo()) && |
| 236 | "Current target doesn't have X86 reg info??"); |
| 237 | const X86RegisterInfo *MRI = |
| 238 | static_cast<const X86RegisterInfo*>(TM.getRegisterInfo()); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 239 | if (Ty == Type::LongTy || Ty == Type::ULongTy) { |
Chris Lattner | 7db1fa9 | 2003-07-30 05:33:48 +0000 | [diff] [blame] | 240 | const TargetRegisterClass *RC = MRI->getRegClassForType(Type::IntTy); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 241 | // Create the lower part |
| 242 | F->getSSARegMap()->createVirtualRegister(RC); |
| 243 | // Create the upper part. |
| 244 | return F->getSSARegMap()->createVirtualRegister(RC)-1; |
| 245 | } |
| 246 | |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 247 | // Add the mapping of regnumber => reg class to MachineFunction |
Chris Lattner | 7db1fa9 | 2003-07-30 05:33:48 +0000 | [diff] [blame] | 248 | const TargetRegisterClass *RC = MRI->getRegClassForType(Ty); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 249 | return F->getSSARegMap()->createVirtualRegister(RC); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 252 | /// getReg - This method turns an LLVM value into a register number. This |
| 253 | /// is guaranteed to produce the same register number for a particular value |
| 254 | /// every time it is queried. |
| 255 | /// |
| 256 | unsigned getReg(Value &V) { return getReg(&V); } // Allow references |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 257 | unsigned getReg(Value *V) { |
| 258 | // Just append to the end of the current bb. |
| 259 | MachineBasicBlock::iterator It = BB->end(); |
| 260 | return getReg(V, BB, It); |
| 261 | } |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 262 | unsigned getReg(Value *V, MachineBasicBlock *MBB, |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 263 | MachineBasicBlock::iterator &IPt) { |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 264 | unsigned &Reg = RegMap[V]; |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 265 | if (Reg == 0) { |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 266 | Reg = makeAnotherReg(V->getType()); |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 267 | RegMap[V] = Reg; |
Misha Brukman | d2cc017 | 2002-11-20 00:58:23 +0000 | [diff] [blame] | 268 | } |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 269 | |
Chris Lattner | 6f8fd25 | 2002-10-27 21:23:43 +0000 | [diff] [blame] | 270 | // If this operand is a constant, emit the code to copy the constant into |
| 271 | // the register here... |
| 272 | // |
Chris Lattner | dbf30f7 | 2002-12-04 06:45:19 +0000 | [diff] [blame] | 273 | if (Constant *C = dyn_cast<Constant>(V)) { |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 274 | copyConstantToRegister(MBB, IPt, C, Reg); |
Chris Lattner | 14aa7fe | 2002-12-16 22:54:46 +0000 | [diff] [blame] | 275 | RegMap.erase(V); // Assign a new name to this constant if ref'd again |
Chris Lattner | dbf30f7 | 2002-12-04 06:45:19 +0000 | [diff] [blame] | 276 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
| 277 | // Move the address of the global into the register |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 278 | BMI(MBB, IPt, X86::MOVir32, 1, Reg).addGlobalAddress(GV); |
Chris Lattner | 14aa7fe | 2002-12-16 22:54:46 +0000 | [diff] [blame] | 279 | RegMap.erase(V); // Assign a new name to this address if ref'd again |
Chris Lattner | dbf30f7 | 2002-12-04 06:45:19 +0000 | [diff] [blame] | 280 | } |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 281 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 282 | return Reg; |
| 283 | } |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 284 | }; |
| 285 | } |
| 286 | |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 287 | /// TypeClass - Used by the X86 backend to group LLVM types by their basic X86 |
| 288 | /// Representation. |
| 289 | /// |
| 290 | enum TypeClass { |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 291 | cByte, cShort, cInt, cFP, cLong |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 292 | }; |
| 293 | |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 294 | /// getClass - Turn a primitive type into a "class" number which is based on the |
| 295 | /// size of the type, and whether or not it is floating point. |
| 296 | /// |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 297 | static inline TypeClass getClass(const Type *Ty) { |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 298 | switch (Ty->getPrimitiveID()) { |
| 299 | case Type::SByteTyID: |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 300 | case Type::UByteTyID: return cByte; // Byte operands are class #0 |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 301 | case Type::ShortTyID: |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 302 | case Type::UShortTyID: return cShort; // Short operands are class #1 |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 303 | case Type::IntTyID: |
| 304 | case Type::UIntTyID: |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 305 | case Type::PointerTyID: return cInt; // Int's and pointers are class #2 |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 306 | |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 307 | case Type::FloatTyID: |
| 308 | case Type::DoubleTyID: return cFP; // Floating Point is #3 |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 309 | |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 310 | case Type::LongTyID: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 311 | case Type::ULongTyID: return cLong; // Longs are class #4 |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 312 | default: |
| 313 | assert(0 && "Invalid type to getClass!"); |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 314 | return cByte; // not reached |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 315 | } |
| 316 | } |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 6b993cc | 2002-12-15 08:02:15 +0000 | [diff] [blame] | 318 | // getClassB - Just like getClass, but treat boolean values as bytes. |
| 319 | static inline TypeClass getClassB(const Type *Ty) { |
| 320 | if (Ty == Type::BoolTy) return cByte; |
| 321 | return getClass(Ty); |
| 322 | } |
| 323 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 324 | |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 325 | /// copyConstantToRegister - Output the instructions required to put the |
| 326 | /// specified constant into the specified register. |
| 327 | /// |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 328 | void ISel::copyConstantToRegister(MachineBasicBlock *MBB, |
| 329 | MachineBasicBlock::iterator &IP, |
| 330 | Constant *C, unsigned R) { |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 331 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 332 | unsigned Class = 0; |
| 333 | switch (CE->getOpcode()) { |
| 334 | case Instruction::GetElementPtr: |
Brian Gaeke | 68b1edc | 2002-12-16 04:23:29 +0000 | [diff] [blame] | 335 | emitGEPOperation(MBB, IP, CE->getOperand(0), |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 336 | CE->op_begin()+1, CE->op_end(), R); |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 337 | return; |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 338 | case Instruction::Cast: |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 339 | emitCastOperation(MBB, IP, CE->getOperand(0), CE->getType(), R); |
Chris Lattner | 4b12cde | 2003-04-21 21:33:44 +0000 | [diff] [blame] | 340 | return; |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 341 | |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 342 | case Instruction::Xor: ++Class; // FALL THROUGH |
| 343 | case Instruction::Or: ++Class; // FALL THROUGH |
| 344 | case Instruction::And: ++Class; // FALL THROUGH |
| 345 | case Instruction::Sub: ++Class; // FALL THROUGH |
| 346 | case Instruction::Add: |
| 347 | emitSimpleBinaryOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1), |
| 348 | Class, R); |
| 349 | return; |
| 350 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 351 | case Instruction::SetNE: |
| 352 | case Instruction::SetEQ: |
| 353 | case Instruction::SetLT: |
| 354 | case Instruction::SetGT: |
| 355 | case Instruction::SetLE: |
| 356 | case Instruction::SetGE: |
| 357 | emitSetCCOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1), |
| 358 | CE->getOpcode(), R); |
| 359 | return; |
| 360 | |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 361 | default: |
| 362 | std::cerr << "Offending expr: " << C << "\n"; |
| 363 | assert(0 && "Constant expressions not yet handled!\n"); |
| 364 | } |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 365 | } |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 366 | |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 367 | if (C->getType()->isIntegral()) { |
Chris Lattner | 6b993cc | 2002-12-15 08:02:15 +0000 | [diff] [blame] | 368 | unsigned Class = getClassB(C->getType()); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 369 | |
| 370 | if (Class == cLong) { |
| 371 | // Copy the value into the register pair. |
Chris Lattner | c07736a | 2003-07-23 15:22:26 +0000 | [diff] [blame] | 372 | uint64_t Val = cast<ConstantInt>(C)->getRawValue(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 373 | BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(Val & 0xFFFFFFFF); |
| 374 | BMI(MBB, IP, X86::MOVir32, 1, R+1).addZImm(Val >> 32); |
| 375 | return; |
| 376 | } |
| 377 | |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 378 | assert(Class <= cInt && "Type not handled yet!"); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 379 | |
| 380 | static const unsigned IntegralOpcodeTab[] = { |
| 381 | X86::MOVir8, X86::MOVir16, X86::MOVir32 |
| 382 | }; |
| 383 | |
Chris Lattner | 6b993cc | 2002-12-15 08:02:15 +0000 | [diff] [blame] | 384 | if (C->getType() == Type::BoolTy) { |
| 385 | BMI(MBB, IP, X86::MOVir8, 1, R).addZImm(C == ConstantBool::True); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 386 | } else { |
Chris Lattner | c07736a | 2003-07-23 15:22:26 +0000 | [diff] [blame] | 387 | ConstantInt *CI = cast<ConstantInt>(C); |
| 388 | BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addZImm(CI->getRawValue()); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 389 | } |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 390 | } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 391 | double Value = CFP->getValue(); |
| 392 | if (Value == +0.0) |
| 393 | BMI(MBB, IP, X86::FLD0, 0, R); |
| 394 | else if (Value == +1.0) |
| 395 | BMI(MBB, IP, X86::FLD1, 0, R); |
| 396 | else { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 397 | // Otherwise we need to spill the constant to memory... |
| 398 | MachineConstantPool *CP = F->getConstantPool(); |
| 399 | unsigned CPI = CP->getConstantPoolIndex(CFP); |
| 400 | addConstantPoolReference(doFPLoad(MBB, IP, CFP->getType(), R), CPI); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 403 | } else if (isa<ConstantPointerNull>(C)) { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 404 | // Copy zero (null pointer) to the register. |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 405 | BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(0); |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 406 | } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) { |
Brian Gaeke | 68b1edc | 2002-12-16 04:23:29 +0000 | [diff] [blame] | 407 | unsigned SrcReg = getReg(CPR->getValue(), MBB, IP); |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 408 | BMI(MBB, IP, X86::MOVrr32, 1, R).addReg(SrcReg); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 409 | } else { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 410 | std::cerr << "Offending constant: " << C << "\n"; |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 411 | assert(0 && "Type not handled yet!"); |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 412 | } |
| 413 | } |
| 414 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 415 | /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function from |
| 416 | /// the stack into virtual registers. |
| 417 | /// |
| 418 | void ISel::LoadArgumentsToVirtualRegs(Function &Fn) { |
| 419 | // Emit instructions to load the arguments... On entry to a function on the |
| 420 | // X86, the stack frame looks like this: |
| 421 | // |
| 422 | // [ESP] -- return address |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 423 | // [ESP + 4] -- first argument (leftmost lexically) |
| 424 | // [ESP + 8] -- second argument, if first argument is four bytes in size |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 425 | // ... |
| 426 | // |
Chris Lattner | f158da2 | 2003-01-16 02:20:12 +0000 | [diff] [blame] | 427 | unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 428 | MachineFrameInfo *MFI = F->getFrameInfo(); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 429 | |
| 430 | for (Function::aiterator I = Fn.abegin(), E = Fn.aend(); I != E; ++I) { |
| 431 | unsigned Reg = getReg(*I); |
| 432 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 433 | int FI; // Frame object index |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 434 | switch (getClassB(I->getType())) { |
| 435 | case cByte: |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 436 | FI = MFI->CreateFixedObject(1, ArgOffset); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 437 | addFrameReference(BuildMI(BB, X86::MOVmr8, 4, Reg), FI); |
| 438 | break; |
| 439 | case cShort: |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 440 | FI = MFI->CreateFixedObject(2, ArgOffset); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 441 | addFrameReference(BuildMI(BB, X86::MOVmr16, 4, Reg), FI); |
| 442 | break; |
| 443 | case cInt: |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 444 | FI = MFI->CreateFixedObject(4, ArgOffset); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 445 | addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg), FI); |
| 446 | break; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 447 | case cLong: |
| 448 | FI = MFI->CreateFixedObject(8, ArgOffset); |
| 449 | addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg), FI); |
| 450 | addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg+1), FI, 4); |
| 451 | ArgOffset += 4; // longs require 4 additional bytes |
| 452 | break; |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 453 | case cFP: |
| 454 | unsigned Opcode; |
| 455 | if (I->getType() == Type::FloatTy) { |
| 456 | Opcode = X86::FLDr32; |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 457 | FI = MFI->CreateFixedObject(4, ArgOffset); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 458 | } else { |
| 459 | Opcode = X86::FLDr64; |
Chris Lattner | aa09b75 | 2002-12-28 21:08:28 +0000 | [diff] [blame] | 460 | FI = MFI->CreateFixedObject(8, ArgOffset); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 461 | ArgOffset += 4; // doubles require 4 additional bytes |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 462 | } |
| 463 | addFrameReference(BuildMI(BB, Opcode, 4, Reg), FI); |
| 464 | break; |
| 465 | default: |
| 466 | assert(0 && "Unhandled argument type!"); |
| 467 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 468 | ArgOffset += 4; // Each argument takes at least 4 bytes on the stack... |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 469 | } |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 470 | |
| 471 | // If the function takes variable number of arguments, add a frame offset for |
| 472 | // the start of the first vararg value... this is used to expand |
| 473 | // llvm.va_start. |
| 474 | if (Fn.getFunctionType()->isVarArg()) |
| 475 | VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 479 | /// SelectPHINodes - Insert machine code to generate phis. This is tricky |
| 480 | /// because we have to generate our sources into the source basic blocks, not |
| 481 | /// the current one. |
| 482 | /// |
| 483 | void ISel::SelectPHINodes() { |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 484 | const TargetInstrInfo &TII = TM.getInstrInfo(); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 485 | const Function &LF = *F->getFunction(); // The LLVM function... |
| 486 | for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) { |
| 487 | const BasicBlock *BB = I; |
| 488 | MachineBasicBlock *MBB = MBBMap[I]; |
| 489 | |
| 490 | // Loop over all of the PHI nodes in the LLVM basic block... |
| 491 | unsigned NumPHIs = 0; |
| 492 | for (BasicBlock::const_iterator I = BB->begin(); |
Chris Lattner | a81fc68 | 2003-10-19 00:26:11 +0000 | [diff] [blame^] | 493 | PHINode *PN = const_cast<PHINode*>(dyn_cast<PHINode>(I)); ++I) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 494 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 495 | // Create a new machine instr PHI node, and insert it. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 496 | unsigned PHIReg = getReg(*PN); |
| 497 | MachineInstr *PhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg); |
| 498 | MBB->insert(MBB->begin()+NumPHIs++, PhiMI); |
| 499 | |
| 500 | MachineInstr *LongPhiMI = 0; |
| 501 | if (PN->getType() == Type::LongTy || PN->getType() == Type::ULongTy) { |
| 502 | LongPhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg+1); |
| 503 | MBB->insert(MBB->begin()+NumPHIs++, LongPhiMI); |
| 504 | } |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 505 | |
Chris Lattner | a6e73f1 | 2003-05-12 14:22:21 +0000 | [diff] [blame] | 506 | // PHIValues - Map of blocks to incoming virtual registers. We use this |
| 507 | // so that we only initialize one incoming value for a particular block, |
| 508 | // even if the block has multiple entries in the PHI node. |
| 509 | // |
| 510 | std::map<MachineBasicBlock*, unsigned> PHIValues; |
| 511 | |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 512 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 513 | MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)]; |
Chris Lattner | a6e73f1 | 2003-05-12 14:22:21 +0000 | [diff] [blame] | 514 | unsigned ValReg; |
| 515 | std::map<MachineBasicBlock*, unsigned>::iterator EntryIt = |
| 516 | PHIValues.lower_bound(PredMBB); |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 517 | |
Chris Lattner | a6e73f1 | 2003-05-12 14:22:21 +0000 | [diff] [blame] | 518 | if (EntryIt != PHIValues.end() && EntryIt->first == PredMBB) { |
| 519 | // We already inserted an initialization of the register for this |
| 520 | // predecessor. Recycle it. |
| 521 | ValReg = EntryIt->second; |
| 522 | |
| 523 | } else { |
Chris Lattner | a81fc68 | 2003-10-19 00:26:11 +0000 | [diff] [blame^] | 524 | // Get the incoming value into a virtual register. |
Chris Lattner | a6e73f1 | 2003-05-12 14:22:21 +0000 | [diff] [blame] | 525 | // |
Chris Lattner | a81fc68 | 2003-10-19 00:26:11 +0000 | [diff] [blame^] | 526 | Value *Val = PN->getIncomingValue(i); |
| 527 | |
| 528 | // If this is a constant or GlobalValue, we may have to insert code |
| 529 | // into the basic block to compute it into a virtual register. |
| 530 | if (isa<Constant>(Val) || isa<GlobalValue>(Val)) { |
| 531 | // Because we don't want to clobber any values which might be in |
| 532 | // physical registers with the computation of this constant (which |
| 533 | // might be arbitrarily complex if it is a constant expression), |
| 534 | // just insert the computation at the top of the basic block. |
| 535 | MachineBasicBlock::iterator PI = PredMBB->begin(); |
| 536 | |
| 537 | // Skip over any PHI nodes though! |
| 538 | while (PI != PredMBB->end() && (*PI)->getOpcode() == X86::PHI) |
| 539 | ++PI; |
| 540 | |
| 541 | ValReg = getReg(Val, PredMBB, PI); |
| 542 | } else { |
| 543 | ValReg = getReg(Val); |
| 544 | } |
Chris Lattner | a6e73f1 | 2003-05-12 14:22:21 +0000 | [diff] [blame] | 545 | |
| 546 | // Remember that we inserted a value for this PHI for this predecessor |
| 547 | PHIValues.insert(EntryIt, std::make_pair(PredMBB, ValReg)); |
| 548 | } |
| 549 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 550 | PhiMI->addRegOperand(ValReg); |
| 551 | PhiMI->addMachineBasicBlockOperand(PredMBB); |
| 552 | if (LongPhiMI) { |
| 553 | LongPhiMI->addRegOperand(ValReg+1); |
| 554 | LongPhiMI->addMachineBasicBlockOperand(PredMBB); |
| 555 | } |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | } |
| 559 | } |
| 560 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 561 | // canFoldSetCCIntoBranch - Return the setcc instruction if we can fold it into |
| 562 | // the conditional branch instruction which is the only user of the cc |
| 563 | // instruction. This is the case if the conditional branch is the only user of |
| 564 | // the setcc, and if the setcc is in the same basic block as the conditional |
| 565 | // branch. We also don't handle long arguments below, so we reject them here as |
| 566 | // well. |
| 567 | // |
| 568 | static SetCondInst *canFoldSetCCIntoBranch(Value *V) { |
| 569 | if (SetCondInst *SCI = dyn_cast<SetCondInst>(V)) |
Chris Lattner | fd05924 | 2003-10-15 16:48:29 +0000 | [diff] [blame] | 570 | if (SCI->hasOneUse() && isa<BranchInst>(SCI->use_back()) && |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 571 | SCI->getParent() == cast<BranchInst>(SCI->use_back())->getParent()) { |
| 572 | const Type *Ty = SCI->getOperand(0)->getType(); |
| 573 | if (Ty != Type::LongTy && Ty != Type::ULongTy) |
| 574 | return SCI; |
| 575 | } |
| 576 | return 0; |
| 577 | } |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 578 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 579 | // Return a fixed numbering for setcc instructions which does not depend on the |
| 580 | // order of the opcodes. |
| 581 | // |
| 582 | static unsigned getSetCCNumber(unsigned Opcode) { |
| 583 | switch(Opcode) { |
| 584 | default: assert(0 && "Unknown setcc instruction!"); |
| 585 | case Instruction::SetEQ: return 0; |
| 586 | case Instruction::SetNE: return 1; |
| 587 | case Instruction::SetLT: return 2; |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 588 | case Instruction::SetGE: return 3; |
| 589 | case Instruction::SetGT: return 4; |
| 590 | case Instruction::SetLE: return 5; |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 591 | } |
| 592 | } |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 593 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 594 | // LLVM -> X86 signed X86 unsigned |
| 595 | // ----- ---------- ------------ |
| 596 | // seteq -> sete sete |
| 597 | // setne -> setne setne |
| 598 | // setlt -> setl setb |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 599 | // setge -> setge setae |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 600 | // setgt -> setg seta |
| 601 | // setle -> setle setbe |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 602 | static const unsigned SetCCOpcodeTab[2][6] = { |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 603 | {X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAEr, X86::SETAr, X86::SETBEr}, |
| 604 | {X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGEr, X86::SETGr, X86::SETLEr}, |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 605 | }; |
| 606 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 607 | bool ISel::EmitComparisonGetSignedness(unsigned OpNum, Value *Op0, Value *Op1, |
| 608 | MachineBasicBlock *MBB, |
| 609 | MachineBasicBlock::iterator &IP) { |
Brian Gaeke | 1749d63 | 2002-11-07 17:59:21 +0000 | [diff] [blame] | 610 | // The arguments are already supposed to be of the same type. |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 611 | const Type *CompTy = Op0->getType(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 612 | bool isSigned = CompTy->isSigned(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 613 | unsigned Class = getClassB(CompTy); |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 614 | unsigned Op0r = getReg(Op0, MBB, IP); |
Chris Lattner | 333864d | 2003-06-05 19:30:30 +0000 | [diff] [blame] | 615 | |
| 616 | // Special case handling of: cmp R, i |
| 617 | if (Class == cByte || Class == cShort || Class == cInt) |
| 618 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
Chris Lattner | c07736a | 2003-07-23 15:22:26 +0000 | [diff] [blame] | 619 | uint64_t Op1v = cast<ConstantInt>(CI)->getRawValue(); |
| 620 | |
Chris Lattner | 333864d | 2003-06-05 19:30:30 +0000 | [diff] [blame] | 621 | // Mask off any upper bits of the constant, if there are any... |
| 622 | Op1v &= (1ULL << (8 << Class)) - 1; |
| 623 | |
| 624 | switch (Class) { |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 625 | case cByte: BMI(MBB,IP, X86::CMPri8, 2).addReg(Op0r).addZImm(Op1v);break; |
| 626 | case cShort: BMI(MBB,IP, X86::CMPri16,2).addReg(Op0r).addZImm(Op1v);break; |
| 627 | case cInt: BMI(MBB,IP, X86::CMPri32,2).addReg(Op0r).addZImm(Op1v);break; |
Chris Lattner | 333864d | 2003-06-05 19:30:30 +0000 | [diff] [blame] | 628 | default: |
| 629 | assert(0 && "Invalid class!"); |
| 630 | } |
| 631 | return isSigned; |
| 632 | } |
| 633 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 634 | unsigned Op1r = getReg(Op1, MBB, IP); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 635 | switch (Class) { |
| 636 | default: assert(0 && "Unknown type class!"); |
| 637 | // Emit: cmp <var1>, <var2> (do the comparison). We can |
| 638 | // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with |
| 639 | // 32-bit. |
| 640 | case cByte: |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 641 | BMI(MBB, IP, X86::CMPrr8, 2).addReg(Op0r).addReg(Op1r); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 642 | break; |
| 643 | case cShort: |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 644 | BMI(MBB, IP, X86::CMPrr16, 2).addReg(Op0r).addReg(Op1r); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 645 | break; |
| 646 | case cInt: |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 647 | BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 648 | break; |
| 649 | case cFP: |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 650 | BMI(MBB, IP, X86::FpUCOM, 2).addReg(Op0r).addReg(Op1r); |
| 651 | BMI(MBB, IP, X86::FNSTSWr8, 0); |
| 652 | BMI(MBB, IP, X86::SAHF, 1); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 653 | isSigned = false; // Compare with unsigned operators |
| 654 | break; |
| 655 | |
| 656 | case cLong: |
| 657 | if (OpNum < 2) { // seteq, setne |
| 658 | unsigned LoTmp = makeAnotherReg(Type::IntTy); |
| 659 | unsigned HiTmp = makeAnotherReg(Type::IntTy); |
| 660 | unsigned FinalTmp = makeAnotherReg(Type::IntTy); |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 661 | BMI(MBB, IP, X86::XORrr32, 2, LoTmp).addReg(Op0r).addReg(Op1r); |
| 662 | BMI(MBB, IP, X86::XORrr32, 2, HiTmp).addReg(Op0r+1).addReg(Op1r+1); |
| 663 | BMI(MBB, IP, X86::ORrr32, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 664 | break; // Allow the sete or setne to be generated from flags set by OR |
| 665 | } else { |
| 666 | // Emit a sequence of code which compares the high and low parts once |
| 667 | // each, then uses a conditional move to handle the overflow case. For |
| 668 | // example, a setlt for long would generate code like this: |
| 669 | // |
| 670 | // AL = lo(op1) < lo(op2) // Signedness depends on operands |
| 671 | // BL = hi(op1) < hi(op2) // Always unsigned comparison |
| 672 | // dest = hi(op1) == hi(op2) ? AL : BL; |
| 673 | // |
| 674 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 675 | // FIXME: This would be much better if we had hierarchical register |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 676 | // classes! Until then, hardcode registers so that we can deal with their |
| 677 | // aliases (because we don't have conditional byte moves). |
| 678 | // |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 679 | BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r); |
| 680 | BMI(MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL); |
| 681 | BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r+1).addReg(Op1r+1); |
| 682 | BMI(MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, X86::BL); |
| 683 | BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH); |
| 684 | BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH); |
| 685 | BMI(MBB, IP, X86::CMOVErr16, 2, X86::BX).addReg(X86::BX).addReg(X86::AX); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 686 | // NOTE: visitSetCondInst knows that the value is dumped into the BL |
| 687 | // register at this point for long values... |
| 688 | return isSigned; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 689 | } |
| 690 | } |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 691 | return isSigned; |
| 692 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 693 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 694 | |
| 695 | /// SetCC instructions - Here we just emit boilerplate code to set a byte-sized |
| 696 | /// register, then move it to wherever the result should be. |
| 697 | /// |
| 698 | void ISel::visitSetCondInst(SetCondInst &I) { |
| 699 | if (canFoldSetCCIntoBranch(&I)) return; // Fold this into a branch... |
| 700 | |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 701 | unsigned DestReg = getReg(I); |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 702 | MachineBasicBlock::iterator MII = BB->end(); |
| 703 | emitSetCCOperation(BB, MII, I.getOperand(0), I.getOperand(1), I.getOpcode(), |
| 704 | DestReg); |
| 705 | } |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 706 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 707 | /// emitSetCCOperation - Common code shared between visitSetCondInst and |
| 708 | /// constant expression support. |
| 709 | void ISel::emitSetCCOperation(MachineBasicBlock *MBB, |
| 710 | MachineBasicBlock::iterator &IP, |
| 711 | Value *Op0, Value *Op1, unsigned Opcode, |
| 712 | unsigned TargetReg) { |
| 713 | unsigned OpNum = getSetCCNumber(Opcode); |
| 714 | bool isSigned = EmitComparisonGetSignedness(OpNum, Op0, Op1, MBB, IP); |
| 715 | |
| 716 | if (getClassB(Op0->getType()) != cLong || OpNum < 2) { |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 717 | // Handle normal comparisons with a setcc instruction... |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 718 | BMI(MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, TargetReg); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 719 | } else { |
| 720 | // Handle long comparisons by copying the value which is already in BL into |
| 721 | // the register we want... |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 722 | BMI(MBB, IP, X86::MOVrr8, 1, TargetReg).addReg(X86::BL); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 723 | } |
Brian Gaeke | 1749d63 | 2002-11-07 17:59:21 +0000 | [diff] [blame] | 724 | } |
Chris Lattner | 51b49a9 | 2002-11-02 19:45:49 +0000 | [diff] [blame] | 725 | |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 726 | |
| 727 | |
| 728 | |
Brian Gaeke | c250598 | 2002-11-30 11:57:28 +0000 | [diff] [blame] | 729 | /// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide |
| 730 | /// operand, in the specified target register. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 731 | void ISel::promote32(unsigned targetReg, const ValueRecord &VR) { |
| 732 | bool isUnsigned = VR.Ty->isUnsigned(); |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 733 | |
| 734 | // Make sure we have the register number for this value... |
| 735 | unsigned Reg = VR.Val ? getReg(VR.Val) : VR.Reg; |
| 736 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 737 | switch (getClassB(VR.Ty)) { |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 738 | case cByte: |
| 739 | // Extend value into target register (8->32) |
| 740 | if (isUnsigned) |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 741 | BuildMI(BB, X86::MOVZXr32r8, 1, targetReg).addReg(Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 742 | else |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 743 | BuildMI(BB, X86::MOVSXr32r8, 1, targetReg).addReg(Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 744 | break; |
| 745 | case cShort: |
| 746 | // Extend value into target register (16->32) |
| 747 | if (isUnsigned) |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 748 | BuildMI(BB, X86::MOVZXr32r16, 1, targetReg).addReg(Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 749 | else |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 750 | BuildMI(BB, X86::MOVSXr32r16, 1, targetReg).addReg(Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 751 | break; |
| 752 | case cInt: |
| 753 | // Move value into target register (32->32) |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 754 | BuildMI(BB, X86::MOVrr32, 1, targetReg).addReg(Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 755 | break; |
| 756 | default: |
| 757 | assert(0 && "Unpromotable operand class in promote32"); |
| 758 | } |
Brian Gaeke | c250598 | 2002-11-30 11:57:28 +0000 | [diff] [blame] | 759 | } |
Chris Lattner | c5291f5 | 2002-10-27 21:16:59 +0000 | [diff] [blame] | 760 | |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 761 | /// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such, |
| 762 | /// we have the following possibilities: |
| 763 | /// |
| 764 | /// ret void: No return value, simply emit a 'ret' instruction |
| 765 | /// ret sbyte, ubyte : Extend value into EAX and return |
| 766 | /// ret short, ushort: Extend value into EAX and return |
| 767 | /// ret int, uint : Move value into EAX and return |
| 768 | /// ret pointer : Move value into EAX and return |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 769 | /// ret long, ulong : Move value into EAX/EDX and return |
| 770 | /// ret float/double : Top of FP stack |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 771 | /// |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 772 | void ISel::visitReturnInst(ReturnInst &I) { |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 773 | if (I.getNumOperands() == 0) { |
| 774 | BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction |
| 775 | return; |
| 776 | } |
| 777 | |
| 778 | Value *RetVal = I.getOperand(0); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 779 | unsigned RetReg = getReg(RetVal); |
| 780 | switch (getClassB(RetVal->getType())) { |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 781 | case cByte: // integral return values: extend or move into EAX and return |
| 782 | case cShort: |
| 783 | case cInt: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 784 | promote32(X86::EAX, ValueRecord(RetReg, RetVal->getType())); |
Chris Lattner | dbd7372 | 2003-05-06 21:32:22 +0000 | [diff] [blame] | 785 | // Declare that EAX is live on exit |
Chris Lattner | c248903 | 2003-05-07 19:21:28 +0000 | [diff] [blame] | 786 | BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::EAX).addReg(X86::ESP); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 787 | break; |
| 788 | case cFP: // Floats & Doubles: Return in ST(0) |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 789 | BuildMI(BB, X86::FpSETRESULT, 1).addReg(RetReg); |
Chris Lattner | dbd7372 | 2003-05-06 21:32:22 +0000 | [diff] [blame] | 790 | // Declare that top-of-stack is live on exit |
Chris Lattner | c248903 | 2003-05-07 19:21:28 +0000 | [diff] [blame] | 791 | BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::ST0).addReg(X86::ESP); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 792 | break; |
| 793 | case cLong: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 794 | BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(RetReg); |
| 795 | BuildMI(BB, X86::MOVrr32, 1, X86::EDX).addReg(RetReg+1); |
Chris Lattner | dbd7372 | 2003-05-06 21:32:22 +0000 | [diff] [blame] | 796 | // Declare that EAX & EDX are live on exit |
Chris Lattner | c248903 | 2003-05-07 19:21:28 +0000 | [diff] [blame] | 797 | BuildMI(BB, X86::IMPLICIT_USE, 3).addReg(X86::EAX).addReg(X86::EDX).addReg(X86::ESP); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 798 | break; |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 799 | default: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 800 | visitInstruction(I); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 801 | } |
Chris Lattner | 43189d1 | 2002-11-17 20:07:45 +0000 | [diff] [blame] | 802 | // Emit a 'ret' instruction |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 803 | BuildMI(BB, X86::RET, 0); |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 806 | // getBlockAfter - Return the basic block which occurs lexically after the |
| 807 | // specified one. |
| 808 | static inline BasicBlock *getBlockAfter(BasicBlock *BB) { |
| 809 | Function::iterator I = BB; ++I; // Get iterator to next block |
| 810 | return I != BB->getParent()->end() ? &*I : 0; |
| 811 | } |
| 812 | |
Chris Lattner | 51b49a9 | 2002-11-02 19:45:49 +0000 | [diff] [blame] | 813 | /// visitBranchInst - Handle conditional and unconditional branches here. Note |
| 814 | /// that since code layout is frozen at this point, that if we are trying to |
| 815 | /// jump to a block that is the immediate successor of the current block, we can |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 816 | /// just make a fall-through (but we don't currently). |
Chris Lattner | 51b49a9 | 2002-11-02 19:45:49 +0000 | [diff] [blame] | 817 | /// |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 818 | void ISel::visitBranchInst(BranchInst &BI) { |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 819 | BasicBlock *NextBB = getBlockAfter(BI.getParent()); // BB after current one |
| 820 | |
| 821 | if (!BI.isConditional()) { // Unconditional branch? |
| 822 | if (BI.getSuccessor(0) != NextBB) |
| 823 | BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0)); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 824 | return; |
| 825 | } |
| 826 | |
| 827 | // See if we can fold the setcc into the branch itself... |
| 828 | SetCondInst *SCI = canFoldSetCCIntoBranch(BI.getCondition()); |
| 829 | if (SCI == 0) { |
| 830 | // Nope, cannot fold setcc into this branch. Emit a branch on a condition |
| 831 | // computed some other way... |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 832 | unsigned condReg = getReg(BI.getCondition()); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 833 | BuildMI(BB, X86::CMPri8, 2).addReg(condReg).addZImm(0); |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 834 | if (BI.getSuccessor(1) == NextBB) { |
| 835 | if (BI.getSuccessor(0) != NextBB) |
| 836 | BuildMI(BB, X86::JNE, 1).addPCDisp(BI.getSuccessor(0)); |
| 837 | } else { |
| 838 | BuildMI(BB, X86::JE, 1).addPCDisp(BI.getSuccessor(1)); |
| 839 | |
| 840 | if (BI.getSuccessor(0) != NextBB) |
| 841 | BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0)); |
| 842 | } |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 843 | return; |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 844 | } |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 845 | |
| 846 | unsigned OpNum = getSetCCNumber(SCI->getOpcode()); |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 847 | MachineBasicBlock::iterator MII = BB->end(); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 848 | bool isSigned = EmitComparisonGetSignedness(OpNum, SCI->getOperand(0), |
Chris Lattner | 58c41fe | 2003-08-24 19:19:47 +0000 | [diff] [blame] | 849 | SCI->getOperand(1), BB, MII); |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 850 | |
| 851 | // LLVM -> X86 signed X86 unsigned |
| 852 | // ----- ---------- ------------ |
| 853 | // seteq -> je je |
| 854 | // setne -> jne jne |
| 855 | // setlt -> jl jb |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 856 | // setge -> jge jae |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 857 | // setgt -> jg ja |
| 858 | // setle -> jle jbe |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 859 | static const unsigned OpcodeTab[2][6] = { |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 860 | { X86::JE, X86::JNE, X86::JB, X86::JAE, X86::JA, X86::JBE }, |
| 861 | { X86::JE, X86::JNE, X86::JL, X86::JGE, X86::JG, X86::JLE }, |
Chris Lattner | 6d40c19 | 2003-01-16 16:43:00 +0000 | [diff] [blame] | 862 | }; |
| 863 | |
Chris Lattner | 55f6fab | 2003-01-16 18:07:23 +0000 | [diff] [blame] | 864 | if (BI.getSuccessor(0) != NextBB) { |
| 865 | BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(0)); |
| 866 | if (BI.getSuccessor(1) != NextBB) |
| 867 | BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(1)); |
| 868 | } else { |
| 869 | // Change to the inverse condition... |
| 870 | if (BI.getSuccessor(1) != NextBB) { |
| 871 | OpNum ^= 1; |
| 872 | BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(1)); |
| 873 | } |
| 874 | } |
Chris Lattner | 2df035b | 2002-11-02 19:27:56 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 877 | |
| 878 | /// doCall - This emits an abstract call instruction, setting up the arguments |
| 879 | /// and the return value as appropriate. For the actual function call itself, |
| 880 | /// it inserts the specified CallMI instruction into the stream. |
| 881 | /// |
| 882 | void ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI, |
| 883 | const std::vector<ValueRecord> &Args) { |
| 884 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 885 | // Count how many bytes are to be pushed on the stack... |
| 886 | unsigned NumBytes = 0; |
Misha Brukman | 0d2cf3a | 2002-12-04 19:22:53 +0000 | [diff] [blame] | 887 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 888 | if (!Args.empty()) { |
| 889 | for (unsigned i = 0, e = Args.size(); i != e; ++i) |
| 890 | switch (getClassB(Args[i].Ty)) { |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 891 | case cByte: case cShort: case cInt: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 892 | NumBytes += 4; break; |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 893 | case cLong: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 894 | NumBytes += 8; break; |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 895 | case cFP: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 896 | NumBytes += Args[i].Ty == Type::FloatTy ? 4 : 8; |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 897 | break; |
| 898 | default: assert(0 && "Unknown class!"); |
| 899 | } |
| 900 | |
| 901 | // Adjust the stack pointer for the new arguments... |
| 902 | BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(NumBytes); |
| 903 | |
| 904 | // Arguments go on the stack in reverse order, as specified by the ABI. |
| 905 | unsigned ArgOffset = 0; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 906 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 907 | unsigned ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 908 | switch (getClassB(Args[i].Ty)) { |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 909 | case cByte: |
| 910 | case cShort: { |
| 911 | // Promote arg to 32 bits wide into a temporary register... |
| 912 | unsigned R = makeAnotherReg(Type::UIntTy); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 913 | promote32(R, Args[i]); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 914 | addRegOffset(BuildMI(BB, X86::MOVrm32, 5), |
| 915 | X86::ESP, ArgOffset).addReg(R); |
| 916 | break; |
| 917 | } |
| 918 | case cInt: |
| 919 | addRegOffset(BuildMI(BB, X86::MOVrm32, 5), |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 920 | X86::ESP, ArgOffset).addReg(ArgReg); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 921 | break; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 922 | case cLong: |
| 923 | addRegOffset(BuildMI(BB, X86::MOVrm32, 5), |
| 924 | X86::ESP, ArgOffset).addReg(ArgReg); |
| 925 | addRegOffset(BuildMI(BB, X86::MOVrm32, 5), |
| 926 | X86::ESP, ArgOffset+4).addReg(ArgReg+1); |
| 927 | ArgOffset += 4; // 8 byte entry, not 4. |
| 928 | break; |
| 929 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 930 | case cFP: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 931 | if (Args[i].Ty == Type::FloatTy) { |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 932 | addRegOffset(BuildMI(BB, X86::FSTr32, 5), |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 933 | X86::ESP, ArgOffset).addReg(ArgReg); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 934 | } else { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 935 | assert(Args[i].Ty == Type::DoubleTy && "Unknown FP type!"); |
| 936 | addRegOffset(BuildMI(BB, X86::FSTr64, 5), |
| 937 | X86::ESP, ArgOffset).addReg(ArgReg); |
| 938 | ArgOffset += 4; // 8 byte entry, not 4. |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 939 | } |
| 940 | break; |
| 941 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 942 | default: assert(0 && "Unknown class!"); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 943 | } |
| 944 | ArgOffset += 4; |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 945 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 946 | } else { |
| 947 | BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(0); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 948 | } |
Chris Lattner | 6e49a4b | 2002-12-13 14:13:27 +0000 | [diff] [blame] | 949 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 950 | BB->push_back(CallMI); |
Misha Brukman | 0d2cf3a | 2002-12-04 19:22:53 +0000 | [diff] [blame] | 951 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 952 | BuildMI(BB, X86::ADJCALLSTACKUP, 1).addZImm(NumBytes); |
Chris Lattner | a324364 | 2002-12-04 23:45:28 +0000 | [diff] [blame] | 953 | |
| 954 | // If there is a return value, scavenge the result from the location the call |
| 955 | // leaves it in... |
| 956 | // |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 957 | if (Ret.Ty != Type::VoidTy) { |
| 958 | unsigned DestClass = getClassB(Ret.Ty); |
| 959 | switch (DestClass) { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 960 | case cByte: |
| 961 | case cShort: |
| 962 | case cInt: { |
| 963 | // Integral results are in %eax, or the appropriate portion |
| 964 | // thereof. |
| 965 | static const unsigned regRegMove[] = { |
| 966 | X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 |
| 967 | }; |
| 968 | static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX }; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 969 | BuildMI(BB, regRegMove[DestClass], 1, Ret.Reg).addReg(AReg[DestClass]); |
Chris Lattner | 4fa1acc | 2002-12-04 23:50:28 +0000 | [diff] [blame] | 970 | break; |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 971 | } |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 972 | case cFP: // Floating-point return values live in %ST(0) |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 973 | BuildMI(BB, X86::FpGETRESULT, 1, Ret.Reg); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 974 | break; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 975 | case cLong: // Long values are left in EDX:EAX |
| 976 | BuildMI(BB, X86::MOVrr32, 1, Ret.Reg).addReg(X86::EAX); |
| 977 | BuildMI(BB, X86::MOVrr32, 1, Ret.Reg+1).addReg(X86::EDX); |
| 978 | break; |
| 979 | default: assert(0 && "Unknown class!"); |
Chris Lattner | 4fa1acc | 2002-12-04 23:50:28 +0000 | [diff] [blame] | 980 | } |
Chris Lattner | a324364 | 2002-12-04 23:45:28 +0000 | [diff] [blame] | 981 | } |
Brian Gaeke | fa8d571 | 2002-11-22 11:07:01 +0000 | [diff] [blame] | 982 | } |
Chris Lattner | 2df035b | 2002-11-02 19:27:56 +0000 | [diff] [blame] | 983 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 984 | |
| 985 | /// visitCallInst - Push args on stack and do a procedure call instruction. |
| 986 | void ISel::visitCallInst(CallInst &CI) { |
| 987 | MachineInstr *TheCall; |
| 988 | if (Function *F = CI.getCalledFunction()) { |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 989 | // Is it an intrinsic function call? |
| 990 | if (LLVMIntrinsic::ID ID = (LLVMIntrinsic::ID)F->getIntrinsicID()) { |
| 991 | visitIntrinsicCall(ID, CI); // Special intrinsics are not handled here |
| 992 | return; |
| 993 | } |
| 994 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 995 | // Emit a CALL instruction with PC-relative displacement. |
| 996 | TheCall = BuildMI(X86::CALLpcrel32, 1).addGlobalAddress(F, true); |
| 997 | } else { // Emit an indirect call... |
| 998 | unsigned Reg = getReg(CI.getCalledValue()); |
| 999 | TheCall = BuildMI(X86::CALLr32, 1).addReg(Reg); |
| 1000 | } |
| 1001 | |
| 1002 | std::vector<ValueRecord> Args; |
| 1003 | for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i) |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1004 | Args.push_back(ValueRecord(CI.getOperand(i))); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1005 | |
| 1006 | unsigned DestReg = CI.getType() != Type::VoidTy ? getReg(CI) : 0; |
| 1007 | doCall(ValueRecord(DestReg, CI.getType()), TheCall, Args); |
| 1008 | } |
| 1009 | |
Chris Lattner | aeb54b8 | 2003-08-28 21:23:43 +0000 | [diff] [blame] | 1010 | |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1011 | void ISel::visitIntrinsicCall(LLVMIntrinsic::ID ID, CallInst &CI) { |
| 1012 | unsigned TmpReg1, TmpReg2; |
| 1013 | switch (ID) { |
| 1014 | case LLVMIntrinsic::va_start: |
| 1015 | // Get the address of the first vararg value... |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1016 | TmpReg1 = getReg(CI); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1017 | addFrameReference(BuildMI(BB, X86::LEAr32, 5, TmpReg1), VarArgsFrameIndex); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1018 | return; |
| 1019 | |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1020 | case LLVMIntrinsic::va_copy: |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1021 | TmpReg1 = getReg(CI); |
| 1022 | TmpReg2 = getReg(CI.getOperand(1)); |
| 1023 | BuildMI(BB, X86::MOVrr32, 1, TmpReg1).addReg(TmpReg2); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1024 | return; |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1025 | case LLVMIntrinsic::va_end: return; // Noop on X86 |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1026 | |
Chris Lattner | c151e4f | 2003-06-29 16:42:32 +0000 | [diff] [blame] | 1027 | case LLVMIntrinsic::longjmp: |
Chris Lattner | 72af6b8 | 2003-08-18 16:06:09 +0000 | [diff] [blame] | 1028 | case LLVMIntrinsic::siglongjmp: |
Chris Lattner | aeb54b8 | 2003-08-28 21:23:43 +0000 | [diff] [blame] | 1029 | BuildMI(BB, X86::CALLpcrel32, 1).addExternalSymbol("abort", true); |
Brian Gaeke | d461505 | 2003-07-18 20:23:43 +0000 | [diff] [blame] | 1030 | return; |
| 1031 | |
Chris Lattner | c151e4f | 2003-06-29 16:42:32 +0000 | [diff] [blame] | 1032 | case LLVMIntrinsic::setjmp: |
Chris Lattner | 72af6b8 | 2003-08-18 16:06:09 +0000 | [diff] [blame] | 1033 | case LLVMIntrinsic::sigsetjmp: |
Chris Lattner | eb093fb | 2003-06-30 19:35:54 +0000 | [diff] [blame] | 1034 | // Setjmp always returns zero... |
| 1035 | BuildMI(BB, X86::MOVir32, 1, getReg(CI)).addZImm(0); |
Chris Lattner | c151e4f | 2003-06-29 16:42:32 +0000 | [diff] [blame] | 1036 | return; |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1037 | default: assert(0 && "Unknown intrinsic for X86!"); |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 1042 | /// visitSimpleBinary - Implement simple binary operators for integral types... |
| 1043 | /// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, 4 for |
| 1044 | /// Xor. |
| 1045 | void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) { |
| 1046 | unsigned DestReg = getReg(B); |
| 1047 | MachineBasicBlock::iterator MI = BB->end(); |
| 1048 | emitSimpleBinaryOperation(BB, MI, B.getOperand(0), B.getOperand(1), |
| 1049 | OperatorClass, DestReg); |
| 1050 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1051 | |
Chris Lattner | 68aad93 | 2002-11-02 20:13:22 +0000 | [diff] [blame] | 1052 | /// visitSimpleBinary - Implement simple binary operators for integral types... |
| 1053 | /// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, |
| 1054 | /// 4 for Xor. |
| 1055 | /// |
Chris Lattner | b515f6d | 2003-05-08 20:49:25 +0000 | [diff] [blame] | 1056 | /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary |
| 1057 | /// and constant expression support. |
| 1058 | void ISel::emitSimpleBinaryOperation(MachineBasicBlock *BB, |
| 1059 | MachineBasicBlock::iterator &IP, |
| 1060 | Value *Op0, Value *Op1, |
| 1061 | unsigned OperatorClass,unsigned TargetReg){ |
| 1062 | unsigned Class = getClassB(Op0->getType()); |
Chris Lattner | 35333e1 | 2003-06-05 18:28:55 +0000 | [diff] [blame] | 1063 | if (!isa<ConstantInt>(Op1) || Class == cLong) { |
| 1064 | static const unsigned OpcodeTab[][4] = { |
| 1065 | // Arithmetic operators |
| 1066 | { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32, X86::FpADD }, // ADD |
| 1067 | { X86::SUBrr8, X86::SUBrr16, X86::SUBrr32, X86::FpSUB }, // SUB |
| 1068 | |
| 1069 | // Bitwise operators |
| 1070 | { X86::ANDrr8, X86::ANDrr16, X86::ANDrr32, 0 }, // AND |
| 1071 | { X86:: ORrr8, X86:: ORrr16, X86:: ORrr32, 0 }, // OR |
| 1072 | { X86::XORrr8, X86::XORrr16, X86::XORrr32, 0 }, // XOR |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1073 | }; |
Chris Lattner | 35333e1 | 2003-06-05 18:28:55 +0000 | [diff] [blame] | 1074 | |
| 1075 | bool isLong = false; |
| 1076 | if (Class == cLong) { |
| 1077 | isLong = true; |
| 1078 | Class = cInt; // Bottom 32 bits are handled just like ints |
| 1079 | } |
| 1080 | |
| 1081 | unsigned Opcode = OpcodeTab[OperatorClass][Class]; |
| 1082 | assert(Opcode && "Floating point arguments to logical inst?"); |
| 1083 | unsigned Op0r = getReg(Op0, BB, IP); |
| 1084 | unsigned Op1r = getReg(Op1, BB, IP); |
| 1085 | BMI(BB, IP, Opcode, 2, TargetReg).addReg(Op0r).addReg(Op1r); |
| 1086 | |
| 1087 | if (isLong) { // Handle the upper 32 bits of long values... |
| 1088 | static const unsigned TopTab[] = { |
| 1089 | X86::ADCrr32, X86::SBBrr32, X86::ANDrr32, X86::ORrr32, X86::XORrr32 |
| 1090 | }; |
| 1091 | BMI(BB, IP, TopTab[OperatorClass], 2, |
| 1092 | TargetReg+1).addReg(Op0r+1).addReg(Op1r+1); |
| 1093 | } |
| 1094 | } else { |
| 1095 | // Special case: op Reg, <const> |
| 1096 | ConstantInt *Op1C = cast<ConstantInt>(Op1); |
| 1097 | |
| 1098 | static const unsigned OpcodeTab[][3] = { |
| 1099 | // Arithmetic operators |
| 1100 | { X86::ADDri8, X86::ADDri16, X86::ADDri32 }, // ADD |
| 1101 | { X86::SUBri8, X86::SUBri16, X86::SUBri32 }, // SUB |
| 1102 | |
| 1103 | // Bitwise operators |
| 1104 | { X86::ANDri8, X86::ANDri16, X86::ANDri32 }, // AND |
| 1105 | { X86:: ORri8, X86:: ORri16, X86:: ORri32 }, // OR |
| 1106 | { X86::XORri8, X86::XORri16, X86::XORri32 }, // XOR |
| 1107 | }; |
| 1108 | |
| 1109 | assert(Class < 3 && "General code handles 64-bit integer types!"); |
| 1110 | unsigned Opcode = OpcodeTab[OperatorClass][Class]; |
| 1111 | unsigned Op0r = getReg(Op0, BB, IP); |
Chris Lattner | c07736a | 2003-07-23 15:22:26 +0000 | [diff] [blame] | 1112 | uint64_t Op1v = cast<ConstantInt>(Op1C)->getRawValue(); |
Chris Lattner | 35333e1 | 2003-06-05 18:28:55 +0000 | [diff] [blame] | 1113 | |
| 1114 | // Mask off any upper bits of the constant, if there are any... |
| 1115 | Op1v &= (1ULL << (8 << Class)) - 1; |
| 1116 | BMI(BB, IP, Opcode, 2, TargetReg).addReg(Op0r).addZImm(Op1v); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1117 | } |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1120 | /// doMultiply - Emit appropriate instructions to multiply together the |
| 1121 | /// registers op0Reg and op1Reg, and put the result in DestReg. The type of the |
| 1122 | /// result should be given as DestTy. |
| 1123 | /// |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 1124 | void ISel::doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI, |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1125 | unsigned DestReg, const Type *DestTy, |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 1126 | unsigned op0Reg, unsigned op1Reg) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1127 | unsigned Class = getClass(DestTy); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1128 | switch (Class) { |
| 1129 | case cFP: // Floating point multiply |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1130 | BMI(BB, MBBI, X86::FpMUL, 2, DestReg).addReg(op0Reg).addReg(op1Reg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1131 | return; |
Chris Lattner | 0f1c461 | 2003-06-21 17:16:58 +0000 | [diff] [blame] | 1132 | case cInt: |
| 1133 | case cShort: |
| 1134 | BMI(BB, MBBI, Class == cInt ? X86::IMULr32 : X86::IMULr16, 2, DestReg) |
| 1135 | .addReg(op0Reg).addReg(op1Reg); |
| 1136 | return; |
| 1137 | case cByte: |
| 1138 | // Must use the MUL instruction, which forces use of AL... |
| 1139 | BMI(MBB, MBBI, X86::MOVrr8, 1, X86::AL).addReg(op0Reg); |
| 1140 | BMI(MBB, MBBI, X86::MULr8, 1).addReg(op1Reg); |
| 1141 | BMI(MBB, MBBI, X86::MOVrr8, 1, DestReg).addReg(X86::AL); |
| 1142 | return; |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1143 | default: |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1144 | case cLong: assert(0 && "doMultiply cannot operate on LONG values!"); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1145 | } |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
Chris Lattner | ca9671d | 2002-11-02 20:28:58 +0000 | [diff] [blame] | 1148 | /// visitMul - Multiplies are not simple binary operators because they must deal |
| 1149 | /// with the EAX register explicitly. |
| 1150 | /// |
| 1151 | void ISel::visitMul(BinaryOperator &I) { |
Chris Lattner | 202a2d0 | 2002-12-13 13:07:42 +0000 | [diff] [blame] | 1152 | unsigned Op0Reg = getReg(I.getOperand(0)); |
| 1153 | unsigned Op1Reg = getReg(I.getOperand(1)); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1154 | unsigned DestReg = getReg(I); |
| 1155 | |
| 1156 | // Simple scalar multiply? |
| 1157 | if (I.getType() != Type::LongTy && I.getType() != Type::ULongTy) { |
| 1158 | MachineBasicBlock::iterator MBBI = BB->end(); |
| 1159 | doMultiply(BB, MBBI, DestReg, I.getType(), Op0Reg, Op1Reg); |
| 1160 | } else { |
| 1161 | // Long value. We have to do things the hard way... |
| 1162 | // Multiply the two low parts... capturing carry into EDX |
| 1163 | BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(Op0Reg); |
| 1164 | BuildMI(BB, X86::MULr32, 1).addReg(Op1Reg); // AL*BL |
| 1165 | |
| 1166 | unsigned OverflowReg = makeAnotherReg(Type::UIntTy); |
| 1167 | BuildMI(BB, X86::MOVrr32, 1, DestReg).addReg(X86::EAX); // AL*BL |
| 1168 | BuildMI(BB, X86::MOVrr32, 1, OverflowReg).addReg(X86::EDX); // AL*BL >> 32 |
| 1169 | |
| 1170 | MachineBasicBlock::iterator MBBI = BB->end(); |
Chris Lattner | 034acf0 | 2003-06-21 18:15:27 +0000 | [diff] [blame] | 1171 | unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL |
| 1172 | BMI(BB, MBBI, X86::IMULr32, 2, AHBLReg).addReg(Op0Reg+1).addReg(Op1Reg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1173 | |
| 1174 | unsigned AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy); |
| 1175 | BuildMI(BB, X86::ADDrr32, 2, // AH*BL+(AL*BL >> 32) |
| 1176 | AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg); |
| 1177 | |
| 1178 | MBBI = BB->end(); |
Chris Lattner | 034acf0 | 2003-06-21 18:15:27 +0000 | [diff] [blame] | 1179 | unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH |
| 1180 | BMI(BB, MBBI, X86::IMULr32, 2, ALBHReg).addReg(Op0Reg).addReg(Op1Reg+1); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1181 | |
| 1182 | BuildMI(BB, X86::ADDrr32, 2, // AL*BH + AH*BL + (AL*BL >> 32) |
| 1183 | DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg); |
| 1184 | } |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1185 | } |
Chris Lattner | ca9671d | 2002-11-02 20:28:58 +0000 | [diff] [blame] | 1186 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1187 | |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1188 | /// visitDivRem - Handle division and remainder instructions... these |
| 1189 | /// instruction both require the same instructions to be generated, they just |
| 1190 | /// select the result from a different register. Note that both of these |
| 1191 | /// instructions work differently for signed and unsigned operands. |
| 1192 | /// |
| 1193 | void ISel::visitDivRem(BinaryOperator &I) { |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1194 | unsigned Class = getClass(I.getType()); |
| 1195 | unsigned Op0Reg, Op1Reg, ResultReg = getReg(I); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1196 | |
| 1197 | switch (Class) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1198 | case cFP: // Floating point divide |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1199 | if (I.getOpcode() == Instruction::Div) { |
| 1200 | Op0Reg = getReg(I.getOperand(0)); |
| 1201 | Op1Reg = getReg(I.getOperand(1)); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1202 | BuildMI(BB, X86::FpDIV, 2, ResultReg).addReg(Op0Reg).addReg(Op1Reg); |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1203 | } else { // Floating point remainder... |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1204 | MachineInstr *TheCall = |
| 1205 | BuildMI(X86::CALLpcrel32, 1).addExternalSymbol("fmod", true); |
| 1206 | std::vector<ValueRecord> Args; |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1207 | Args.push_back(ValueRecord(I.getOperand(0))); |
| 1208 | Args.push_back(ValueRecord(I.getOperand(1))); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1209 | doCall(ValueRecord(ResultReg, Type::DoubleTy), TheCall, Args); |
| 1210 | } |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1211 | return; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1212 | case cLong: { |
| 1213 | static const char *FnName[] = |
| 1214 | { "__moddi3", "__divdi3", "__umoddi3", "__udivdi3" }; |
| 1215 | |
| 1216 | unsigned NameIdx = I.getType()->isUnsigned()*2; |
| 1217 | NameIdx += I.getOpcode() == Instruction::Div; |
| 1218 | MachineInstr *TheCall = |
| 1219 | BuildMI(X86::CALLpcrel32, 1).addExternalSymbol(FnName[NameIdx], true); |
| 1220 | |
| 1221 | std::vector<ValueRecord> Args; |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1222 | Args.push_back(ValueRecord(I.getOperand(0))); |
| 1223 | Args.push_back(ValueRecord(I.getOperand(1))); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1224 | doCall(ValueRecord(ResultReg, Type::LongTy), TheCall, Args); |
| 1225 | return; |
| 1226 | } |
| 1227 | case cByte: case cShort: case cInt: |
Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 1228 | break; // Small integrals, handled below... |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1229 | default: assert(0 && "Unknown class!"); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1230 | } |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1231 | |
| 1232 | static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX }; |
| 1233 | static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 }; |
Chris Lattner | 7b52c03 | 2003-06-22 03:31:18 +0000 | [diff] [blame] | 1234 | static const unsigned SarOpcode[]={ X86::SARir8, X86::SARir16, X86::SARir32 }; |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1235 | static const unsigned ClrOpcode[]={ X86::XORrr8, X86::XORrr16, X86::XORrr32 }; |
| 1236 | static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX }; |
| 1237 | |
| 1238 | static const unsigned DivOpcode[][4] = { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1239 | { X86::DIVr8 , X86::DIVr16 , X86::DIVr32 , 0 }, // Unsigned division |
| 1240 | { X86::IDIVr8, X86::IDIVr16, X86::IDIVr32, 0 }, // Signed division |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1241 | }; |
| 1242 | |
| 1243 | bool isSigned = I.getType()->isSigned(); |
| 1244 | unsigned Reg = Regs[Class]; |
| 1245 | unsigned ExtReg = ExtRegs[Class]; |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1246 | |
| 1247 | // Put the first operand into one of the A registers... |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1248 | Op0Reg = getReg(I.getOperand(0)); |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1249 | BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg); |
| 1250 | |
| 1251 | if (isSigned) { |
| 1252 | // Emit a sign extension instruction... |
Chris Lattner | 7b52c03 | 2003-06-22 03:31:18 +0000 | [diff] [blame] | 1253 | unsigned ShiftResult = makeAnotherReg(I.getType()); |
| 1254 | BuildMI(BB, SarOpcode[Class], 2, ShiftResult).addReg(Op0Reg).addZImm(31); |
| 1255 | BuildMI(BB, MovOpcode[Class], 1, ExtReg).addReg(ShiftResult); |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1256 | } else { |
| 1257 | // If unsigned, emit a zeroing instruction... (reg = xor reg, reg) |
| 1258 | BuildMI(BB, ClrOpcode[Class], 2, ExtReg).addReg(ExtReg).addReg(ExtReg); |
| 1259 | } |
| 1260 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1261 | // Emit the appropriate divide or remainder instruction... |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 1262 | Op1Reg = getReg(I.getOperand(1)); |
Chris Lattner | 92845e3 | 2002-11-21 18:54:29 +0000 | [diff] [blame] | 1263 | BuildMI(BB, DivOpcode[isSigned][Class], 1).addReg(Op1Reg); |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1264 | |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1265 | // Figure out which register we want to pick the result out of... |
| 1266 | unsigned DestReg = (I.getOpcode() == Instruction::Div) ? Reg : ExtReg; |
| 1267 | |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1268 | // Put the result into the destination register... |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1269 | BuildMI(BB, MovOpcode[Class], 1, ResultReg).addReg(DestReg); |
Chris Lattner | ca9671d | 2002-11-02 20:28:58 +0000 | [diff] [blame] | 1270 | } |
Chris Lattner | e2954c8 | 2002-11-02 20:04:26 +0000 | [diff] [blame] | 1271 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1272 | |
Brian Gaeke | a1719c9 | 2002-10-31 23:03:59 +0000 | [diff] [blame] | 1273 | /// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here |
| 1274 | /// for constant immediate shift values, and for constant immediate |
| 1275 | /// shift values equal to 1. Even the general case is sort of special, |
| 1276 | /// because the shift amount has to be in CL, not just any old register. |
| 1277 | /// |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1278 | void ISel::visitShiftInst(ShiftInst &I) { |
| 1279 | unsigned SrcReg = getReg(I.getOperand(0)); |
Chris Lattner | f01729e | 2002-11-02 20:54:46 +0000 | [diff] [blame] | 1280 | unsigned DestReg = getReg(I); |
Chris Lattner | e9913f2 | 2002-11-02 01:41:55 +0000 | [diff] [blame] | 1281 | bool isLeftShift = I.getOpcode() == Instruction::Shl; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1282 | bool isSigned = I.getType()->isSigned(); |
| 1283 | unsigned Class = getClass(I.getType()); |
| 1284 | |
| 1285 | static const unsigned ConstantOperand[][4] = { |
| 1286 | { X86::SHRir8, X86::SHRir16, X86::SHRir32, X86::SHRDir32 }, // SHR |
| 1287 | { X86::SARir8, X86::SARir16, X86::SARir32, X86::SHRDir32 }, // SAR |
| 1288 | { X86::SHLir8, X86::SHLir16, X86::SHLir32, X86::SHLDir32 }, // SHL |
| 1289 | { X86::SHLir8, X86::SHLir16, X86::SHLir32, X86::SHLDir32 }, // SAL = SHL |
| 1290 | }; |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 1291 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1292 | static const unsigned NonConstantOperand[][4] = { |
| 1293 | { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32 }, // SHR |
| 1294 | { X86::SARrr8, X86::SARrr16, X86::SARrr32 }, // SAR |
| 1295 | { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SHL |
| 1296 | { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SAL = SHL |
| 1297 | }; |
Chris Lattner | 796df73 | 2002-11-02 00:44:25 +0000 | [diff] [blame] | 1298 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1299 | // Longs, as usual, are handled specially... |
| 1300 | if (Class == cLong) { |
| 1301 | // If we have a constant shift, we can generate much more efficient code |
| 1302 | // than otherwise... |
| 1303 | // |
| 1304 | if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getOperand(1))) { |
| 1305 | unsigned Amount = CUI->getValue(); |
| 1306 | if (Amount < 32) { |
| 1307 | const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned]; |
| 1308 | if (isLeftShift) { |
| 1309 | BuildMI(BB, Opc[3], 3, |
| 1310 | DestReg+1).addReg(SrcReg+1).addReg(SrcReg).addZImm(Amount); |
| 1311 | BuildMI(BB, Opc[2], 2, DestReg).addReg(SrcReg).addZImm(Amount); |
| 1312 | } else { |
| 1313 | BuildMI(BB, Opc[3], 3, |
| 1314 | DestReg).addReg(SrcReg ).addReg(SrcReg+1).addZImm(Amount); |
| 1315 | BuildMI(BB, Opc[2], 2, DestReg+1).addReg(SrcReg+1).addZImm(Amount); |
| 1316 | } |
| 1317 | } else { // Shifting more than 32 bits |
| 1318 | Amount -= 32; |
| 1319 | if (isLeftShift) { |
| 1320 | BuildMI(BB, X86::SHLir32, 2,DestReg+1).addReg(SrcReg).addZImm(Amount); |
| 1321 | BuildMI(BB, X86::MOVir32, 1,DestReg ).addZImm(0); |
| 1322 | } else { |
| 1323 | unsigned Opcode = isSigned ? X86::SARir32 : X86::SHRir32; |
| 1324 | BuildMI(BB, Opcode, 2, DestReg).addReg(SrcReg+1).addZImm(Amount); |
| 1325 | BuildMI(BB, X86::MOVir32, 1, DestReg+1).addZImm(0); |
| 1326 | } |
| 1327 | } |
| 1328 | } else { |
Chris Lattner | 9171ef5 | 2003-06-01 01:56:54 +0000 | [diff] [blame] | 1329 | unsigned TmpReg = makeAnotherReg(Type::IntTy); |
| 1330 | |
| 1331 | if (!isLeftShift && isSigned) { |
| 1332 | // If this is a SHR of a Long, then we need to do funny sign extension |
| 1333 | // stuff. TmpReg gets the value to use as the high-part if we are |
| 1334 | // shifting more than 32 bits. |
| 1335 | BuildMI(BB, X86::SARir32, 2, TmpReg).addReg(SrcReg).addZImm(31); |
| 1336 | } else { |
| 1337 | // Other shifts use a fixed zero value if the shift is more than 32 |
| 1338 | // bits. |
| 1339 | BuildMI(BB, X86::MOVir32, 1, TmpReg).addZImm(0); |
| 1340 | } |
| 1341 | |
| 1342 | // Initialize CL with the shift amount... |
| 1343 | unsigned ShiftAmount = getReg(I.getOperand(1)); |
| 1344 | BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(ShiftAmount); |
| 1345 | |
| 1346 | unsigned TmpReg2 = makeAnotherReg(Type::IntTy); |
| 1347 | unsigned TmpReg3 = makeAnotherReg(Type::IntTy); |
| 1348 | if (isLeftShift) { |
| 1349 | // TmpReg2 = shld inHi, inLo |
| 1350 | BuildMI(BB, X86::SHLDrr32, 2, TmpReg2).addReg(SrcReg+1).addReg(SrcReg); |
| 1351 | // TmpReg3 = shl inLo, CL |
| 1352 | BuildMI(BB, X86::SHLrr32, 1, TmpReg3).addReg(SrcReg); |
| 1353 | |
| 1354 | // Set the flags to indicate whether the shift was by more than 32 bits. |
| 1355 | BuildMI(BB, X86::TESTri8, 2).addReg(X86::CL).addZImm(32); |
| 1356 | |
| 1357 | // DestHi = (>32) ? TmpReg3 : TmpReg2; |
| 1358 | BuildMI(BB, X86::CMOVNErr32, 2, |
| 1359 | DestReg+1).addReg(TmpReg2).addReg(TmpReg3); |
| 1360 | // DestLo = (>32) ? TmpReg : TmpReg3; |
| 1361 | BuildMI(BB, X86::CMOVNErr32, 2, DestReg).addReg(TmpReg3).addReg(TmpReg); |
| 1362 | } else { |
| 1363 | // TmpReg2 = shrd inLo, inHi |
| 1364 | BuildMI(BB, X86::SHRDrr32, 2, TmpReg2).addReg(SrcReg).addReg(SrcReg+1); |
| 1365 | // TmpReg3 = s[ah]r inHi, CL |
| 1366 | BuildMI(BB, isSigned ? X86::SARrr32 : X86::SHRrr32, 1, TmpReg3) |
| 1367 | .addReg(SrcReg+1); |
| 1368 | |
| 1369 | // Set the flags to indicate whether the shift was by more than 32 bits. |
| 1370 | BuildMI(BB, X86::TESTri8, 2).addReg(X86::CL).addZImm(32); |
| 1371 | |
| 1372 | // DestLo = (>32) ? TmpReg3 : TmpReg2; |
| 1373 | BuildMI(BB, X86::CMOVNErr32, 2, |
| 1374 | DestReg).addReg(TmpReg2).addReg(TmpReg3); |
| 1375 | |
| 1376 | // DestHi = (>32) ? TmpReg : TmpReg3; |
| 1377 | BuildMI(BB, X86::CMOVNErr32, 2, |
| 1378 | DestReg+1).addReg(TmpReg3).addReg(TmpReg); |
| 1379 | } |
Brian Gaeke | a1719c9 | 2002-10-31 23:03:59 +0000 | [diff] [blame] | 1380 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1381 | return; |
| 1382 | } |
Chris Lattner | e9913f2 | 2002-11-02 01:41:55 +0000 | [diff] [blame] | 1383 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1384 | if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getOperand(1))) { |
| 1385 | // The shift amount is constant, guaranteed to be a ubyte. Get its value. |
| 1386 | assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?"); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 1387 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1388 | const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned]; |
| 1389 | BuildMI(BB, Opc[Class], 2, DestReg).addReg(SrcReg).addZImm(CUI->getValue()); |
| 1390 | } else { // The shift amount is non-constant. |
| 1391 | BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(getReg(I.getOperand(1))); |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 1392 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1393 | const unsigned *Opc = NonConstantOperand[isLeftShift*2+isSigned]; |
| 1394 | BuildMI(BB, Opc[Class], 1, DestReg).addReg(SrcReg); |
| 1395 | } |
| 1396 | } |
Chris Lattner | b1761fc | 2002-11-02 01:15:18 +0000 | [diff] [blame] | 1397 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1398 | |
| 1399 | /// doFPLoad - This method is used to load an FP value from memory using the |
| 1400 | /// current endianness. NOTE: This method returns a partially constructed load |
| 1401 | /// instruction which needs to have the memory source filled in still. |
| 1402 | /// |
| 1403 | MachineInstr *ISel::doFPLoad(MachineBasicBlock *MBB, |
| 1404 | MachineBasicBlock::iterator &MBBI, |
| 1405 | const Type *Ty, unsigned DestReg) { |
| 1406 | assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!"); |
| 1407 | unsigned LoadOpcode = Ty == Type::FloatTy ? X86::FLDr32 : X86::FLDr64; |
| 1408 | |
| 1409 | if (TM.getTargetData().isLittleEndian()) // fast path... |
| 1410 | return BMI(MBB, MBBI, LoadOpcode, 4, DestReg); |
| 1411 | |
| 1412 | // If we are big-endian, start by creating an LEA instruction to represent the |
| 1413 | // address of the memory location to load from... |
| 1414 | // |
| 1415 | unsigned SrcAddrReg = makeAnotherReg(Type::UIntTy); |
| 1416 | MachineInstr *Result = BMI(MBB, MBBI, X86::LEAr32, 5, SrcAddrReg); |
| 1417 | |
| 1418 | // Allocate a temporary stack slot to transform the value into... |
| 1419 | int FrameIdx = F->getFrameInfo()->CreateStackObject(Ty, TM.getTargetData()); |
| 1420 | |
| 1421 | // Perform the bswaps 32 bits at a time... |
| 1422 | unsigned TmpReg1 = makeAnotherReg(Type::UIntTy); |
| 1423 | unsigned TmpReg2 = makeAnotherReg(Type::UIntTy); |
| 1424 | addDirectMem(BMI(MBB, MBBI, X86::MOVmr32, 4, TmpReg1), SrcAddrReg); |
| 1425 | BMI(MBB, MBBI, X86::BSWAPr32, 1, TmpReg2).addReg(TmpReg1); |
| 1426 | unsigned Offset = (Ty == Type::DoubleTy) << 2; |
| 1427 | addFrameReference(BMI(MBB, MBBI, X86::MOVrm32, 5), |
| 1428 | FrameIdx, Offset).addReg(TmpReg2); |
| 1429 | |
| 1430 | if (Ty == Type::DoubleTy) { // Swap the other 32 bits of a double value... |
| 1431 | TmpReg1 = makeAnotherReg(Type::UIntTy); |
| 1432 | TmpReg2 = makeAnotherReg(Type::UIntTy); |
| 1433 | |
| 1434 | addRegOffset(BMI(MBB, MBBI, X86::MOVmr32, 4, TmpReg1), SrcAddrReg, 4); |
| 1435 | BMI(MBB, MBBI, X86::BSWAPr32, 1, TmpReg2).addReg(TmpReg1); |
| 1436 | unsigned Offset = (Ty == Type::DoubleTy) << 2; |
| 1437 | addFrameReference(BMI(MBB, MBBI, X86::MOVrm32,5), FrameIdx).addReg(TmpReg2); |
| 1438 | } |
| 1439 | |
| 1440 | // Now we can reload the final byteswapped result into the final destination. |
| 1441 | addFrameReference(BMI(MBB, MBBI, LoadOpcode, 4, DestReg), FrameIdx); |
| 1442 | return Result; |
| 1443 | } |
| 1444 | |
| 1445 | /// EmitByteSwap - Byteswap SrcReg into DestReg. |
| 1446 | /// |
| 1447 | void ISel::EmitByteSwap(unsigned DestReg, unsigned SrcReg, unsigned Class) { |
| 1448 | // Emit the byte swap instruction... |
| 1449 | switch (Class) { |
| 1450 | case cByte: |
Misha Brukman | baf0607 | 2003-04-22 17:54:23 +0000 | [diff] [blame] | 1451 | // No byteswap necessary for 8 bit value... |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1452 | BuildMI(BB, X86::MOVrr8, 1, DestReg).addReg(SrcReg); |
| 1453 | break; |
| 1454 | case cInt: |
| 1455 | // Use the 32 bit bswap instruction to do a 32 bit swap... |
| 1456 | BuildMI(BB, X86::BSWAPr32, 1, DestReg).addReg(SrcReg); |
| 1457 | break; |
| 1458 | |
| 1459 | case cShort: |
| 1460 | // For 16 bit we have to use an xchg instruction, because there is no |
Misha Brukman | baf0607 | 2003-04-22 17:54:23 +0000 | [diff] [blame] | 1461 | // 16-bit bswap. XCHG is necessarily not in SSA form, so we force things |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1462 | // into AX to do the xchg. |
| 1463 | // |
| 1464 | BuildMI(BB, X86::MOVrr16, 1, X86::AX).addReg(SrcReg); |
| 1465 | BuildMI(BB, X86::XCHGrr8, 2).addReg(X86::AL, MOTy::UseAndDef) |
| 1466 | .addReg(X86::AH, MOTy::UseAndDef); |
| 1467 | BuildMI(BB, X86::MOVrr16, 1, DestReg).addReg(X86::AX); |
| 1468 | break; |
| 1469 | default: assert(0 && "Cannot byteswap this class!"); |
| 1470 | } |
Brian Gaeke | a1719c9 | 2002-10-31 23:03:59 +0000 | [diff] [blame] | 1471 | } |
| 1472 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1473 | |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1474 | /// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov' |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1475 | /// instruction. The load and store instructions are the only place where we |
| 1476 | /// need to worry about the memory layout of the target machine. |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1477 | /// |
| 1478 | void ISel::visitLoadInst(LoadInst &I) { |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1479 | bool isLittleEndian = TM.getTargetData().isLittleEndian(); |
| 1480 | bool hasLongPointers = TM.getTargetData().getPointerSize() == 8; |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1481 | unsigned SrcAddrReg = getReg(I.getOperand(0)); |
| 1482 | unsigned DestReg = getReg(I); |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1483 | |
Brian Gaeke | bfedb91 | 2003-07-17 21:30:06 +0000 | [diff] [blame] | 1484 | unsigned Class = getClassB(I.getType()); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1485 | switch (Class) { |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1486 | case cFP: { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1487 | MachineBasicBlock::iterator MBBI = BB->end(); |
| 1488 | addDirectMem(doFPLoad(BB, MBBI, I.getType(), DestReg), SrcAddrReg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1489 | return; |
| 1490 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1491 | case cLong: case cInt: case cShort: case cByte: |
| 1492 | break; // Integers of various sizes handled below |
| 1493 | default: assert(0 && "Unknown memory class!"); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1494 | } |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1495 | |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1496 | // We need to adjust the input pointer if we are emulating a big-endian |
| 1497 | // long-pointer target. On these systems, the pointer that we are interested |
| 1498 | // in is in the upper part of the eight byte memory image of the pointer. It |
| 1499 | // also happens to be byte-swapped, but this will be handled later. |
| 1500 | // |
| 1501 | if (!isLittleEndian && hasLongPointers && isa<PointerType>(I.getType())) { |
| 1502 | unsigned R = makeAnotherReg(Type::UIntTy); |
| 1503 | BuildMI(BB, X86::ADDri32, 2, R).addReg(SrcAddrReg).addZImm(4); |
| 1504 | SrcAddrReg = R; |
| 1505 | } |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1506 | |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1507 | unsigned IReg = DestReg; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1508 | if (!isLittleEndian) // If big endian we need an intermediate stage |
| 1509 | DestReg = makeAnotherReg(Class != cLong ? I.getType() : Type::UIntTy); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1510 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1511 | static const unsigned Opcode[] = { |
| 1512 | X86::MOVmr8, X86::MOVmr16, X86::MOVmr32, 0, X86::MOVmr32 |
| 1513 | }; |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1514 | addDirectMem(BuildMI(BB, Opcode[Class], 4, DestReg), SrcAddrReg); |
| 1515 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1516 | // Handle long values now... |
| 1517 | if (Class == cLong) { |
| 1518 | if (isLittleEndian) { |
| 1519 | addRegOffset(BuildMI(BB, X86::MOVmr32, 4, DestReg+1), SrcAddrReg, 4); |
| 1520 | } else { |
| 1521 | EmitByteSwap(IReg+1, DestReg, cInt); |
| 1522 | unsigned TempReg = makeAnotherReg(Type::IntTy); |
| 1523 | addRegOffset(BuildMI(BB, X86::MOVmr32, 4, TempReg), SrcAddrReg, 4); |
| 1524 | EmitByteSwap(IReg, TempReg, cInt); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1525 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1526 | return; |
| 1527 | } |
| 1528 | |
| 1529 | if (!isLittleEndian) |
| 1530 | EmitByteSwap(IReg, DestReg, Class); |
| 1531 | } |
| 1532 | |
| 1533 | |
| 1534 | /// doFPStore - This method is used to store an FP value to memory using the |
| 1535 | /// current endianness. |
| 1536 | /// |
| 1537 | void ISel::doFPStore(const Type *Ty, unsigned DestAddrReg, unsigned SrcReg) { |
| 1538 | assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!"); |
| 1539 | unsigned StoreOpcode = Ty == Type::FloatTy ? X86::FSTr32 : X86::FSTr64; |
| 1540 | |
| 1541 | if (TM.getTargetData().isLittleEndian()) { // fast path... |
| 1542 | addDirectMem(BuildMI(BB, StoreOpcode,5), DestAddrReg).addReg(SrcReg); |
| 1543 | return; |
| 1544 | } |
| 1545 | |
| 1546 | // Allocate a temporary stack slot to transform the value into... |
| 1547 | int FrameIdx = F->getFrameInfo()->CreateStackObject(Ty, TM.getTargetData()); |
| 1548 | unsigned SrcAddrReg = makeAnotherReg(Type::UIntTy); |
| 1549 | addFrameReference(BuildMI(BB, X86::LEAr32, 5, SrcAddrReg), FrameIdx); |
| 1550 | |
| 1551 | // Store the value into a temporary stack slot... |
| 1552 | addDirectMem(BuildMI(BB, StoreOpcode, 5), SrcAddrReg).addReg(SrcReg); |
| 1553 | |
| 1554 | // Perform the bswaps 32 bits at a time... |
| 1555 | unsigned TmpReg1 = makeAnotherReg(Type::UIntTy); |
| 1556 | unsigned TmpReg2 = makeAnotherReg(Type::UIntTy); |
| 1557 | addDirectMem(BuildMI(BB, X86::MOVmr32, 4, TmpReg1), SrcAddrReg); |
| 1558 | BuildMI(BB, X86::BSWAPr32, 1, TmpReg2).addReg(TmpReg1); |
| 1559 | unsigned Offset = (Ty == Type::DoubleTy) << 2; |
| 1560 | addRegOffset(BuildMI(BB, X86::MOVrm32, 5), |
| 1561 | DestAddrReg, Offset).addReg(TmpReg2); |
| 1562 | |
| 1563 | if (Ty == Type::DoubleTy) { // Swap the other 32 bits of a double value... |
| 1564 | TmpReg1 = makeAnotherReg(Type::UIntTy); |
| 1565 | TmpReg2 = makeAnotherReg(Type::UIntTy); |
| 1566 | |
| 1567 | addRegOffset(BuildMI(BB, X86::MOVmr32, 4, TmpReg1), SrcAddrReg, 4); |
| 1568 | BuildMI(BB, X86::BSWAPr32, 1, TmpReg2).addReg(TmpReg1); |
| 1569 | unsigned Offset = (Ty == Type::DoubleTy) << 2; |
| 1570 | addDirectMem(BuildMI(BB, X86::MOVrm32, 5), DestAddrReg).addReg(TmpReg2); |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1571 | } |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
Chris Lattner | 0692536 | 2002-11-17 21:56:38 +0000 | [diff] [blame] | 1574 | |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1575 | /// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov' |
| 1576 | /// instruction. |
| 1577 | /// |
| 1578 | void ISel::visitStoreInst(StoreInst &I) { |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1579 | bool isLittleEndian = TM.getTargetData().isLittleEndian(); |
| 1580 | bool hasLongPointers = TM.getTargetData().getPointerSize() == 8; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1581 | unsigned ValReg = getReg(I.getOperand(0)); |
| 1582 | unsigned AddressReg = getReg(I.getOperand(1)); |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1583 | |
Brian Gaeke | bfedb91 | 2003-07-17 21:30:06 +0000 | [diff] [blame] | 1584 | unsigned Class = getClassB(I.getOperand(0)->getType()); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1585 | switch (Class) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1586 | case cLong: |
| 1587 | if (isLittleEndian) { |
| 1588 | addDirectMem(BuildMI(BB, X86::MOVrm32, 1+4), AddressReg).addReg(ValReg); |
| 1589 | addRegOffset(BuildMI(BB, X86::MOVrm32, 1+4), |
| 1590 | AddressReg, 4).addReg(ValReg+1); |
| 1591 | } else { |
| 1592 | unsigned T1 = makeAnotherReg(Type::IntTy); |
| 1593 | unsigned T2 = makeAnotherReg(Type::IntTy); |
| 1594 | EmitByteSwap(T1, ValReg , cInt); |
| 1595 | EmitByteSwap(T2, ValReg+1, cInt); |
| 1596 | addDirectMem(BuildMI(BB, X86::MOVrm32, 1+4), AddressReg).addReg(T2); |
| 1597 | addRegOffset(BuildMI(BB, X86::MOVrm32, 1+4), AddressReg, 4).addReg(T1); |
| 1598 | } |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1599 | return; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1600 | case cFP: |
| 1601 | doFPStore(I.getOperand(0)->getType(), AddressReg, ValReg); |
| 1602 | return; |
| 1603 | case cInt: case cShort: case cByte: |
| 1604 | break; // Integers of various sizes handled below |
| 1605 | default: assert(0 && "Unknown memory class!"); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1606 | } |
| 1607 | |
| 1608 | if (!isLittleEndian && hasLongPointers && |
| 1609 | isa<PointerType>(I.getOperand(0)->getType())) { |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1610 | unsigned R = makeAnotherReg(Type::UIntTy); |
| 1611 | BuildMI(BB, X86::ADDri32, 2, R).addReg(AddressReg).addZImm(4); |
| 1612 | AddressReg = R; |
| 1613 | } |
| 1614 | |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1615 | if (!isLittleEndian && Class != cByte) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1616 | unsigned R = makeAnotherReg(I.getOperand(0)->getType()); |
| 1617 | EmitByteSwap(R, ValReg, Class); |
| 1618 | ValReg = R; |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1619 | } |
| 1620 | |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1621 | static const unsigned Opcode[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 }; |
Chris Lattner | 6fc3c52 | 2002-11-17 21:11:55 +0000 | [diff] [blame] | 1622 | addDirectMem(BuildMI(BB, Opcode[Class], 1+4), AddressReg).addReg(ValReg); |
| 1623 | } |
| 1624 | |
| 1625 | |
Brian Gaeke | c11232a | 2002-11-26 10:43:30 +0000 | [diff] [blame] | 1626 | /// visitCastInst - Here we have various kinds of copying with or without |
| 1627 | /// sign extension going on. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1628 | void ISel::visitCastInst(CastInst &CI) { |
Chris Lattner | f585447 | 2003-06-21 16:01:24 +0000 | [diff] [blame] | 1629 | Value *Op = CI.getOperand(0); |
| 1630 | // If this is a cast from a 32-bit integer to a Long type, and the only uses |
| 1631 | // of the case are GEP instructions, then the cast does not need to be |
| 1632 | // generated explicitly, it will be folded into the GEP. |
| 1633 | if (CI.getType() == Type::LongTy && |
| 1634 | (Op->getType() == Type::IntTy || Op->getType() == Type::UIntTy)) { |
| 1635 | bool AllUsesAreGEPs = true; |
| 1636 | for (Value::use_iterator I = CI.use_begin(), E = CI.use_end(); I != E; ++I) |
| 1637 | if (!isa<GetElementPtrInst>(*I)) { |
| 1638 | AllUsesAreGEPs = false; |
| 1639 | break; |
| 1640 | } |
| 1641 | |
| 1642 | // No need to codegen this cast if all users are getelementptr instrs... |
| 1643 | if (AllUsesAreGEPs) return; |
| 1644 | } |
| 1645 | |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1646 | unsigned DestReg = getReg(CI); |
| 1647 | MachineBasicBlock::iterator MI = BB->end(); |
Chris Lattner | f585447 | 2003-06-21 16:01:24 +0000 | [diff] [blame] | 1648 | emitCastOperation(BB, MI, Op, CI.getType(), DestReg); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | /// emitCastOperation - Common code shared between visitCastInst and |
| 1652 | /// constant expression cast support. |
| 1653 | void ISel::emitCastOperation(MachineBasicBlock *BB, |
| 1654 | MachineBasicBlock::iterator &IP, |
| 1655 | Value *Src, const Type *DestTy, |
| 1656 | unsigned DestReg) { |
Chris Lattner | 3907d11 | 2003-04-23 17:57:48 +0000 | [diff] [blame] | 1657 | unsigned SrcReg = getReg(Src, BB, IP); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1658 | const Type *SrcTy = Src->getType(); |
| 1659 | unsigned SrcClass = getClassB(SrcTy); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1660 | unsigned DestClass = getClassB(DestTy); |
Chris Lattner | 7d25589 | 2002-12-13 11:31:59 +0000 | [diff] [blame] | 1661 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1662 | // Implement casts to bool by using compare on the operand followed by set if |
| 1663 | // not zero on the result. |
| 1664 | if (DestTy == Type::BoolTy) { |
Chris Lattner | 2077254 | 2003-06-01 03:38:24 +0000 | [diff] [blame] | 1665 | switch (SrcClass) { |
| 1666 | case cByte: |
| 1667 | BMI(BB, IP, X86::TESTrr8, 2).addReg(SrcReg).addReg(SrcReg); |
| 1668 | break; |
| 1669 | case cShort: |
| 1670 | BMI(BB, IP, X86::TESTrr16, 2).addReg(SrcReg).addReg(SrcReg); |
| 1671 | break; |
| 1672 | case cInt: |
| 1673 | BMI(BB, IP, X86::TESTrr32, 2).addReg(SrcReg).addReg(SrcReg); |
| 1674 | break; |
| 1675 | case cLong: { |
| 1676 | unsigned TmpReg = makeAnotherReg(Type::IntTy); |
| 1677 | BMI(BB, IP, X86::ORrr32, 2, TmpReg).addReg(SrcReg).addReg(SrcReg+1); |
| 1678 | break; |
| 1679 | } |
| 1680 | case cFP: |
| 1681 | assert(0 && "FIXME: implement cast FP to bool"); |
| 1682 | abort(); |
| 1683 | } |
| 1684 | |
| 1685 | // If the zero flag is not set, then the value is true, set the byte to |
| 1686 | // true. |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1687 | BMI(BB, IP, X86::SETNEr, 1, DestReg); |
Chris Lattner | 94af414 | 2002-12-25 05:13:53 +0000 | [diff] [blame] | 1688 | return; |
| 1689 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1690 | |
| 1691 | static const unsigned RegRegMove[] = { |
| 1692 | X86::MOVrr8, X86::MOVrr16, X86::MOVrr32, X86::FpMOV, X86::MOVrr32 |
| 1693 | }; |
| 1694 | |
| 1695 | // Implement casts between values of the same type class (as determined by |
| 1696 | // getClass) by using a register-to-register move. |
| 1697 | if (SrcClass == DestClass) { |
| 1698 | if (SrcClass <= cInt || (SrcClass == cFP && SrcTy == DestTy)) { |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1699 | BMI(BB, IP, RegRegMove[SrcClass], 1, DestReg).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1700 | } else if (SrcClass == cFP) { |
| 1701 | if (SrcTy == Type::FloatTy) { // double -> float |
| 1702 | assert(DestTy == Type::DoubleTy && "Unknown cFP member!"); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1703 | BMI(BB, IP, X86::FpMOV, 1, DestReg).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1704 | } else { // float -> double |
| 1705 | assert(SrcTy == Type::DoubleTy && DestTy == Type::FloatTy && |
| 1706 | "Unknown cFP member!"); |
| 1707 | // Truncate from double to float by storing to memory as short, then |
| 1708 | // reading it back. |
| 1709 | unsigned FltAlign = TM.getTargetData().getFloatAlignment(); |
| 1710 | int FrameIdx = F->getFrameInfo()->CreateStackObject(4, FltAlign); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1711 | addFrameReference(BMI(BB, IP, X86::FSTr32, 5), FrameIdx).addReg(SrcReg); |
| 1712 | addFrameReference(BMI(BB, IP, X86::FLDr32, 5, DestReg), FrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1713 | } |
| 1714 | } else if (SrcClass == cLong) { |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1715 | BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg); |
| 1716 | BMI(BB, IP, X86::MOVrr32, 1, DestReg+1).addReg(SrcReg+1); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1717 | } else { |
Chris Lattner | c53544a | 2003-05-12 20:16:58 +0000 | [diff] [blame] | 1718 | assert(0 && "Cannot handle this type of cast instruction!"); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1719 | abort(); |
Brian Gaeke | d474e9c | 2002-12-06 10:49:33 +0000 | [diff] [blame] | 1720 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1721 | return; |
| 1722 | } |
| 1723 | |
| 1724 | // Handle cast of SMALLER int to LARGER int using a move with sign extension |
| 1725 | // or zero extension, depending on whether the source type was signed. |
| 1726 | if (SrcClass <= cInt && (DestClass <= cInt || DestClass == cLong) && |
| 1727 | SrcClass < DestClass) { |
| 1728 | bool isLong = DestClass == cLong; |
| 1729 | if (isLong) DestClass = cInt; |
| 1730 | |
| 1731 | static const unsigned Opc[][4] = { |
| 1732 | { X86::MOVSXr16r8, X86::MOVSXr32r8, X86::MOVSXr32r16, X86::MOVrr32 }, // s |
| 1733 | { X86::MOVZXr16r8, X86::MOVZXr32r8, X86::MOVZXr32r16, X86::MOVrr32 } // u |
| 1734 | }; |
| 1735 | |
| 1736 | bool isUnsigned = SrcTy->isUnsigned(); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1737 | BMI(BB, IP, Opc[isUnsigned][SrcClass + DestClass - 1], 1, |
| 1738 | DestReg).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1739 | |
| 1740 | if (isLong) { // Handle upper 32 bits as appropriate... |
| 1741 | if (isUnsigned) // Zero out top bits... |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1742 | BMI(BB, IP, X86::MOVir32, 1, DestReg+1).addZImm(0); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1743 | else // Sign extend bottom half... |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1744 | BMI(BB, IP, X86::SARir32, 2, DestReg+1).addReg(DestReg).addZImm(31); |
Brian Gaeke | d474e9c | 2002-12-06 10:49:33 +0000 | [diff] [blame] | 1745 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1746 | return; |
| 1747 | } |
| 1748 | |
| 1749 | // Special case long -> int ... |
| 1750 | if (SrcClass == cLong && DestClass == cInt) { |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1751 | BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1752 | return; |
| 1753 | } |
| 1754 | |
| 1755 | // Handle cast of LARGER int to SMALLER int using a move to EAX followed by a |
| 1756 | // move out of AX or AL. |
| 1757 | if ((SrcClass <= cInt || SrcClass == cLong) && DestClass <= cInt |
| 1758 | && SrcClass > DestClass) { |
| 1759 | static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX, 0, X86::EAX }; |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1760 | BMI(BB, IP, RegRegMove[SrcClass], 1, AReg[SrcClass]).addReg(SrcReg); |
| 1761 | BMI(BB, IP, RegRegMove[DestClass], 1, DestReg).addReg(AReg[DestClass]); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1762 | return; |
| 1763 | } |
| 1764 | |
| 1765 | // Handle casts from integer to floating point now... |
| 1766 | if (DestClass == cFP) { |
Chris Lattner | 4d5a50a | 2003-05-12 20:36:13 +0000 | [diff] [blame] | 1767 | // Promote the integer to a type supported by FLD. We do this because there |
| 1768 | // are no unsigned FLD instructions, so we must promote an unsigned value to |
| 1769 | // a larger signed value, then use FLD on the larger value. |
| 1770 | // |
| 1771 | const Type *PromoteType = 0; |
| 1772 | unsigned PromoteOpcode; |
| 1773 | switch (SrcTy->getPrimitiveID()) { |
| 1774 | case Type::BoolTyID: |
| 1775 | case Type::SByteTyID: |
| 1776 | // We don't have the facilities for directly loading byte sized data from |
| 1777 | // memory (even signed). Promote it to 16 bits. |
| 1778 | PromoteType = Type::ShortTy; |
| 1779 | PromoteOpcode = X86::MOVSXr16r8; |
| 1780 | break; |
| 1781 | case Type::UByteTyID: |
| 1782 | PromoteType = Type::ShortTy; |
| 1783 | PromoteOpcode = X86::MOVZXr16r8; |
| 1784 | break; |
| 1785 | case Type::UShortTyID: |
| 1786 | PromoteType = Type::IntTy; |
| 1787 | PromoteOpcode = X86::MOVZXr32r16; |
| 1788 | break; |
| 1789 | case Type::UIntTyID: { |
| 1790 | // Make a 64 bit temporary... and zero out the top of it... |
| 1791 | unsigned TmpReg = makeAnotherReg(Type::LongTy); |
| 1792 | BMI(BB, IP, X86::MOVrr32, 1, TmpReg).addReg(SrcReg); |
| 1793 | BMI(BB, IP, X86::MOVir32, 1, TmpReg+1).addZImm(0); |
| 1794 | SrcTy = Type::LongTy; |
| 1795 | SrcClass = cLong; |
| 1796 | SrcReg = TmpReg; |
| 1797 | break; |
| 1798 | } |
| 1799 | case Type::ULongTyID: |
| 1800 | assert("FIXME: not implemented: cast ulong X to fp type!"); |
| 1801 | default: // No promotion needed... |
| 1802 | break; |
| 1803 | } |
| 1804 | |
| 1805 | if (PromoteType) { |
| 1806 | unsigned TmpReg = makeAnotherReg(PromoteType); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1807 | BMI(BB, IP, SrcTy->isSigned() ? X86::MOVSXr16r8 : X86::MOVZXr16r8, |
| 1808 | 1, TmpReg).addReg(SrcReg); |
Chris Lattner | 4d5a50a | 2003-05-12 20:36:13 +0000 | [diff] [blame] | 1809 | SrcTy = PromoteType; |
| 1810 | SrcClass = getClass(PromoteType); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1811 | SrcReg = TmpReg; |
| 1812 | } |
| 1813 | |
| 1814 | // Spill the integer to memory and reload it from there... |
| 1815 | int FrameIdx = |
| 1816 | F->getFrameInfo()->CreateStackObject(SrcTy, TM.getTargetData()); |
| 1817 | |
| 1818 | if (SrcClass == cLong) { |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1819 | addFrameReference(BMI(BB, IP, X86::MOVrm32, 5), FrameIdx).addReg(SrcReg); |
| 1820 | addFrameReference(BMI(BB, IP, X86::MOVrm32, 5), |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1821 | FrameIdx, 4).addReg(SrcReg+1); |
| 1822 | } else { |
| 1823 | static const unsigned Op1[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 }; |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1824 | addFrameReference(BMI(BB, IP, Op1[SrcClass], 5), FrameIdx).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1825 | } |
| 1826 | |
| 1827 | static const unsigned Op2[] = |
Chris Lattner | 4d5a50a | 2003-05-12 20:36:13 +0000 | [diff] [blame] | 1828 | { 0/*byte*/, X86::FILDr16, X86::FILDr32, 0/*FP*/, X86::FILDr64 }; |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1829 | addFrameReference(BMI(BB, IP, Op2[SrcClass], 5, DestReg), FrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1830 | return; |
| 1831 | } |
| 1832 | |
| 1833 | // Handle casts from floating point to integer now... |
| 1834 | if (SrcClass == cFP) { |
| 1835 | // Change the floating point control register to use "round towards zero" |
| 1836 | // mode when truncating to an integer value. |
| 1837 | // |
| 1838 | int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1839 | addFrameReference(BMI(BB, IP, X86::FNSTCWm16, 4), CWFrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1840 | |
| 1841 | // Load the old value of the high byte of the control word... |
| 1842 | unsigned HighPartOfCW = makeAnotherReg(Type::UByteTy); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1843 | addFrameReference(BMI(BB, IP, X86::MOVmr8, 4, HighPartOfCW), CWFrameIdx, 1); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1844 | |
| 1845 | // Set the high part to be round to zero... |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1846 | addFrameReference(BMI(BB, IP, X86::MOVim8, 5), CWFrameIdx, 1).addZImm(12); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1847 | |
| 1848 | // Reload the modified control word now... |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1849 | addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1850 | |
| 1851 | // Restore the memory image of control word to original value |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1852 | addFrameReference(BMI(BB, IP, X86::MOVrm8, 5), |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1853 | CWFrameIdx, 1).addReg(HighPartOfCW); |
| 1854 | |
| 1855 | // We don't have the facilities for directly storing byte sized data to |
| 1856 | // memory. Promote it to 16 bits. We also must promote unsigned values to |
| 1857 | // larger classes because we only have signed FP stores. |
| 1858 | unsigned StoreClass = DestClass; |
| 1859 | const Type *StoreTy = DestTy; |
| 1860 | if (StoreClass == cByte || DestTy->isUnsigned()) |
| 1861 | switch (StoreClass) { |
| 1862 | case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break; |
| 1863 | case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break; |
| 1864 | case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break; |
Brian Gaeke | d461505 | 2003-07-18 20:23:43 +0000 | [diff] [blame] | 1865 | // The following treatment of cLong may not be perfectly right, |
| 1866 | // but it survives chains of casts of the form |
| 1867 | // double->ulong->double. |
| 1868 | case cLong: StoreTy = Type::LongTy; StoreClass = cLong; break; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1869 | default: assert(0 && "Unknown store class!"); |
| 1870 | } |
| 1871 | |
| 1872 | // Spill the integer to memory and reload it from there... |
| 1873 | int FrameIdx = |
| 1874 | F->getFrameInfo()->CreateStackObject(StoreTy, TM.getTargetData()); |
| 1875 | |
| 1876 | static const unsigned Op1[] = |
| 1877 | { 0, X86::FISTr16, X86::FISTr32, 0, X86::FISTPr64 }; |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1878 | addFrameReference(BMI(BB, IP, Op1[StoreClass], 5), FrameIdx).addReg(SrcReg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1879 | |
| 1880 | if (DestClass == cLong) { |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1881 | addFrameReference(BMI(BB, IP, X86::MOVmr32, 4, DestReg), FrameIdx); |
| 1882 | addFrameReference(BMI(BB, IP, X86::MOVmr32, 4, DestReg+1), FrameIdx, 4); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1883 | } else { |
| 1884 | static const unsigned Op2[] = { X86::MOVmr8, X86::MOVmr16, X86::MOVmr32 }; |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1885 | addFrameReference(BMI(BB, IP, Op2[DestClass], 4, DestReg), FrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1886 | } |
| 1887 | |
| 1888 | // Reload the original control word now... |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1889 | addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1890 | return; |
| 1891 | } |
| 1892 | |
Brian Gaeke | d474e9c | 2002-12-06 10:49:33 +0000 | [diff] [blame] | 1893 | // Anything we haven't handled already, we can't (yet) handle at all. |
Chris Lattner | c53544a | 2003-05-12 20:16:58 +0000 | [diff] [blame] | 1894 | assert(0 && "Unhandled cast instruction!"); |
Chris Lattner | 548f61d | 2003-04-23 17:22:12 +0000 | [diff] [blame] | 1895 | abort(); |
Brian Gaeke | fa8d571 | 2002-11-22 11:07:01 +0000 | [diff] [blame] | 1896 | } |
Brian Gaeke | a1719c9 | 2002-10-31 23:03:59 +0000 | [diff] [blame] | 1897 | |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1898 | /// visitVANextInst - Implement the va_next instruction... |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1899 | /// |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1900 | void ISel::visitVANextInst(VANextInst &I) { |
| 1901 | unsigned VAList = getReg(I.getOperand(0)); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1902 | unsigned DestReg = getReg(I); |
| 1903 | |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1904 | unsigned Size; |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1905 | switch (I.getArgType()->getPrimitiveID()) { |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1906 | default: |
| 1907 | std::cerr << I; |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1908 | assert(0 && "Error: bad type for va_next instruction!"); |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1909 | return; |
| 1910 | case Type::PointerTyID: |
| 1911 | case Type::UIntTyID: |
| 1912 | case Type::IntTyID: |
| 1913 | Size = 4; |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1914 | break; |
| 1915 | case Type::ULongTyID: |
| 1916 | case Type::LongTyID: |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1917 | case Type::DoubleTyID: |
| 1918 | Size = 8; |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1919 | break; |
| 1920 | } |
| 1921 | |
| 1922 | // Increment the VAList pointer... |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1923 | BuildMI(BB, X86::ADDri32, 2, DestReg).addReg(VAList).addZImm(Size); |
| 1924 | } |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1925 | |
Chris Lattner | 7381506 | 2003-10-18 05:56:40 +0000 | [diff] [blame] | 1926 | void ISel::visitVAArgInst(VAArgInst &I) { |
| 1927 | unsigned VAList = getReg(I.getOperand(0)); |
| 1928 | unsigned DestReg = getReg(I); |
| 1929 | |
| 1930 | switch (I.getType()->getPrimitiveID()) { |
| 1931 | default: |
| 1932 | std::cerr << I; |
| 1933 | assert(0 && "Error: bad type for va_next instruction!"); |
| 1934 | return; |
| 1935 | case Type::PointerTyID: |
| 1936 | case Type::UIntTyID: |
| 1937 | case Type::IntTyID: |
| 1938 | addDirectMem(BuildMI(BB, X86::MOVmr32, 4, DestReg), VAList); |
| 1939 | break; |
| 1940 | case Type::ULongTyID: |
| 1941 | case Type::LongTyID: |
| 1942 | addDirectMem(BuildMI(BB, X86::MOVmr32, 4, DestReg), VAList); |
| 1943 | addRegOffset(BuildMI(BB, X86::MOVmr32, 4, DestReg+1), VAList, 4); |
| 1944 | break; |
| 1945 | case Type::DoubleTyID: |
| 1946 | addDirectMem(BuildMI(BB, X86::FLDr64, 4, DestReg), VAList); |
| 1947 | break; |
| 1948 | } |
Chris Lattner | eca195e | 2003-05-08 19:44:13 +0000 | [diff] [blame] | 1949 | } |
| 1950 | |
| 1951 | |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 1952 | // ExactLog2 - This function solves for (Val == 1 << (N-1)) and returns N. It |
| 1953 | // returns zero when the input is not exactly a power of two. |
| 1954 | static unsigned ExactLog2(unsigned Val) { |
| 1955 | if (Val == 0) return 0; |
| 1956 | unsigned Count = 0; |
| 1957 | while (Val != 1) { |
| 1958 | if (Val & 1) return 0; |
| 1959 | Val >>= 1; |
| 1960 | ++Count; |
| 1961 | } |
| 1962 | return Count+1; |
| 1963 | } |
| 1964 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1965 | void ISel::visitGetElementPtrInst(GetElementPtrInst &I) { |
| 1966 | unsigned outputReg = getReg(I); |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 1967 | MachineBasicBlock::iterator MI = BB->end(); |
| 1968 | emitGEPOperation(BB, MI, I.getOperand(0), |
Brian Gaeke | 68b1edc | 2002-12-16 04:23:29 +0000 | [diff] [blame] | 1969 | I.op_begin()+1, I.op_end(), outputReg); |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 1970 | } |
| 1971 | |
Brian Gaeke | 71794c0 | 2002-12-13 11:22:48 +0000 | [diff] [blame] | 1972 | void ISel::emitGEPOperation(MachineBasicBlock *MBB, |
Chris Lattner | f08ad9f | 2002-12-13 10:50:40 +0000 | [diff] [blame] | 1973 | MachineBasicBlock::iterator &IP, |
Chris Lattner | 333b2fa | 2002-12-13 10:09:43 +0000 | [diff] [blame] | 1974 | Value *Src, User::op_iterator IdxBegin, |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 1975 | User::op_iterator IdxEnd, unsigned TargetReg) { |
| 1976 | const TargetData &TD = TM.getTargetData(); |
| 1977 | const Type *Ty = Src->getType(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1978 | unsigned BaseReg = getReg(Src, MBB, IP); |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 1979 | |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 1980 | // GEPs have zero or more indices; we must perform a struct access |
| 1981 | // or array access for each one. |
Chris Lattner | c0812d8 | 2002-12-13 06:56:29 +0000 | [diff] [blame] | 1982 | for (GetElementPtrInst::op_iterator oi = IdxBegin, |
| 1983 | oe = IdxEnd; oi != oe; ++oi) { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 1984 | Value *idx = *oi; |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1985 | unsigned NextReg = BaseReg; |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 1986 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 1987 | // It's a struct access. idx is the index into the structure, |
| 1988 | // which names the field. This index must have ubyte type. |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 1989 | const ConstantUInt *CUI = cast<ConstantUInt>(idx); |
| 1990 | assert(CUI->getType() == Type::UByteTy |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 1991 | && "Funny-looking structure index in GEP"); |
| 1992 | // Use the TargetData structure to pick out what the layout of |
| 1993 | // the structure is in memory. Since the structure index must |
| 1994 | // be constant, we can get its value and use it to find the |
| 1995 | // right byte offset from the StructLayout class's list of |
| 1996 | // structure member offsets. |
Chris Lattner | e8f0d92 | 2002-12-24 00:03:11 +0000 | [diff] [blame] | 1997 | unsigned idxValue = CUI->getValue(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 1998 | unsigned FieldOff = TD.getStructLayout(StTy)->MemberOffsets[idxValue]; |
| 1999 | if (FieldOff) { |
| 2000 | NextReg = makeAnotherReg(Type::UIntTy); |
| 2001 | // Emit an ADD to add FieldOff to the basePtr. |
| 2002 | BMI(MBB, IP, X86::ADDri32, 2,NextReg).addReg(BaseReg).addZImm(FieldOff); |
| 2003 | } |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2004 | // The next type is the member of the structure selected by the |
| 2005 | // index. |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2006 | Ty = StTy->getElementTypes()[idxValue]; |
| 2007 | } else if (const SequentialType *SqTy = cast<SequentialType>(Ty)) { |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2008 | // It's an array or pointer access: [ArraySize x ElementType]. |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2009 | |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2010 | // idx is the index into the array. Unlike with structure |
| 2011 | // indices, we may not know its actual value at code-generation |
| 2012 | // time. |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2013 | assert(idx->getType() == Type::LongTy && "Bad GEP array index!"); |
| 2014 | |
Chris Lattner | f585447 | 2003-06-21 16:01:24 +0000 | [diff] [blame] | 2015 | // Most GEP instructions use a [cast (int/uint) to LongTy] as their |
| 2016 | // operand on X86. Handle this case directly now... |
| 2017 | if (CastInst *CI = dyn_cast<CastInst>(idx)) |
| 2018 | if (CI->getOperand(0)->getType() == Type::IntTy || |
| 2019 | CI->getOperand(0)->getType() == Type::UIntTy) |
| 2020 | idx = CI->getOperand(0); |
| 2021 | |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2022 | // We want to add BaseReg to(idxReg * sizeof ElementType). First, we |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2023 | // must find the size of the pointed-to type (Not coincidentally, the next |
| 2024 | // type is the type of the elements in the array). |
| 2025 | Ty = SqTy->getElementType(); |
| 2026 | unsigned elementSize = TD.getTypeSize(Ty); |
| 2027 | |
| 2028 | // If idxReg is a constant, we don't need to perform the multiply! |
| 2029 | if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(idx)) { |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2030 | if (!CSI->isNullValue()) { |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2031 | unsigned Offset = elementSize*CSI->getValue(); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2032 | NextReg = makeAnotherReg(Type::UIntTy); |
| 2033 | BMI(MBB, IP, X86::ADDri32, 2,NextReg).addReg(BaseReg).addZImm(Offset); |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2034 | } |
| 2035 | } else if (elementSize == 1) { |
| 2036 | // If the element size is 1, we don't have to multiply, just add |
| 2037 | unsigned idxReg = getReg(idx, MBB, IP); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2038 | NextReg = makeAnotherReg(Type::UIntTy); |
| 2039 | BMI(MBB, IP, X86::ADDrr32, 2, NextReg).addReg(BaseReg).addReg(idxReg); |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2040 | } else { |
| 2041 | unsigned idxReg = getReg(idx, MBB, IP); |
| 2042 | unsigned OffsetReg = makeAnotherReg(Type::UIntTy); |
| 2043 | if (unsigned Shift = ExactLog2(elementSize)) { |
| 2044 | // If the element size is exactly a power of 2, use a shift to get it. |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2045 | BMI(MBB, IP, X86::SHLir32, 2, |
| 2046 | OffsetReg).addReg(idxReg).addZImm(Shift-1); |
| 2047 | } else { |
| 2048 | // Most general case, emit a multiply... |
| 2049 | unsigned elementSizeReg = makeAnotherReg(Type::LongTy); |
| 2050 | BMI(MBB, IP, X86::MOVir32, 1, elementSizeReg).addZImm(elementSize); |
| 2051 | |
| 2052 | // Emit a MUL to multiply the register holding the index by |
| 2053 | // elementSize, putting the result in OffsetReg. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2054 | doMultiply(MBB, IP, OffsetReg, Type::IntTy, idxReg, elementSizeReg); |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2055 | } |
| 2056 | // Emit an ADD to add OffsetReg to the basePtr. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2057 | NextReg = makeAnotherReg(Type::UIntTy); |
| 2058 | BMI(MBB, IP, X86::ADDrr32, 2,NextReg).addReg(BaseReg).addReg(OffsetReg); |
Chris Lattner | 8a307e8 | 2002-12-16 19:32:50 +0000 | [diff] [blame] | 2059 | } |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2060 | } |
| 2061 | // Now that we are here, further indices refer to subtypes of this |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2062 | // one, so we don't need to worry about BaseReg itself, anymore. |
| 2063 | BaseReg = NextReg; |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2064 | } |
| 2065 | // After we have processed all the indices, the result is left in |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2066 | // BaseReg. Move it to the register where we were expected to |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2067 | // put the answer. A 32-bit move should do it, because we are in |
| 2068 | // ILP32 land. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2069 | BMI(MBB, IP, X86::MOVrr32, 1, TargetReg).addReg(BaseReg); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2070 | } |
| 2071 | |
| 2072 | |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2073 | /// visitAllocaInst - If this is a fixed size alloca, allocate space from the |
| 2074 | /// frame manager, otherwise do it the hard way. |
| 2075 | /// |
| 2076 | void ISel::visitAllocaInst(AllocaInst &I) { |
Brian Gaeke | e48ec01 | 2002-12-13 06:46:31 +0000 | [diff] [blame] | 2077 | // Find the data size of the alloca inst's getAllocatedType. |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2078 | const Type *Ty = I.getAllocatedType(); |
| 2079 | unsigned TySize = TM.getTargetData().getTypeSize(Ty); |
| 2080 | |
| 2081 | // If this is a fixed size alloca in the entry block for the function, |
| 2082 | // statically stack allocate the space. |
| 2083 | // |
| 2084 | if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getArraySize())) { |
| 2085 | if (I.getParent() == I.getParent()->getParent()->begin()) { |
| 2086 | TySize *= CUI->getValue(); // Get total allocated size... |
| 2087 | unsigned Alignment = TM.getTargetData().getTypeAlignment(Ty); |
| 2088 | |
| 2089 | // Create a new stack object using the frame manager... |
| 2090 | int FrameIdx = F->getFrameInfo()->CreateStackObject(TySize, Alignment); |
| 2091 | addFrameReference(BuildMI(BB, X86::LEAr32, 5, getReg(I)), FrameIdx); |
| 2092 | return; |
| 2093 | } |
| 2094 | } |
| 2095 | |
| 2096 | // Create a register to hold the temporary result of multiplying the type size |
| 2097 | // constant by the variable amount. |
| 2098 | unsigned TotalSizeReg = makeAnotherReg(Type::UIntTy); |
| 2099 | unsigned SrcReg1 = getReg(I.getArraySize()); |
| 2100 | unsigned SizeReg = makeAnotherReg(Type::UIntTy); |
| 2101 | BuildMI(BB, X86::MOVir32, 1, SizeReg).addZImm(TySize); |
| 2102 | |
| 2103 | // TotalSizeReg = mul <numelements>, <TypeSize> |
| 2104 | MachineBasicBlock::iterator MBBI = BB->end(); |
| 2105 | doMultiply(BB, MBBI, TotalSizeReg, Type::UIntTy, SrcReg1, SizeReg); |
| 2106 | |
| 2107 | // AddedSize = add <TotalSizeReg>, 15 |
| 2108 | unsigned AddedSizeReg = makeAnotherReg(Type::UIntTy); |
| 2109 | BuildMI(BB, X86::ADDri32, 2, AddedSizeReg).addReg(TotalSizeReg).addZImm(15); |
| 2110 | |
| 2111 | // AlignedSize = and <AddedSize>, ~15 |
| 2112 | unsigned AlignedSize = makeAnotherReg(Type::UIntTy); |
| 2113 | BuildMI(BB, X86::ANDri32, 2, AlignedSize).addReg(AddedSizeReg).addZImm(~15); |
| 2114 | |
Brian Gaeke | e48ec01 | 2002-12-13 06:46:31 +0000 | [diff] [blame] | 2115 | // Subtract size from stack pointer, thereby allocating some space. |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2116 | BuildMI(BB, X86::SUBrr32, 2, X86::ESP).addReg(X86::ESP).addReg(AlignedSize); |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2117 | |
Brian Gaeke | e48ec01 | 2002-12-13 06:46:31 +0000 | [diff] [blame] | 2118 | // Put a pointer to the space into the result register, by copying |
| 2119 | // the stack pointer. |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2120 | BuildMI(BB, X86::MOVrr32, 1, getReg(I)).addReg(X86::ESP); |
| 2121 | |
Misha Brukman | 48196b3 | 2003-05-03 02:18:17 +0000 | [diff] [blame] | 2122 | // Inform the Frame Information that we have just allocated a variable-sized |
Chris Lattner | 065faeb | 2002-12-28 20:24:02 +0000 | [diff] [blame] | 2123 | // object. |
| 2124 | F->getFrameInfo()->CreateVariableSizedObject(); |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2125 | } |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2126 | |
| 2127 | /// visitMallocInst - Malloc instructions are code generated into direct calls |
| 2128 | /// to the library malloc. |
| 2129 | /// |
| 2130 | void ISel::visitMallocInst(MallocInst &I) { |
| 2131 | unsigned AllocSize = TM.getTargetData().getTypeSize(I.getAllocatedType()); |
| 2132 | unsigned Arg; |
| 2133 | |
| 2134 | if (ConstantUInt *C = dyn_cast<ConstantUInt>(I.getOperand(0))) { |
| 2135 | Arg = getReg(ConstantUInt::get(Type::UIntTy, C->getValue() * AllocSize)); |
| 2136 | } else { |
| 2137 | Arg = makeAnotherReg(Type::UIntTy); |
| 2138 | unsigned Op0Reg = getReg(ConstantUInt::get(Type::UIntTy, AllocSize)); |
| 2139 | unsigned Op1Reg = getReg(I.getOperand(0)); |
| 2140 | MachineBasicBlock::iterator MBBI = BB->end(); |
| 2141 | doMultiply(BB, MBBI, Arg, Type::UIntTy, Op0Reg, Op1Reg); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | std::vector<ValueRecord> Args; |
| 2145 | Args.push_back(ValueRecord(Arg, Type::UIntTy)); |
| 2146 | MachineInstr *TheCall = BuildMI(X86::CALLpcrel32, |
| 2147 | 1).addExternalSymbol("malloc", true); |
| 2148 | doCall(ValueRecord(getReg(I), I.getType()), TheCall, Args); |
| 2149 | } |
| 2150 | |
| 2151 | |
| 2152 | /// visitFreeInst - Free instructions are code gen'd to call the free libc |
| 2153 | /// function. |
| 2154 | /// |
| 2155 | void ISel::visitFreeInst(FreeInst &I) { |
| 2156 | std::vector<ValueRecord> Args; |
Chris Lattner | 5e2cb8b | 2003-08-04 02:12:48 +0000 | [diff] [blame] | 2157 | Args.push_back(ValueRecord(I.getOperand(0))); |
Chris Lattner | 3e130a2 | 2003-01-13 00:32:26 +0000 | [diff] [blame] | 2158 | MachineInstr *TheCall = BuildMI(X86::CALLpcrel32, |
| 2159 | 1).addExternalSymbol("free", true); |
| 2160 | doCall(ValueRecord(0, Type::VoidTy), TheCall, Args); |
| 2161 | } |
| 2162 | |
Brian Gaeke | 20244b7 | 2002-12-12 15:33:40 +0000 | [diff] [blame] | 2163 | |
Chris Lattner | d281de2 | 2003-07-26 23:49:58 +0000 | [diff] [blame] | 2164 | /// createX86SimpleInstructionSelector - This pass converts an LLVM function |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 2165 | /// into a machine code representation is a very simple peep-hole fashion. The |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 2166 | /// generated code sucks but the implementation is nice and simple. |
| 2167 | /// |
Brian Gaeke | 19df387 | 2003-08-13 18:18:15 +0000 | [diff] [blame] | 2168 | FunctionPass *createX86SimpleInstructionSelector(TargetMachine &TM) { |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 2169 | return new ISel(TM); |
Chris Lattner | 7261408 | 2002-10-25 22:55:53 +0000 | [diff] [blame] | 2170 | } |