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