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