blob: b19ba556446ad0aee963281fcc7bcbb7e64f6663 [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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 Lattner72614082002-10-25 22:55:53 +00009//
Chris Lattner3e130a22003-01-13 00:32:26 +000010// This file defines a simple peephole instruction selector for the x86 target
Chris Lattner72614082002-10-25 22:55:53 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "X86.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +000015#include "X86InstrBuilder.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000016#include "X86InstrInfo.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
Chris Lattner72614082002-10-25 22:55:53 +000019#include "llvm/Function.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000020#include "llvm/Instructions.h"
Chris Lattner44827152003-12-28 09:47:19 +000021#include "llvm/IntrinsicLowering.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000022#include "llvm/Pass.h"
23#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner341a9372002-10-29 17:43:55 +000025#include "llvm/CodeGen/MachineFunction.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000026#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner94af4142002-12-25 05:13:53 +000027#include "llvm/CodeGen/SSARegMap.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000028#include "llvm/Target/MRegisterInfo.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000029#include "llvm/Target/TargetMachine.h"
Chris Lattner3f1e8e72004-02-22 07:04:00 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000031#include "llvm/Support/InstVisitor.h"
Chris Lattnercf93cdd2004-01-30 22:13:44 +000032#include "llvm/Support/CFG.h"
Chris Lattner986618e2004-02-22 19:47:26 +000033#include "Support/Statistic.h"
Chris Lattner44827152003-12-28 09:47:19 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattner986618e2004-02-22 19:47:26 +000036namespace {
37 Statistic<>
38 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
39}
Chris Lattnercf93cdd2004-01-30 22:13:44 +000040
Chris Lattner333b2fa2002-12-13 10:09:43 +000041/// BMI - A special BuildMI variant that takes an iterator to insert the
Chris Lattner8bdd1292003-04-25 21:58:54 +000042/// instruction at as well as a basic block. This is the version for when you
43/// have a destination register in mind.
Brian Gaeke71794c02002-12-13 11:22:48 +000044inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000045 MachineBasicBlock::iterator I,
Chris Lattner8cc72d22003-06-03 15:41:58 +000046 int Opcode, unsigned NumOperands,
Chris Lattner333b2fa2002-12-13 10:09:43 +000047 unsigned DestReg) {
48 MachineInstr *MI = new MachineInstr(Opcode, NumOperands+1, true, true);
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000049 MBB->insert(I, MI);
Alkis Evlogimenos890f9232004-02-22 19:23:26 +000050 return MachineInstrBuilder(MI).addReg(DestReg, MachineOperand::Def);
Chris Lattner333b2fa2002-12-13 10:09:43 +000051}
52
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000053/// BMI - A special BuildMI variant that takes an iterator to insert the
54/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000055inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000056 MachineBasicBlock::iterator I,
Chris Lattner8cc72d22003-06-03 15:41:58 +000057 int Opcode, unsigned NumOperands) {
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000058 MachineInstr *MI = new MachineInstr(Opcode, NumOperands, true, true);
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000059 MBB->insert(I, MI);
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000060 return MachineInstrBuilder(MI);
61}
62
Chris Lattner333b2fa2002-12-13 10:09:43 +000063
Chris Lattner72614082002-10-25 22:55:53 +000064namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000065 struct ISel : public FunctionPass, InstVisitor<ISel> {
66 TargetMachine &TM;
Chris Lattnereca195e2003-05-08 19:44:13 +000067 MachineFunction *F; // The function we are compiling into
68 MachineBasicBlock *BB; // The current MBB we are compiling
69 int VarArgsFrameIndex; // FrameIndex for start of varargs area
Chris Lattner0e5b79c2004-02-15 01:04:03 +000070 int ReturnAddressIndex; // FrameIndex for the return address
Chris Lattner72614082002-10-25 22:55:53 +000071
Chris Lattner72614082002-10-25 22:55:53 +000072 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
73
Chris Lattner333b2fa2002-12-13 10:09:43 +000074 // MBBMap - Mapping between LLVM BB -> Machine BB
75 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
76
Chris Lattnerf70e0c22003-12-28 21:23:38 +000077 ISel(TargetMachine &tm) : TM(tm), F(0), BB(0) {}
Chris Lattner72614082002-10-25 22:55:53 +000078
79 /// runOnFunction - Top level implementation of instruction selection for
80 /// the entire function.
81 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000082 bool runOnFunction(Function &Fn) {
Chris Lattner44827152003-12-28 09:47:19 +000083 // First pass over the function, lower any unknown intrinsic functions
84 // with the IntrinsicLowering class.
85 LowerUnknownIntrinsicFunctionCalls(Fn);
86
Chris Lattner36b36032002-10-29 23:40:58 +000087 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +000088
Chris Lattner065faeb2002-12-28 20:24:02 +000089 // Create all of the machine basic blocks for the function...
Chris Lattner333b2fa2002-12-13 10:09:43 +000090 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
91 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
92
Chris Lattner14aa7fe2002-12-16 22:54:46 +000093 BB = &F->front();
Chris Lattnerdbd73722003-05-06 21:32:22 +000094
Chris Lattner0e5b79c2004-02-15 01:04:03 +000095 // Set up a frame object for the return address. This is used by the
96 // llvm.returnaddress & llvm.frameaddress intrinisics.
97 ReturnAddressIndex = F->getFrameInfo()->CreateFixedObject(4, -4);
98
Chris Lattnerdbd73722003-05-06 21:32:22 +000099 // Copy incoming arguments off of the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000100 LoadArgumentsToVirtualRegs(Fn);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000101
Chris Lattner333b2fa2002-12-13 10:09:43 +0000102 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000103 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000104
105 // Select the PHI nodes
106 SelectPHINodes();
107
Chris Lattner986618e2004-02-22 19:47:26 +0000108 // Insert the FP_REG_KILL instructions into blocks that need them.
109 InsertFPRegKills();
110
Chris Lattner72614082002-10-25 22:55:53 +0000111 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000112 MBBMap.clear();
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000113 F = 0;
Chris Lattner2a865b02003-07-26 23:05:37 +0000114 // We always build a machine code representation for the function
115 return true;
Chris Lattner72614082002-10-25 22:55:53 +0000116 }
117
Chris Lattnerf0eb7be2002-12-15 21:13:40 +0000118 virtual const char *getPassName() const {
119 return "X86 Simple Instruction Selection";
120 }
121
Chris Lattner72614082002-10-25 22:55:53 +0000122 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +0000123 /// block. This simply creates a new MachineBasicBlock to emit code into
124 /// and adds it to the current MachineFunction. Subsequent visit* for
125 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +0000126 ///
127 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000128 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000129 }
130
Chris Lattner44827152003-12-28 09:47:19 +0000131 /// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
132 /// function, lowering any calls to unknown intrinsic functions into the
133 /// equivalent LLVM code.
134 void LowerUnknownIntrinsicFunctionCalls(Function &F);
135
Chris Lattner065faeb2002-12-28 20:24:02 +0000136 /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function
137 /// from the stack into virtual registers.
138 ///
139 void LoadArgumentsToVirtualRegs(Function &F);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000140
141 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
142 /// because we have to generate our sources into the source basic blocks,
143 /// not the current one.
144 ///
145 void SelectPHINodes();
146
Chris Lattner986618e2004-02-22 19:47:26 +0000147 /// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks
148 /// that need them. This only occurs due to the floating point stackifier
149 /// not being aggressive enough to handle arbitrary global stackification.
150 ///
151 void InsertFPRegKills();
152
Chris Lattner72614082002-10-25 22:55:53 +0000153 // Visitation methods for various instructions. These methods simply emit
154 // fixed X86 code for each instruction.
155 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000156
157 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000158 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000159 void visitBranchInst(BranchInst &BI);
Chris Lattner3e130a22003-01-13 00:32:26 +0000160
161 struct ValueRecord {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000162 Value *Val;
Chris Lattner3e130a22003-01-13 00:32:26 +0000163 unsigned Reg;
164 const Type *Ty;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000165 ValueRecord(unsigned R, const Type *T) : Val(0), Reg(R), Ty(T) {}
166 ValueRecord(Value *V) : Val(V), Reg(0), Ty(V->getType()) {}
Chris Lattner3e130a22003-01-13 00:32:26 +0000167 };
168 void doCall(const ValueRecord &Ret, MachineInstr *CallMI,
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000169 const std::vector<ValueRecord> &Args);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000170 void visitCallInst(CallInst &I);
Brian Gaeked0fde302003-11-11 22:41:34 +0000171 void visitIntrinsicCall(Intrinsic::ID ID, CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000172
173 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000174 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000175 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
176 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000177 void doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
Chris Lattner3e130a22003-01-13 00:32:26 +0000178 unsigned DestReg, const Type *DestTy,
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000179 unsigned Op0Reg, unsigned Op1Reg);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000180 void doMultiplyConst(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000181 MachineBasicBlock::iterator MBBI,
Chris Lattnerb2acc512003-10-19 21:09:10 +0000182 unsigned DestReg, const Type *DestTy,
183 unsigned Op0Reg, unsigned Op1Val);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000184 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000185
Chris Lattnerf01729e2002-11-02 20:54:46 +0000186 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
187 void visitRem(BinaryOperator &B) { visitDivRem(B); }
188 void visitDivRem(BinaryOperator &B);
189
Chris Lattnere2954c82002-11-02 20:04:26 +0000190 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000191 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
192 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
193 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000194
Chris Lattner6d40c192003-01-16 16:43:00 +0000195 // Comparison operators...
196 void visitSetCondInst(SetCondInst &I);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000197 unsigned EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
198 MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000199 MachineBasicBlock::iterator MBBI);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000200
Chris Lattner6fc3c522002-11-17 21:11:55 +0000201 // Memory Instructions
202 void visitLoadInst(LoadInst &I);
203 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000204 void visitGetElementPtrInst(GetElementPtrInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000205 void visitAllocaInst(AllocaInst &I);
Chris Lattner3e130a22003-01-13 00:32:26 +0000206 void visitMallocInst(MallocInst &I);
207 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000208
Chris Lattnere2954c82002-11-02 20:04:26 +0000209 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000210 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000211 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000212 void visitCastInst(CastInst &I);
Chris Lattner73815062003-10-18 05:56:40 +0000213 void visitVANextInst(VANextInst &I);
214 void visitVAArgInst(VAArgInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000215
216 void visitInstruction(Instruction &I) {
217 std::cerr << "Cannot instruction select: " << I;
218 abort();
219 }
220
Brian Gaeke95780cc2002-12-13 07:56:18 +0000221 /// promote32 - Make a value 32-bits wide, and put it somewhere.
Chris Lattner3e130a22003-01-13 00:32:26 +0000222 ///
223 void promote32(unsigned targetReg, const ValueRecord &VR);
224
Chris Lattner3e130a22003-01-13 00:32:26 +0000225 /// emitGEPOperation - Common code shared between visitGetElementPtrInst and
226 /// constant expression GEP support.
227 ///
Chris Lattner827832c2004-02-22 17:05:38 +0000228 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000229 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000230 User::op_iterator IdxEnd, unsigned TargetReg);
231
Chris Lattner548f61d2003-04-23 17:22:12 +0000232 /// emitCastOperation - Common code shared between visitCastInst and
233 /// constant expression cast support.
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000234 void emitCastOperation(MachineBasicBlock *BB,MachineBasicBlock::iterator IP,
Chris Lattner548f61d2003-04-23 17:22:12 +0000235 Value *Src, const Type *DestTy, unsigned TargetReg);
236
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000237 /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
238 /// and constant expression support.
239 void emitSimpleBinaryOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000240 MachineBasicBlock::iterator IP,
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000241 Value *Op0, Value *Op1,
242 unsigned OperatorClass, unsigned TargetReg);
243
Chris Lattnercadff442003-10-23 17:21:43 +0000244 void emitDivRemOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000245 MachineBasicBlock::iterator IP,
Chris Lattnercadff442003-10-23 17:21:43 +0000246 unsigned Op0Reg, unsigned Op1Reg, bool isDiv,
247 const Type *Ty, unsigned TargetReg);
248
Chris Lattner58c41fe2003-08-24 19:19:47 +0000249 /// emitSetCCOperation - Common code shared between visitSetCondInst and
250 /// constant expression support.
251 void emitSetCCOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000252 MachineBasicBlock::iterator IP,
Chris Lattner58c41fe2003-08-24 19:19:47 +0000253 Value *Op0, Value *Op1, unsigned Opcode,
254 unsigned TargetReg);
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000255
256 /// emitShiftOperation - Common code shared between visitShiftInst and
257 /// constant expression support.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000258 void emitShiftOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000259 MachineBasicBlock::iterator IP,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000260 Value *Op, Value *ShiftAmount, bool isLeftShift,
261 const Type *ResultTy, unsigned DestReg);
262
Chris Lattner58c41fe2003-08-24 19:19:47 +0000263
Chris Lattnerc5291f52002-10-27 21:16:59 +0000264 /// copyConstantToRegister - Output the instructions required to put the
265 /// specified constant into the specified register.
266 ///
Chris Lattner8a307e82002-12-16 19:32:50 +0000267 void copyConstantToRegister(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000268 MachineBasicBlock::iterator MBBI,
Chris Lattner8a307e82002-12-16 19:32:50 +0000269 Constant *C, unsigned Reg);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000270
Chris Lattner3e130a22003-01-13 00:32:26 +0000271 /// makeAnotherReg - This method returns the next register number we haven't
272 /// yet used.
273 ///
274 /// Long values are handled somewhat specially. They are always allocated
275 /// as pairs of 32 bit integer values. The register number returned is the
276 /// lower 32 bits of the long value, and the regNum+1 is the upper 32 bits
277 /// of the long value.
278 ///
Chris Lattnerc0812d82002-12-13 06:56:29 +0000279 unsigned makeAnotherReg(const Type *Ty) {
Chris Lattner7db1fa92003-07-30 05:33:48 +0000280 assert(dynamic_cast<const X86RegisterInfo*>(TM.getRegisterInfo()) &&
281 "Current target doesn't have X86 reg info??");
282 const X86RegisterInfo *MRI =
283 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Chris Lattner3e130a22003-01-13 00:32:26 +0000284 if (Ty == Type::LongTy || Ty == Type::ULongTy) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000285 const TargetRegisterClass *RC = MRI->getRegClassForType(Type::IntTy);
286 // Create the lower part
287 F->getSSARegMap()->createVirtualRegister(RC);
288 // Create the upper part.
289 return F->getSSARegMap()->createVirtualRegister(RC)-1;
Chris Lattner3e130a22003-01-13 00:32:26 +0000290 }
291
Chris Lattnerc0812d82002-12-13 06:56:29 +0000292 // Add the mapping of regnumber => reg class to MachineFunction
Chris Lattner7db1fa92003-07-30 05:33:48 +0000293 const TargetRegisterClass *RC = MRI->getRegClassForType(Ty);
Chris Lattner3e130a22003-01-13 00:32:26 +0000294 return F->getSSARegMap()->createVirtualRegister(RC);
Brian Gaeke20244b72002-12-12 15:33:40 +0000295 }
296
Chris Lattner72614082002-10-25 22:55:53 +0000297 /// getReg - This method turns an LLVM value into a register number. This
298 /// is guaranteed to produce the same register number for a particular value
299 /// every time it is queried.
300 ///
301 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000302 unsigned getReg(Value *V) {
303 // Just append to the end of the current bb.
304 MachineBasicBlock::iterator It = BB->end();
305 return getReg(V, BB, It);
306 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000307 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000308 MachineBasicBlock::iterator IPt) {
Chris Lattner72614082002-10-25 22:55:53 +0000309 unsigned &Reg = RegMap[V];
Misha Brukmand2cc0172002-11-20 00:58:23 +0000310 if (Reg == 0) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000311 Reg = makeAnotherReg(V->getType());
Misha Brukmand2cc0172002-11-20 00:58:23 +0000312 RegMap[V] = Reg;
Misha Brukmand2cc0172002-11-20 00:58:23 +0000313 }
Chris Lattner72614082002-10-25 22:55:53 +0000314
Chris Lattner6f8fd252002-10-27 21:23:43 +0000315 // If this operand is a constant, emit the code to copy the constant into
316 // the register here...
317 //
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000318 if (Constant *C = dyn_cast<Constant>(V)) {
Chris Lattner8a307e82002-12-16 19:32:50 +0000319 copyConstantToRegister(MBB, IPt, C, Reg);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000320 RegMap.erase(V); // Assign a new name to this constant if ref'd again
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000321 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
322 // Move the address of the global into the register
Chris Lattner6e173a02004-02-17 06:16:44 +0000323 BMI(MBB, IPt, X86::MOVri32, 1, Reg).addGlobalAddress(GV);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000324 RegMap.erase(V); // Assign a new name to this address if ref'd again
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000325 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000326
Chris Lattner72614082002-10-25 22:55:53 +0000327 return Reg;
328 }
Chris Lattner72614082002-10-25 22:55:53 +0000329 };
330}
331
Chris Lattner43189d12002-11-17 20:07:45 +0000332/// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
333/// Representation.
334///
335enum TypeClass {
Chris Lattner94af4142002-12-25 05:13:53 +0000336 cByte, cShort, cInt, cFP, cLong
Chris Lattner43189d12002-11-17 20:07:45 +0000337};
338
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000339/// getClass - Turn a primitive type into a "class" number which is based on the
340/// size of the type, and whether or not it is floating point.
341///
Chris Lattner43189d12002-11-17 20:07:45 +0000342static inline TypeClass getClass(const Type *Ty) {
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000343 switch (Ty->getPrimitiveID()) {
344 case Type::SByteTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000345 case Type::UByteTyID: return cByte; // Byte operands are class #0
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000346 case Type::ShortTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000347 case Type::UShortTyID: return cShort; // Short operands are class #1
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000348 case Type::IntTyID:
349 case Type::UIntTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000350 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000351
Chris Lattner94af4142002-12-25 05:13:53 +0000352 case Type::FloatTyID:
353 case Type::DoubleTyID: return cFP; // Floating Point is #3
Chris Lattner3e130a22003-01-13 00:32:26 +0000354
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000355 case Type::LongTyID:
Chris Lattner3e130a22003-01-13 00:32:26 +0000356 case Type::ULongTyID: return cLong; // Longs are class #4
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000357 default:
358 assert(0 && "Invalid type to getClass!");
Chris Lattner43189d12002-11-17 20:07:45 +0000359 return cByte; // not reached
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000360 }
361}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000362
Chris Lattner6b993cc2002-12-15 08:02:15 +0000363// getClassB - Just like getClass, but treat boolean values as bytes.
364static inline TypeClass getClassB(const Type *Ty) {
365 if (Ty == Type::BoolTy) return cByte;
366 return getClass(Ty);
367}
368
Chris Lattner06925362002-11-17 21:56:38 +0000369
Chris Lattnerc5291f52002-10-27 21:16:59 +0000370/// copyConstantToRegister - Output the instructions required to put the
371/// specified constant into the specified register.
372///
Chris Lattner8a307e82002-12-16 19:32:50 +0000373void ISel::copyConstantToRegister(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000374 MachineBasicBlock::iterator IP,
Chris Lattner8a307e82002-12-16 19:32:50 +0000375 Constant *C, unsigned R) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000376 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000377 unsigned Class = 0;
378 switch (CE->getOpcode()) {
379 case Instruction::GetElementPtr:
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000380 emitGEPOperation(MBB, IP, CE->getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000381 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000382 return;
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000383 case Instruction::Cast:
Chris Lattner548f61d2003-04-23 17:22:12 +0000384 emitCastOperation(MBB, IP, CE->getOperand(0), CE->getType(), R);
Chris Lattner4b12cde2003-04-21 21:33:44 +0000385 return;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000386
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000387 case Instruction::Xor: ++Class; // FALL THROUGH
388 case Instruction::Or: ++Class; // FALL THROUGH
389 case Instruction::And: ++Class; // FALL THROUGH
390 case Instruction::Sub: ++Class; // FALL THROUGH
391 case Instruction::Add:
392 emitSimpleBinaryOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
393 Class, R);
394 return;
395
Chris Lattnercadff442003-10-23 17:21:43 +0000396 case Instruction::Mul: {
397 unsigned Op0Reg = getReg(CE->getOperand(0), MBB, IP);
398 unsigned Op1Reg = getReg(CE->getOperand(1), MBB, IP);
399 doMultiply(MBB, IP, R, CE->getType(), Op0Reg, Op1Reg);
400 return;
401 }
402 case Instruction::Div:
403 case Instruction::Rem: {
404 unsigned Op0Reg = getReg(CE->getOperand(0), MBB, IP);
405 unsigned Op1Reg = getReg(CE->getOperand(1), MBB, IP);
406 emitDivRemOperation(MBB, IP, Op0Reg, Op1Reg,
407 CE->getOpcode() == Instruction::Div,
408 CE->getType(), R);
409 return;
410 }
411
Chris Lattner58c41fe2003-08-24 19:19:47 +0000412 case Instruction::SetNE:
413 case Instruction::SetEQ:
414 case Instruction::SetLT:
415 case Instruction::SetGT:
416 case Instruction::SetLE:
417 case Instruction::SetGE:
418 emitSetCCOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
419 CE->getOpcode(), R);
420 return;
421
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000422 case Instruction::Shl:
423 case Instruction::Shr:
424 emitShiftOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000425 CE->getOpcode() == Instruction::Shl, CE->getType(), R);
426 return;
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000427
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000428 default:
429 std::cerr << "Offending expr: " << C << "\n";
Chris Lattnerb2acc512003-10-19 21:09:10 +0000430 assert(0 && "Constant expression not yet handled!\n");
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000431 }
Brian Gaeke20244b72002-12-12 15:33:40 +0000432 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000433
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000434 if (C->getType()->isIntegral()) {
Chris Lattner6b993cc2002-12-15 08:02:15 +0000435 unsigned Class = getClassB(C->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +0000436
437 if (Class == cLong) {
438 // Copy the value into the register pair.
Chris Lattnerc07736a2003-07-23 15:22:26 +0000439 uint64_t Val = cast<ConstantInt>(C)->getRawValue();
Chris Lattner6e173a02004-02-17 06:16:44 +0000440 BMI(MBB, IP, X86::MOVri32, 1, R).addZImm(Val & 0xFFFFFFFF);
441 BMI(MBB, IP, X86::MOVri32, 1, R+1).addZImm(Val >> 32);
Chris Lattner3e130a22003-01-13 00:32:26 +0000442 return;
443 }
444
Chris Lattner94af4142002-12-25 05:13:53 +0000445 assert(Class <= cInt && "Type not handled yet!");
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000446
447 static const unsigned IntegralOpcodeTab[] = {
Chris Lattner6e173a02004-02-17 06:16:44 +0000448 X86::MOVri8, X86::MOVri16, X86::MOVri32
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000449 };
450
Chris Lattner6b993cc2002-12-15 08:02:15 +0000451 if (C->getType() == Type::BoolTy) {
Chris Lattner6e173a02004-02-17 06:16:44 +0000452 BMI(MBB, IP, X86::MOVri8, 1, R).addZImm(C == ConstantBool::True);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000453 } else {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000454 ConstantInt *CI = cast<ConstantInt>(C);
455 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addZImm(CI->getRawValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000456 }
Chris Lattner94af4142002-12-25 05:13:53 +0000457 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Chris Lattneraf703622004-02-02 18:56:30 +0000458 if (CFP->isExactlyValue(+0.0))
Chris Lattner94af4142002-12-25 05:13:53 +0000459 BMI(MBB, IP, X86::FLD0, 0, R);
Chris Lattneraf703622004-02-02 18:56:30 +0000460 else if (CFP->isExactlyValue(+1.0))
Chris Lattner94af4142002-12-25 05:13:53 +0000461 BMI(MBB, IP, X86::FLD1, 0, R);
462 else {
Chris Lattner3e130a22003-01-13 00:32:26 +0000463 // Otherwise we need to spill the constant to memory...
464 MachineConstantPool *CP = F->getConstantPool();
465 unsigned CPI = CP->getConstantPoolIndex(CFP);
Chris Lattner6c09db22003-10-20 04:11:23 +0000466 const Type *Ty = CFP->getType();
467
468 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
469 unsigned LoadOpcode = Ty == Type::FloatTy ? X86::FLDr32 : X86::FLDr64;
470 addConstantPoolReference(BMI(MBB, IP, LoadOpcode, 4, R), CPI);
Chris Lattner94af4142002-12-25 05:13:53 +0000471 }
472
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000473 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000474 // Copy zero (null pointer) to the register.
Chris Lattner6e173a02004-02-17 06:16:44 +0000475 BMI(MBB, IP, X86::MOVri32, 1, R).addZImm(0);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000476 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
Chris Lattner7ca04092004-02-22 17:35:42 +0000477 BMI(MBB, IP, X86::MOVri32, 1, R).addGlobalAddress(CPR->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000478 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +0000479 std::cerr << "Offending constant: " << C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000480 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000481 }
482}
483
Chris Lattner065faeb2002-12-28 20:24:02 +0000484/// LoadArgumentsToVirtualRegs - Load all of the arguments to this function from
485/// the stack into virtual registers.
486///
487void ISel::LoadArgumentsToVirtualRegs(Function &Fn) {
488 // Emit instructions to load the arguments... On entry to a function on the
489 // X86, the stack frame looks like this:
490 //
491 // [ESP] -- return address
Chris Lattner3e130a22003-01-13 00:32:26 +0000492 // [ESP + 4] -- first argument (leftmost lexically)
493 // [ESP + 8] -- second argument, if first argument is four bytes in size
Chris Lattner065faeb2002-12-28 20:24:02 +0000494 // ...
495 //
Chris Lattnerf158da22003-01-16 02:20:12 +0000496 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
Chris Lattneraa09b752002-12-28 21:08:28 +0000497 MachineFrameInfo *MFI = F->getFrameInfo();
Chris Lattner065faeb2002-12-28 20:24:02 +0000498
499 for (Function::aiterator I = Fn.abegin(), E = Fn.aend(); I != E; ++I) {
500 unsigned Reg = getReg(*I);
501
Chris Lattner065faeb2002-12-28 20:24:02 +0000502 int FI; // Frame object index
Chris Lattner065faeb2002-12-28 20:24:02 +0000503 switch (getClassB(I->getType())) {
504 case cByte:
Chris Lattneraa09b752002-12-28 21:08:28 +0000505 FI = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattnere87331d2004-02-17 06:28:19 +0000506 addFrameReference(BuildMI(BB, X86::MOVrm8, 4, Reg), FI);
Chris Lattner065faeb2002-12-28 20:24:02 +0000507 break;
508 case cShort:
Chris Lattneraa09b752002-12-28 21:08:28 +0000509 FI = MFI->CreateFixedObject(2, ArgOffset);
Chris Lattnere87331d2004-02-17 06:28:19 +0000510 addFrameReference(BuildMI(BB, X86::MOVrm16, 4, Reg), FI);
Chris Lattner065faeb2002-12-28 20:24:02 +0000511 break;
512 case cInt:
Chris Lattneraa09b752002-12-28 21:08:28 +0000513 FI = MFI->CreateFixedObject(4, ArgOffset);
Chris Lattnere87331d2004-02-17 06:28:19 +0000514 addFrameReference(BuildMI(BB, X86::MOVrm32, 4, Reg), FI);
Chris Lattner065faeb2002-12-28 20:24:02 +0000515 break;
Chris Lattner3e130a22003-01-13 00:32:26 +0000516 case cLong:
517 FI = MFI->CreateFixedObject(8, ArgOffset);
Chris Lattnere87331d2004-02-17 06:28:19 +0000518 addFrameReference(BuildMI(BB, X86::MOVrm32, 4, Reg), FI);
519 addFrameReference(BuildMI(BB, X86::MOVrm32, 4, Reg+1), FI, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +0000520 ArgOffset += 4; // longs require 4 additional bytes
521 break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000522 case cFP:
523 unsigned Opcode;
524 if (I->getType() == Type::FloatTy) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000525 Opcode = X86::FLDr32;
526 FI = MFI->CreateFixedObject(4, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000527 } else {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000528 Opcode = X86::FLDr64;
529 FI = MFI->CreateFixedObject(8, ArgOffset);
530 ArgOffset += 4; // doubles require 4 additional bytes
Chris Lattner065faeb2002-12-28 20:24:02 +0000531 }
532 addFrameReference(BuildMI(BB, Opcode, 4, Reg), FI);
533 break;
534 default:
535 assert(0 && "Unhandled argument type!");
536 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000537 ArgOffset += 4; // Each argument takes at least 4 bytes on the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000538 }
Chris Lattnereca195e2003-05-08 19:44:13 +0000539
540 // If the function takes variable number of arguments, add a frame offset for
541 // the start of the first vararg value... this is used to expand
542 // llvm.va_start.
543 if (Fn.getFunctionType()->isVarArg())
544 VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000545}
546
547
Chris Lattner333b2fa2002-12-13 10:09:43 +0000548/// SelectPHINodes - Insert machine code to generate phis. This is tricky
549/// because we have to generate our sources into the source basic blocks, not
550/// the current one.
551///
552void ISel::SelectPHINodes() {
Chris Lattner3501fea2003-01-14 22:00:31 +0000553 const TargetInstrInfo &TII = TM.getInstrInfo();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000554 const Function &LF = *F->getFunction(); // The LLVM function...
555 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
556 const BasicBlock *BB = I;
557 MachineBasicBlock *MBB = MBBMap[I];
558
559 // Loop over all of the PHI nodes in the LLVM basic block...
Chris Lattner986618e2004-02-22 19:47:26 +0000560 MachineBasicBlock::iterator instr = MBB->begin();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000561 for (BasicBlock::const_iterator I = BB->begin();
Chris Lattnera81fc682003-10-19 00:26:11 +0000562 PHINode *PN = const_cast<PHINode*>(dyn_cast<PHINode>(I)); ++I) {
Chris Lattner3e130a22003-01-13 00:32:26 +0000563
Chris Lattner333b2fa2002-12-13 10:09:43 +0000564 // Create a new machine instr PHI node, and insert it.
Chris Lattner3e130a22003-01-13 00:32:26 +0000565 unsigned PHIReg = getReg(*PN);
566 MachineInstr *PhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg);
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000567 MBB->insert(instr, PhiMI);
Chris Lattner3e130a22003-01-13 00:32:26 +0000568
569 MachineInstr *LongPhiMI = 0;
570 if (PN->getType() == Type::LongTy || PN->getType() == Type::ULongTy) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000571 LongPhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg+1);
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000572 MBB->insert(instr, LongPhiMI);
Chris Lattner3e130a22003-01-13 00:32:26 +0000573 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000574
Chris Lattnera6e73f12003-05-12 14:22:21 +0000575 // PHIValues - Map of blocks to incoming virtual registers. We use this
576 // so that we only initialize one incoming value for a particular block,
577 // even if the block has multiple entries in the PHI node.
578 //
579 std::map<MachineBasicBlock*, unsigned> PHIValues;
580
Chris Lattner333b2fa2002-12-13 10:09:43 +0000581 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
582 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
Chris Lattnera6e73f12003-05-12 14:22:21 +0000583 unsigned ValReg;
584 std::map<MachineBasicBlock*, unsigned>::iterator EntryIt =
585 PHIValues.lower_bound(PredMBB);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000586
Chris Lattnera6e73f12003-05-12 14:22:21 +0000587 if (EntryIt != PHIValues.end() && EntryIt->first == PredMBB) {
588 // We already inserted an initialization of the register for this
589 // predecessor. Recycle it.
590 ValReg = EntryIt->second;
591
592 } else {
Chris Lattnera81fc682003-10-19 00:26:11 +0000593 // Get the incoming value into a virtual register.
Chris Lattnera6e73f12003-05-12 14:22:21 +0000594 //
Chris Lattnera81fc682003-10-19 00:26:11 +0000595 Value *Val = PN->getIncomingValue(i);
596
597 // If this is a constant or GlobalValue, we may have to insert code
598 // into the basic block to compute it into a virtual register.
599 if (isa<Constant>(Val) || isa<GlobalValue>(Val)) {
600 // Because we don't want to clobber any values which might be in
601 // physical registers with the computation of this constant (which
602 // might be arbitrarily complex if it is a constant expression),
603 // just insert the computation at the top of the basic block.
604 MachineBasicBlock::iterator PI = PredMBB->begin();
605
606 // Skip over any PHI nodes though!
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000607 while (PI != PredMBB->end() && PI->getOpcode() == X86::PHI)
Chris Lattnera81fc682003-10-19 00:26:11 +0000608 ++PI;
609
610 ValReg = getReg(Val, PredMBB, PI);
611 } else {
612 ValReg = getReg(Val);
613 }
Chris Lattnera6e73f12003-05-12 14:22:21 +0000614
615 // Remember that we inserted a value for this PHI for this predecessor
616 PHIValues.insert(EntryIt, std::make_pair(PredMBB, ValReg));
617 }
618
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000619 PhiMI->addRegOperand(ValReg);
Chris Lattner3e130a22003-01-13 00:32:26 +0000620 PhiMI->addMachineBasicBlockOperand(PredMBB);
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000621 if (LongPhiMI) {
622 LongPhiMI->addRegOperand(ValReg+1);
623 LongPhiMI->addMachineBasicBlockOperand(PredMBB);
624 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000625 }
626 }
627 }
628}
629
Chris Lattner986618e2004-02-22 19:47:26 +0000630/// RequiresFPRegKill - The floating point stackifier pass cannot insert
631/// compensation code on critical edges. As such, it requires that we kill all
632/// FP registers on the exit from any blocks that either ARE critical edges, or
633/// branch to a block that has incoming critical edges.
634///
635/// Note that this kill instruction will eventually be eliminated when
636/// restrictions in the stackifier are relaxed.
637///
638static bool RequiresFPRegKill(const BasicBlock *BB) {
639#if 0
640 for (succ_const_iterator SI = succ_begin(BB), E = succ_end(BB); SI!=E; ++SI) {
641 const BasicBlock *Succ = *SI;
642 pred_const_iterator PI = pred_begin(Succ), PE = pred_end(Succ);
643 ++PI; // Block have at least one predecessory
644 if (PI != PE) { // If it has exactly one, this isn't crit edge
645 // If this block has more than one predecessor, check all of the
646 // predecessors to see if they have multiple successors. If so, then the
647 // block we are analyzing needs an FPRegKill.
648 for (PI = pred_begin(Succ); PI != PE; ++PI) {
649 const BasicBlock *Pred = *PI;
650 succ_const_iterator SI2 = succ_begin(Pred);
651 ++SI2; // There must be at least one successor of this block.
652 if (SI2 != succ_end(Pred))
653 return true; // Yes, we must insert the kill on this edge.
654 }
655 }
656 }
657 // If we got this far, there is no need to insert the kill instruction.
658 return false;
659#else
660 return true;
661#endif
662}
663
664// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks that
665// need them. This only occurs due to the floating point stackifier not being
666// aggressive enough to handle arbitrary global stackification.
667//
668// Currently we insert an FP_REG_KILL instruction into each block that uses or
669// defines a floating point virtual register.
670//
671// When the global register allocators (like linear scan) finally update live
672// variable analysis, we can keep floating point values in registers across
673// portions of the CFG that do not involve critical edges. This will be a big
674// win, but we are waiting on the global allocators before we can do this.
675//
676// With a bit of work, the floating point stackifier pass can be enhanced to
677// break critical edges as needed (to make a place to put compensation code),
678// but this will require some infrastructure improvements as well.
679//
680void ISel::InsertFPRegKills() {
681 SSARegMap &RegMap = *F->getSSARegMap();
Chris Lattner986618e2004-02-22 19:47:26 +0000682
683 for (MachineFunction::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Chris Lattner986618e2004-02-22 19:47:26 +0000684 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
685 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
686 if (I->getOperand(i).isRegister()) {
687 unsigned Reg = I->getOperand(i).getReg();
688 if (MRegisterInfo::isVirtualRegister(Reg))
Chris Lattner65cf42d2004-02-23 07:29:45 +0000689 if (RegMap.getRegClass(Reg)->getSize() == 10)
690 goto UsesFPReg;
Chris Lattner986618e2004-02-22 19:47:26 +0000691 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000692
693 // If we haven't found an FP register use or def in this basic block, check
694 // to see if any of our successors has an FP PHI node, which will cause a
695 // copy to be inserted into this block.
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000696 for (succ_const_iterator SI = succ_begin(BB->getBasicBlock()),
697 E = succ_end(BB->getBasicBlock()); SI != E; ++SI) {
698 MachineBasicBlock *SBB = MBBMap[*SI];
699 for (MachineBasicBlock::iterator I = SBB->begin();
700 I != SBB->end() && I->getOpcode() == X86::PHI; ++I) {
701 if (RegMap.getRegClass(I->getOperand(0).getReg())->getSize() == 10)
702 goto UsesFPReg;
Chris Lattner986618e2004-02-22 19:47:26 +0000703 }
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000704 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000705 continue;
706 UsesFPReg:
707 // Okay, this block uses an FP register. If the block has successors (ie,
708 // it's not an unwind/return), insert the FP_REG_KILL instruction.
709 if (BB->getBasicBlock()->getTerminator()->getNumSuccessors() &&
710 RequiresFPRegKill(BB->getBasicBlock())) {
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000711 BMI(BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
Chris Lattner65cf42d2004-02-23 07:29:45 +0000712 ++NumFPKill;
Chris Lattner986618e2004-02-22 19:47:26 +0000713 }
714 }
715}
716
717
Chris Lattner6d40c192003-01-16 16:43:00 +0000718// canFoldSetCCIntoBranch - Return the setcc instruction if we can fold it into
719// the conditional branch instruction which is the only user of the cc
720// instruction. This is the case if the conditional branch is the only user of
721// the setcc, and if the setcc is in the same basic block as the conditional
722// branch. We also don't handle long arguments below, so we reject them here as
723// well.
724//
725static SetCondInst *canFoldSetCCIntoBranch(Value *V) {
726 if (SetCondInst *SCI = dyn_cast<SetCondInst>(V))
Chris Lattnerfd059242003-10-15 16:48:29 +0000727 if (SCI->hasOneUse() && isa<BranchInst>(SCI->use_back()) &&
Chris Lattner6d40c192003-01-16 16:43:00 +0000728 SCI->getParent() == cast<BranchInst>(SCI->use_back())->getParent()) {
729 const Type *Ty = SCI->getOperand(0)->getType();
730 if (Ty != Type::LongTy && Ty != Type::ULongTy)
731 return SCI;
732 }
733 return 0;
734}
Chris Lattner333b2fa2002-12-13 10:09:43 +0000735
Chris Lattner6d40c192003-01-16 16:43:00 +0000736// Return a fixed numbering for setcc instructions which does not depend on the
737// order of the opcodes.
738//
739static unsigned getSetCCNumber(unsigned Opcode) {
740 switch(Opcode) {
741 default: assert(0 && "Unknown setcc instruction!");
742 case Instruction::SetEQ: return 0;
743 case Instruction::SetNE: return 1;
744 case Instruction::SetLT: return 2;
Chris Lattner55f6fab2003-01-16 18:07:23 +0000745 case Instruction::SetGE: return 3;
746 case Instruction::SetGT: return 4;
747 case Instruction::SetLE: return 5;
Chris Lattner6d40c192003-01-16 16:43:00 +0000748 }
749}
Chris Lattner06925362002-11-17 21:56:38 +0000750
Chris Lattner6d40c192003-01-16 16:43:00 +0000751// LLVM -> X86 signed X86 unsigned
752// ----- ---------- ------------
753// seteq -> sete sete
754// setne -> setne setne
755// setlt -> setl setb
Chris Lattner55f6fab2003-01-16 18:07:23 +0000756// setge -> setge setae
Chris Lattner6d40c192003-01-16 16:43:00 +0000757// setgt -> setg seta
758// setle -> setle setbe
Chris Lattnerb2acc512003-10-19 21:09:10 +0000759// ----
760// sets // Used by comparison with 0 optimization
761// setns
762static const unsigned SetCCOpcodeTab[2][8] = {
763 { X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAEr, X86::SETAr, X86::SETBEr,
764 0, 0 },
765 { X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGEr, X86::SETGr, X86::SETLEr,
766 X86::SETSr, X86::SETNSr },
Chris Lattner6d40c192003-01-16 16:43:00 +0000767};
768
Chris Lattnerb2acc512003-10-19 21:09:10 +0000769// EmitComparison - This function emits a comparison of the two operands,
770// returning the extended setcc code to use.
771unsigned ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
772 MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000773 MachineBasicBlock::iterator IP) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000774 // The arguments are already supposed to be of the same type.
Chris Lattner6d40c192003-01-16 16:43:00 +0000775 const Type *CompTy = Op0->getType();
Chris Lattner3e130a22003-01-13 00:32:26 +0000776 unsigned Class = getClassB(CompTy);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000777 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattner333864d2003-06-05 19:30:30 +0000778
779 // Special case handling of: cmp R, i
780 if (Class == cByte || Class == cShort || Class == cInt)
781 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000782 uint64_t Op1v = cast<ConstantInt>(CI)->getRawValue();
783
Chris Lattner333864d2003-06-05 19:30:30 +0000784 // Mask off any upper bits of the constant, if there are any...
785 Op1v &= (1ULL << (8 << Class)) - 1;
786
Chris Lattnerb2acc512003-10-19 21:09:10 +0000787 // If this is a comparison against zero, emit more efficient code. We
788 // can't handle unsigned comparisons against zero unless they are == or
789 // !=. These should have been strength reduced already anyway.
790 if (Op1v == 0 && (CompTy->isSigned() || OpNum < 2)) {
791 static const unsigned TESTTab[] = {
792 X86::TESTrr8, X86::TESTrr16, X86::TESTrr32
793 };
794 BMI(MBB, IP, TESTTab[Class], 2).addReg(Op0r).addReg(Op0r);
795
796 if (OpNum == 2) return 6; // Map jl -> js
797 if (OpNum == 3) return 7; // Map jg -> jns
798 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +0000799 }
Chris Lattnerb2acc512003-10-19 21:09:10 +0000800
801 static const unsigned CMPTab[] = {
802 X86::CMPri8, X86::CMPri16, X86::CMPri32
803 };
804
805 BMI(MBB, IP, CMPTab[Class], 2).addReg(Op0r).addZImm(Op1v);
806 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +0000807 }
808
Chris Lattner9f08a922004-02-03 18:54:04 +0000809 // Special case handling of comparison against +/- 0.0
810 if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op1))
811 if (CFP->isExactlyValue(+0.0) || CFP->isExactlyValue(-0.0)) {
812 BMI(MBB, IP, X86::FTST, 1).addReg(Op0r);
813 BMI(MBB, IP, X86::FNSTSWr8, 0);
814 BMI(MBB, IP, X86::SAHF, 1);
815 return OpNum;
816 }
817
Chris Lattner58c41fe2003-08-24 19:19:47 +0000818 unsigned Op1r = getReg(Op1, MBB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +0000819 switch (Class) {
820 default: assert(0 && "Unknown type class!");
821 // Emit: cmp <var1>, <var2> (do the comparison). We can
822 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
823 // 32-bit.
824 case cByte:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000825 BMI(MBB, IP, X86::CMPrr8, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000826 break;
827 case cShort:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000828 BMI(MBB, IP, X86::CMPrr16, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000829 break;
830 case cInt:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000831 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000832 break;
833 case cFP:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000834 BMI(MBB, IP, X86::FpUCOM, 2).addReg(Op0r).addReg(Op1r);
835 BMI(MBB, IP, X86::FNSTSWr8, 0);
836 BMI(MBB, IP, X86::SAHF, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +0000837 break;
838
839 case cLong:
840 if (OpNum < 2) { // seteq, setne
841 unsigned LoTmp = makeAnotherReg(Type::IntTy);
842 unsigned HiTmp = makeAnotherReg(Type::IntTy);
843 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000844 BMI(MBB, IP, X86::XORrr32, 2, LoTmp).addReg(Op0r).addReg(Op1r);
845 BMI(MBB, IP, X86::XORrr32, 2, HiTmp).addReg(Op0r+1).addReg(Op1r+1);
846 BMI(MBB, IP, X86::ORrr32, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
Chris Lattner3e130a22003-01-13 00:32:26 +0000847 break; // Allow the sete or setne to be generated from flags set by OR
848 } else {
849 // Emit a sequence of code which compares the high and low parts once
850 // each, then uses a conditional move to handle the overflow case. For
851 // example, a setlt for long would generate code like this:
852 //
853 // AL = lo(op1) < lo(op2) // Signedness depends on operands
854 // BL = hi(op1) < hi(op2) // Always unsigned comparison
855 // dest = hi(op1) == hi(op2) ? AL : BL;
856 //
857
Chris Lattner6d40c192003-01-16 16:43:00 +0000858 // FIXME: This would be much better if we had hierarchical register
Chris Lattner3e130a22003-01-13 00:32:26 +0000859 // classes! Until then, hardcode registers so that we can deal with their
860 // aliases (because we don't have conditional byte moves).
861 //
Chris Lattner58c41fe2003-08-24 19:19:47 +0000862 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r);
863 BMI(MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
864 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000865 BMI(MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0, X86::BL);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000866 BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
867 BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
868 BMI(MBB, IP, X86::CMOVErr16, 2, X86::BX).addReg(X86::BX).addReg(X86::AX);
Chris Lattner6d40c192003-01-16 16:43:00 +0000869 // NOTE: visitSetCondInst knows that the value is dumped into the BL
870 // register at this point for long values...
Chris Lattnerb2acc512003-10-19 21:09:10 +0000871 return OpNum;
Chris Lattner3e130a22003-01-13 00:32:26 +0000872 }
873 }
Chris Lattnerb2acc512003-10-19 21:09:10 +0000874 return OpNum;
Chris Lattner6d40c192003-01-16 16:43:00 +0000875}
Chris Lattner3e130a22003-01-13 00:32:26 +0000876
Chris Lattner6d40c192003-01-16 16:43:00 +0000877
878/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
879/// register, then move it to wherever the result should be.
880///
881void ISel::visitSetCondInst(SetCondInst &I) {
882 if (canFoldSetCCIntoBranch(&I)) return; // Fold this into a branch...
883
Chris Lattner6d40c192003-01-16 16:43:00 +0000884 unsigned DestReg = getReg(I);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000885 MachineBasicBlock::iterator MII = BB->end();
886 emitSetCCOperation(BB, MII, I.getOperand(0), I.getOperand(1), I.getOpcode(),
887 DestReg);
888}
Chris Lattner6d40c192003-01-16 16:43:00 +0000889
Chris Lattner58c41fe2003-08-24 19:19:47 +0000890/// emitSetCCOperation - Common code shared between visitSetCondInst and
891/// constant expression support.
892void ISel::emitSetCCOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000893 MachineBasicBlock::iterator IP,
Chris Lattner58c41fe2003-08-24 19:19:47 +0000894 Value *Op0, Value *Op1, unsigned Opcode,
895 unsigned TargetReg) {
896 unsigned OpNum = getSetCCNumber(Opcode);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000897 OpNum = EmitComparison(OpNum, Op0, Op1, MBB, IP);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000898
Chris Lattnerb2acc512003-10-19 21:09:10 +0000899 const Type *CompTy = Op0->getType();
900 unsigned CompClass = getClassB(CompTy);
901 bool isSigned = CompTy->isSigned() && CompClass != cFP;
902
903 if (CompClass != cLong || OpNum < 2) {
Chris Lattner6d40c192003-01-16 16:43:00 +0000904 // Handle normal comparisons with a setcc instruction...
Chris Lattner58c41fe2003-08-24 19:19:47 +0000905 BMI(MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, TargetReg);
Chris Lattner6d40c192003-01-16 16:43:00 +0000906 } else {
907 // Handle long comparisons by copying the value which is already in BL into
908 // the register we want...
Chris Lattner58c41fe2003-08-24 19:19:47 +0000909 BMI(MBB, IP, X86::MOVrr8, 1, TargetReg).addReg(X86::BL);
Chris Lattner6d40c192003-01-16 16:43:00 +0000910 }
Brian Gaeke1749d632002-11-07 17:59:21 +0000911}
Chris Lattner51b49a92002-11-02 19:45:49 +0000912
Chris Lattner58c41fe2003-08-24 19:19:47 +0000913
914
915
Brian Gaekec2505982002-11-30 11:57:28 +0000916/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
917/// operand, in the specified target register.
Chris Lattner3e130a22003-01-13 00:32:26 +0000918void ISel::promote32(unsigned targetReg, const ValueRecord &VR) {
919 bool isUnsigned = VR.Ty->isUnsigned();
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000920
921 // Make sure we have the register number for this value...
922 unsigned Reg = VR.Val ? getReg(VR.Val) : VR.Reg;
923
Chris Lattner3e130a22003-01-13 00:32:26 +0000924 switch (getClassB(VR.Ty)) {
Chris Lattner94af4142002-12-25 05:13:53 +0000925 case cByte:
926 // Extend value into target register (8->32)
927 if (isUnsigned)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000928 BuildMI(BB, X86::MOVZXr32r8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000929 else
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000930 BuildMI(BB, X86::MOVSXr32r8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000931 break;
932 case cShort:
933 // Extend value into target register (16->32)
934 if (isUnsigned)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000935 BuildMI(BB, X86::MOVZXr32r16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000936 else
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000937 BuildMI(BB, X86::MOVSXr32r16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000938 break;
939 case cInt:
940 // Move value into target register (32->32)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000941 BuildMI(BB, X86::MOVrr32, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000942 break;
943 default:
944 assert(0 && "Unpromotable operand class in promote32");
945 }
Brian Gaekec2505982002-11-30 11:57:28 +0000946}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000947
Chris Lattner72614082002-10-25 22:55:53 +0000948/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
949/// we have the following possibilities:
950///
951/// ret void: No return value, simply emit a 'ret' instruction
952/// ret sbyte, ubyte : Extend value into EAX and return
953/// ret short, ushort: Extend value into EAX and return
954/// ret int, uint : Move value into EAX and return
955/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +0000956/// ret long, ulong : Move value into EAX/EDX and return
957/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +0000958///
Chris Lattner3e130a22003-01-13 00:32:26 +0000959void ISel::visitReturnInst(ReturnInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +0000960 if (I.getNumOperands() == 0) {
961 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
962 return;
963 }
964
965 Value *RetVal = I.getOperand(0);
Chris Lattner3e130a22003-01-13 00:32:26 +0000966 unsigned RetReg = getReg(RetVal);
967 switch (getClassB(RetVal->getType())) {
Chris Lattner94af4142002-12-25 05:13:53 +0000968 case cByte: // integral return values: extend or move into EAX and return
969 case cShort:
970 case cInt:
Chris Lattner3e130a22003-01-13 00:32:26 +0000971 promote32(X86::EAX, ValueRecord(RetReg, RetVal->getType()));
Chris Lattnerdbd73722003-05-06 21:32:22 +0000972 // Declare that EAX is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +0000973 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::EAX).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +0000974 break;
975 case cFP: // Floats & Doubles: Return in ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +0000976 BuildMI(BB, X86::FpSETRESULT, 1).addReg(RetReg);
Chris Lattnerdbd73722003-05-06 21:32:22 +0000977 // Declare that top-of-stack is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +0000978 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::ST0).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +0000979 break;
980 case cLong:
Chris Lattner3e130a22003-01-13 00:32:26 +0000981 BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(RetReg);
982 BuildMI(BB, X86::MOVrr32, 1, X86::EDX).addReg(RetReg+1);
Chris Lattnerdbd73722003-05-06 21:32:22 +0000983 // Declare that EAX & EDX are live on exit
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000984 BuildMI(BB, X86::IMPLICIT_USE, 3).addReg(X86::EAX).addReg(X86::EDX)
985 .addReg(X86::ESP);
Chris Lattner3e130a22003-01-13 00:32:26 +0000986 break;
Chris Lattner94af4142002-12-25 05:13:53 +0000987 default:
Chris Lattner3e130a22003-01-13 00:32:26 +0000988 visitInstruction(I);
Chris Lattner94af4142002-12-25 05:13:53 +0000989 }
Chris Lattner43189d12002-11-17 20:07:45 +0000990 // Emit a 'ret' instruction
Chris Lattner94af4142002-12-25 05:13:53 +0000991 BuildMI(BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +0000992}
993
Chris Lattner55f6fab2003-01-16 18:07:23 +0000994// getBlockAfter - Return the basic block which occurs lexically after the
995// specified one.
996static inline BasicBlock *getBlockAfter(BasicBlock *BB) {
997 Function::iterator I = BB; ++I; // Get iterator to next block
998 return I != BB->getParent()->end() ? &*I : 0;
999}
1000
Chris Lattner51b49a92002-11-02 19:45:49 +00001001/// visitBranchInst - Handle conditional and unconditional branches here. Note
1002/// that since code layout is frozen at this point, that if we are trying to
1003/// jump to a block that is the immediate successor of the current block, we can
Chris Lattner6d40c192003-01-16 16:43:00 +00001004/// just make a fall-through (but we don't currently).
Chris Lattner51b49a92002-11-02 19:45:49 +00001005///
Chris Lattner94af4142002-12-25 05:13:53 +00001006void ISel::visitBranchInst(BranchInst &BI) {
Chris Lattner55f6fab2003-01-16 18:07:23 +00001007 BasicBlock *NextBB = getBlockAfter(BI.getParent()); // BB after current one
1008
1009 if (!BI.isConditional()) { // Unconditional branch?
Chris Lattnercf93cdd2004-01-30 22:13:44 +00001010 if (BI.getSuccessor(0) != NextBB)
Chris Lattner55f6fab2003-01-16 18:07:23 +00001011 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0));
Chris Lattner6d40c192003-01-16 16:43:00 +00001012 return;
1013 }
1014
1015 // See if we can fold the setcc into the branch itself...
1016 SetCondInst *SCI = canFoldSetCCIntoBranch(BI.getCondition());
1017 if (SCI == 0) {
1018 // Nope, cannot fold setcc into this branch. Emit a branch on a condition
1019 // computed some other way...
Chris Lattner065faeb2002-12-28 20:24:02 +00001020 unsigned condReg = getReg(BI.getCondition());
Chris Lattner94af4142002-12-25 05:13:53 +00001021 BuildMI(BB, X86::CMPri8, 2).addReg(condReg).addZImm(0);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001022 if (BI.getSuccessor(1) == NextBB) {
1023 if (BI.getSuccessor(0) != NextBB)
1024 BuildMI(BB, X86::JNE, 1).addPCDisp(BI.getSuccessor(0));
1025 } else {
1026 BuildMI(BB, X86::JE, 1).addPCDisp(BI.getSuccessor(1));
1027
1028 if (BI.getSuccessor(0) != NextBB)
1029 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0));
1030 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001031 return;
Chris Lattner94af4142002-12-25 05:13:53 +00001032 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001033
1034 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
Chris Lattner58c41fe2003-08-24 19:19:47 +00001035 MachineBasicBlock::iterator MII = BB->end();
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001036 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), BB,MII);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001037
1038 const Type *CompTy = SCI->getOperand(0)->getType();
1039 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
Chris Lattner6d40c192003-01-16 16:43:00 +00001040
Chris Lattnerb2acc512003-10-19 21:09:10 +00001041
Chris Lattner6d40c192003-01-16 16:43:00 +00001042 // LLVM -> X86 signed X86 unsigned
1043 // ----- ---------- ------------
1044 // seteq -> je je
1045 // setne -> jne jne
1046 // setlt -> jl jb
Chris Lattner55f6fab2003-01-16 18:07:23 +00001047 // setge -> jge jae
Chris Lattner6d40c192003-01-16 16:43:00 +00001048 // setgt -> jg ja
1049 // setle -> jle jbe
Chris Lattnerb2acc512003-10-19 21:09:10 +00001050 // ----
1051 // js // Used by comparison with 0 optimization
1052 // jns
1053
1054 static const unsigned OpcodeTab[2][8] = {
1055 { X86::JE, X86::JNE, X86::JB, X86::JAE, X86::JA, X86::JBE, 0, 0 },
1056 { X86::JE, X86::JNE, X86::JL, X86::JGE, X86::JG, X86::JLE,
1057 X86::JS, X86::JNS },
Chris Lattner6d40c192003-01-16 16:43:00 +00001058 };
1059
Chris Lattner55f6fab2003-01-16 18:07:23 +00001060 if (BI.getSuccessor(0) != NextBB) {
1061 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(0));
1062 if (BI.getSuccessor(1) != NextBB)
1063 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(1));
1064 } else {
1065 // Change to the inverse condition...
1066 if (BI.getSuccessor(1) != NextBB) {
1067 OpNum ^= 1;
1068 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(1));
1069 }
1070 }
Chris Lattner2df035b2002-11-02 19:27:56 +00001071}
1072
Chris Lattner3e130a22003-01-13 00:32:26 +00001073
1074/// doCall - This emits an abstract call instruction, setting up the arguments
1075/// and the return value as appropriate. For the actual function call itself,
1076/// it inserts the specified CallMI instruction into the stream.
1077///
1078void ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001079 const std::vector<ValueRecord> &Args) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001080
Chris Lattner065faeb2002-12-28 20:24:02 +00001081 // Count how many bytes are to be pushed on the stack...
1082 unsigned NumBytes = 0;
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001083
Chris Lattner3e130a22003-01-13 00:32:26 +00001084 if (!Args.empty()) {
1085 for (unsigned i = 0, e = Args.size(); i != e; ++i)
1086 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001087 case cByte: case cShort: case cInt:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001088 NumBytes += 4; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001089 case cLong:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001090 NumBytes += 8; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001091 case cFP:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001092 NumBytes += Args[i].Ty == Type::FloatTy ? 4 : 8;
1093 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001094 default: assert(0 && "Unknown class!");
1095 }
1096
1097 // Adjust the stack pointer for the new arguments...
1098 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(NumBytes);
1099
1100 // Arguments go on the stack in reverse order, as specified by the ABI.
1101 unsigned ArgOffset = 0;
Chris Lattner3e130a22003-01-13 00:32:26 +00001102 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001103 unsigned ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
Chris Lattner3e130a22003-01-13 00:32:26 +00001104 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001105 case cByte:
1106 case cShort: {
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001107 // Promote arg to 32 bits wide into a temporary register...
1108 unsigned R = makeAnotherReg(Type::UIntTy);
1109 promote32(R, Args[i]);
Chris Lattnere87331d2004-02-17 06:28:19 +00001110 addRegOffset(BuildMI(BB, X86::MOVmr32, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001111 X86::ESP, ArgOffset).addReg(R);
1112 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001113 }
1114 case cInt:
Chris Lattnere87331d2004-02-17 06:28:19 +00001115 addRegOffset(BuildMI(BB, X86::MOVmr32, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001116 X86::ESP, ArgOffset).addReg(ArgReg);
1117 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001118 case cLong:
Chris Lattnere87331d2004-02-17 06:28:19 +00001119 addRegOffset(BuildMI(BB, X86::MOVmr32, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001120 X86::ESP, ArgOffset).addReg(ArgReg);
Chris Lattnere87331d2004-02-17 06:28:19 +00001121 addRegOffset(BuildMI(BB, X86::MOVmr32, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001122 X86::ESP, ArgOffset+4).addReg(ArgReg+1);
1123 ArgOffset += 4; // 8 byte entry, not 4.
1124 break;
1125
Chris Lattner065faeb2002-12-28 20:24:02 +00001126 case cFP:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001127 if (Args[i].Ty == Type::FloatTy) {
1128 addRegOffset(BuildMI(BB, X86::FSTr32, 5),
1129 X86::ESP, ArgOffset).addReg(ArgReg);
1130 } else {
1131 assert(Args[i].Ty == Type::DoubleTy && "Unknown FP type!");
1132 addRegOffset(BuildMI(BB, X86::FSTr64, 5),
1133 X86::ESP, ArgOffset).addReg(ArgReg);
1134 ArgOffset += 4; // 8 byte entry, not 4.
1135 }
1136 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001137
Chris Lattner3e130a22003-01-13 00:32:26 +00001138 default: assert(0 && "Unknown class!");
Chris Lattner065faeb2002-12-28 20:24:02 +00001139 }
1140 ArgOffset += 4;
Chris Lattner94af4142002-12-25 05:13:53 +00001141 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001142 } else {
1143 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(0);
Chris Lattner94af4142002-12-25 05:13:53 +00001144 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +00001145
Chris Lattner3e130a22003-01-13 00:32:26 +00001146 BB->push_back(CallMI);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001147
Chris Lattner065faeb2002-12-28 20:24:02 +00001148 BuildMI(BB, X86::ADJCALLSTACKUP, 1).addZImm(NumBytes);
Chris Lattnera3243642002-12-04 23:45:28 +00001149
1150 // If there is a return value, scavenge the result from the location the call
1151 // leaves it in...
1152 //
Chris Lattner3e130a22003-01-13 00:32:26 +00001153 if (Ret.Ty != Type::VoidTy) {
1154 unsigned DestClass = getClassB(Ret.Ty);
1155 switch (DestClass) {
Brian Gaeke20244b72002-12-12 15:33:40 +00001156 case cByte:
1157 case cShort:
1158 case cInt: {
1159 // Integral results are in %eax, or the appropriate portion
1160 // thereof.
1161 static const unsigned regRegMove[] = {
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001162 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
Brian Gaeke20244b72002-12-12 15:33:40 +00001163 };
1164 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
Chris Lattner3e130a22003-01-13 00:32:26 +00001165 BuildMI(BB, regRegMove[DestClass], 1, Ret.Reg).addReg(AReg[DestClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001166 break;
Brian Gaeke20244b72002-12-12 15:33:40 +00001167 }
Chris Lattner94af4142002-12-25 05:13:53 +00001168 case cFP: // Floating-point return values live in %ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +00001169 BuildMI(BB, X86::FpGETRESULT, 1, Ret.Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001170 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001171 case cLong: // Long values are left in EDX:EAX
1172 BuildMI(BB, X86::MOVrr32, 1, Ret.Reg).addReg(X86::EAX);
1173 BuildMI(BB, X86::MOVrr32, 1, Ret.Reg+1).addReg(X86::EDX);
1174 break;
1175 default: assert(0 && "Unknown class!");
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001176 }
Chris Lattnera3243642002-12-04 23:45:28 +00001177 }
Brian Gaekefa8d5712002-11-22 11:07:01 +00001178}
Chris Lattner2df035b2002-11-02 19:27:56 +00001179
Chris Lattner3e130a22003-01-13 00:32:26 +00001180
1181/// visitCallInst - Push args on stack and do a procedure call instruction.
1182void ISel::visitCallInst(CallInst &CI) {
1183 MachineInstr *TheCall;
1184 if (Function *F = CI.getCalledFunction()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001185 // Is it an intrinsic function call?
Brian Gaeked0fde302003-11-11 22:41:34 +00001186 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001187 visitIntrinsicCall(ID, CI); // Special intrinsics are not handled here
1188 return;
1189 }
1190
Chris Lattner3e130a22003-01-13 00:32:26 +00001191 // Emit a CALL instruction with PC-relative displacement.
1192 TheCall = BuildMI(X86::CALLpcrel32, 1).addGlobalAddress(F, true);
1193 } else { // Emit an indirect call...
1194 unsigned Reg = getReg(CI.getCalledValue());
1195 TheCall = BuildMI(X86::CALLr32, 1).addReg(Reg);
1196 }
1197
1198 std::vector<ValueRecord> Args;
1199 for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001200 Args.push_back(ValueRecord(CI.getOperand(i)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001201
1202 unsigned DestReg = CI.getType() != Type::VoidTy ? getReg(CI) : 0;
1203 doCall(ValueRecord(DestReg, CI.getType()), TheCall, Args);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001204}
Chris Lattner3e130a22003-01-13 00:32:26 +00001205
Chris Lattneraeb54b82003-08-28 21:23:43 +00001206
Chris Lattner44827152003-12-28 09:47:19 +00001207/// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
1208/// function, lowering any calls to unknown intrinsic functions into the
1209/// equivalent LLVM code.
1210void ISel::LowerUnknownIntrinsicFunctionCalls(Function &F) {
1211 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
1212 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
1213 if (CallInst *CI = dyn_cast<CallInst>(I++))
1214 if (Function *F = CI->getCalledFunction())
1215 switch (F->getIntrinsicID()) {
Chris Lattneraed386e2003-12-28 09:53:23 +00001216 case Intrinsic::not_intrinsic:
Chris Lattner44827152003-12-28 09:47:19 +00001217 case Intrinsic::va_start:
1218 case Intrinsic::va_copy:
1219 case Intrinsic::va_end:
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001220 case Intrinsic::returnaddress:
1221 case Intrinsic::frameaddress:
Chris Lattner915e5e52004-02-12 17:53:22 +00001222 case Intrinsic::memcpy:
Chris Lattner2a0f2242004-02-14 04:46:05 +00001223 case Intrinsic::memset:
Chris Lattner44827152003-12-28 09:47:19 +00001224 // We directly implement these intrinsics
1225 break;
1226 default:
1227 // All other intrinsic calls we must lower.
1228 Instruction *Before = CI->getPrev();
Chris Lattnerf70e0c22003-12-28 21:23:38 +00001229 TM.getIntrinsicLowering().LowerIntrinsicCall(CI);
Chris Lattner44827152003-12-28 09:47:19 +00001230 if (Before) { // Move iterator to instruction after call
1231 I = Before; ++I;
1232 } else {
1233 I = BB->begin();
1234 }
1235 }
1236
1237}
1238
Brian Gaeked0fde302003-11-11 22:41:34 +00001239void ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001240 unsigned TmpReg1, TmpReg2;
1241 switch (ID) {
Brian Gaeked0fde302003-11-11 22:41:34 +00001242 case Intrinsic::va_start:
Chris Lattnereca195e2003-05-08 19:44:13 +00001243 // Get the address of the first vararg value...
Chris Lattner73815062003-10-18 05:56:40 +00001244 TmpReg1 = getReg(CI);
Chris Lattnereca195e2003-05-08 19:44:13 +00001245 addFrameReference(BuildMI(BB, X86::LEAr32, 5, TmpReg1), VarArgsFrameIndex);
Chris Lattnereca195e2003-05-08 19:44:13 +00001246 return;
1247
Brian Gaeked0fde302003-11-11 22:41:34 +00001248 case Intrinsic::va_copy:
Chris Lattner73815062003-10-18 05:56:40 +00001249 TmpReg1 = getReg(CI);
1250 TmpReg2 = getReg(CI.getOperand(1));
1251 BuildMI(BB, X86::MOVrr32, 1, TmpReg1).addReg(TmpReg2);
Chris Lattnereca195e2003-05-08 19:44:13 +00001252 return;
Brian Gaeked0fde302003-11-11 22:41:34 +00001253 case Intrinsic::va_end: return; // Noop on X86
Chris Lattnereca195e2003-05-08 19:44:13 +00001254
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001255 case Intrinsic::returnaddress:
1256 case Intrinsic::frameaddress:
1257 TmpReg1 = getReg(CI);
1258 if (cast<Constant>(CI.getOperand(1))->isNullValue()) {
1259 if (ID == Intrinsic::returnaddress) {
1260 // Just load the return address
Chris Lattnere87331d2004-02-17 06:28:19 +00001261 addFrameReference(BuildMI(BB, X86::MOVrm32, 4, TmpReg1),
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001262 ReturnAddressIndex);
1263 } else {
1264 addFrameReference(BuildMI(BB, X86::LEAr32, 4, TmpReg1),
1265 ReturnAddressIndex, -4);
1266 }
1267 } else {
1268 // Values other than zero are not implemented yet.
Chris Lattner6e173a02004-02-17 06:16:44 +00001269 BuildMI(BB, X86::MOVri32, 1, TmpReg1).addZImm(0);
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001270 }
1271 return;
1272
Chris Lattner915e5e52004-02-12 17:53:22 +00001273 case Intrinsic::memcpy: {
1274 assert(CI.getNumOperands() == 5 && "Illegal llvm.memcpy call!");
1275 unsigned Align = 1;
1276 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1277 Align = AlignC->getRawValue();
1278 if (Align == 0) Align = 1;
1279 }
1280
1281 // Turn the byte code into # iterations
Chris Lattner07122832004-02-13 23:36:47 +00001282 unsigned ByteReg;
Chris Lattner915e5e52004-02-12 17:53:22 +00001283 unsigned CountReg;
Chris Lattner2a0f2242004-02-14 04:46:05 +00001284 unsigned Opcode;
Chris Lattner915e5e52004-02-12 17:53:22 +00001285 switch (Align & 3) {
1286 case 2: // WORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001287 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1288 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
1289 } else {
1290 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001291 BuildMI(BB, X86::SHRri32, 2, CountReg).addReg(ByteReg).addZImm(1);
Chris Lattner07122832004-02-13 23:36:47 +00001292 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001293 Opcode = X86::REP_MOVSW;
Chris Lattner915e5e52004-02-12 17:53:22 +00001294 break;
1295 case 0: // DWORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001296 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1297 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
1298 } else {
1299 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001300 BuildMI(BB, X86::SHRri32, 2, CountReg).addReg(ByteReg).addZImm(2);
Chris Lattner07122832004-02-13 23:36:47 +00001301 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001302 Opcode = X86::REP_MOVSD;
Chris Lattner915e5e52004-02-12 17:53:22 +00001303 break;
1304 case 1: // BYTE aligned
1305 case 3: // BYTE aligned
Chris Lattner07122832004-02-13 23:36:47 +00001306 CountReg = getReg(CI.getOperand(3));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001307 Opcode = X86::REP_MOVSB;
Chris Lattner915e5e52004-02-12 17:53:22 +00001308 break;
1309 }
1310
1311 // No matter what the alignment is, we put the source in ESI, the
1312 // destination in EDI, and the count in ECX.
1313 TmpReg1 = getReg(CI.getOperand(1));
1314 TmpReg2 = getReg(CI.getOperand(2));
1315 BuildMI(BB, X86::MOVrr32, 1, X86::ECX).addReg(CountReg);
1316 BuildMI(BB, X86::MOVrr32, 1, X86::EDI).addReg(TmpReg1);
1317 BuildMI(BB, X86::MOVrr32, 1, X86::ESI).addReg(TmpReg2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001318 BuildMI(BB, Opcode, 0);
1319 return;
1320 }
1321 case Intrinsic::memset: {
1322 assert(CI.getNumOperands() == 5 && "Illegal llvm.memset call!");
1323 unsigned Align = 1;
1324 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1325 Align = AlignC->getRawValue();
1326 if (Align == 0) Align = 1;
Chris Lattner915e5e52004-02-12 17:53:22 +00001327 }
1328
Chris Lattner2a0f2242004-02-14 04:46:05 +00001329 // Turn the byte code into # iterations
1330 unsigned ByteReg;
1331 unsigned CountReg;
1332 unsigned Opcode;
1333 if (ConstantInt *ValC = dyn_cast<ConstantInt>(CI.getOperand(2))) {
1334 unsigned Val = ValC->getRawValue() & 255;
1335
1336 // If the value is a constant, then we can potentially use larger copies.
1337 switch (Align & 3) {
1338 case 2: // WORD aligned
1339 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001340 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001341 } else {
1342 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001343 BuildMI(BB, X86::SHRri32, 2, CountReg).addReg(ByteReg).addZImm(1);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001344 }
Chris Lattner6e173a02004-02-17 06:16:44 +00001345 BuildMI(BB, X86::MOVri16, 1, X86::AX).addZImm((Val << 8) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001346 Opcode = X86::REP_STOSW;
1347 break;
1348 case 0: // DWORD aligned
1349 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001350 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001351 } else {
1352 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001353 BuildMI(BB, X86::SHRri32, 2, CountReg).addReg(ByteReg).addZImm(2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001354 }
1355 Val = (Val << 8) | Val;
Chris Lattner6e173a02004-02-17 06:16:44 +00001356 BuildMI(BB, X86::MOVri32, 1, X86::EAX).addZImm((Val << 16) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001357 Opcode = X86::REP_STOSD;
1358 break;
1359 case 1: // BYTE aligned
1360 case 3: // BYTE aligned
1361 CountReg = getReg(CI.getOperand(3));
Chris Lattner6e173a02004-02-17 06:16:44 +00001362 BuildMI(BB, X86::MOVri8, 1, X86::AL).addZImm(Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001363 Opcode = X86::REP_STOSB;
1364 break;
1365 }
1366 } else {
1367 // If it's not a constant value we are storing, just fall back. We could
1368 // try to be clever to form 16 bit and 32 bit values, but we don't yet.
1369 unsigned ValReg = getReg(CI.getOperand(2));
1370 BuildMI(BB, X86::MOVrr8, 1, X86::AL).addReg(ValReg);
1371 CountReg = getReg(CI.getOperand(3));
1372 Opcode = X86::REP_STOSB;
1373 }
1374
1375 // No matter what the alignment is, we put the source in ESI, the
1376 // destination in EDI, and the count in ECX.
1377 TmpReg1 = getReg(CI.getOperand(1));
1378 //TmpReg2 = getReg(CI.getOperand(2));
1379 BuildMI(BB, X86::MOVrr32, 1, X86::ECX).addReg(CountReg);
1380 BuildMI(BB, X86::MOVrr32, 1, X86::EDI).addReg(TmpReg1);
1381 BuildMI(BB, Opcode, 0);
Chris Lattner915e5e52004-02-12 17:53:22 +00001382 return;
1383 }
1384
Chris Lattner44827152003-12-28 09:47:19 +00001385 default: assert(0 && "Error: unknown intrinsics should have been lowered!");
Chris Lattnereca195e2003-05-08 19:44:13 +00001386 }
1387}
1388
1389
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001390/// visitSimpleBinary - Implement simple binary operators for integral types...
1391/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, 4 for
1392/// Xor.
1393void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
1394 unsigned DestReg = getReg(B);
1395 MachineBasicBlock::iterator MI = BB->end();
1396 emitSimpleBinaryOperation(BB, MI, B.getOperand(0), B.getOperand(1),
1397 OperatorClass, DestReg);
1398}
Chris Lattner3e130a22003-01-13 00:32:26 +00001399
Chris Lattnerb2acc512003-10-19 21:09:10 +00001400/// emitSimpleBinaryOperation - Implement simple binary operators for integral
1401/// types... OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for
1402/// Or, 4 for Xor.
Chris Lattner68aad932002-11-02 20:13:22 +00001403///
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001404/// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
1405/// and constant expression support.
Chris Lattnerb2acc512003-10-19 21:09:10 +00001406///
1407void ISel::emitSimpleBinaryOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001408 MachineBasicBlock::iterator IP,
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001409 Value *Op0, Value *Op1,
Chris Lattnerb2acc512003-10-19 21:09:10 +00001410 unsigned OperatorClass, unsigned DestReg) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001411 unsigned Class = getClassB(Op0->getType());
Chris Lattnerb2acc512003-10-19 21:09:10 +00001412
1413 // sub 0, X -> neg X
1414 if (OperatorClass == 1 && Class != cLong)
Chris Lattneraf703622004-02-02 18:56:30 +00001415 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0)) {
Chris Lattnerb2acc512003-10-19 21:09:10 +00001416 if (CI->isNullValue()) {
1417 unsigned op1Reg = getReg(Op1, MBB, IP);
1418 switch (Class) {
1419 default: assert(0 && "Unknown class for this function!");
1420 case cByte:
1421 BMI(MBB, IP, X86::NEGr8, 1, DestReg).addReg(op1Reg);
1422 return;
1423 case cShort:
1424 BMI(MBB, IP, X86::NEGr16, 1, DestReg).addReg(op1Reg);
1425 return;
1426 case cInt:
1427 BMI(MBB, IP, X86::NEGr32, 1, DestReg).addReg(op1Reg);
1428 return;
1429 }
1430 }
Chris Lattner9f8fd6d2004-02-02 19:31:38 +00001431 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op0))
1432 if (CFP->isExactlyValue(-0.0)) {
1433 // -0.0 - X === -X
1434 unsigned op1Reg = getReg(Op1, MBB, IP);
1435 BMI(MBB, IP, X86::FCHS, 1, DestReg).addReg(op1Reg);
1436 return;
1437 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001438
Chris Lattner35333e12003-06-05 18:28:55 +00001439 if (!isa<ConstantInt>(Op1) || Class == cLong) {
1440 static const unsigned OpcodeTab[][4] = {
1441 // Arithmetic operators
1442 { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32, X86::FpADD }, // ADD
1443 { X86::SUBrr8, X86::SUBrr16, X86::SUBrr32, X86::FpSUB }, // SUB
1444
1445 // Bitwise operators
1446 { X86::ANDrr8, X86::ANDrr16, X86::ANDrr32, 0 }, // AND
1447 { X86:: ORrr8, X86:: ORrr16, X86:: ORrr32, 0 }, // OR
1448 { X86::XORrr8, X86::XORrr16, X86::XORrr32, 0 }, // XOR
Chris Lattner3e130a22003-01-13 00:32:26 +00001449 };
Chris Lattner35333e12003-06-05 18:28:55 +00001450
1451 bool isLong = false;
1452 if (Class == cLong) {
1453 isLong = true;
1454 Class = cInt; // Bottom 32 bits are handled just like ints
1455 }
1456
1457 unsigned Opcode = OpcodeTab[OperatorClass][Class];
1458 assert(Opcode && "Floating point arguments to logical inst?");
Chris Lattnerb2acc512003-10-19 21:09:10 +00001459 unsigned Op0r = getReg(Op0, MBB, IP);
1460 unsigned Op1r = getReg(Op1, MBB, IP);
1461 BMI(MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
Chris Lattner35333e12003-06-05 18:28:55 +00001462
1463 if (isLong) { // Handle the upper 32 bits of long values...
1464 static const unsigned TopTab[] = {
1465 X86::ADCrr32, X86::SBBrr32, X86::ANDrr32, X86::ORrr32, X86::XORrr32
1466 };
Chris Lattnerb2acc512003-10-19 21:09:10 +00001467 BMI(MBB, IP, TopTab[OperatorClass], 2,
1468 DestReg+1).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattner35333e12003-06-05 18:28:55 +00001469 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001470 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00001471 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001472
1473 // Special case: op Reg, <const>
1474 ConstantInt *Op1C = cast<ConstantInt>(Op1);
1475 unsigned Op0r = getReg(Op0, MBB, IP);
1476
1477 // xor X, -1 -> not X
1478 if (OperatorClass == 4 && Op1C->isAllOnesValue()) {
1479 static unsigned const NOTTab[] = { X86::NOTr8, X86::NOTr16, X86::NOTr32 };
1480 BMI(MBB, IP, NOTTab[Class], 1, DestReg).addReg(Op0r);
1481 return;
1482 }
1483
1484 // add X, -1 -> dec X
1485 if (OperatorClass == 0 && Op1C->isAllOnesValue()) {
1486 static unsigned const DECTab[] = { X86::DECr8, X86::DECr16, X86::DECr32 };
1487 BMI(MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
1488 return;
1489 }
1490
1491 // add X, 1 -> inc X
1492 if (OperatorClass == 0 && Op1C->equalsInt(1)) {
1493 static unsigned const DECTab[] = { X86::INCr8, X86::INCr16, X86::INCr32 };
1494 BMI(MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
1495 return;
1496 }
1497
1498 static const unsigned OpcodeTab[][3] = {
1499 // Arithmetic operators
1500 { X86::ADDri8, X86::ADDri16, X86::ADDri32 }, // ADD
1501 { X86::SUBri8, X86::SUBri16, X86::SUBri32 }, // SUB
1502
1503 // Bitwise operators
1504 { X86::ANDri8, X86::ANDri16, X86::ANDri32 }, // AND
1505 { X86:: ORri8, X86:: ORri16, X86:: ORri32 }, // OR
1506 { X86::XORri8, X86::XORri16, X86::XORri32 }, // XOR
1507 };
1508
1509 assert(Class < 3 && "General code handles 64-bit integer types!");
1510 unsigned Opcode = OpcodeTab[OperatorClass][Class];
1511 uint64_t Op1v = cast<ConstantInt>(Op1C)->getRawValue();
1512
1513 // Mask off any upper bits of the constant, if there are any...
1514 Op1v &= (1ULL << (8 << Class)) - 1;
1515 BMI(MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addZImm(Op1v);
Chris Lattnere2954c82002-11-02 20:04:26 +00001516}
1517
Chris Lattner3e130a22003-01-13 00:32:26 +00001518/// doMultiply - Emit appropriate instructions to multiply together the
1519/// registers op0Reg and op1Reg, and put the result in DestReg. The type of the
1520/// result should be given as DestTy.
1521///
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001522void ISel::doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
Chris Lattner3e130a22003-01-13 00:32:26 +00001523 unsigned DestReg, const Type *DestTy,
Chris Lattner8a307e82002-12-16 19:32:50 +00001524 unsigned op0Reg, unsigned op1Reg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001525 unsigned Class = getClass(DestTy);
Chris Lattner94af4142002-12-25 05:13:53 +00001526 switch (Class) {
1527 case cFP: // Floating point multiply
Chris Lattner3e130a22003-01-13 00:32:26 +00001528 BMI(BB, MBBI, X86::FpMUL, 2, DestReg).addReg(op0Reg).addReg(op1Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001529 return;
Chris Lattner0f1c4612003-06-21 17:16:58 +00001530 case cInt:
1531 case cShort:
Chris Lattnerc01d1232003-10-20 03:42:58 +00001532 BMI(BB, MBBI, Class == cInt ? X86::IMULrr32 : X86::IMULrr16, 2, DestReg)
Chris Lattner0f1c4612003-06-21 17:16:58 +00001533 .addReg(op0Reg).addReg(op1Reg);
1534 return;
1535 case cByte:
1536 // Must use the MUL instruction, which forces use of AL...
1537 BMI(MBB, MBBI, X86::MOVrr8, 1, X86::AL).addReg(op0Reg);
1538 BMI(MBB, MBBI, X86::MULr8, 1).addReg(op1Reg);
1539 BMI(MBB, MBBI, X86::MOVrr8, 1, DestReg).addReg(X86::AL);
1540 return;
Chris Lattner94af4142002-12-25 05:13:53 +00001541 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00001542 case cLong: assert(0 && "doMultiply cannot operate on LONG values!");
Chris Lattner94af4142002-12-25 05:13:53 +00001543 }
Brian Gaeke20244b72002-12-12 15:33:40 +00001544}
1545
Chris Lattnerb2acc512003-10-19 21:09:10 +00001546// ExactLog2 - This function solves for (Val == 1 << (N-1)) and returns N. It
1547// returns zero when the input is not exactly a power of two.
1548static unsigned ExactLog2(unsigned Val) {
1549 if (Val == 0) return 0;
1550 unsigned Count = 0;
1551 while (Val != 1) {
1552 if (Val & 1) return 0;
1553 Val >>= 1;
1554 ++Count;
1555 }
1556 return Count+1;
1557}
1558
1559void ISel::doMultiplyConst(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001560 MachineBasicBlock::iterator IP,
Chris Lattnerb2acc512003-10-19 21:09:10 +00001561 unsigned DestReg, const Type *DestTy,
1562 unsigned op0Reg, unsigned ConstRHS) {
1563 unsigned Class = getClass(DestTy);
1564
1565 // If the element size is exactly a power of 2, use a shift to get it.
1566 if (unsigned Shift = ExactLog2(ConstRHS)) {
1567 switch (Class) {
1568 default: assert(0 && "Unknown class for this function!");
1569 case cByte:
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001570 BMI(MBB, IP, X86::SHLri32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001571 return;
1572 case cShort:
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001573 BMI(MBB, IP, X86::SHLri32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001574 return;
1575 case cInt:
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001576 BMI(MBB, IP, X86::SHLri32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001577 return;
1578 }
1579 }
Chris Lattnerc01d1232003-10-20 03:42:58 +00001580
1581 if (Class == cShort) {
Chris Lattner55b54812004-02-17 04:26:43 +00001582 BMI(MBB, IP, X86::IMULrri16, 2, DestReg).addReg(op0Reg).addZImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00001583 return;
1584 } else if (Class == cInt) {
Chris Lattner55b54812004-02-17 04:26:43 +00001585 BMI(MBB, IP, X86::IMULrri32, 2, DestReg).addReg(op0Reg).addZImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00001586 return;
1587 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001588
1589 // Most general case, emit a normal multiply...
Chris Lattner6e173a02004-02-17 06:16:44 +00001590 static const unsigned MOVriTab[] = {
1591 X86::MOVri8, X86::MOVri16, X86::MOVri32
Chris Lattnerb2acc512003-10-19 21:09:10 +00001592 };
1593
1594 unsigned TmpReg = makeAnotherReg(DestTy);
Chris Lattner6e173a02004-02-17 06:16:44 +00001595 BMI(MBB, IP, MOVriTab[Class], 1, TmpReg).addZImm(ConstRHS);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001596
1597 // Emit a MUL to multiply the register holding the index by
1598 // elementSize, putting the result in OffsetReg.
1599 doMultiply(MBB, IP, DestReg, DestTy, op0Reg, TmpReg);
1600}
1601
Chris Lattnerca9671d2002-11-02 20:28:58 +00001602/// visitMul - Multiplies are not simple binary operators because they must deal
1603/// with the EAX register explicitly.
1604///
1605void ISel::visitMul(BinaryOperator &I) {
Chris Lattner202a2d02002-12-13 13:07:42 +00001606 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00001607 unsigned DestReg = getReg(I);
1608
1609 // Simple scalar multiply?
1610 if (I.getType() != Type::LongTy && I.getType() != Type::ULongTy) {
Chris Lattnerb2acc512003-10-19 21:09:10 +00001611 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1))) {
1612 unsigned Val = (unsigned)CI->getRawValue(); // Cannot be 64-bit constant
1613 MachineBasicBlock::iterator MBBI = BB->end();
1614 doMultiplyConst(BB, MBBI, DestReg, I.getType(), Op0Reg, Val);
1615 } else {
1616 unsigned Op1Reg = getReg(I.getOperand(1));
1617 MachineBasicBlock::iterator MBBI = BB->end();
1618 doMultiply(BB, MBBI, DestReg, I.getType(), Op0Reg, Op1Reg);
1619 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001620 } else {
Chris Lattnerb2acc512003-10-19 21:09:10 +00001621 unsigned Op1Reg = getReg(I.getOperand(1));
1622
Chris Lattner3e130a22003-01-13 00:32:26 +00001623 // Long value. We have to do things the hard way...
1624 // Multiply the two low parts... capturing carry into EDX
1625 BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(Op0Reg);
1626 BuildMI(BB, X86::MULr32, 1).addReg(Op1Reg); // AL*BL
1627
1628 unsigned OverflowReg = makeAnotherReg(Type::UIntTy);
1629 BuildMI(BB, X86::MOVrr32, 1, DestReg).addReg(X86::EAX); // AL*BL
1630 BuildMI(BB, X86::MOVrr32, 1, OverflowReg).addReg(X86::EDX); // AL*BL >> 32
1631
1632 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattner034acf02003-06-21 18:15:27 +00001633 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
Chris Lattnerc01d1232003-10-20 03:42:58 +00001634 BMI(BB, MBBI, X86::IMULrr32, 2, AHBLReg).addReg(Op0Reg+1).addReg(Op1Reg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001635
1636 unsigned AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
1637 BuildMI(BB, X86::ADDrr32, 2, // AH*BL+(AL*BL >> 32)
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001638 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001639
1640 MBBI = BB->end();
Chris Lattner034acf02003-06-21 18:15:27 +00001641 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
Chris Lattnerc01d1232003-10-20 03:42:58 +00001642 BMI(BB, MBBI, X86::IMULrr32, 2, ALBHReg).addReg(Op0Reg).addReg(Op1Reg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00001643
1644 BuildMI(BB, X86::ADDrr32, 2, // AL*BH + AH*BL + (AL*BL >> 32)
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001645 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001646 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00001647}
Chris Lattnerca9671d2002-11-02 20:28:58 +00001648
Chris Lattner06925362002-11-17 21:56:38 +00001649
Chris Lattnerf01729e2002-11-02 20:54:46 +00001650/// visitDivRem - Handle division and remainder instructions... these
1651/// instruction both require the same instructions to be generated, they just
1652/// select the result from a different register. Note that both of these
1653/// instructions work differently for signed and unsigned operands.
1654///
1655void ISel::visitDivRem(BinaryOperator &I) {
Chris Lattnercadff442003-10-23 17:21:43 +00001656 unsigned Op0Reg = getReg(I.getOperand(0));
1657 unsigned Op1Reg = getReg(I.getOperand(1));
1658 unsigned ResultReg = getReg(I);
Chris Lattner94af4142002-12-25 05:13:53 +00001659
Chris Lattnercadff442003-10-23 17:21:43 +00001660 MachineBasicBlock::iterator IP = BB->end();
1661 emitDivRemOperation(BB, IP, Op0Reg, Op1Reg, I.getOpcode() == Instruction::Div,
1662 I.getType(), ResultReg);
1663}
1664
1665void ISel::emitDivRemOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001666 MachineBasicBlock::iterator IP,
Chris Lattnercadff442003-10-23 17:21:43 +00001667 unsigned Op0Reg, unsigned Op1Reg, bool isDiv,
1668 const Type *Ty, unsigned ResultReg) {
1669 unsigned Class = getClass(Ty);
Chris Lattner94af4142002-12-25 05:13:53 +00001670 switch (Class) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001671 case cFP: // Floating point divide
Chris Lattnercadff442003-10-23 17:21:43 +00001672 if (isDiv) {
Chris Lattner62b767b2003-11-18 17:47:05 +00001673 BMI(BB, IP, X86::FpDIV, 2, ResultReg).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001674 } else { // Floating point remainder...
Chris Lattner3e130a22003-01-13 00:32:26 +00001675 MachineInstr *TheCall =
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001676 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol("fmod", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00001677 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00001678 Args.push_back(ValueRecord(Op0Reg, Type::DoubleTy));
1679 Args.push_back(ValueRecord(Op1Reg, Type::DoubleTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00001680 doCall(ValueRecord(ResultReg, Type::DoubleTy), TheCall, Args);
1681 }
Chris Lattner94af4142002-12-25 05:13:53 +00001682 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00001683 case cLong: {
1684 static const char *FnName[] =
1685 { "__moddi3", "__divdi3", "__umoddi3", "__udivdi3" };
1686
Chris Lattnercadff442003-10-23 17:21:43 +00001687 unsigned NameIdx = Ty->isUnsigned()*2 + isDiv;
Chris Lattner3e130a22003-01-13 00:32:26 +00001688 MachineInstr *TheCall =
1689 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol(FnName[NameIdx], true);
1690
1691 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00001692 Args.push_back(ValueRecord(Op0Reg, Type::LongTy));
1693 Args.push_back(ValueRecord(Op1Reg, Type::LongTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00001694 doCall(ValueRecord(ResultReg, Type::LongTy), TheCall, Args);
1695 return;
1696 }
1697 case cByte: case cShort: case cInt:
Misha Brukmancf00c4a2003-10-10 17:57:28 +00001698 break; // Small integrals, handled below...
Chris Lattner3e130a22003-01-13 00:32:26 +00001699 default: assert(0 && "Unknown class!");
Chris Lattner94af4142002-12-25 05:13:53 +00001700 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00001701
1702 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
1703 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001704 static const unsigned SarOpcode[]={ X86::SARri8, X86::SARri16, X86::SARri32 };
Chris Lattner6e173a02004-02-17 06:16:44 +00001705 static const unsigned ClrOpcode[]={ X86::MOVri8, X86::MOVri16, X86::MOVri32 };
Chris Lattnerf01729e2002-11-02 20:54:46 +00001706 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
1707
1708 static const unsigned DivOpcode[][4] = {
Chris Lattner3e130a22003-01-13 00:32:26 +00001709 { X86::DIVr8 , X86::DIVr16 , X86::DIVr32 , 0 }, // Unsigned division
1710 { X86::IDIVr8, X86::IDIVr16, X86::IDIVr32, 0 }, // Signed division
Chris Lattnerf01729e2002-11-02 20:54:46 +00001711 };
1712
Chris Lattnercadff442003-10-23 17:21:43 +00001713 bool isSigned = Ty->isSigned();
Chris Lattnerf01729e2002-11-02 20:54:46 +00001714 unsigned Reg = Regs[Class];
1715 unsigned ExtReg = ExtRegs[Class];
Chris Lattnerf01729e2002-11-02 20:54:46 +00001716
1717 // Put the first operand into one of the A registers...
Chris Lattner62b767b2003-11-18 17:47:05 +00001718 BMI(BB, IP, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00001719
1720 if (isSigned) {
1721 // Emit a sign extension instruction...
Chris Lattnercadff442003-10-23 17:21:43 +00001722 unsigned ShiftResult = makeAnotherReg(Ty);
Chris Lattner62b767b2003-11-18 17:47:05 +00001723 BMI(BB, IP, SarOpcode[Class], 2, ShiftResult).addReg(Op0Reg).addZImm(31);
1724 BMI(BB, IP, MovOpcode[Class], 1, ExtReg).addReg(ShiftResult);
Chris Lattnerf01729e2002-11-02 20:54:46 +00001725 } else {
Alkis Evlogimenosf998a7e2004-01-12 07:22:45 +00001726 // If unsigned, emit a zeroing instruction... (reg = 0)
1727 BMI(BB, IP, ClrOpcode[Class], 2, ExtReg).addZImm(0);
Chris Lattnerf01729e2002-11-02 20:54:46 +00001728 }
1729
Chris Lattner06925362002-11-17 21:56:38 +00001730 // Emit the appropriate divide or remainder instruction...
Chris Lattner62b767b2003-11-18 17:47:05 +00001731 BMI(BB, IP, DivOpcode[isSigned][Class], 1).addReg(Op1Reg);
Chris Lattner06925362002-11-17 21:56:38 +00001732
Chris Lattnerf01729e2002-11-02 20:54:46 +00001733 // Figure out which register we want to pick the result out of...
Chris Lattnercadff442003-10-23 17:21:43 +00001734 unsigned DestReg = isDiv ? Reg : ExtReg;
Chris Lattnerf01729e2002-11-02 20:54:46 +00001735
Chris Lattnerf01729e2002-11-02 20:54:46 +00001736 // Put the result into the destination register...
Chris Lattner62b767b2003-11-18 17:47:05 +00001737 BMI(BB, IP, MovOpcode[Class], 1, ResultReg).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +00001738}
Chris Lattnere2954c82002-11-02 20:04:26 +00001739
Chris Lattner06925362002-11-17 21:56:38 +00001740
Brian Gaekea1719c92002-10-31 23:03:59 +00001741/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
1742/// for constant immediate shift values, and for constant immediate
1743/// shift values equal to 1. Even the general case is sort of special,
1744/// because the shift amount has to be in CL, not just any old register.
1745///
Chris Lattner3e130a22003-01-13 00:32:26 +00001746void ISel::visitShiftInst(ShiftInst &I) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001747 MachineBasicBlock::iterator IP = BB->end ();
1748 emitShiftOperation (BB, IP, I.getOperand (0), I.getOperand (1),
1749 I.getOpcode () == Instruction::Shl, I.getType (),
1750 getReg (I));
1751}
1752
1753/// emitShiftOperation - Common code shared between visitShiftInst and
1754/// constant expression support.
1755void ISel::emitShiftOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001756 MachineBasicBlock::iterator IP,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001757 Value *Op, Value *ShiftAmount, bool isLeftShift,
1758 const Type *ResultTy, unsigned DestReg) {
1759 unsigned SrcReg = getReg (Op, MBB, IP);
1760 bool isSigned = ResultTy->isSigned ();
1761 unsigned Class = getClass (ResultTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00001762
1763 static const unsigned ConstantOperand[][4] = {
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001764 { X86::SHRri8, X86::SHRri16, X86::SHRri32, X86::SHRDri32 }, // SHR
1765 { X86::SARri8, X86::SARri16, X86::SARri32, X86::SHRDri32 }, // SAR
1766 { X86::SHLri8, X86::SHLri16, X86::SHLri32, X86::SHLDri32 }, // SHL
1767 { X86::SHLri8, X86::SHLri16, X86::SHLri32, X86::SHLDri32 }, // SAL = SHL
Chris Lattner3e130a22003-01-13 00:32:26 +00001768 };
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001769
Chris Lattner3e130a22003-01-13 00:32:26 +00001770 static const unsigned NonConstantOperand[][4] = {
1771 { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32 }, // SHR
1772 { X86::SARrr8, X86::SARrr16, X86::SARrr32 }, // SAR
1773 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SHL
1774 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SAL = SHL
1775 };
Chris Lattner796df732002-11-02 00:44:25 +00001776
Chris Lattner3e130a22003-01-13 00:32:26 +00001777 // Longs, as usual, are handled specially...
1778 if (Class == cLong) {
1779 // If we have a constant shift, we can generate much more efficient code
1780 // than otherwise...
1781 //
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001782 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001783 unsigned Amount = CUI->getValue();
1784 if (Amount < 32) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001785 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
1786 if (isLeftShift) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001787 BMI(MBB, IP, Opc[3], 3,
1788 DestReg+1).addReg(SrcReg+1).addReg(SrcReg).addZImm(Amount);
1789 BMI(MBB, IP, Opc[2], 2, DestReg).addReg(SrcReg).addZImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001790 } else {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001791 BMI(MBB, IP, Opc[3], 3,
1792 DestReg).addReg(SrcReg ).addReg(SrcReg+1).addZImm(Amount);
1793 BMI(MBB, IP, Opc[2], 2, DestReg+1).addReg(SrcReg+1).addZImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001794 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001795 } else { // Shifting more than 32 bits
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001796 Amount -= 32;
1797 if (isLeftShift) {
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001798 BMI(MBB, IP, X86::SHLri32, 2,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001799 DestReg + 1).addReg(SrcReg).addZImm(Amount);
Chris Lattner6e173a02004-02-17 06:16:44 +00001800 BMI(MBB, IP, X86::MOVri32, 1,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001801 DestReg).addZImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001802 } else {
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001803 unsigned Opcode = isSigned ? X86::SARri32 : X86::SHRri32;
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001804 BMI(MBB, IP, Opcode, 2, DestReg).addReg(SrcReg+1).addZImm(Amount);
Chris Lattner6e173a02004-02-17 06:16:44 +00001805 BMI(MBB, IP, X86::MOVri32, 1, DestReg+1).addZImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001806 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001807 }
1808 } else {
Chris Lattner9171ef52003-06-01 01:56:54 +00001809 unsigned TmpReg = makeAnotherReg(Type::IntTy);
1810
1811 if (!isLeftShift && isSigned) {
1812 // If this is a SHR of a Long, then we need to do funny sign extension
1813 // stuff. TmpReg gets the value to use as the high-part if we are
1814 // shifting more than 32 bits.
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00001815 BMI(MBB, IP, X86::SARri32, 2, TmpReg).addReg(SrcReg).addZImm(31);
Chris Lattner9171ef52003-06-01 01:56:54 +00001816 } else {
1817 // Other shifts use a fixed zero value if the shift is more than 32
1818 // bits.
Chris Lattner6e173a02004-02-17 06:16:44 +00001819 BMI(MBB, IP, X86::MOVri32, 1, TmpReg).addZImm(0);
Chris Lattner9171ef52003-06-01 01:56:54 +00001820 }
1821
1822 // Initialize CL with the shift amount...
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001823 unsigned ShiftAmountReg = getReg(ShiftAmount, MBB, IP);
1824 BMI(MBB, IP, X86::MOVrr8, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00001825
1826 unsigned TmpReg2 = makeAnotherReg(Type::IntTy);
1827 unsigned TmpReg3 = makeAnotherReg(Type::IntTy);
1828 if (isLeftShift) {
1829 // TmpReg2 = shld inHi, inLo
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001830 BMI(MBB, IP, X86::SHLDrr32, 2, TmpReg2).addReg(SrcReg+1).addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00001831 // TmpReg3 = shl inLo, CL
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001832 BMI(MBB, IP, X86::SHLrr32, 1, TmpReg3).addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00001833
1834 // Set the flags to indicate whether the shift was by more than 32 bits.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001835 BMI(MBB, IP, X86::TESTri8, 2).addReg(X86::CL).addZImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00001836
1837 // DestHi = (>32) ? TmpReg3 : TmpReg2;
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001838 BMI(MBB, IP, X86::CMOVNErr32, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00001839 DestReg+1).addReg(TmpReg2).addReg(TmpReg3);
1840 // DestLo = (>32) ? TmpReg : TmpReg3;
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001841 BMI(MBB, IP, X86::CMOVNErr32, 2,
1842 DestReg).addReg(TmpReg3).addReg(TmpReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00001843 } else {
1844 // TmpReg2 = shrd inLo, inHi
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001845 BMI(MBB, IP, X86::SHRDrr32, 2, TmpReg2).addReg(SrcReg).addReg(SrcReg+1);
Chris Lattner9171ef52003-06-01 01:56:54 +00001846 // TmpReg3 = s[ah]r inHi, CL
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001847 BMI(MBB, IP, isSigned ? X86::SARrr32 : X86::SHRrr32, 1, TmpReg3)
Chris Lattner9171ef52003-06-01 01:56:54 +00001848 .addReg(SrcReg+1);
1849
1850 // Set the flags to indicate whether the shift was by more than 32 bits.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001851 BMI(MBB, IP, X86::TESTri8, 2).addReg(X86::CL).addZImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00001852
1853 // DestLo = (>32) ? TmpReg3 : TmpReg2;
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001854 BMI(MBB, IP, X86::CMOVNErr32, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00001855 DestReg).addReg(TmpReg2).addReg(TmpReg3);
1856
1857 // DestHi = (>32) ? TmpReg : TmpReg3;
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001858 BMI(MBB, IP, X86::CMOVNErr32, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00001859 DestReg+1).addReg(TmpReg3).addReg(TmpReg);
1860 }
Brian Gaekea1719c92002-10-31 23:03:59 +00001861 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001862 return;
1863 }
Chris Lattnere9913f22002-11-02 01:41:55 +00001864
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001865 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001866 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
1867 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001868
Chris Lattner3e130a22003-01-13 00:32:26 +00001869 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001870 BMI(MBB, IP, Opc[Class], 2,
1871 DestReg).addReg(SrcReg).addZImm(CUI->getValue());
Chris Lattner3e130a22003-01-13 00:32:26 +00001872 } else { // The shift amount is non-constant.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001873 unsigned ShiftAmountReg = getReg (ShiftAmount, MBB, IP);
1874 BMI(MBB, IP, X86::MOVrr8, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001875
Chris Lattner3e130a22003-01-13 00:32:26 +00001876 const unsigned *Opc = NonConstantOperand[isLeftShift*2+isSigned];
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00001877 BMI(MBB, IP, Opc[Class], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001878 }
1879}
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001880
Chris Lattner3e130a22003-01-13 00:32:26 +00001881
Chris Lattner6fc3c522002-11-17 21:11:55 +00001882/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
Chris Lattnere8f0d922002-12-24 00:03:11 +00001883/// instruction. The load and store instructions are the only place where we
1884/// need to worry about the memory layout of the target machine.
Chris Lattner6fc3c522002-11-17 21:11:55 +00001885///
1886void ISel::visitLoadInst(LoadInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +00001887 unsigned SrcAddrReg = getReg(I.getOperand(0));
1888 unsigned DestReg = getReg(I);
Chris Lattnere8f0d922002-12-24 00:03:11 +00001889
Brian Gaekebfedb912003-07-17 21:30:06 +00001890 unsigned Class = getClassB(I.getType());
Chris Lattner6ac1d712003-10-20 04:48:06 +00001891
1892 if (Class == cLong) {
Chris Lattnere87331d2004-02-17 06:28:19 +00001893 addDirectMem(BuildMI(BB, X86::MOVrm32, 4, DestReg), SrcAddrReg);
1894 addRegOffset(BuildMI(BB, X86::MOVrm32, 4, DestReg+1), SrcAddrReg, 4);
Chris Lattner94af4142002-12-25 05:13:53 +00001895 return;
1896 }
Chris Lattner6fc3c522002-11-17 21:11:55 +00001897
Chris Lattner6ac1d712003-10-20 04:48:06 +00001898 static const unsigned Opcodes[] = {
Chris Lattnere87331d2004-02-17 06:28:19 +00001899 X86::MOVrm8, X86::MOVrm16, X86::MOVrm32, X86::FLDr32
Chris Lattner3e130a22003-01-13 00:32:26 +00001900 };
Chris Lattner6ac1d712003-10-20 04:48:06 +00001901 unsigned Opcode = Opcodes[Class];
1902 if (I.getType() == Type::DoubleTy) Opcode = X86::FLDr64;
1903 addDirectMem(BuildMI(BB, Opcode, 4, DestReg), SrcAddrReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001904}
1905
Chris Lattner6fc3c522002-11-17 21:11:55 +00001906/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
1907/// instruction.
1908///
1909void ISel::visitStoreInst(StoreInst &I) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001910 unsigned AddressReg = getReg(I.getOperand(1));
Chris Lattner6c09db22003-10-20 04:11:23 +00001911 const Type *ValTy = I.getOperand(0)->getType();
1912 unsigned Class = getClassB(ValTy);
Chris Lattner6ac1d712003-10-20 04:48:06 +00001913
Chris Lattner5a830962004-02-25 02:56:58 +00001914 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(0))) {
1915 uint64_t Val = CI->getRawValue();
1916 if (Class == cLong) {
1917 addDirectMem(BuildMI(BB, X86::MOVmi32, 5), AddressReg).addZImm(Val & ~0U);
1918 addRegOffset(BuildMI(BB, X86::MOVmi32, 5), AddressReg,4).addZImm(Val>>32);
1919 } else {
1920 static const unsigned Opcodes[] = {
1921 X86::MOVmi8, X86::MOVmi16, X86::MOVmi32
1922 };
1923 unsigned Opcode = Opcodes[Class];
1924 addDirectMem(BuildMI(BB, Opcode, 5), AddressReg).addZImm(Val);
1925 }
1926 } else if (ConstantBool *CB = dyn_cast<ConstantBool>(I.getOperand(0))) {
1927 addDirectMem(BuildMI(BB, X86::MOVmi8, 5),
1928 AddressReg).addZImm(CB->getValue());
1929 } else {
1930 if (Class == cLong) {
1931 unsigned ValReg = getReg(I.getOperand(0));
1932 addDirectMem(BuildMI(BB, X86::MOVmr32, 5), AddressReg).addReg(ValReg);
1933 addRegOffset(BuildMI(BB, X86::MOVmr32, 5), AddressReg,4).addReg(ValReg+1);
1934 } else {
1935 unsigned ValReg = getReg(I.getOperand(0));
1936 static const unsigned Opcodes[] = {
1937 X86::MOVmr8, X86::MOVmr16, X86::MOVmr32, X86::FSTr32
1938 };
1939 unsigned Opcode = Opcodes[Class];
1940 if (ValTy == Type::DoubleTy) Opcode = X86::FSTr64;
1941 addDirectMem(BuildMI(BB, Opcode, 1+4), AddressReg).addReg(ValReg);
1942 }
Chris Lattner94af4142002-12-25 05:13:53 +00001943 }
Chris Lattner6fc3c522002-11-17 21:11:55 +00001944}
1945
1946
Brian Gaekec11232a2002-11-26 10:43:30 +00001947/// visitCastInst - Here we have various kinds of copying with or without
1948/// sign extension going on.
Chris Lattner3e130a22003-01-13 00:32:26 +00001949void ISel::visitCastInst(CastInst &CI) {
Chris Lattnerf5854472003-06-21 16:01:24 +00001950 Value *Op = CI.getOperand(0);
1951 // If this is a cast from a 32-bit integer to a Long type, and the only uses
1952 // of the case are GEP instructions, then the cast does not need to be
1953 // generated explicitly, it will be folded into the GEP.
1954 if (CI.getType() == Type::LongTy &&
1955 (Op->getType() == Type::IntTy || Op->getType() == Type::UIntTy)) {
1956 bool AllUsesAreGEPs = true;
1957 for (Value::use_iterator I = CI.use_begin(), E = CI.use_end(); I != E; ++I)
1958 if (!isa<GetElementPtrInst>(*I)) {
1959 AllUsesAreGEPs = false;
1960 break;
1961 }
1962
1963 // No need to codegen this cast if all users are getelementptr instrs...
1964 if (AllUsesAreGEPs) return;
1965 }
1966
Chris Lattner548f61d2003-04-23 17:22:12 +00001967 unsigned DestReg = getReg(CI);
1968 MachineBasicBlock::iterator MI = BB->end();
Chris Lattnerf5854472003-06-21 16:01:24 +00001969 emitCastOperation(BB, MI, Op, CI.getType(), DestReg);
Chris Lattner548f61d2003-04-23 17:22:12 +00001970}
1971
1972/// emitCastOperation - Common code shared between visitCastInst and
1973/// constant expression cast support.
1974void ISel::emitCastOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001975 MachineBasicBlock::iterator IP,
Chris Lattner548f61d2003-04-23 17:22:12 +00001976 Value *Src, const Type *DestTy,
1977 unsigned DestReg) {
Chris Lattner3907d112003-04-23 17:57:48 +00001978 unsigned SrcReg = getReg(Src, BB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00001979 const Type *SrcTy = Src->getType();
1980 unsigned SrcClass = getClassB(SrcTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00001981 unsigned DestClass = getClassB(DestTy);
Chris Lattner7d255892002-12-13 11:31:59 +00001982
Chris Lattner3e130a22003-01-13 00:32:26 +00001983 // Implement casts to bool by using compare on the operand followed by set if
1984 // not zero on the result.
1985 if (DestTy == Type::BoolTy) {
Chris Lattner20772542003-06-01 03:38:24 +00001986 switch (SrcClass) {
1987 case cByte:
1988 BMI(BB, IP, X86::TESTrr8, 2).addReg(SrcReg).addReg(SrcReg);
1989 break;
1990 case cShort:
1991 BMI(BB, IP, X86::TESTrr16, 2).addReg(SrcReg).addReg(SrcReg);
1992 break;
1993 case cInt:
1994 BMI(BB, IP, X86::TESTrr32, 2).addReg(SrcReg).addReg(SrcReg);
1995 break;
1996 case cLong: {
1997 unsigned TmpReg = makeAnotherReg(Type::IntTy);
1998 BMI(BB, IP, X86::ORrr32, 2, TmpReg).addReg(SrcReg).addReg(SrcReg+1);
1999 break;
2000 }
2001 case cFP:
Chris Lattner311ca2e2004-02-23 03:21:41 +00002002 BMI(BB, IP, X86::FTST, 1).addReg(SrcReg);
2003 BMI(BB, IP, X86::FNSTSWr8, 0);
2004 BMI(BB, IP, X86::SAHF, 1);
2005 break;
Chris Lattner20772542003-06-01 03:38:24 +00002006 }
2007
2008 // If the zero flag is not set, then the value is true, set the byte to
2009 // true.
Chris Lattner548f61d2003-04-23 17:22:12 +00002010 BMI(BB, IP, X86::SETNEr, 1, DestReg);
Chris Lattner94af4142002-12-25 05:13:53 +00002011 return;
2012 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002013
2014 static const unsigned RegRegMove[] = {
2015 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32, X86::FpMOV, X86::MOVrr32
2016 };
2017
2018 // Implement casts between values of the same type class (as determined by
2019 // getClass) by using a register-to-register move.
2020 if (SrcClass == DestClass) {
2021 if (SrcClass <= cInt || (SrcClass == cFP && SrcTy == DestTy)) {
Chris Lattner548f61d2003-04-23 17:22:12 +00002022 BMI(BB, IP, RegRegMove[SrcClass], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002023 } else if (SrcClass == cFP) {
2024 if (SrcTy == Type::FloatTy) { // double -> float
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002025 assert(DestTy == Type::DoubleTy && "Unknown cFP member!");
2026 BMI(BB, IP, X86::FpMOV, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002027 } else { // float -> double
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002028 assert(SrcTy == Type::DoubleTy && DestTy == Type::FloatTy &&
2029 "Unknown cFP member!");
2030 // Truncate from double to float by storing to memory as short, then
2031 // reading it back.
2032 unsigned FltAlign = TM.getTargetData().getFloatAlignment();
Chris Lattner3e130a22003-01-13 00:32:26 +00002033 int FrameIdx = F->getFrameInfo()->CreateStackObject(4, FltAlign);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002034 addFrameReference(BMI(BB, IP, X86::FSTr32, 5), FrameIdx).addReg(SrcReg);
2035 addFrameReference(BMI(BB, IP, X86::FLDr32, 5, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00002036 }
2037 } else if (SrcClass == cLong) {
Chris Lattner548f61d2003-04-23 17:22:12 +00002038 BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg);
2039 BMI(BB, IP, X86::MOVrr32, 1, DestReg+1).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00002040 } else {
Chris Lattnerc53544a2003-05-12 20:16:58 +00002041 assert(0 && "Cannot handle this type of cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00002042 abort();
Brian Gaeked474e9c2002-12-06 10:49:33 +00002043 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002044 return;
2045 }
2046
2047 // Handle cast of SMALLER int to LARGER int using a move with sign extension
2048 // or zero extension, depending on whether the source type was signed.
2049 if (SrcClass <= cInt && (DestClass <= cInt || DestClass == cLong) &&
2050 SrcClass < DestClass) {
2051 bool isLong = DestClass == cLong;
2052 if (isLong) DestClass = cInt;
2053
2054 static const unsigned Opc[][4] = {
2055 { X86::MOVSXr16r8, X86::MOVSXr32r8, X86::MOVSXr32r16, X86::MOVrr32 }, // s
2056 { X86::MOVZXr16r8, X86::MOVZXr32r8, X86::MOVZXr32r16, X86::MOVrr32 } // u
2057 };
2058
2059 bool isUnsigned = SrcTy->isUnsigned();
Chris Lattner548f61d2003-04-23 17:22:12 +00002060 BMI(BB, IP, Opc[isUnsigned][SrcClass + DestClass - 1], 1,
2061 DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002062
2063 if (isLong) { // Handle upper 32 bits as appropriate...
2064 if (isUnsigned) // Zero out top bits...
Chris Lattner6e173a02004-02-17 06:16:44 +00002065 BMI(BB, IP, X86::MOVri32, 1, DestReg+1).addZImm(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00002066 else // Sign extend bottom half...
Chris Lattner7ddc3fb2004-02-17 06:24:02 +00002067 BMI(BB, IP, X86::SARri32, 2, DestReg+1).addReg(DestReg).addZImm(31);
Brian Gaeked474e9c2002-12-06 10:49:33 +00002068 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002069 return;
2070 }
2071
2072 // Special case long -> int ...
2073 if (SrcClass == cLong && DestClass == cInt) {
Chris Lattner548f61d2003-04-23 17:22:12 +00002074 BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002075 return;
2076 }
2077
2078 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by a
2079 // move out of AX or AL.
2080 if ((SrcClass <= cInt || SrcClass == cLong) && DestClass <= cInt
2081 && SrcClass > DestClass) {
2082 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX, 0, X86::EAX };
Chris Lattner548f61d2003-04-23 17:22:12 +00002083 BMI(BB, IP, RegRegMove[SrcClass], 1, AReg[SrcClass]).addReg(SrcReg);
2084 BMI(BB, IP, RegRegMove[DestClass], 1, DestReg).addReg(AReg[DestClass]);
Chris Lattner3e130a22003-01-13 00:32:26 +00002085 return;
2086 }
2087
2088 // Handle casts from integer to floating point now...
2089 if (DestClass == cFP) {
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002090 // Promote the integer to a type supported by FLD. We do this because there
2091 // are no unsigned FLD instructions, so we must promote an unsigned value to
2092 // a larger signed value, then use FLD on the larger value.
2093 //
2094 const Type *PromoteType = 0;
2095 unsigned PromoteOpcode;
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002096 unsigned RealDestReg = DestReg;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002097 switch (SrcTy->getPrimitiveID()) {
2098 case Type::BoolTyID:
2099 case Type::SByteTyID:
2100 // We don't have the facilities for directly loading byte sized data from
2101 // memory (even signed). Promote it to 16 bits.
2102 PromoteType = Type::ShortTy;
2103 PromoteOpcode = X86::MOVSXr16r8;
2104 break;
2105 case Type::UByteTyID:
2106 PromoteType = Type::ShortTy;
2107 PromoteOpcode = X86::MOVZXr16r8;
2108 break;
2109 case Type::UShortTyID:
2110 PromoteType = Type::IntTy;
2111 PromoteOpcode = X86::MOVZXr32r16;
2112 break;
2113 case Type::UIntTyID: {
2114 // Make a 64 bit temporary... and zero out the top of it...
2115 unsigned TmpReg = makeAnotherReg(Type::LongTy);
2116 BMI(BB, IP, X86::MOVrr32, 1, TmpReg).addReg(SrcReg);
Chris Lattner6e173a02004-02-17 06:16:44 +00002117 BMI(BB, IP, X86::MOVri32, 1, TmpReg+1).addZImm(0);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002118 SrcTy = Type::LongTy;
2119 SrcClass = cLong;
2120 SrcReg = TmpReg;
2121 break;
2122 }
2123 case Type::ULongTyID:
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002124 // Don't fild into the read destination.
2125 DestReg = makeAnotherReg(Type::DoubleTy);
2126 break;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002127 default: // No promotion needed...
2128 break;
2129 }
2130
2131 if (PromoteType) {
2132 unsigned TmpReg = makeAnotherReg(PromoteType);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002133 unsigned Opc = SrcTy->isSigned() ? X86::MOVSXr16r8 : X86::MOVZXr16r8;
2134 BMI(BB, IP, Opc, 1, TmpReg).addReg(SrcReg);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002135 SrcTy = PromoteType;
2136 SrcClass = getClass(PromoteType);
Chris Lattner3e130a22003-01-13 00:32:26 +00002137 SrcReg = TmpReg;
2138 }
2139
2140 // Spill the integer to memory and reload it from there...
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002141 int FrameIdx = F->getFrameInfo()->CreateStackObject(SrcTy, TM.getTargetData());
Chris Lattner3e130a22003-01-13 00:32:26 +00002142
2143 if (SrcClass == cLong) {
Chris Lattnere87331d2004-02-17 06:28:19 +00002144 addFrameReference(BMI(BB, IP, X86::MOVmr32, 5), FrameIdx).addReg(SrcReg);
2145 addFrameReference(BMI(BB, IP, X86::MOVmr32, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002146 FrameIdx, 4).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00002147 } else {
Chris Lattnere87331d2004-02-17 06:28:19 +00002148 static const unsigned Op1[] = { X86::MOVmr8, X86::MOVmr16, X86::MOVmr32 };
Chris Lattner548f61d2003-04-23 17:22:12 +00002149 addFrameReference(BMI(BB, IP, Op1[SrcClass], 5), FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002150 }
2151
2152 static const unsigned Op2[] =
Chris Lattner4d5a50a2003-05-12 20:36:13 +00002153 { 0/*byte*/, X86::FILDr16, X86::FILDr32, 0/*FP*/, X86::FILDr64 };
Chris Lattner548f61d2003-04-23 17:22:12 +00002154 addFrameReference(BMI(BB, IP, Op2[SrcClass], 5, DestReg), FrameIdx);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002155
2156 // We need special handling for unsigned 64-bit integer sources. If the
2157 // input number has the "sign bit" set, then we loaded it incorrectly as a
2158 // negative 64-bit number. In this case, add an offset value.
2159 if (SrcTy == Type::ULongTy) {
2160 // Emit a test instruction to see if the dynamic input value was signed.
2161 BMI(BB, IP, X86::TESTrr32, 2).addReg(SrcReg+1).addReg(SrcReg+1);
2162
2163 // If the sign bit is set, get a pointer to an offset, otherwise get a pointer to a zero.
2164 MachineConstantPool *CP = F->getConstantPool();
2165 unsigned Zero = makeAnotherReg(Type::IntTy);
2166 addConstantPoolReference(BMI(BB, IP, X86::LEAr32, 5, Zero),
2167 CP->getConstantPoolIndex(Constant::getNullValue(Type::UIntTy)));
2168 unsigned Offset = makeAnotherReg(Type::IntTy);
2169 addConstantPoolReference(BMI(BB, IP, X86::LEAr32, 5, Offset),
2170 CP->getConstantPoolIndex(ConstantUInt::get(Type::UIntTy,
2171 0x5f800000)));
2172 unsigned Addr = makeAnotherReg(Type::IntTy);
2173 BMI(BB, IP, X86::CMOVSrr32, 2, Addr).addReg(Zero).addReg(Offset);
2174
2175 // Load the constant for an add. FIXME: this could make an 'fadd' that
2176 // reads directly from memory, but we don't support these yet.
2177 unsigned ConstReg = makeAnotherReg(Type::DoubleTy);
2178 addDirectMem(BMI(BB, IP, X86::FLDr32, 4, ConstReg), Addr);
2179
2180 BMI(BB, IP, X86::FpADD, 2, RealDestReg).addReg(ConstReg).addReg(DestReg);
2181 }
2182
Chris Lattner3e130a22003-01-13 00:32:26 +00002183 return;
2184 }
2185
2186 // Handle casts from floating point to integer now...
2187 if (SrcClass == cFP) {
2188 // Change the floating point control register to use "round towards zero"
2189 // mode when truncating to an integer value.
2190 //
2191 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Chris Lattner548f61d2003-04-23 17:22:12 +00002192 addFrameReference(BMI(BB, IP, X86::FNSTCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00002193
2194 // Load the old value of the high byte of the control word...
2195 unsigned HighPartOfCW = makeAnotherReg(Type::UByteTy);
Chris Lattnere87331d2004-02-17 06:28:19 +00002196 addFrameReference(BMI(BB, IP, X86::MOVrm8, 4, HighPartOfCW), CWFrameIdx, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +00002197
2198 // Set the high part to be round to zero...
Chris Lattner6e173a02004-02-17 06:16:44 +00002199 addFrameReference(BMI(BB, IP, X86::MOVmi8, 5), CWFrameIdx, 1).addZImm(12);
Chris Lattner3e130a22003-01-13 00:32:26 +00002200
2201 // Reload the modified control word now...
Chris Lattner548f61d2003-04-23 17:22:12 +00002202 addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00002203
2204 // Restore the memory image of control word to original value
Chris Lattnere87331d2004-02-17 06:28:19 +00002205 addFrameReference(BMI(BB, IP, X86::MOVmr8, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002206 CWFrameIdx, 1).addReg(HighPartOfCW);
Chris Lattner3e130a22003-01-13 00:32:26 +00002207
2208 // We don't have the facilities for directly storing byte sized data to
2209 // memory. Promote it to 16 bits. We also must promote unsigned values to
2210 // larger classes because we only have signed FP stores.
2211 unsigned StoreClass = DestClass;
2212 const Type *StoreTy = DestTy;
2213 if (StoreClass == cByte || DestTy->isUnsigned())
2214 switch (StoreClass) {
2215 case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
2216 case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
2217 case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break;
Brian Gaeked4615052003-07-18 20:23:43 +00002218 // The following treatment of cLong may not be perfectly right,
2219 // but it survives chains of casts of the form
2220 // double->ulong->double.
2221 case cLong: StoreTy = Type::LongTy; StoreClass = cLong; break;
Chris Lattner3e130a22003-01-13 00:32:26 +00002222 default: assert(0 && "Unknown store class!");
2223 }
2224
2225 // Spill the integer to memory and reload it from there...
2226 int FrameIdx =
2227 F->getFrameInfo()->CreateStackObject(StoreTy, TM.getTargetData());
2228
2229 static const unsigned Op1[] =
2230 { 0, X86::FISTr16, X86::FISTr32, 0, X86::FISTPr64 };
Chris Lattner548f61d2003-04-23 17:22:12 +00002231 addFrameReference(BMI(BB, IP, Op1[StoreClass], 5), FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002232
2233 if (DestClass == cLong) {
Chris Lattnere87331d2004-02-17 06:28:19 +00002234 addFrameReference(BMI(BB, IP, X86::MOVrm32, 4, DestReg), FrameIdx);
2235 addFrameReference(BMI(BB, IP, X86::MOVrm32, 4, DestReg+1), FrameIdx, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +00002236 } else {
Chris Lattnere87331d2004-02-17 06:28:19 +00002237 static const unsigned Op2[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 };
Chris Lattner548f61d2003-04-23 17:22:12 +00002238 addFrameReference(BMI(BB, IP, Op2[DestClass], 4, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00002239 }
2240
2241 // Reload the original control word now...
Chris Lattner548f61d2003-04-23 17:22:12 +00002242 addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00002243 return;
2244 }
2245
Brian Gaeked474e9c2002-12-06 10:49:33 +00002246 // Anything we haven't handled already, we can't (yet) handle at all.
Chris Lattnerc53544a2003-05-12 20:16:58 +00002247 assert(0 && "Unhandled cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00002248 abort();
Brian Gaekefa8d5712002-11-22 11:07:01 +00002249}
Brian Gaekea1719c92002-10-31 23:03:59 +00002250
Chris Lattner73815062003-10-18 05:56:40 +00002251/// visitVANextInst - Implement the va_next instruction...
Chris Lattnereca195e2003-05-08 19:44:13 +00002252///
Chris Lattner73815062003-10-18 05:56:40 +00002253void ISel::visitVANextInst(VANextInst &I) {
2254 unsigned VAList = getReg(I.getOperand(0));
Chris Lattnereca195e2003-05-08 19:44:13 +00002255 unsigned DestReg = getReg(I);
2256
Chris Lattnereca195e2003-05-08 19:44:13 +00002257 unsigned Size;
Chris Lattner73815062003-10-18 05:56:40 +00002258 switch (I.getArgType()->getPrimitiveID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00002259 default:
2260 std::cerr << I;
Chris Lattner73815062003-10-18 05:56:40 +00002261 assert(0 && "Error: bad type for va_next instruction!");
Chris Lattnereca195e2003-05-08 19:44:13 +00002262 return;
2263 case Type::PointerTyID:
2264 case Type::UIntTyID:
2265 case Type::IntTyID:
2266 Size = 4;
Chris Lattnereca195e2003-05-08 19:44:13 +00002267 break;
2268 case Type::ULongTyID:
2269 case Type::LongTyID:
Chris Lattnereca195e2003-05-08 19:44:13 +00002270 case Type::DoubleTyID:
2271 Size = 8;
Chris Lattnereca195e2003-05-08 19:44:13 +00002272 break;
2273 }
2274
2275 // Increment the VAList pointer...
Chris Lattner73815062003-10-18 05:56:40 +00002276 BuildMI(BB, X86::ADDri32, 2, DestReg).addReg(VAList).addZImm(Size);
2277}
Chris Lattnereca195e2003-05-08 19:44:13 +00002278
Chris Lattner73815062003-10-18 05:56:40 +00002279void ISel::visitVAArgInst(VAArgInst &I) {
2280 unsigned VAList = getReg(I.getOperand(0));
2281 unsigned DestReg = getReg(I);
2282
2283 switch (I.getType()->getPrimitiveID()) {
2284 default:
2285 std::cerr << I;
2286 assert(0 && "Error: bad type for va_next instruction!");
2287 return;
2288 case Type::PointerTyID:
2289 case Type::UIntTyID:
2290 case Type::IntTyID:
Chris Lattnere87331d2004-02-17 06:28:19 +00002291 addDirectMem(BuildMI(BB, X86::MOVrm32, 4, DestReg), VAList);
Chris Lattner73815062003-10-18 05:56:40 +00002292 break;
2293 case Type::ULongTyID:
2294 case Type::LongTyID:
Chris Lattnere87331d2004-02-17 06:28:19 +00002295 addDirectMem(BuildMI(BB, X86::MOVrm32, 4, DestReg), VAList);
2296 addRegOffset(BuildMI(BB, X86::MOVrm32, 4, DestReg+1), VAList, 4);
Chris Lattner73815062003-10-18 05:56:40 +00002297 break;
2298 case Type::DoubleTyID:
2299 addDirectMem(BuildMI(BB, X86::FLDr64, 4, DestReg), VAList);
2300 break;
2301 }
Chris Lattnereca195e2003-05-08 19:44:13 +00002302}
2303
2304
Chris Lattner3e130a22003-01-13 00:32:26 +00002305void ISel::visitGetElementPtrInst(GetElementPtrInst &I) {
2306 unsigned outputReg = getReg(I);
Chris Lattner827832c2004-02-22 17:05:38 +00002307 emitGEPOperation(BB, BB->end(), I.getOperand(0),
Brian Gaeke68b1edc2002-12-16 04:23:29 +00002308 I.op_begin()+1, I.op_end(), outputReg);
Chris Lattnerc0812d82002-12-13 06:56:29 +00002309}
2310
Brian Gaeke71794c02002-12-13 11:22:48 +00002311void ISel::emitGEPOperation(MachineBasicBlock *MBB,
Chris Lattner827832c2004-02-22 17:05:38 +00002312 MachineBasicBlock::iterator IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +00002313 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +00002314 User::op_iterator IdxEnd, unsigned TargetReg) {
2315 const TargetData &TD = TM.getTargetData();
Chris Lattnerc0812d82002-12-13 06:56:29 +00002316
Chris Lattner7ca04092004-02-22 17:35:42 +00002317 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Src))
2318 Src = CPR->getValue();
2319
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002320 std::vector<Value*> GEPOps;
2321 GEPOps.resize(IdxEnd-IdxBegin+1);
2322 GEPOps[0] = Src;
2323 std::copy(IdxBegin, IdxEnd, GEPOps.begin()+1);
2324
2325 std::vector<const Type*> GEPTypes;
2326 GEPTypes.assign(gep_type_begin(Src->getType(), IdxBegin, IdxEnd),
2327 gep_type_end(Src->getType(), IdxBegin, IdxEnd));
2328
2329 // Keep emitting instructions until we consume the entire GEP instruction.
2330 while (!GEPOps.empty()) {
2331 unsigned OldSize = GEPOps.size();
2332
2333 if (GEPTypes.empty()) {
2334 // The getGEPIndex operation didn't want to build an LEA. Check to see if
2335 // all operands are consumed but the base pointer. If so, just load it
2336 // into the register.
Chris Lattner7ca04092004-02-22 17:35:42 +00002337 if (GlobalValue *GV = dyn_cast<GlobalValue>(GEPOps[0])) {
2338 BMI(MBB, IP, X86::MOVri32, 1, TargetReg).addGlobalAddress(GV);
2339 } else {
2340 unsigned BaseReg = getReg(GEPOps[0], MBB, IP);
2341 BMI(MBB, IP, X86::MOVrr32, 1, TargetReg).addReg(BaseReg);
2342 }
2343 break; // we are now done
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002344 } else if (const StructType *StTy = dyn_cast<StructType>(GEPTypes.back())) {
2345 // It's a struct access. CUI is the index into the structure,
2346 // which names the field. This index must have unsigned type.
2347 const ConstantUInt *CUI = cast<ConstantUInt>(GEPOps.back());
2348 GEPOps.pop_back(); // Consume a GEP operand
2349 GEPTypes.pop_back();
2350
2351 // Use the TargetData structure to pick out what the layout of the
2352 // structure is in memory. Since the structure index must be constant, we
2353 // can get its value and use it to find the right byte offset from the
2354 // StructLayout class's list of structure member offsets.
Chris Lattnere8f0d922002-12-24 00:03:11 +00002355 unsigned idxValue = CUI->getValue();
Chris Lattner3e130a22003-01-13 00:32:26 +00002356 unsigned FieldOff = TD.getStructLayout(StTy)->MemberOffsets[idxValue];
2357 if (FieldOff) {
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002358 unsigned Reg = makeAnotherReg(Type::UIntTy);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002359 // Emit an ADD to add FieldOff to the basePtr.
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002360 BMI(MBB, IP, X86::ADDri32, 2, TargetReg).addReg(Reg).addZImm(FieldOff);
2361 --IP; // Insert the next instruction before this one.
2362 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner3e130a22003-01-13 00:32:26 +00002363 }
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002364
2365 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +00002366 // It's an array or pointer access: [ArraySize x ElementType].
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002367 const SequentialType *SqTy = cast<SequentialType>(GEPTypes.back());
2368 Value *idx = GEPOps.back();
2369 GEPOps.pop_back(); // Consume a GEP operand
2370 GEPTypes.pop_back();
Chris Lattner8a307e82002-12-16 19:32:50 +00002371
Brian Gaeke20244b72002-12-12 15:33:40 +00002372 // idx is the index into the array. Unlike with structure
2373 // indices, we may not know its actual value at code-generation
2374 // time.
Chris Lattner8a307e82002-12-16 19:32:50 +00002375 assert(idx->getType() == Type::LongTy && "Bad GEP array index!");
2376
Chris Lattnerf5854472003-06-21 16:01:24 +00002377 // Most GEP instructions use a [cast (int/uint) to LongTy] as their
2378 // operand on X86. Handle this case directly now...
2379 if (CastInst *CI = dyn_cast<CastInst>(idx))
2380 if (CI->getOperand(0)->getType() == Type::IntTy ||
2381 CI->getOperand(0)->getType() == Type::UIntTy)
2382 idx = CI->getOperand(0);
2383
Chris Lattner3e130a22003-01-13 00:32:26 +00002384 // We want to add BaseReg to(idxReg * sizeof ElementType). First, we
Chris Lattner8a307e82002-12-16 19:32:50 +00002385 // must find the size of the pointed-to type (Not coincidentally, the next
2386 // type is the type of the elements in the array).
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002387 const Type *ElTy = SqTy->getElementType();
2388 unsigned elementSize = TD.getTypeSize(ElTy);
Chris Lattner8a307e82002-12-16 19:32:50 +00002389
2390 // If idxReg is a constant, we don't need to perform the multiply!
2391 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(idx)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002392 if (!CSI->isNullValue()) {
Chris Lattner8a307e82002-12-16 19:32:50 +00002393 unsigned Offset = elementSize*CSI->getValue();
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002394 unsigned Reg = makeAnotherReg(Type::UIntTy);
2395 BMI(MBB, IP, X86::ADDri32, 2, TargetReg).addReg(Reg).addZImm(Offset);
2396 --IP; // Insert the next instruction before this one.
2397 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00002398 }
2399 } else if (elementSize == 1) {
2400 // If the element size is 1, we don't have to multiply, just add
2401 unsigned idxReg = getReg(idx, MBB, IP);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002402 unsigned Reg = makeAnotherReg(Type::UIntTy);
2403 BMI(MBB, IP, X86::ADDrr32, 2, TargetReg).addReg(Reg).addReg(idxReg);
2404 --IP; // Insert the next instruction before this one.
2405 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00002406 } else {
2407 unsigned idxReg = getReg(idx, MBB, IP);
2408 unsigned OffsetReg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002409
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002410 // Make sure we can back the iterator up to point to the first
2411 // instruction emitted.
2412 MachineBasicBlock::iterator BeforeIt = IP;
2413 if (IP == MBB->begin())
2414 BeforeIt = MBB->end();
2415 else
2416 --BeforeIt;
Chris Lattnerb2acc512003-10-19 21:09:10 +00002417 doMultiplyConst(MBB, IP, OffsetReg, Type::IntTy, idxReg, elementSize);
2418
Chris Lattner8a307e82002-12-16 19:32:50 +00002419 // Emit an ADD to add OffsetReg to the basePtr.
Chris Lattner3f1e8e72004-02-22 07:04:00 +00002420 unsigned Reg = makeAnotherReg(Type::UIntTy);
2421 BMI(MBB, IP, X86::ADDrr32, 2, TargetReg).addReg(Reg).addReg(OffsetReg);
2422
2423 // Step to the first instruction of the multiply.
2424 if (BeforeIt == MBB->end())
2425 IP = MBB->begin();
2426 else
2427 IP = ++BeforeIt;
2428
2429 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00002430 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002431 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002432 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002433}
2434
2435
Chris Lattner065faeb2002-12-28 20:24:02 +00002436/// visitAllocaInst - If this is a fixed size alloca, allocate space from the
2437/// frame manager, otherwise do it the hard way.
2438///
2439void ISel::visitAllocaInst(AllocaInst &I) {
Brian Gaekee48ec012002-12-13 06:46:31 +00002440 // Find the data size of the alloca inst's getAllocatedType.
Chris Lattner065faeb2002-12-28 20:24:02 +00002441 const Type *Ty = I.getAllocatedType();
2442 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
2443
2444 // If this is a fixed size alloca in the entry block for the function,
2445 // statically stack allocate the space.
2446 //
2447 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getArraySize())) {
2448 if (I.getParent() == I.getParent()->getParent()->begin()) {
2449 TySize *= CUI->getValue(); // Get total allocated size...
2450 unsigned Alignment = TM.getTargetData().getTypeAlignment(Ty);
2451
2452 // Create a new stack object using the frame manager...
2453 int FrameIdx = F->getFrameInfo()->CreateStackObject(TySize, Alignment);
2454 addFrameReference(BuildMI(BB, X86::LEAr32, 5, getReg(I)), FrameIdx);
2455 return;
2456 }
2457 }
2458
2459 // Create a register to hold the temporary result of multiplying the type size
2460 // constant by the variable amount.
2461 unsigned TotalSizeReg = makeAnotherReg(Type::UIntTy);
2462 unsigned SrcReg1 = getReg(I.getArraySize());
Chris Lattner065faeb2002-12-28 20:24:02 +00002463
2464 // TotalSizeReg = mul <numelements>, <TypeSize>
2465 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00002466 doMultiplyConst(BB, MBBI, TotalSizeReg, Type::UIntTy, SrcReg1, TySize);
Chris Lattner065faeb2002-12-28 20:24:02 +00002467
2468 // AddedSize = add <TotalSizeReg>, 15
2469 unsigned AddedSizeReg = makeAnotherReg(Type::UIntTy);
2470 BuildMI(BB, X86::ADDri32, 2, AddedSizeReg).addReg(TotalSizeReg).addZImm(15);
2471
2472 // AlignedSize = and <AddedSize>, ~15
2473 unsigned AlignedSize = makeAnotherReg(Type::UIntTy);
2474 BuildMI(BB, X86::ANDri32, 2, AlignedSize).addReg(AddedSizeReg).addZImm(~15);
2475
Brian Gaekee48ec012002-12-13 06:46:31 +00002476 // Subtract size from stack pointer, thereby allocating some space.
Chris Lattner3e130a22003-01-13 00:32:26 +00002477 BuildMI(BB, X86::SUBrr32, 2, X86::ESP).addReg(X86::ESP).addReg(AlignedSize);
Chris Lattner065faeb2002-12-28 20:24:02 +00002478
Brian Gaekee48ec012002-12-13 06:46:31 +00002479 // Put a pointer to the space into the result register, by copying
2480 // the stack pointer.
Chris Lattner065faeb2002-12-28 20:24:02 +00002481 BuildMI(BB, X86::MOVrr32, 1, getReg(I)).addReg(X86::ESP);
2482
Misha Brukman48196b32003-05-03 02:18:17 +00002483 // Inform the Frame Information that we have just allocated a variable-sized
Chris Lattner065faeb2002-12-28 20:24:02 +00002484 // object.
2485 F->getFrameInfo()->CreateVariableSizedObject();
Brian Gaeke20244b72002-12-12 15:33:40 +00002486}
Chris Lattner3e130a22003-01-13 00:32:26 +00002487
2488/// visitMallocInst - Malloc instructions are code generated into direct calls
2489/// to the library malloc.
2490///
2491void ISel::visitMallocInst(MallocInst &I) {
2492 unsigned AllocSize = TM.getTargetData().getTypeSize(I.getAllocatedType());
2493 unsigned Arg;
2494
2495 if (ConstantUInt *C = dyn_cast<ConstantUInt>(I.getOperand(0))) {
2496 Arg = getReg(ConstantUInt::get(Type::UIntTy, C->getValue() * AllocSize));
2497 } else {
2498 Arg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002499 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00002500 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00002501 doMultiplyConst(BB, MBBI, Arg, Type::UIntTy, Op0Reg, AllocSize);
Chris Lattner3e130a22003-01-13 00:32:26 +00002502 }
2503
2504 std::vector<ValueRecord> Args;
2505 Args.push_back(ValueRecord(Arg, Type::UIntTy));
2506 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002507 1).addExternalSymbol("malloc", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00002508 doCall(ValueRecord(getReg(I), I.getType()), TheCall, Args);
2509}
2510
2511
2512/// visitFreeInst - Free instructions are code gen'd to call the free libc
2513/// function.
2514///
2515void ISel::visitFreeInst(FreeInst &I) {
2516 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00002517 Args.push_back(ValueRecord(I.getOperand(0)));
Chris Lattner3e130a22003-01-13 00:32:26 +00002518 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002519 1).addExternalSymbol("free", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00002520 doCall(ValueRecord(0, Type::VoidTy), TheCall, Args);
2521}
2522
Chris Lattnerd281de22003-07-26 23:49:58 +00002523/// createX86SimpleInstructionSelector - This pass converts an LLVM function
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00002524/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00002525/// generated code sucks but the implementation is nice and simple.
2526///
Chris Lattnerf70e0c22003-12-28 21:23:38 +00002527FunctionPass *llvm::createX86SimpleInstructionSelector(TargetMachine &TM) {
2528 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00002529}