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