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