blob: b7e15207a440f16e3d2c84624ff5c2920709f419 [file] [log] [blame]
Misha Brukman91b5ca82004-07-26 18:45:48 +00001//===-- X86ISelSimple.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"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000021#include "llvm/Pass.h"
Chris Lattner30483732004-06-20 07:49:54 +000022#include "llvm/CodeGen/IntrinsicLowering.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000023#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner341a9372002-10-29 17:43:55 +000025#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner94af4142002-12-25 05:13:53 +000026#include "llvm/CodeGen/SSARegMap.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000027#include "llvm/Target/MRegisterInfo.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattner3f1e8e72004-02-22 07:04:00 +000029#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000030#include "llvm/Support/InstVisitor.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
Chris Lattner44827152003-12-28 09:47:19 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner986618e2004-02-22 19:47:26 +000034namespace {
35 Statistic<>
36 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
Chris Lattner427aeb42004-04-11 19:21:59 +000037
38 /// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
39 /// Representation.
40 ///
41 enum TypeClass {
42 cByte, cShort, cInt, cFP, cLong
43 };
44}
45
46/// getClass - Turn a primitive type into a "class" number which is based on the
47/// size of the type, and whether or not it is floating point.
48///
49static inline TypeClass getClass(const Type *Ty) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +000050 switch (Ty->getTypeID()) {
Chris Lattner427aeb42004-04-11 19:21:59 +000051 case Type::SByteTyID:
52 case Type::UByteTyID: return cByte; // Byte operands are class #0
53 case Type::ShortTyID:
54 case Type::UShortTyID: return cShort; // Short operands are class #1
55 case Type::IntTyID:
56 case Type::UIntTyID:
57 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
58
59 case Type::FloatTyID:
60 case Type::DoubleTyID: return cFP; // Floating Point is #3
61
62 case Type::LongTyID:
63 case Type::ULongTyID: return cLong; // Longs are class #4
64 default:
65 assert(0 && "Invalid type to getClass!");
66 return cByte; // not reached
67 }
68}
69
70// getClassB - Just like getClass, but treat boolean values as bytes.
71static inline TypeClass getClassB(const Type *Ty) {
72 if (Ty == Type::BoolTy) return cByte;
73 return getClass(Ty);
Chris Lattner986618e2004-02-22 19:47:26 +000074}
Chris Lattnercf93cdd2004-01-30 22:13:44 +000075
Chris Lattner72614082002-10-25 22:55:53 +000076namespace {
Misha Brukmaneae1bf12004-09-21 18:21:21 +000077 struct X86ISel : public FunctionPass, InstVisitor<X86ISel> {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000078 TargetMachine &TM;
Chris Lattnereca195e2003-05-08 19:44:13 +000079 MachineFunction *F; // The function we are compiling into
80 MachineBasicBlock *BB; // The current MBB we are compiling
81 int VarArgsFrameIndex; // FrameIndex for start of varargs area
Chris Lattner0e5b79c2004-02-15 01:04:03 +000082 int ReturnAddressIndex; // FrameIndex for the return address
Chris Lattner72614082002-10-25 22:55:53 +000083
Chris Lattner72614082002-10-25 22:55:53 +000084 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
85
Chris Lattner333b2fa2002-12-13 10:09:43 +000086 // MBBMap - Mapping between LLVM BB -> Machine BB
87 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
88
Chris Lattnercb2fd552004-05-13 07:40:27 +000089 // AllocaMap - Mapping from fixed sized alloca instructions to the
90 // FrameIndex for the alloca.
91 std::map<AllocaInst*, unsigned> AllocaMap;
92
Misha Brukmaneae1bf12004-09-21 18:21:21 +000093 X86ISel(TargetMachine &tm) : TM(tm), F(0), BB(0) {}
Chris Lattner72614082002-10-25 22:55:53 +000094
95 /// runOnFunction - Top level implementation of instruction selection for
96 /// the entire function.
97 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000098 bool runOnFunction(Function &Fn) {
Chris Lattner11cf7aa2004-12-17 00:07:46 +000099 // Lazily create a stack slot for the return address if needed.
Chris Lattner8cdbc352004-12-17 00:46:51 +0000100 ReturnAddressIndex = 0;
Chris Lattner11cf7aa2004-12-17 00:07:46 +0000101
Chris Lattner44827152003-12-28 09:47:19 +0000102 // First pass over the function, lower any unknown intrinsic functions
103 // with the IntrinsicLowering class.
104 LowerUnknownIntrinsicFunctionCalls(Fn);
105
Chris Lattner36b36032002-10-29 23:40:58 +0000106 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000107
Chris Lattner065faeb2002-12-28 20:24:02 +0000108 // Create all of the machine basic blocks for the function...
Chris Lattner333b2fa2002-12-13 10:09:43 +0000109 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
110 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
111
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000112 BB = &F->front();
Chris Lattnerdbd73722003-05-06 21:32:22 +0000113
Chris Lattnerdbd73722003-05-06 21:32:22 +0000114 // Copy incoming arguments off of the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000115 LoadArgumentsToVirtualRegs(Fn);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000116
Chris Lattnerc0354c92004-12-13 17:23:11 +0000117 // If this is main, emit special code.
118 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
119 EmitSpecialCodeForMain();
120
Chris Lattner333b2fa2002-12-13 10:09:43 +0000121 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000122 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000123
124 // Select the PHI nodes
125 SelectPHINodes();
126
Chris Lattner986618e2004-02-22 19:47:26 +0000127 // Insert the FP_REG_KILL instructions into blocks that need them.
128 InsertFPRegKills();
129
Chris Lattner72614082002-10-25 22:55:53 +0000130 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000131 MBBMap.clear();
Chris Lattnercb2fd552004-05-13 07:40:27 +0000132 AllocaMap.clear();
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000133 F = 0;
Chris Lattner2a865b02003-07-26 23:05:37 +0000134 // We always build a machine code representation for the function
135 return true;
Chris Lattner72614082002-10-25 22:55:53 +0000136 }
137
Chris Lattnerf0eb7be2002-12-15 21:13:40 +0000138 virtual const char *getPassName() const {
139 return "X86 Simple Instruction Selection";
140 }
141
Chris Lattnerc0354c92004-12-13 17:23:11 +0000142 /// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
143 /// the main function.
144 void EmitSpecialCodeForMain();
145
Chris Lattner72614082002-10-25 22:55:53 +0000146 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +0000147 /// block. This simply creates a new MachineBasicBlock to emit code into
148 /// and adds it to the current MachineFunction. Subsequent visit* for
149 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +0000150 ///
151 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000152 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000153 }
154
Chris Lattner44827152003-12-28 09:47:19 +0000155 /// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
156 /// function, lowering any calls to unknown intrinsic functions into the
157 /// equivalent LLVM code.
Misha Brukman538607f2004-03-01 23:53:11 +0000158 ///
Chris Lattner44827152003-12-28 09:47:19 +0000159 void LowerUnknownIntrinsicFunctionCalls(Function &F);
160
Chris Lattner065faeb2002-12-28 20:24:02 +0000161 /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function
162 /// from the stack into virtual registers.
163 ///
164 void LoadArgumentsToVirtualRegs(Function &F);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000165
166 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
167 /// because we have to generate our sources into the source basic blocks,
168 /// not the current one.
169 ///
170 void SelectPHINodes();
171
Chris Lattner986618e2004-02-22 19:47:26 +0000172 /// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks
173 /// that need them. This only occurs due to the floating point stackifier
174 /// not being aggressive enough to handle arbitrary global stackification.
175 ///
176 void InsertFPRegKills();
177
Chris Lattner72614082002-10-25 22:55:53 +0000178 // Visitation methods for various instructions. These methods simply emit
179 // fixed X86 code for each instruction.
180 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000181
182 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000183 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000184 void visitBranchInst(BranchInst &BI);
Chris Lattner30483b02004-10-16 18:13:05 +0000185 void visitUnreachableInst(UnreachableInst &UI) {}
Chris Lattner3e130a22003-01-13 00:32:26 +0000186
187 struct ValueRecord {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000188 Value *Val;
Chris Lattner3e130a22003-01-13 00:32:26 +0000189 unsigned Reg;
190 const Type *Ty;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000191 ValueRecord(unsigned R, const Type *T) : Val(0), Reg(R), Ty(T) {}
192 ValueRecord(Value *V) : Val(V), Reg(0), Ty(V->getType()) {}
Chris Lattner3e130a22003-01-13 00:32:26 +0000193 };
194 void doCall(const ValueRecord &Ret, MachineInstr *CallMI,
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000195 const std::vector<ValueRecord> &Args);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000196 void visitCallInst(CallInst &I);
Brian Gaeked0fde302003-11-11 22:41:34 +0000197 void visitIntrinsicCall(Intrinsic::ID ID, CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000198
199 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000200 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000201 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
202 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Chris Lattnerca9671d2002-11-02 20:28:58 +0000203 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000204
Chris Lattnerf01729e2002-11-02 20:54:46 +0000205 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
206 void visitRem(BinaryOperator &B) { visitDivRem(B); }
207 void visitDivRem(BinaryOperator &B);
208
Chris Lattnere2954c82002-11-02 20:04:26 +0000209 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000210 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
211 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
212 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000213
Chris Lattner6d40c192003-01-16 16:43:00 +0000214 // Comparison operators...
215 void visitSetCondInst(SetCondInst &I);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000216 unsigned EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
217 MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000218 MachineBasicBlock::iterator MBBI);
Chris Lattner12d96a02004-03-30 21:22:00 +0000219 void visitSelectInst(SelectInst &SI);
220
Chris Lattnerb2acc512003-10-19 21:09:10 +0000221
Chris Lattner6fc3c522002-11-17 21:11:55 +0000222 // Memory Instructions
223 void visitLoadInst(LoadInst &I);
224 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000225 void visitGetElementPtrInst(GetElementPtrInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000226 void visitAllocaInst(AllocaInst &I);
Chris Lattner3e130a22003-01-13 00:32:26 +0000227 void visitMallocInst(MallocInst &I);
228 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000229
Chris Lattnere2954c82002-11-02 20:04:26 +0000230 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000231 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000232 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000233 void visitCastInst(CastInst &I);
Chris Lattner73815062003-10-18 05:56:40 +0000234 void visitVANextInst(VANextInst &I);
235 void visitVAArgInst(VAArgInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000236
237 void visitInstruction(Instruction &I) {
238 std::cerr << "Cannot instruction select: " << I;
239 abort();
240 }
241
Brian Gaeke95780cc2002-12-13 07:56:18 +0000242 /// promote32 - Make a value 32-bits wide, and put it somewhere.
Chris Lattner3e130a22003-01-13 00:32:26 +0000243 ///
244 void promote32(unsigned targetReg, const ValueRecord &VR);
245
Chris Lattner721d2d42004-03-08 01:18:36 +0000246 /// getAddressingMode - Get the addressing mode to use to address the
247 /// specified value. The returned value should be used with addFullAddress.
Reid Spencerfc989e12004-08-30 00:13:26 +0000248 void getAddressingMode(Value *Addr, X86AddressMode &AM);
Chris Lattner721d2d42004-03-08 01:18:36 +0000249
250
251 /// getGEPIndex - This is used to fold GEP instructions into X86 addressing
252 /// expressions.
Chris Lattnerb6bac512004-02-25 06:13:04 +0000253 void getGEPIndex(MachineBasicBlock *MBB, MachineBasicBlock::iterator IP,
254 std::vector<Value*> &GEPOps,
Reid Spencerfc989e12004-08-30 00:13:26 +0000255 std::vector<const Type*> &GEPTypes,
256 X86AddressMode &AM);
Chris Lattnerb6bac512004-02-25 06:13:04 +0000257
258 /// isGEPFoldable - Return true if the specified GEP can be completely
259 /// folded into the addressing mode of a load/store or lea instruction.
260 bool isGEPFoldable(MachineBasicBlock *MBB,
261 Value *Src, User::op_iterator IdxBegin,
Reid Spencerfc989e12004-08-30 00:13:26 +0000262 User::op_iterator IdxEnd, X86AddressMode &AM);
Chris Lattnerb6bac512004-02-25 06:13:04 +0000263
Chris Lattner3e130a22003-01-13 00:32:26 +0000264 /// emitGEPOperation - Common code shared between visitGetElementPtrInst and
265 /// constant expression GEP support.
266 ///
Chris Lattner827832c2004-02-22 17:05:38 +0000267 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000268 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000269 User::op_iterator IdxEnd, unsigned TargetReg);
270
Chris Lattner548f61d2003-04-23 17:22:12 +0000271 /// emitCastOperation - Common code shared between visitCastInst and
272 /// constant expression cast support.
Misha Brukman538607f2004-03-01 23:53:11 +0000273 ///
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000274 void emitCastOperation(MachineBasicBlock *BB,MachineBasicBlock::iterator IP,
Chris Lattner548f61d2003-04-23 17:22:12 +0000275 Value *Src, const Type *DestTy, unsigned TargetReg);
276
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000277 /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
278 /// and constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000279 ///
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000280 void emitSimpleBinaryOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000281 MachineBasicBlock::iterator IP,
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000282 Value *Op0, Value *Op1,
283 unsigned OperatorClass, unsigned TargetReg);
284
Chris Lattner6621ed92004-04-11 21:23:56 +0000285 /// emitBinaryFPOperation - This method handles emission of floating point
286 /// Add (0), Sub (1), Mul (2), and Div (3) operations.
287 void emitBinaryFPOperation(MachineBasicBlock *BB,
288 MachineBasicBlock::iterator IP,
289 Value *Op0, Value *Op1,
290 unsigned OperatorClass, unsigned TargetReg);
291
Chris Lattner462fa822004-04-11 20:56:28 +0000292 void emitMultiply(MachineBasicBlock *BB, MachineBasicBlock::iterator IP,
293 Value *Op0, Value *Op1, unsigned TargetReg);
294
295 void doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
296 unsigned DestReg, const Type *DestTy,
297 unsigned Op0Reg, unsigned Op1Reg);
298 void doMultiplyConst(MachineBasicBlock *MBB,
299 MachineBasicBlock::iterator MBBI,
300 unsigned DestReg, const Type *DestTy,
301 unsigned Op0Reg, unsigned Op1Val);
302
Chris Lattnercadff442003-10-23 17:21:43 +0000303 void emitDivRemOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000304 MachineBasicBlock::iterator IP,
Chris Lattner462fa822004-04-11 20:56:28 +0000305 Value *Op0, Value *Op1, bool isDiv,
306 unsigned TargetReg);
Chris Lattnercadff442003-10-23 17:21:43 +0000307
Chris Lattner58c41fe2003-08-24 19:19:47 +0000308 /// emitSetCCOperation - Common code shared between visitSetCondInst and
309 /// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000310 ///
Chris Lattner58c41fe2003-08-24 19:19:47 +0000311 void emitSetCCOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000312 MachineBasicBlock::iterator IP,
Chris Lattner58c41fe2003-08-24 19:19:47 +0000313 Value *Op0, Value *Op1, unsigned Opcode,
314 unsigned TargetReg);
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000315
316 /// emitShiftOperation - Common code shared between visitShiftInst and
317 /// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000318 ///
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000319 void emitShiftOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000320 MachineBasicBlock::iterator IP,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000321 Value *Op, Value *ShiftAmount, bool isLeftShift,
322 const Type *ResultTy, unsigned DestReg);
Chris Lattnerce7cafa2004-11-13 20:48:57 +0000323
324 // Emit code for a 'SHLD DestReg, Op0, Op1, Amt' operation, where Amt is a
325 // constant.
326 void doSHLDConst(MachineBasicBlock *MBB,
327 MachineBasicBlock::iterator MBBI,
328 unsigned DestReg, unsigned Op0Reg, unsigned Op1Reg,
329 unsigned Op1Val);
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000330
Chris Lattner12d96a02004-03-30 21:22:00 +0000331 /// emitSelectOperation - Common code shared between visitSelectInst and the
332 /// constant expression support.
333 void emitSelectOperation(MachineBasicBlock *MBB,
334 MachineBasicBlock::iterator IP,
335 Value *Cond, Value *TrueVal, Value *FalseVal,
336 unsigned DestReg);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000337
Chris Lattnerc5291f52002-10-27 21:16:59 +0000338 /// copyConstantToRegister - Output the instructions required to put the
339 /// specified constant into the specified register.
340 ///
Chris Lattner8a307e82002-12-16 19:32:50 +0000341 void copyConstantToRegister(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000342 MachineBasicBlock::iterator MBBI,
Chris Lattner8a307e82002-12-16 19:32:50 +0000343 Constant *C, unsigned Reg);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000344
Chris Lattner01cdb1b2004-06-11 05:33:49 +0000345 void emitUCOMr(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
346 unsigned LHS, unsigned RHS);
347
Chris Lattner3e130a22003-01-13 00:32:26 +0000348 /// makeAnotherReg - This method returns the next register number we haven't
349 /// yet used.
350 ///
351 /// Long values are handled somewhat specially. They are always allocated
352 /// as pairs of 32 bit integer values. The register number returned is the
353 /// lower 32 bits of the long value, and the regNum+1 is the upper 32 bits
354 /// of the long value.
355 ///
Chris Lattnerc0812d82002-12-13 06:56:29 +0000356 unsigned makeAnotherReg(const Type *Ty) {
Chris Lattner7db1fa92003-07-30 05:33:48 +0000357 assert(dynamic_cast<const X86RegisterInfo*>(TM.getRegisterInfo()) &&
358 "Current target doesn't have X86 reg info??");
359 const X86RegisterInfo *MRI =
360 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Chris Lattner3e130a22003-01-13 00:32:26 +0000361 if (Ty == Type::LongTy || Ty == Type::ULongTy) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000362 const TargetRegisterClass *RC = MRI->getRegClassForType(Type::IntTy);
363 // Create the lower part
364 F->getSSARegMap()->createVirtualRegister(RC);
365 // Create the upper part.
366 return F->getSSARegMap()->createVirtualRegister(RC)-1;
Chris Lattner3e130a22003-01-13 00:32:26 +0000367 }
368
Chris Lattnerc0812d82002-12-13 06:56:29 +0000369 // Add the mapping of regnumber => reg class to MachineFunction
Chris Lattner7db1fa92003-07-30 05:33:48 +0000370 const TargetRegisterClass *RC = MRI->getRegClassForType(Ty);
Chris Lattner3e130a22003-01-13 00:32:26 +0000371 return F->getSSARegMap()->createVirtualRegister(RC);
Brian Gaeke20244b72002-12-12 15:33:40 +0000372 }
373
Chris Lattnercb2fd552004-05-13 07:40:27 +0000374 /// getReg - This method turns an LLVM value into a register number.
Chris Lattner72614082002-10-25 22:55:53 +0000375 ///
376 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000377 unsigned getReg(Value *V) {
378 // Just append to the end of the current bb.
379 MachineBasicBlock::iterator It = BB->end();
380 return getReg(V, BB, It);
381 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000382 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnercb2fd552004-05-13 07:40:27 +0000383 MachineBasicBlock::iterator IPt);
Chris Lattner427aeb42004-04-11 19:21:59 +0000384
Chris Lattnercb2fd552004-05-13 07:40:27 +0000385 /// getFixedSizedAllocaFI - Return the frame index for a fixed sized alloca
386 /// that is to be statically allocated with the initial stack frame
387 /// adjustment.
388 unsigned getFixedSizedAllocaFI(AllocaInst *AI);
Chris Lattner72614082002-10-25 22:55:53 +0000389 };
390}
391
Chris Lattnercb2fd552004-05-13 07:40:27 +0000392/// dyn_castFixedAlloca - If the specified value is a fixed size alloca
393/// instruction in the entry block, return it. Otherwise, return a null
394/// pointer.
395static AllocaInst *dyn_castFixedAlloca(Value *V) {
396 if (AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
397 BasicBlock *BB = AI->getParent();
398 if (isa<ConstantUInt>(AI->getArraySize()) && BB ==&BB->getParent()->front())
399 return AI;
400 }
401 return 0;
402}
403
404/// getReg - This method turns an LLVM value into a register number.
405///
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000406unsigned X86ISel::getReg(Value *V, MachineBasicBlock *MBB,
407 MachineBasicBlock::iterator IPt) {
Chris Lattnercb2fd552004-05-13 07:40:27 +0000408 // If this operand is a constant, emit the code to copy the constant into
409 // the register here...
Chris Lattnercb2fd552004-05-13 07:40:27 +0000410 if (Constant *C = dyn_cast<Constant>(V)) {
411 unsigned Reg = makeAnotherReg(V->getType());
412 copyConstantToRegister(MBB, IPt, C, Reg);
413 return Reg;
Chris Lattnercb2fd552004-05-13 07:40:27 +0000414 } else if (CastInst *CI = dyn_cast<CastInst>(V)) {
Chris Lattner8b486a12004-06-29 00:14:38 +0000415 // Do not emit noop casts at all, unless it's a double -> float cast.
416 if (getClassB(CI->getType()) == getClassB(CI->getOperand(0)->getType()) &&
417 (CI->getType() != Type::FloatTy ||
418 CI->getOperand(0)->getType() != Type::DoubleTy))
Chris Lattnercb2fd552004-05-13 07:40:27 +0000419 return getReg(CI->getOperand(0), MBB, IPt);
420 } else if (AllocaInst *AI = dyn_castFixedAlloca(V)) {
421 // If the alloca address couldn't be folded into the instruction addressing,
422 // emit an explicit LEA as appropriate.
423 unsigned Reg = makeAnotherReg(V->getType());
424 unsigned FI = getFixedSizedAllocaFI(AI);
425 addFrameReference(BuildMI(*MBB, IPt, X86::LEA32r, 4, Reg), FI);
426 return Reg;
427 }
428
429 unsigned &Reg = RegMap[V];
430 if (Reg == 0) {
431 Reg = makeAnotherReg(V->getType());
432 RegMap[V] = Reg;
433 }
434
435 return Reg;
436}
437
438/// getFixedSizedAllocaFI - Return the frame index for a fixed sized alloca
439/// that is to be statically allocated with the initial stack frame
440/// adjustment.
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000441unsigned X86ISel::getFixedSizedAllocaFI(AllocaInst *AI) {
Chris Lattnercb2fd552004-05-13 07:40:27 +0000442 // Already computed this?
443 std::map<AllocaInst*, unsigned>::iterator I = AllocaMap.lower_bound(AI);
444 if (I != AllocaMap.end() && I->first == AI) return I->second;
445
446 const Type *Ty = AI->getAllocatedType();
447 ConstantUInt *CUI = cast<ConstantUInt>(AI->getArraySize());
448 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
449 TySize *= CUI->getValue(); // Get total allocated size...
450 unsigned Alignment = TM.getTargetData().getTypeAlignment(Ty);
451
452 // Create a new stack object using the frame manager...
453 int FrameIdx = F->getFrameInfo()->CreateStackObject(TySize, Alignment);
454 AllocaMap.insert(I, std::make_pair(AI, FrameIdx));
455 return FrameIdx;
456}
457
458
Chris Lattnerc5291f52002-10-27 21:16:59 +0000459/// copyConstantToRegister - Output the instructions required to put the
460/// specified constant into the specified register.
461///
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000462void X86ISel::copyConstantToRegister(MachineBasicBlock *MBB,
463 MachineBasicBlock::iterator IP,
464 Constant *C, unsigned R) {
Chris Lattner30483b02004-10-16 18:13:05 +0000465 if (isa<UndefValue>(C)) {
466 switch (getClassB(C->getType())) {
467 case cFP:
468 // FIXME: SHOULD TEACH STACKIFIER ABOUT UNDEF VALUES!
469 BuildMI(*MBB, IP, X86::FLD0, 0, R);
470 return;
471 case cLong:
472 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, R+1);
473 // FALL THROUGH
474 default:
475 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, R);
476 return;
477 }
478 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000479 unsigned Class = 0;
480 switch (CE->getOpcode()) {
481 case Instruction::GetElementPtr:
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000482 emitGEPOperation(MBB, IP, CE->getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000483 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000484 return;
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000485 case Instruction::Cast:
Chris Lattner548f61d2003-04-23 17:22:12 +0000486 emitCastOperation(MBB, IP, CE->getOperand(0), CE->getType(), R);
Chris Lattner4b12cde2003-04-21 21:33:44 +0000487 return;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000488
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000489 case Instruction::Xor: ++Class; // FALL THROUGH
490 case Instruction::Or: ++Class; // FALL THROUGH
491 case Instruction::And: ++Class; // FALL THROUGH
492 case Instruction::Sub: ++Class; // FALL THROUGH
493 case Instruction::Add:
494 emitSimpleBinaryOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
495 Class, R);
496 return;
497
Chris Lattner462fa822004-04-11 20:56:28 +0000498 case Instruction::Mul:
499 emitMultiply(MBB, IP, CE->getOperand(0), CE->getOperand(1), R);
Chris Lattnercadff442003-10-23 17:21:43 +0000500 return;
Chris Lattner462fa822004-04-11 20:56:28 +0000501
Chris Lattnercadff442003-10-23 17:21:43 +0000502 case Instruction::Div:
Chris Lattner462fa822004-04-11 20:56:28 +0000503 case Instruction::Rem:
504 emitDivRemOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
505 CE->getOpcode() == Instruction::Div, R);
Chris Lattnercadff442003-10-23 17:21:43 +0000506 return;
Chris Lattnercadff442003-10-23 17:21:43 +0000507
Chris Lattner58c41fe2003-08-24 19:19:47 +0000508 case Instruction::SetNE:
509 case Instruction::SetEQ:
510 case Instruction::SetLT:
511 case Instruction::SetGT:
512 case Instruction::SetLE:
513 case Instruction::SetGE:
514 emitSetCCOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
515 CE->getOpcode(), R);
516 return;
517
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000518 case Instruction::Shl:
519 case Instruction::Shr:
520 emitShiftOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000521 CE->getOpcode() == Instruction::Shl, CE->getType(), R);
522 return;
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000523
Chris Lattner12d96a02004-03-30 21:22:00 +0000524 case Instruction::Select:
525 emitSelectOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
526 CE->getOperand(2), R);
527 return;
528
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000529 default:
Chris Lattner76e2df22004-07-15 02:14:30 +0000530 std::cerr << "Offending expr: " << *C << "\n";
Chris Lattnerb2acc512003-10-19 21:09:10 +0000531 assert(0 && "Constant expression not yet handled!\n");
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000532 }
Brian Gaeke20244b72002-12-12 15:33:40 +0000533 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000534
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000535 if (C->getType()->isIntegral()) {
Chris Lattner6b993cc2002-12-15 08:02:15 +0000536 unsigned Class = getClassB(C->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +0000537
538 if (Class == cLong) {
539 // Copy the value into the register pair.
Chris Lattnerc07736a2003-07-23 15:22:26 +0000540 uint64_t Val = cast<ConstantInt>(C)->getRawValue();
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000541 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addImm(Val & 0xFFFFFFFF);
542 BuildMI(*MBB, IP, X86::MOV32ri, 1, R+1).addImm(Val >> 32);
Chris Lattner3e130a22003-01-13 00:32:26 +0000543 return;
544 }
545
Chris Lattner94af4142002-12-25 05:13:53 +0000546 assert(Class <= cInt && "Type not handled yet!");
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000547
548 static const unsigned IntegralOpcodeTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000549 X86::MOV8ri, X86::MOV16ri, X86::MOV32ri
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000550 };
551
Chris Lattner6b993cc2002-12-15 08:02:15 +0000552 if (C->getType() == Type::BoolTy) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000553 BuildMI(*MBB, IP, X86::MOV8ri, 1, R).addImm(C == ConstantBool::True);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000554 } else {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000555 ConstantInt *CI = cast<ConstantInt>(C);
Chris Lattneree352852004-02-29 07:22:16 +0000556 BuildMI(*MBB, IP, IntegralOpcodeTab[Class],1,R).addImm(CI->getRawValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000557 }
Chris Lattner94af4142002-12-25 05:13:53 +0000558 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Chris Lattneraf703622004-02-02 18:56:30 +0000559 if (CFP->isExactlyValue(+0.0))
Chris Lattneree352852004-02-29 07:22:16 +0000560 BuildMI(*MBB, IP, X86::FLD0, 0, R);
Chris Lattneraf703622004-02-02 18:56:30 +0000561 else if (CFP->isExactlyValue(+1.0))
Chris Lattneree352852004-02-29 07:22:16 +0000562 BuildMI(*MBB, IP, X86::FLD1, 0, R);
Chris Lattner6ac95f92005-01-06 21:19:16 +0000563 else if (CFP->isExactlyValue(-0.0)) {
564 unsigned Tmp = makeAnotherReg(Type::DoubleTy);
565 BuildMI(*MBB, IP, X86::FLD0, 0, Tmp);
566 BuildMI(*MBB, IP, X86::FCHS, 1, R).addReg(Tmp);
567 } else if (CFP->isExactlyValue(-1.0)) {
568 unsigned Tmp = makeAnotherReg(Type::DoubleTy);
569 BuildMI(*MBB, IP, X86::FLD1, 0, Tmp);
570 BuildMI(*MBB, IP, X86::FCHS, 1, R).addReg(Tmp);
571 } else { // FIXME: PI, other native values
Chris Lattner5384b382005-01-05 16:30:14 +0000572 // FIXME: 2*PI -> LDPI + FADD
573
574 // Otherwise we need to spill the constant to memory.
Chris Lattner3e130a22003-01-13 00:32:26 +0000575 MachineConstantPool *CP = F->getConstantPool();
Chris Lattner5384b382005-01-05 16:30:14 +0000576
Chris Lattner6c09db22003-10-20 04:11:23 +0000577 const Type *Ty = CFP->getType();
578
Chris Lattner5384b382005-01-05 16:30:14 +0000579 // If a FP immediate is precise when represented as a float, we put it
580 // into the constant pool as a float, even if it's is statically typed as
581 // a double.
582 if (Ty == Type::DoubleTy)
583 if (CFP->isExactlyValue((float)CFP->getValue())) {
584 Ty = Type::FloatTy;
585 CFP = cast<ConstantFP>(ConstantExpr::getCast(CFP, Ty));
586 }
587
588 unsigned CPI = CP->getConstantPoolIndex(CFP);
589
Chris Lattner6c09db22003-10-20 04:11:23 +0000590 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000591 unsigned LoadOpcode = Ty == Type::FloatTy ? X86::FLD32m : X86::FLD64m;
Chris Lattneree352852004-02-29 07:22:16 +0000592 addConstantPoolReference(BuildMI(*MBB, IP, LoadOpcode, 4, R), CPI);
Chris Lattner94af4142002-12-25 05:13:53 +0000593 }
594
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000595 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000596 // Copy zero (null pointer) to the register.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000597 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addImm(0);
Reid Spencer8863f182004-07-18 00:38:32 +0000598 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
599 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addGlobalAddress(GV);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000600 } else {
Chris Lattner76e2df22004-07-15 02:14:30 +0000601 std::cerr << "Offending constant: " << *C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000602 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000603 }
604}
605
Chris Lattner065faeb2002-12-28 20:24:02 +0000606/// LoadArgumentsToVirtualRegs - Load all of the arguments to this function from
607/// the stack into virtual registers.
608///
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000609void X86ISel::LoadArgumentsToVirtualRegs(Function &Fn) {
Chris Lattner065faeb2002-12-28 20:24:02 +0000610 // Emit instructions to load the arguments... On entry to a function on the
611 // X86, the stack frame looks like this:
612 //
613 // [ESP] -- return address
Chris Lattner3e130a22003-01-13 00:32:26 +0000614 // [ESP + 4] -- first argument (leftmost lexically)
615 // [ESP + 8] -- second argument, if first argument is four bytes in size
Chris Lattner065faeb2002-12-28 20:24:02 +0000616 // ...
617 //
Chris Lattnerf158da22003-01-16 02:20:12 +0000618 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
Chris Lattneraa09b752002-12-28 21:08:28 +0000619 MachineFrameInfo *MFI = F->getFrameInfo();
Chris Lattner065faeb2002-12-28 20:24:02 +0000620
Chris Lattner4c52f0e2005-04-09 15:23:56 +0000621 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
622 I != E; ++I) {
Chris Lattner427aeb42004-04-11 19:21:59 +0000623 bool ArgLive = !I->use_empty();
624 unsigned Reg = ArgLive ? getReg(*I) : 0;
Chris Lattner065faeb2002-12-28 20:24:02 +0000625 int FI; // Frame object index
Chris Lattner427aeb42004-04-11 19:21:59 +0000626
Chris Lattner065faeb2002-12-28 20:24:02 +0000627 switch (getClassB(I->getType())) {
628 case cByte:
Chris Lattner427aeb42004-04-11 19:21:59 +0000629 if (ArgLive) {
630 FI = MFI->CreateFixedObject(1, ArgOffset);
631 addFrameReference(BuildMI(BB, X86::MOV8rm, 4, Reg), FI);
632 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000633 break;
634 case cShort:
Chris Lattner427aeb42004-04-11 19:21:59 +0000635 if (ArgLive) {
636 FI = MFI->CreateFixedObject(2, ArgOffset);
637 addFrameReference(BuildMI(BB, X86::MOV16rm, 4, Reg), FI);
638 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000639 break;
640 case cInt:
Chris Lattner427aeb42004-04-11 19:21:59 +0000641 if (ArgLive) {
642 FI = MFI->CreateFixedObject(4, ArgOffset);
643 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg), FI);
644 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000645 break;
Chris Lattner3e130a22003-01-13 00:32:26 +0000646 case cLong:
Chris Lattner427aeb42004-04-11 19:21:59 +0000647 if (ArgLive) {
648 FI = MFI->CreateFixedObject(8, ArgOffset);
649 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg), FI);
650 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg+1), FI, 4);
651 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000652 ArgOffset += 4; // longs require 4 additional bytes
653 break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000654 case cFP:
Chris Lattner427aeb42004-04-11 19:21:59 +0000655 if (ArgLive) {
656 unsigned Opcode;
657 if (I->getType() == Type::FloatTy) {
658 Opcode = X86::FLD32m;
659 FI = MFI->CreateFixedObject(4, ArgOffset);
660 } else {
661 Opcode = X86::FLD64m;
662 FI = MFI->CreateFixedObject(8, ArgOffset);
663 }
664 addFrameReference(BuildMI(BB, Opcode, 4, Reg), FI);
Chris Lattner065faeb2002-12-28 20:24:02 +0000665 }
Chris Lattner427aeb42004-04-11 19:21:59 +0000666 if (I->getType() == Type::DoubleTy)
667 ArgOffset += 4; // doubles require 4 additional bytes
Chris Lattner065faeb2002-12-28 20:24:02 +0000668 break;
669 default:
670 assert(0 && "Unhandled argument type!");
671 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000672 ArgOffset += 4; // Each argument takes at least 4 bytes on the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000673 }
Chris Lattnereca195e2003-05-08 19:44:13 +0000674
675 // If the function takes variable number of arguments, add a frame offset for
676 // the start of the first vararg value... this is used to expand
677 // llvm.va_start.
678 if (Fn.getFunctionType()->isVarArg())
679 VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner4c52f0e2005-04-09 15:23:56 +0000680
681 // Finally, inform the compiler what our live-outs will be, aka, what we will
682 // be returning in registers.
683 if (Fn.getReturnType() != Type::VoidTy)
684 switch (getClassB(Fn.getReturnType())) {
685 default: assert(0 && "Unknown type!");
686 case cByte:
687 case cShort:
688 case cInt:
689 F->addLiveOut(X86::EAX);
690 break;
691 case cLong:
692 F->addLiveOut(X86::EAX);
693 F->addLiveOut(X86::EDX);
694 break;
695 case cFP:
696 F->addLiveOut(X86::ST0);
697 break;
698 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000699}
700
Chris Lattnerc0354c92004-12-13 17:23:11 +0000701/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
702/// the main function.
703void X86ISel::EmitSpecialCodeForMain() {
704 // Switch the FPU to 64-bit precision mode for better compatibility and speed.
705 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
706 addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx);
707
708 // Set the high part to be 64-bit precision.
709 addFrameReference(BuildMI(BB, X86::MOV8mi, 5),
710 CWFrameIdx, 1).addImm(2);
711
712 // Reload the modified control word now.
713 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
714}
Chris Lattner065faeb2002-12-28 20:24:02 +0000715
Chris Lattner333b2fa2002-12-13 10:09:43 +0000716/// SelectPHINodes - Insert machine code to generate phis. This is tricky
717/// because we have to generate our sources into the source basic blocks, not
718/// the current one.
719///
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000720void X86ISel::SelectPHINodes() {
Chris Lattnerd029cd22004-06-02 05:55:25 +0000721 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000722 const Function &LF = *F->getFunction(); // The LLVM function...
723 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
724 const BasicBlock *BB = I;
Chris Lattner168aa902004-02-29 07:10:16 +0000725 MachineBasicBlock &MBB = *MBBMap[I];
Chris Lattner333b2fa2002-12-13 10:09:43 +0000726
727 // Loop over all of the PHI nodes in the LLVM basic block...
Chris Lattner168aa902004-02-29 07:10:16 +0000728 MachineBasicBlock::iterator PHIInsertPoint = MBB.begin();
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000729 for (BasicBlock::const_iterator I = BB->begin(); isa<PHINode>(I); ++I) {
730 PHINode *PN = const_cast<PHINode*>(dyn_cast<PHINode>(I));
Chris Lattner3e130a22003-01-13 00:32:26 +0000731
Chris Lattner333b2fa2002-12-13 10:09:43 +0000732 // Create a new machine instr PHI node, and insert it.
Chris Lattner3e130a22003-01-13 00:32:26 +0000733 unsigned PHIReg = getReg(*PN);
Chris Lattner168aa902004-02-29 07:10:16 +0000734 MachineInstr *PhiMI = BuildMI(MBB, PHIInsertPoint,
735 X86::PHI, PN->getNumOperands(), PHIReg);
Chris Lattner3e130a22003-01-13 00:32:26 +0000736
737 MachineInstr *LongPhiMI = 0;
Chris Lattner168aa902004-02-29 07:10:16 +0000738 if (PN->getType() == Type::LongTy || PN->getType() == Type::ULongTy)
739 LongPhiMI = BuildMI(MBB, PHIInsertPoint,
740 X86::PHI, PN->getNumOperands(), PHIReg+1);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000741
Chris Lattnera6e73f12003-05-12 14:22:21 +0000742 // PHIValues - Map of blocks to incoming virtual registers. We use this
743 // so that we only initialize one incoming value for a particular block,
744 // even if the block has multiple entries in the PHI node.
745 //
746 std::map<MachineBasicBlock*, unsigned> PHIValues;
747
Chris Lattner333b2fa2002-12-13 10:09:43 +0000748 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
749 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
Chris Lattnera6e73f12003-05-12 14:22:21 +0000750 unsigned ValReg;
751 std::map<MachineBasicBlock*, unsigned>::iterator EntryIt =
752 PHIValues.lower_bound(PredMBB);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000753
Chris Lattnera6e73f12003-05-12 14:22:21 +0000754 if (EntryIt != PHIValues.end() && EntryIt->first == PredMBB) {
755 // We already inserted an initialization of the register for this
756 // predecessor. Recycle it.
757 ValReg = EntryIt->second;
758
759 } else {
Chris Lattnera81fc682003-10-19 00:26:11 +0000760 // Get the incoming value into a virtual register.
Chris Lattnera6e73f12003-05-12 14:22:21 +0000761 //
Chris Lattnera81fc682003-10-19 00:26:11 +0000762 Value *Val = PN->getIncomingValue(i);
763
764 // If this is a constant or GlobalValue, we may have to insert code
765 // into the basic block to compute it into a virtual register.
Reid Spencer8863f182004-07-18 00:38:32 +0000766 if ((isa<Constant>(Val) && !isa<ConstantExpr>(Val))) {
Chris Lattnercb2fd552004-05-13 07:40:27 +0000767 // Simple constants get emitted at the end of the basic block,
768 // before any terminator instructions. We "know" that the code to
769 // move a constant into a register will never clobber any flags.
770 ValReg = getReg(Val, PredMBB, PredMBB->getFirstTerminator());
Chris Lattnera81fc682003-10-19 00:26:11 +0000771 } else {
Chris Lattnercb2fd552004-05-13 07:40:27 +0000772 // Because we don't want to clobber any values which might be in
773 // physical registers with the computation of this constant (which
774 // might be arbitrarily complex if it is a constant expression),
775 // just insert the computation at the top of the basic block.
776 MachineBasicBlock::iterator PI = PredMBB->begin();
777
778 // Skip over any PHI nodes though!
779 while (PI != PredMBB->end() && PI->getOpcode() == X86::PHI)
780 ++PI;
781
782 ValReg = getReg(Val, PredMBB, PI);
Chris Lattnera81fc682003-10-19 00:26:11 +0000783 }
Chris Lattnera6e73f12003-05-12 14:22:21 +0000784
785 // Remember that we inserted a value for this PHI for this predecessor
786 PHIValues.insert(EntryIt, std::make_pair(PredMBB, ValReg));
787 }
788
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000789 PhiMI->addRegOperand(ValReg);
Chris Lattner3e130a22003-01-13 00:32:26 +0000790 PhiMI->addMachineBasicBlockOperand(PredMBB);
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000791 if (LongPhiMI) {
792 LongPhiMI->addRegOperand(ValReg+1);
793 LongPhiMI->addMachineBasicBlockOperand(PredMBB);
794 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000795 }
Chris Lattner168aa902004-02-29 07:10:16 +0000796
797 // Now that we emitted all of the incoming values for the PHI node, make
798 // sure to reposition the InsertPoint after the PHI that we just added.
799 // This is needed because we might have inserted a constant into this
800 // block, right after the PHI's which is before the old insert point!
801 PHIInsertPoint = LongPhiMI ? LongPhiMI : PhiMI;
802 ++PHIInsertPoint;
Chris Lattner333b2fa2002-12-13 10:09:43 +0000803 }
804 }
805}
806
Chris Lattner986618e2004-02-22 19:47:26 +0000807/// RequiresFPRegKill - The floating point stackifier pass cannot insert
808/// compensation code on critical edges. As such, it requires that we kill all
809/// FP registers on the exit from any blocks that either ARE critical edges, or
810/// branch to a block that has incoming critical edges.
811///
812/// Note that this kill instruction will eventually be eliminated when
813/// restrictions in the stackifier are relaxed.
814///
Brian Gaeke1afe7732004-04-28 04:45:55 +0000815static bool RequiresFPRegKill(const MachineBasicBlock *MBB) {
Chris Lattner986618e2004-02-22 19:47:26 +0000816#if 0
Brian Gaeke1afe7732004-04-28 04:45:55 +0000817 const BasicBlock *BB = MBB->getBasicBlock ();
Chris Lattner986618e2004-02-22 19:47:26 +0000818 for (succ_const_iterator SI = succ_begin(BB), E = succ_end(BB); SI!=E; ++SI) {
819 const BasicBlock *Succ = *SI;
820 pred_const_iterator PI = pred_begin(Succ), PE = pred_end(Succ);
821 ++PI; // Block have at least one predecessory
822 if (PI != PE) { // If it has exactly one, this isn't crit edge
823 // If this block has more than one predecessor, check all of the
824 // predecessors to see if they have multiple successors. If so, then the
825 // block we are analyzing needs an FPRegKill.
826 for (PI = pred_begin(Succ); PI != PE; ++PI) {
827 const BasicBlock *Pred = *PI;
828 succ_const_iterator SI2 = succ_begin(Pred);
829 ++SI2; // There must be at least one successor of this block.
830 if (SI2 != succ_end(Pred))
831 return true; // Yes, we must insert the kill on this edge.
832 }
833 }
834 }
835 // If we got this far, there is no need to insert the kill instruction.
836 return false;
837#else
838 return true;
839#endif
840}
841
842// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks that
843// need them. This only occurs due to the floating point stackifier not being
844// aggressive enough to handle arbitrary global stackification.
845//
846// Currently we insert an FP_REG_KILL instruction into each block that uses or
847// defines a floating point virtual register.
848//
849// When the global register allocators (like linear scan) finally update live
850// variable analysis, we can keep floating point values in registers across
851// portions of the CFG that do not involve critical edges. This will be a big
852// win, but we are waiting on the global allocators before we can do this.
853//
854// With a bit of work, the floating point stackifier pass can be enhanced to
855// break critical edges as needed (to make a place to put compensation code),
856// but this will require some infrastructure improvements as well.
857//
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000858void X86ISel::InsertFPRegKills() {
Chris Lattner986618e2004-02-22 19:47:26 +0000859 SSARegMap &RegMap = *F->getSSARegMap();
Chris Lattner986618e2004-02-22 19:47:26 +0000860
861 for (MachineFunction::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Chris Lattner986618e2004-02-22 19:47:26 +0000862 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000863 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
864 MachineOperand& MO = I->getOperand(i);
865 if (MO.isRegister() && MO.getReg()) {
866 unsigned Reg = MO.getReg();
Chris Lattner223d4c42004-12-03 05:13:15 +0000867 if (MRegisterInfo::isVirtualRegister(Reg)) {
868 unsigned RegSize = RegMap.getRegClass(Reg)->getSize();
869 if (RegSize == 10 || RegSize == 8)
Chris Lattner65cf42d2004-02-23 07:29:45 +0000870 goto UsesFPReg;
Chris Lattner223d4c42004-12-03 05:13:15 +0000871 }
Chris Lattner986618e2004-02-22 19:47:26 +0000872 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000873 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000874 // If we haven't found an FP register use or def in this basic block, check
875 // to see if any of our successors has an FP PHI node, which will cause a
876 // copy to be inserted into this block.
Brian Gaeke235aa5e2004-04-28 04:34:16 +0000877 for (MachineBasicBlock::const_succ_iterator SI = BB->succ_begin(),
878 SE = BB->succ_end(); SI != SE; ++SI) {
879 MachineBasicBlock *SBB = *SI;
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000880 for (MachineBasicBlock::iterator I = SBB->begin();
881 I != SBB->end() && I->getOpcode() == X86::PHI; ++I) {
Chris Lattner39869242004-12-02 17:57:21 +0000882 const TargetRegisterClass *RC =
883 RegMap.getRegClass(I->getOperand(0).getReg());
884 if (RC->getSize() == 10 || RC->getSize() == 8)
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000885 goto UsesFPReg;
Chris Lattner986618e2004-02-22 19:47:26 +0000886 }
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000887 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000888 continue;
889 UsesFPReg:
890 // Okay, this block uses an FP register. If the block has successors (ie,
891 // it's not an unwind/return), insert the FP_REG_KILL instruction.
Chris Lattner5384b382005-01-05 16:30:14 +0000892 if (BB->succ_size() && RequiresFPRegKill(BB)) {
Chris Lattneree352852004-02-29 07:22:16 +0000893 BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
Chris Lattner65cf42d2004-02-23 07:29:45 +0000894 ++NumFPKill;
Chris Lattner986618e2004-02-22 19:47:26 +0000895 }
896 }
897}
898
899
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000900void X86ISel::getAddressingMode(Value *Addr, X86AddressMode &AM) {
Reid Spencerfc989e12004-08-30 00:13:26 +0000901 AM.BaseType = X86AddressMode::RegBase;
902 AM.Base.Reg = 0; AM.Scale = 1; AM.IndexReg = 0; AM.Disp = 0;
Chris Lattner9f1b5312004-05-13 15:12:43 +0000903 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr)) {
904 if (isGEPFoldable(BB, GEP->getOperand(0), GEP->op_begin()+1, GEP->op_end(),
Reid Spencerfc989e12004-08-30 00:13:26 +0000905 AM))
Chris Lattner9f1b5312004-05-13 15:12:43 +0000906 return;
907 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr)) {
908 if (CE->getOpcode() == Instruction::GetElementPtr)
909 if (isGEPFoldable(BB, CE->getOperand(0), CE->op_begin()+1, CE->op_end(),
Reid Spencerfc989e12004-08-30 00:13:26 +0000910 AM))
Chris Lattner9f1b5312004-05-13 15:12:43 +0000911 return;
Reid Spencerfc989e12004-08-30 00:13:26 +0000912 } else if (AllocaInst *AI = dyn_castFixedAlloca(Addr)) {
913 AM.BaseType = X86AddressMode::FrameIndexBase;
914 AM.Base.FrameIndex = getFixedSizedAllocaFI(AI);
915 return;
Chris Lattner358a9022004-10-15 05:05:29 +0000916 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(Addr)) {
917 AM.GV = GV;
918 return;
Chris Lattner9f1b5312004-05-13 15:12:43 +0000919 }
920
921 // If it's not foldable, reset addr mode.
Reid Spencerfc989e12004-08-30 00:13:26 +0000922 AM.BaseType = X86AddressMode::RegBase;
923 AM.Base.Reg = getReg(Addr);
924 AM.Scale = 1; AM.IndexReg = 0; AM.Disp = 0;
Chris Lattner9f1b5312004-05-13 15:12:43 +0000925}
926
Chris Lattner307ecba2004-03-30 22:39:09 +0000927// canFoldSetCCIntoBranchOrSelect - Return the setcc instruction if we can fold
928// it into the conditional branch or select instruction which is the only user
929// of the cc instruction. This is the case if the conditional branch is the
Chris Lattnera6f9fe62004-06-18 00:29:22 +0000930// only user of the setcc. We also don't handle long arguments below, so we
931// reject them here as well.
Chris Lattner6d40c192003-01-16 16:43:00 +0000932//
Chris Lattner307ecba2004-03-30 22:39:09 +0000933static SetCondInst *canFoldSetCCIntoBranchOrSelect(Value *V) {
Chris Lattner6d40c192003-01-16 16:43:00 +0000934 if (SetCondInst *SCI = dyn_cast<SetCondInst>(V))
Chris Lattner307ecba2004-03-30 22:39:09 +0000935 if (SCI->hasOneUse()) {
936 Instruction *User = cast<Instruction>(SCI->use_back());
Tanya Lattner9855b842004-12-01 18:27:03 +0000937 if ((isa<BranchInst>(User) || isa<SelectInst>(User)) &&
938 (getClassB(SCI->getOperand(0)->getType()) != cLong ||
939 SCI->getOpcode() == Instruction::SetEQ ||
940 SCI->getOpcode() == Instruction::SetNE) &&
941 (isa<BranchInst>(User) || User->getOperand(0) == V))
Chris Lattner6d40c192003-01-16 16:43:00 +0000942 return SCI;
943 }
944 return 0;
945}
Chris Lattner333b2fa2002-12-13 10:09:43 +0000946
Chris Lattner6d40c192003-01-16 16:43:00 +0000947// Return a fixed numbering for setcc instructions which does not depend on the
948// order of the opcodes.
949//
950static unsigned getSetCCNumber(unsigned Opcode) {
951 switch(Opcode) {
952 default: assert(0 && "Unknown setcc instruction!");
953 case Instruction::SetEQ: return 0;
954 case Instruction::SetNE: return 1;
955 case Instruction::SetLT: return 2;
Chris Lattner55f6fab2003-01-16 18:07:23 +0000956 case Instruction::SetGE: return 3;
957 case Instruction::SetGT: return 4;
958 case Instruction::SetLE: return 5;
Chris Lattner6d40c192003-01-16 16:43:00 +0000959 }
960}
Chris Lattner06925362002-11-17 21:56:38 +0000961
Chris Lattner6d40c192003-01-16 16:43:00 +0000962// LLVM -> X86 signed X86 unsigned
963// ----- ---------- ------------
964// seteq -> sete sete
965// setne -> setne setne
966// setlt -> setl setb
Chris Lattner55f6fab2003-01-16 18:07:23 +0000967// setge -> setge setae
Chris Lattner6d40c192003-01-16 16:43:00 +0000968// setgt -> setg seta
969// setle -> setle setbe
Chris Lattnerb2acc512003-10-19 21:09:10 +0000970// ----
971// sets // Used by comparison with 0 optimization
972// setns
973static const unsigned SetCCOpcodeTab[2][8] = {
974 { X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAEr, X86::SETAr, X86::SETBEr,
975 0, 0 },
976 { X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGEr, X86::SETGr, X86::SETLEr,
977 X86::SETSr, X86::SETNSr },
Chris Lattner6d40c192003-01-16 16:43:00 +0000978};
979
Chris Lattner01cdb1b2004-06-11 05:33:49 +0000980/// emitUCOMr - In the future when we support processors before the P6, this
981/// wraps the logic for emitting an FUCOMr vs FUCOMIr.
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000982void X86ISel::emitUCOMr(MachineBasicBlock *MBB, MachineBasicBlock::iterator IP,
983 unsigned LHS, unsigned RHS) {
Chris Lattner01cdb1b2004-06-11 05:33:49 +0000984 if (0) { // for processors prior to the P6
985 BuildMI(*MBB, IP, X86::FUCOMr, 2).addReg(LHS).addReg(RHS);
986 BuildMI(*MBB, IP, X86::FNSTSW8r, 0);
987 BuildMI(*MBB, IP, X86::SAHF, 1);
988 } else {
989 BuildMI(*MBB, IP, X86::FUCOMIr, 2).addReg(LHS).addReg(RHS);
990 }
991}
992
Chris Lattnerb2acc512003-10-19 21:09:10 +0000993// EmitComparison - This function emits a comparison of the two operands,
994// returning the extended setcc code to use.
Misha Brukmaneae1bf12004-09-21 18:21:21 +0000995unsigned X86ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
996 MachineBasicBlock *MBB,
997 MachineBasicBlock::iterator IP) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000998 // The arguments are already supposed to be of the same type.
Chris Lattner6d40c192003-01-16 16:43:00 +0000999 const Type *CompTy = Op0->getType();
Chris Lattner3e130a22003-01-13 00:32:26 +00001000 unsigned Class = getClassB(CompTy);
Chris Lattner333864d2003-06-05 19:30:30 +00001001
1002 // Special case handling of: cmp R, i
Chris Lattner260195d2004-05-07 19:55:55 +00001003 if (isa<ConstantPointerNull>(Op1)) {
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001004 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattner260195d2004-05-07 19:55:55 +00001005 if (OpNum < 2) // seteq/setne -> test
1006 BuildMI(*MBB, IP, X86::TEST32rr, 2).addReg(Op0r).addReg(Op0r);
1007 else
1008 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r).addImm(0);
1009 return OpNum;
1010
1011 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnere80e6372004-04-06 16:02:27 +00001012 if (Class == cByte || Class == cShort || Class == cInt) {
1013 unsigned Op1v = CI->getRawValue();
Chris Lattnerc07736a2003-07-23 15:22:26 +00001014
Chris Lattner333864d2003-06-05 19:30:30 +00001015 // Mask off any upper bits of the constant, if there are any...
1016 Op1v &= (1ULL << (8 << Class)) - 1;
1017
Chris Lattnerb2acc512003-10-19 21:09:10 +00001018 // If this is a comparison against zero, emit more efficient code. We
1019 // can't handle unsigned comparisons against zero unless they are == or
1020 // !=. These should have been strength reduced already anyway.
1021 if (Op1v == 0 && (CompTy->isSigned() || OpNum < 2)) {
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001022
1023 // If this is a comparison against zero and the LHS is an and of a
1024 // register with a constant, use the test to do the and.
1025 if (Instruction *Op0I = dyn_cast<Instruction>(Op0))
1026 if (Op0I->getOpcode() == Instruction::And && Op0->hasOneUse() &&
1027 isa<ConstantInt>(Op0I->getOperand(1))) {
1028 static const unsigned TESTTab[] = {
1029 X86::TEST8ri, X86::TEST16ri, X86::TEST32ri
1030 };
1031
1032 // Emit test X, i
1033 unsigned LHS = getReg(Op0I->getOperand(0), MBB, IP);
1034 unsigned Imm =
1035 cast<ConstantInt>(Op0I->getOperand(1))->getRawValue();
1036 BuildMI(*MBB, IP, TESTTab[Class], 2).addReg(LHS).addImm(Imm);
1037
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001038 if (OpNum == 2) return 6; // Map jl -> js
1039 if (OpNum == 3) return 7; // Map jg -> jns
1040 return OpNum;
1041 }
1042
1043 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001044 static const unsigned TESTTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001045 X86::TEST8rr, X86::TEST16rr, X86::TEST32rr
Chris Lattnerb2acc512003-10-19 21:09:10 +00001046 };
Chris Lattneree352852004-02-29 07:22:16 +00001047 BuildMI(*MBB, IP, TESTTab[Class], 2).addReg(Op0r).addReg(Op0r);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001048
1049 if (OpNum == 2) return 6; // Map jl -> js
1050 if (OpNum == 3) return 7; // Map jg -> jns
1051 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +00001052 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001053
1054 static const unsigned CMPTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001055 X86::CMP8ri, X86::CMP16ri, X86::CMP32ri
Chris Lattnerb2acc512003-10-19 21:09:10 +00001056 };
1057
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001058 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattneree352852004-02-29 07:22:16 +00001059 BuildMI(*MBB, IP, CMPTab[Class], 2).addReg(Op0r).addImm(Op1v);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001060 return OpNum;
Chris Lattnere80e6372004-04-06 16:02:27 +00001061 } else {
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001062 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattnere80e6372004-04-06 16:02:27 +00001063 assert(Class == cLong && "Unknown integer class!");
1064 unsigned LowCst = CI->getRawValue();
1065 unsigned HiCst = CI->getRawValue() >> 32;
1066 if (OpNum < 2) { // seteq, setne
1067 unsigned LoTmp = Op0r;
1068 if (LowCst != 0) {
1069 LoTmp = makeAnotherReg(Type::IntTy);
1070 BuildMI(*MBB, IP, X86::XOR32ri, 2, LoTmp).addReg(Op0r).addImm(LowCst);
1071 }
1072 unsigned HiTmp = Op0r+1;
1073 if (HiCst != 0) {
1074 HiTmp = makeAnotherReg(Type::IntTy);
Chris Lattner48c937e2004-04-06 17:34:50 +00001075 BuildMI(*MBB, IP, X86::XOR32ri, 2,HiTmp).addReg(Op0r+1).addImm(HiCst);
Chris Lattnere80e6372004-04-06 16:02:27 +00001076 }
1077 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
1078 BuildMI(*MBB, IP, X86::OR32rr, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
1079 return OpNum;
Chris Lattner48c937e2004-04-06 17:34:50 +00001080 } else {
Tanya Lattner9855b842004-12-01 18:27:03 +00001081 // Emit a sequence of code which compares the high and low parts once
1082 // each, then uses a conditional move to handle the overflow case. For
1083 // example, a setlt for long would generate code like this:
1084 //
1085 // AL = lo(op1) < lo(op2) // Always unsigned comparison
1086 // BL = hi(op1) < hi(op2) // Signedness depends on operands
1087 // dest = hi(op1) == hi(op2) ? BL : AL;
1088 //
1089
1090 // FIXME: This would be much better if we had hierarchical register
1091 // classes! Until then, hardcode registers so that we can deal with
1092 // their aliases (because we don't have conditional byte moves).
1093 //
1094 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r).addImm(LowCst);
1095 BuildMI(*MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
1096 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r+1).addImm(HiCst);
1097 BuildMI(*MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0,X86::BL);
1098 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
1099 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
1100 BuildMI(*MBB, IP, X86::CMOVE16rr, 2, X86::BX).addReg(X86::BX)
1101 .addReg(X86::AX);
1102 // NOTE: visitSetCondInst knows that the value is dumped into the BL
1103 // register at this point for long values...
Chris Lattner48c937e2004-04-06 17:34:50 +00001104 return OpNum;
Chris Lattnere80e6372004-04-06 16:02:27 +00001105 }
Chris Lattner333864d2003-06-05 19:30:30 +00001106 }
Chris Lattnere80e6372004-04-06 16:02:27 +00001107 }
Chris Lattner333864d2003-06-05 19:30:30 +00001108
Chris Lattnerde95c9e2004-10-17 06:10:40 +00001109 unsigned Op0r = getReg(Op0, MBB, IP);
1110
Chris Lattner9f08a922004-02-03 18:54:04 +00001111 // Special case handling of comparison against +/- 0.0
1112 if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op1))
1113 if (CFP->isExactlyValue(+0.0) || CFP->isExactlyValue(-0.0)) {
Chris Lattneree352852004-02-29 07:22:16 +00001114 BuildMI(*MBB, IP, X86::FTST, 1).addReg(Op0r);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001115 BuildMI(*MBB, IP, X86::FNSTSW8r, 0);
Chris Lattneree352852004-02-29 07:22:16 +00001116 BuildMI(*MBB, IP, X86::SAHF, 1);
Chris Lattner9f08a922004-02-03 18:54:04 +00001117 return OpNum;
1118 }
1119
Chris Lattner58c41fe2003-08-24 19:19:47 +00001120 unsigned Op1r = getReg(Op1, MBB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00001121 switch (Class) {
1122 default: assert(0 && "Unknown type class!");
1123 // Emit: cmp <var1>, <var2> (do the comparison). We can
1124 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
1125 // 32-bit.
1126 case cByte:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001127 BuildMI(*MBB, IP, X86::CMP8rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001128 break;
1129 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001130 BuildMI(*MBB, IP, X86::CMP16rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001131 break;
1132 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001133 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001134 break;
1135 case cFP:
Chris Lattner01cdb1b2004-06-11 05:33:49 +00001136 emitUCOMr(MBB, IP, Op0r, Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001137 break;
1138
1139 case cLong:
1140 if (OpNum < 2) { // seteq, setne
1141 unsigned LoTmp = makeAnotherReg(Type::IntTy);
1142 unsigned HiTmp = makeAnotherReg(Type::IntTy);
1143 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001144 BuildMI(*MBB, IP, X86::XOR32rr, 2, LoTmp).addReg(Op0r).addReg(Op1r);
1145 BuildMI(*MBB, IP, X86::XOR32rr, 2, HiTmp).addReg(Op0r+1).addReg(Op1r+1);
1146 BuildMI(*MBB, IP, X86::OR32rr, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
Chris Lattner3e130a22003-01-13 00:32:26 +00001147 break; // Allow the sete or setne to be generated from flags set by OR
1148 } else {
1149 // Emit a sequence of code which compares the high and low parts once
1150 // each, then uses a conditional move to handle the overflow case. For
1151 // example, a setlt for long would generate code like this:
1152 //
1153 // AL = lo(op1) < lo(op2) // Signedness depends on operands
1154 // BL = hi(op1) < hi(op2) // Always unsigned comparison
Chris Lattner9984fd02004-05-09 23:16:33 +00001155 // dest = hi(op1) == hi(op2) ? BL : AL;
Chris Lattner3e130a22003-01-13 00:32:26 +00001156 //
1157
Chris Lattner6d40c192003-01-16 16:43:00 +00001158 // FIXME: This would be much better if we had hierarchical register
Chris Lattner3e130a22003-01-13 00:32:26 +00001159 // classes! Until then, hardcode registers so that we can deal with their
1160 // aliases (because we don't have conditional byte moves).
1161 //
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001162 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattneree352852004-02-29 07:22:16 +00001163 BuildMI(*MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001164 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattneree352852004-02-29 07:22:16 +00001165 BuildMI(*MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0, X86::BL);
1166 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
1167 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001168 BuildMI(*MBB, IP, X86::CMOVE16rr, 2, X86::BX).addReg(X86::BX)
Chris Lattneree352852004-02-29 07:22:16 +00001169 .addReg(X86::AX);
Chris Lattner6d40c192003-01-16 16:43:00 +00001170 // NOTE: visitSetCondInst knows that the value is dumped into the BL
1171 // register at this point for long values...
Chris Lattnerb2acc512003-10-19 21:09:10 +00001172 return OpNum;
Chris Lattner3e130a22003-01-13 00:32:26 +00001173 }
1174 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001175 return OpNum;
Chris Lattner6d40c192003-01-16 16:43:00 +00001176}
Chris Lattner3e130a22003-01-13 00:32:26 +00001177
Chris Lattner6d40c192003-01-16 16:43:00 +00001178/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
1179/// register, then move it to wherever the result should be.
1180///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001181void X86ISel::visitSetCondInst(SetCondInst &I) {
Chris Lattner307ecba2004-03-30 22:39:09 +00001182 if (canFoldSetCCIntoBranchOrSelect(&I))
1183 return; // Fold this into a branch or select.
Chris Lattner6d40c192003-01-16 16:43:00 +00001184
Chris Lattner6d40c192003-01-16 16:43:00 +00001185 unsigned DestReg = getReg(I);
Chris Lattner58c41fe2003-08-24 19:19:47 +00001186 MachineBasicBlock::iterator MII = BB->end();
1187 emitSetCCOperation(BB, MII, I.getOperand(0), I.getOperand(1), I.getOpcode(),
1188 DestReg);
1189}
Chris Lattner6d40c192003-01-16 16:43:00 +00001190
Chris Lattner58c41fe2003-08-24 19:19:47 +00001191/// emitSetCCOperation - Common code shared between visitSetCondInst and
1192/// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +00001193///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001194void X86ISel::emitSetCCOperation(MachineBasicBlock *MBB,
1195 MachineBasicBlock::iterator IP,
1196 Value *Op0, Value *Op1, unsigned Opcode,
1197 unsigned TargetReg) {
Chris Lattner58c41fe2003-08-24 19:19:47 +00001198 unsigned OpNum = getSetCCNumber(Opcode);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001199 OpNum = EmitComparison(OpNum, Op0, Op1, MBB, IP);
Chris Lattner58c41fe2003-08-24 19:19:47 +00001200
Chris Lattnerb2acc512003-10-19 21:09:10 +00001201 const Type *CompTy = Op0->getType();
1202 unsigned CompClass = getClassB(CompTy);
1203 bool isSigned = CompTy->isSigned() && CompClass != cFP;
1204
Tanya Lattner9855b842004-12-01 18:27:03 +00001205 if (CompClass != cLong || OpNum < 2) {
1206 // Handle normal comparisons with a setcc instruction...
1207 BuildMI(*MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, TargetReg);
1208 } else {
1209 // Handle long comparisons by copying the value which is already in BL into
1210 // the register we want...
1211 BuildMI(*MBB, IP, X86::MOV8rr, 1, TargetReg).addReg(X86::BL);
1212 }
Brian Gaeke1749d632002-11-07 17:59:21 +00001213}
Chris Lattner51b49a92002-11-02 19:45:49 +00001214
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001215void X86ISel::visitSelectInst(SelectInst &SI) {
Chris Lattner12d96a02004-03-30 21:22:00 +00001216 unsigned DestReg = getReg(SI);
1217 MachineBasicBlock::iterator MII = BB->end();
1218 emitSelectOperation(BB, MII, SI.getCondition(), SI.getTrueValue(),
1219 SI.getFalseValue(), DestReg);
1220}
1221
1222/// emitSelect - Common code shared between visitSelectInst and the constant
1223/// expression support.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001224void X86ISel::emitSelectOperation(MachineBasicBlock *MBB,
1225 MachineBasicBlock::iterator IP,
1226 Value *Cond, Value *TrueVal, Value *FalseVal,
1227 unsigned DestReg) {
Chris Lattner12d96a02004-03-30 21:22:00 +00001228 unsigned SelectClass = getClassB(TrueVal->getType());
1229
1230 // We don't support 8-bit conditional moves. If we have incoming constants,
1231 // transform them into 16-bit constants to avoid having a run-time conversion.
1232 if (SelectClass == cByte) {
1233 if (Constant *T = dyn_cast<Constant>(TrueVal))
1234 TrueVal = ConstantExpr::getCast(T, Type::ShortTy);
1235 if (Constant *F = dyn_cast<Constant>(FalseVal))
1236 FalseVal = ConstantExpr::getCast(F, Type::ShortTy);
1237 }
1238
Chris Lattner82c5a992004-04-13 21:56:09 +00001239 unsigned TrueReg = getReg(TrueVal, MBB, IP);
1240 unsigned FalseReg = getReg(FalseVal, MBB, IP);
1241 if (TrueReg == FalseReg) {
1242 static const unsigned Opcode[] = {
1243 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr, X86::FpMOV, X86::MOV32rr
1244 };
1245 BuildMI(*MBB, IP, Opcode[SelectClass], 1, DestReg).addReg(TrueReg);
1246 if (SelectClass == cLong)
1247 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(TrueReg+1);
1248 return;
1249 }
1250
Chris Lattner307ecba2004-03-30 22:39:09 +00001251 unsigned Opcode;
1252 if (SetCondInst *SCI = canFoldSetCCIntoBranchOrSelect(Cond)) {
1253 // We successfully folded the setcc into the select instruction.
1254
1255 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
1256 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), MBB,
1257 IP);
1258
1259 const Type *CompTy = SCI->getOperand(0)->getType();
1260 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
1261
1262 // LLVM -> X86 signed X86 unsigned
1263 // ----- ---------- ------------
1264 // seteq -> cmovNE cmovNE
1265 // setne -> cmovE cmovE
1266 // setlt -> cmovGE cmovAE
1267 // setge -> cmovL cmovB
1268 // setgt -> cmovLE cmovBE
1269 // setle -> cmovG cmovA
1270 // ----
1271 // cmovNS // Used by comparison with 0 optimization
1272 // cmovS
1273
1274 switch (SelectClass) {
Chris Lattner352eb482004-03-31 22:03:35 +00001275 default: assert(0 && "Unknown value class!");
1276 case cFP: {
1277 // Annoyingly, we don't have a full set of floating point conditional
1278 // moves. :(
1279 static const unsigned OpcodeTab[2][8] = {
1280 { X86::FCMOVNE, X86::FCMOVE, X86::FCMOVAE, X86::FCMOVB,
1281 X86::FCMOVBE, X86::FCMOVA, 0, 0 },
1282 { X86::FCMOVNE, X86::FCMOVE, 0, 0, 0, 0, 0, 0 },
1283 };
1284 Opcode = OpcodeTab[isSigned][OpNum];
1285
1286 // If opcode == 0, we hit a case that we don't support. Output a setcc
1287 // and compare the result against zero.
1288 if (Opcode == 0) {
1289 unsigned CompClass = getClassB(CompTy);
1290 unsigned CondReg;
1291 if (CompClass != cLong || OpNum < 2) {
1292 CondReg = makeAnotherReg(Type::BoolTy);
1293 // Handle normal comparisons with a setcc instruction...
1294 BuildMI(*MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, CondReg);
1295 } else {
1296 // Long comparisons end up in the BL register.
1297 CondReg = X86::BL;
1298 }
1299
Chris Lattner68626c22004-03-31 22:22:36 +00001300 BuildMI(*MBB, IP, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
Chris Lattner352eb482004-03-31 22:03:35 +00001301 Opcode = X86::FCMOVE;
1302 }
1303 break;
1304 }
Chris Lattner307ecba2004-03-30 22:39:09 +00001305 case cByte:
1306 case cShort: {
1307 static const unsigned OpcodeTab[2][8] = {
1308 { X86::CMOVNE16rr, X86::CMOVE16rr, X86::CMOVAE16rr, X86::CMOVB16rr,
1309 X86::CMOVBE16rr, X86::CMOVA16rr, 0, 0 },
1310 { X86::CMOVNE16rr, X86::CMOVE16rr, X86::CMOVGE16rr, X86::CMOVL16rr,
1311 X86::CMOVLE16rr, X86::CMOVG16rr, X86::CMOVNS16rr, X86::CMOVS16rr },
1312 };
1313 Opcode = OpcodeTab[isSigned][OpNum];
1314 break;
1315 }
1316 case cInt:
1317 case cLong: {
1318 static const unsigned OpcodeTab[2][8] = {
1319 { X86::CMOVNE32rr, X86::CMOVE32rr, X86::CMOVAE32rr, X86::CMOVB32rr,
1320 X86::CMOVBE32rr, X86::CMOVA32rr, 0, 0 },
1321 { X86::CMOVNE32rr, X86::CMOVE32rr, X86::CMOVGE32rr, X86::CMOVL32rr,
1322 X86::CMOVLE32rr, X86::CMOVG32rr, X86::CMOVNS32rr, X86::CMOVS32rr },
1323 };
1324 Opcode = OpcodeTab[isSigned][OpNum];
1325 break;
1326 }
1327 }
1328 } else {
1329 // Get the value being branched on, and use it to set the condition codes.
1330 unsigned CondReg = getReg(Cond, MBB, IP);
Chris Lattner68626c22004-03-31 22:22:36 +00001331 BuildMI(*MBB, IP, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
Chris Lattner307ecba2004-03-30 22:39:09 +00001332 switch (SelectClass) {
Chris Lattner352eb482004-03-31 22:03:35 +00001333 default: assert(0 && "Unknown value class!");
1334 case cFP: Opcode = X86::FCMOVE; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001335 case cByte:
Chris Lattner352eb482004-03-31 22:03:35 +00001336 case cShort: Opcode = X86::CMOVE16rr; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001337 case cInt:
Chris Lattner352eb482004-03-31 22:03:35 +00001338 case cLong: Opcode = X86::CMOVE32rr; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001339 }
1340 }
Chris Lattner12d96a02004-03-30 21:22:00 +00001341
Chris Lattner12d96a02004-03-30 21:22:00 +00001342 unsigned RealDestReg = DestReg;
Chris Lattner12d96a02004-03-30 21:22:00 +00001343
Chris Lattner12d96a02004-03-30 21:22:00 +00001344
1345 // Annoyingly enough, X86 doesn't HAVE 8-bit conditional moves. Because of
1346 // this, we have to promote the incoming values to 16 bits, perform a 16-bit
1347 // cmove, then truncate the result.
1348 if (SelectClass == cByte) {
1349 DestReg = makeAnotherReg(Type::ShortTy);
1350 if (getClassB(TrueVal->getType()) == cByte) {
1351 // Promote the true value, by storing it into AL, and reading from AX.
1352 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::AL).addReg(TrueReg);
1353 BuildMI(*MBB, IP, X86::MOV8ri, 1, X86::AH).addImm(0);
1354 TrueReg = makeAnotherReg(Type::ShortTy);
1355 BuildMI(*MBB, IP, X86::MOV16rr, 1, TrueReg).addReg(X86::AX);
1356 }
1357 if (getClassB(FalseVal->getType()) == cByte) {
1358 // Promote the true value, by storing it into CL, and reading from CX.
1359 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(FalseReg);
1360 BuildMI(*MBB, IP, X86::MOV8ri, 1, X86::CH).addImm(0);
1361 FalseReg = makeAnotherReg(Type::ShortTy);
1362 BuildMI(*MBB, IP, X86::MOV16rr, 1, FalseReg).addReg(X86::CX);
1363 }
1364 }
1365
1366 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(TrueReg).addReg(FalseReg);
1367
1368 switch (SelectClass) {
1369 case cByte:
1370 // We did the computation with 16-bit registers. Truncate back to our
1371 // result by copying into AX then copying out AL.
1372 BuildMI(*MBB, IP, X86::MOV16rr, 1, X86::AX).addReg(DestReg);
1373 BuildMI(*MBB, IP, X86::MOV8rr, 1, RealDestReg).addReg(X86::AL);
1374 break;
1375 case cLong:
1376 // Move the upper half of the value as well.
1377 BuildMI(*MBB, IP, Opcode, 2,DestReg+1).addReg(TrueReg+1).addReg(FalseReg+1);
1378 break;
1379 }
1380}
Chris Lattner58c41fe2003-08-24 19:19:47 +00001381
1382
1383
Brian Gaekec2505982002-11-30 11:57:28 +00001384/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
1385/// operand, in the specified target register.
Misha Brukman538607f2004-03-01 23:53:11 +00001386///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001387void X86ISel::promote32(unsigned targetReg, const ValueRecord &VR) {
Chris Lattner9984fd02004-05-09 23:16:33 +00001388 bool isUnsigned = VR.Ty->isUnsigned() || VR.Ty == Type::BoolTy;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001389
Chris Lattner29bf0622004-04-06 01:21:00 +00001390 Value *Val = VR.Val;
1391 const Type *Ty = VR.Ty;
Chris Lattner502e36c2004-04-06 01:25:33 +00001392 if (Val) {
Chris Lattner29bf0622004-04-06 01:21:00 +00001393 if (Constant *C = dyn_cast<Constant>(Val)) {
1394 Val = ConstantExpr::getCast(C, Type::IntTy);
1395 Ty = Type::IntTy;
1396 }
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001397
Chris Lattner502e36c2004-04-06 01:25:33 +00001398 // If this is a simple constant, just emit a MOVri directly to avoid the
1399 // copy.
1400 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
1401 int TheVal = CI->getRawValue() & 0xFFFFFFFF;
Chris Lattner2b10b082004-05-12 16:35:04 +00001402 BuildMI(BB, X86::MOV32ri, 1, targetReg).addImm(TheVal);
Chris Lattner502e36c2004-04-06 01:25:33 +00001403 return;
1404 }
1405 }
1406
Chris Lattner29bf0622004-04-06 01:21:00 +00001407 // Make sure we have the register number for this value...
1408 unsigned Reg = Val ? getReg(Val) : VR.Reg;
1409
1410 switch (getClassB(Ty)) {
Chris Lattner94af4142002-12-25 05:13:53 +00001411 case cByte:
1412 // Extend value into target register (8->32)
1413 if (isUnsigned)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001414 BuildMI(BB, X86::MOVZX32rr8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001415 else
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001416 BuildMI(BB, X86::MOVSX32rr8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001417 break;
1418 case cShort:
1419 // Extend value into target register (16->32)
1420 if (isUnsigned)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001421 BuildMI(BB, X86::MOVZX32rr16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001422 else
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001423 BuildMI(BB, X86::MOVSX32rr16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001424 break;
1425 case cInt:
1426 // Move value into target register (32->32)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001427 BuildMI(BB, X86::MOV32rr, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001428 break;
1429 default:
1430 assert(0 && "Unpromotable operand class in promote32");
1431 }
Brian Gaekec2505982002-11-30 11:57:28 +00001432}
Chris Lattnerc5291f52002-10-27 21:16:59 +00001433
Chris Lattner72614082002-10-25 22:55:53 +00001434/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
1435/// we have the following possibilities:
1436///
1437/// ret void: No return value, simply emit a 'ret' instruction
1438/// ret sbyte, ubyte : Extend value into EAX and return
1439/// ret short, ushort: Extend value into EAX and return
1440/// ret int, uint : Move value into EAX and return
1441/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +00001442/// ret long, ulong : Move value into EAX/EDX and return
1443/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +00001444///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001445void X86ISel::visitReturnInst(ReturnInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +00001446 if (I.getNumOperands() == 0) {
1447 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
1448 return;
1449 }
1450
1451 Value *RetVal = I.getOperand(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00001452 switch (getClassB(RetVal->getType())) {
Chris Lattner94af4142002-12-25 05:13:53 +00001453 case cByte: // integral return values: extend or move into EAX and return
1454 case cShort:
1455 case cInt:
Chris Lattner29bf0622004-04-06 01:21:00 +00001456 promote32(X86::EAX, ValueRecord(RetVal));
Chris Lattner94af4142002-12-25 05:13:53 +00001457 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001458 case cFP: { // Floats & Doubles: Return in ST(0)
1459 unsigned RetReg = getReg(RetVal);
Chris Lattner3e130a22003-01-13 00:32:26 +00001460 BuildMI(BB, X86::FpSETRESULT, 1).addReg(RetReg);
Chris Lattner94af4142002-12-25 05:13:53 +00001461 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001462 }
1463 case cLong: {
1464 unsigned RetReg = getReg(RetVal);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001465 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(RetReg);
1466 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(RetReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00001467 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001468 }
Chris Lattner94af4142002-12-25 05:13:53 +00001469 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00001470 visitInstruction(I);
Chris Lattner94af4142002-12-25 05:13:53 +00001471 }
Chris Lattner43189d12002-11-17 20:07:45 +00001472 // Emit a 'ret' instruction
Chris Lattner94af4142002-12-25 05:13:53 +00001473 BuildMI(BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +00001474}
1475
Chris Lattner55f6fab2003-01-16 18:07:23 +00001476// getBlockAfter - Return the basic block which occurs lexically after the
1477// specified one.
1478static inline BasicBlock *getBlockAfter(BasicBlock *BB) {
1479 Function::iterator I = BB; ++I; // Get iterator to next block
1480 return I != BB->getParent()->end() ? &*I : 0;
1481}
1482
Chris Lattner51b49a92002-11-02 19:45:49 +00001483/// visitBranchInst - Handle conditional and unconditional branches here. Note
1484/// that since code layout is frozen at this point, that if we are trying to
1485/// jump to a block that is the immediate successor of the current block, we can
Chris Lattner6d40c192003-01-16 16:43:00 +00001486/// just make a fall-through (but we don't currently).
Chris Lattner51b49a92002-11-02 19:45:49 +00001487///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001488void X86ISel::visitBranchInst(BranchInst &BI) {
Brian Gaekeea9ca672004-04-28 04:19:37 +00001489 // Update machine-CFG edges
1490 BB->addSuccessor (MBBMap[BI.getSuccessor(0)]);
1491 if (BI.isConditional())
1492 BB->addSuccessor (MBBMap[BI.getSuccessor(1)]);
1493
Chris Lattner55f6fab2003-01-16 18:07:23 +00001494 BasicBlock *NextBB = getBlockAfter(BI.getParent()); // BB after current one
1495
1496 if (!BI.isConditional()) { // Unconditional branch?
Chris Lattnercf93cdd2004-01-30 22:13:44 +00001497 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001498 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner6d40c192003-01-16 16:43:00 +00001499 return;
1500 }
1501
1502 // See if we can fold the setcc into the branch itself...
Chris Lattner307ecba2004-03-30 22:39:09 +00001503 SetCondInst *SCI = canFoldSetCCIntoBranchOrSelect(BI.getCondition());
Chris Lattner6d40c192003-01-16 16:43:00 +00001504 if (SCI == 0) {
1505 // Nope, cannot fold setcc into this branch. Emit a branch on a condition
1506 // computed some other way...
Chris Lattner065faeb2002-12-28 20:24:02 +00001507 unsigned condReg = getReg(BI.getCondition());
Chris Lattner68626c22004-03-31 22:22:36 +00001508 BuildMI(BB, X86::TEST8rr, 2).addReg(condReg).addReg(condReg);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001509 if (BI.getSuccessor(1) == NextBB) {
1510 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001511 BuildMI(BB, X86::JNE, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001512 } else {
Brian Gaeke9f088e42004-05-14 06:54:56 +00001513 BuildMI(BB, X86::JE, 1).addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001514
1515 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001516 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001517 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001518 return;
Chris Lattner94af4142002-12-25 05:13:53 +00001519 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001520
1521 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
Chris Lattner58c41fe2003-08-24 19:19:47 +00001522 MachineBasicBlock::iterator MII = BB->end();
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001523 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), BB,MII);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001524
1525 const Type *CompTy = SCI->getOperand(0)->getType();
1526 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
Chris Lattner6d40c192003-01-16 16:43:00 +00001527
Chris Lattnerb2acc512003-10-19 21:09:10 +00001528
Chris Lattner6d40c192003-01-16 16:43:00 +00001529 // LLVM -> X86 signed X86 unsigned
1530 // ----- ---------- ------------
1531 // seteq -> je je
1532 // setne -> jne jne
1533 // setlt -> jl jb
Chris Lattner55f6fab2003-01-16 18:07:23 +00001534 // setge -> jge jae
Chris Lattner6d40c192003-01-16 16:43:00 +00001535 // setgt -> jg ja
1536 // setle -> jle jbe
Chris Lattnerb2acc512003-10-19 21:09:10 +00001537 // ----
1538 // js // Used by comparison with 0 optimization
1539 // jns
1540
1541 static const unsigned OpcodeTab[2][8] = {
1542 { X86::JE, X86::JNE, X86::JB, X86::JAE, X86::JA, X86::JBE, 0, 0 },
1543 { X86::JE, X86::JNE, X86::JL, X86::JGE, X86::JG, X86::JLE,
1544 X86::JS, X86::JNS },
Chris Lattner6d40c192003-01-16 16:43:00 +00001545 };
1546
Chris Lattner55f6fab2003-01-16 18:07:23 +00001547 if (BI.getSuccessor(0) != NextBB) {
Brian Gaeke9f088e42004-05-14 06:54:56 +00001548 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1)
1549 .addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001550 if (BI.getSuccessor(1) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001551 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001552 } else {
1553 // Change to the inverse condition...
1554 if (BI.getSuccessor(1) != NextBB) {
1555 OpNum ^= 1;
Brian Gaeke9f088e42004-05-14 06:54:56 +00001556 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1)
1557 .addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001558 }
1559 }
Chris Lattner2df035b2002-11-02 19:27:56 +00001560}
1561
Chris Lattner3e130a22003-01-13 00:32:26 +00001562
1563/// doCall - This emits an abstract call instruction, setting up the arguments
1564/// and the return value as appropriate. For the actual function call itself,
1565/// it inserts the specified CallMI instruction into the stream.
1566///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001567void X86ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
1568 const std::vector<ValueRecord> &Args) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001569 // Count how many bytes are to be pushed on the stack...
1570 unsigned NumBytes = 0;
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001571
Chris Lattner3e130a22003-01-13 00:32:26 +00001572 if (!Args.empty()) {
1573 for (unsigned i = 0, e = Args.size(); i != e; ++i)
1574 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001575 case cByte: case cShort: case cInt:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001576 NumBytes += 4; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001577 case cLong:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001578 NumBytes += 8; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001579 case cFP:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001580 NumBytes += Args[i].Ty == Type::FloatTy ? 4 : 8;
1581 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001582 default: assert(0 && "Unknown class!");
1583 }
1584
1585 // Adjust the stack pointer for the new arguments...
Chris Lattneree352852004-02-29 07:22:16 +00001586 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addImm(NumBytes);
Chris Lattner065faeb2002-12-28 20:24:02 +00001587
1588 // Arguments go on the stack in reverse order, as specified by the ABI.
1589 unsigned ArgOffset = 0;
Chris Lattner3e130a22003-01-13 00:32:26 +00001590 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Chris Lattnerce6096f2004-03-01 02:34:08 +00001591 unsigned ArgReg;
Chris Lattner3e130a22003-01-13 00:32:26 +00001592 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001593 case cByte:
Chris Lattner2b10b082004-05-12 16:35:04 +00001594 if (Args[i].Val && isa<ConstantBool>(Args[i].Val)) {
1595 addRegOffset(BuildMI(BB, X86::MOV32mi, 5), X86::ESP, ArgOffset)
1596 .addImm(Args[i].Val == ConstantBool::True);
1597 break;
1598 }
1599 // FALL THROUGH
Chris Lattner21585222004-03-01 02:42:43 +00001600 case cShort:
1601 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1602 // Zero/Sign extend constant, then stuff into memory.
1603 ConstantInt *Val = cast<ConstantInt>(Args[i].Val);
1604 Val = cast<ConstantInt>(ConstantExpr::getCast(Val, Type::IntTy));
1605 addRegOffset(BuildMI(BB, X86::MOV32mi, 5), X86::ESP, ArgOffset)
1606 .addImm(Val->getRawValue() & 0xFFFFFFFF);
1607 } else {
1608 // Promote arg to 32 bits wide into a temporary register...
1609 ArgReg = makeAnotherReg(Type::UIntTy);
1610 promote32(ArgReg, Args[i]);
1611 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1612 X86::ESP, ArgOffset).addReg(ArgReg);
1613 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001614 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001615 case cInt:
Chris Lattner21585222004-03-01 02:42:43 +00001616 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1617 unsigned Val = cast<ConstantInt>(Args[i].Val)->getRawValue();
1618 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1619 X86::ESP, ArgOffset).addImm(Val);
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00001620 } else if (Args[i].Val && isa<ConstantPointerNull>(Args[i].Val)) {
1621 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1622 X86::ESP, ArgOffset).addImm(0);
Chris Lattner10902622005-04-21 19:11:03 +00001623 } else if (Args[i].Val && isa<GlobalValue>(Args[i].Val)) {
1624 addRegOffset(BuildMI(BB, X86::MOV32mi, 5), X86::ESP, ArgOffset)
1625 .addGlobalAddress(cast<GlobalValue>(Args[i].Val));
Chris Lattner21585222004-03-01 02:42:43 +00001626 } else {
1627 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
1628 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1629 X86::ESP, ArgOffset).addReg(ArgReg);
1630 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001631 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001632 case cLong:
Chris Lattner92900a62004-04-06 03:23:00 +00001633 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1634 uint64_t Val = cast<ConstantInt>(Args[i].Val)->getRawValue();
1635 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1636 X86::ESP, ArgOffset).addImm(Val & ~0U);
1637 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1638 X86::ESP, ArgOffset+4).addImm(Val >> 32ULL);
1639 } else {
1640 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
1641 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1642 X86::ESP, ArgOffset).addReg(ArgReg);
1643 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1644 X86::ESP, ArgOffset+4).addReg(ArgReg+1);
1645 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001646 ArgOffset += 4; // 8 byte entry, not 4.
1647 break;
1648
Chris Lattner065faeb2002-12-28 20:24:02 +00001649 case cFP:
Chris Lattner7ab65932005-01-08 05:45:24 +00001650 if (ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(Args[i].Val)) {
Chris Lattner8c926282005-01-08 06:59:50 +00001651 // Store constant FP values with integer instructions to avoid having
1652 // to load the constants from the constant pool then do a store.
Chris Lattner7ab65932005-01-08 05:45:24 +00001653 if (CFP->getType() == Type::FloatTy) {
1654 union {
1655 unsigned I;
1656 float F;
1657 } V;
1658 V.F = CFP->getValue();
1659 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1660 X86::ESP, ArgOffset).addImm(V.I);
1661 } else {
1662 union {
1663 uint64_t I;
1664 double F;
1665 } V;
1666 V.F = CFP->getValue();
1667 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1668 X86::ESP, ArgOffset).addImm((unsigned)V.I);
1669 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1670 X86::ESP, ArgOffset+4).addImm(unsigned(V.I >> 32));
1671 ArgOffset += 4; // 8 byte entry, not 4.
1672 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001673 } else {
Chris Lattner7ab65932005-01-08 05:45:24 +00001674 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
1675 if (Args[i].Ty == Type::FloatTy) {
1676 addRegOffset(BuildMI(BB, X86::FST32m, 5),
1677 X86::ESP, ArgOffset).addReg(ArgReg);
1678 } else {
1679 assert(Args[i].Ty == Type::DoubleTy && "Unknown FP type!");
1680 addRegOffset(BuildMI(BB, X86::FST64m, 5),
1681 X86::ESP, ArgOffset).addReg(ArgReg);
1682 ArgOffset += 4; // 8 byte entry, not 4.
1683 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001684 }
1685 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001686
Chris Lattner3e130a22003-01-13 00:32:26 +00001687 default: assert(0 && "Unknown class!");
Chris Lattner065faeb2002-12-28 20:24:02 +00001688 }
1689 ArgOffset += 4;
Chris Lattner94af4142002-12-25 05:13:53 +00001690 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001691 } else {
Chris Lattneree352852004-02-29 07:22:16 +00001692 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addImm(0);
Chris Lattner94af4142002-12-25 05:13:53 +00001693 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +00001694
Chris Lattner3e130a22003-01-13 00:32:26 +00001695 BB->push_back(CallMI);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001696
Chris Lattneree352852004-02-29 07:22:16 +00001697 BuildMI(BB, X86::ADJCALLSTACKUP, 1).addImm(NumBytes);
Chris Lattnera3243642002-12-04 23:45:28 +00001698
1699 // If there is a return value, scavenge the result from the location the call
1700 // leaves it in...
1701 //
Chris Lattner3e130a22003-01-13 00:32:26 +00001702 if (Ret.Ty != Type::VoidTy) {
1703 unsigned DestClass = getClassB(Ret.Ty);
1704 switch (DestClass) {
Brian Gaeke20244b72002-12-12 15:33:40 +00001705 case cByte:
1706 case cShort:
1707 case cInt: {
1708 // Integral results are in %eax, or the appropriate portion
1709 // thereof.
1710 static const unsigned regRegMove[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001711 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr
Brian Gaeke20244b72002-12-12 15:33:40 +00001712 };
1713 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
Chris Lattner3e130a22003-01-13 00:32:26 +00001714 BuildMI(BB, regRegMove[DestClass], 1, Ret.Reg).addReg(AReg[DestClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001715 break;
Brian Gaeke20244b72002-12-12 15:33:40 +00001716 }
Chris Lattner94af4142002-12-25 05:13:53 +00001717 case cFP: // Floating-point return values live in %ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +00001718 BuildMI(BB, X86::FpGETRESULT, 1, Ret.Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001719 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001720 case cLong: // Long values are left in EDX:EAX
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001721 BuildMI(BB, X86::MOV32rr, 1, Ret.Reg).addReg(X86::EAX);
1722 BuildMI(BB, X86::MOV32rr, 1, Ret.Reg+1).addReg(X86::EDX);
Chris Lattner3e130a22003-01-13 00:32:26 +00001723 break;
1724 default: assert(0 && "Unknown class!");
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001725 }
Chris Lattnera3243642002-12-04 23:45:28 +00001726 }
Brian Gaekefa8d5712002-11-22 11:07:01 +00001727}
Chris Lattner2df035b2002-11-02 19:27:56 +00001728
Chris Lattner3e130a22003-01-13 00:32:26 +00001729
1730/// visitCallInst - Push args on stack and do a procedure call instruction.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001731void X86ISel::visitCallInst(CallInst &CI) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001732 MachineInstr *TheCall;
1733 if (Function *F = CI.getCalledFunction()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001734 // Is it an intrinsic function call?
Brian Gaeked0fde302003-11-11 22:41:34 +00001735 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001736 visitIntrinsicCall(ID, CI); // Special intrinsics are not handled here
1737 return;
1738 }
1739
Chris Lattner3e130a22003-01-13 00:32:26 +00001740 // Emit a CALL instruction with PC-relative displacement.
1741 TheCall = BuildMI(X86::CALLpcrel32, 1).addGlobalAddress(F, true);
1742 } else { // Emit an indirect call...
1743 unsigned Reg = getReg(CI.getCalledValue());
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001744 TheCall = BuildMI(X86::CALL32r, 1).addReg(Reg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001745 }
1746
1747 std::vector<ValueRecord> Args;
1748 for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001749 Args.push_back(ValueRecord(CI.getOperand(i)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001750
1751 unsigned DestReg = CI.getType() != Type::VoidTy ? getReg(CI) : 0;
1752 doCall(ValueRecord(DestReg, CI.getType()), TheCall, Args);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001753}
Chris Lattner3e130a22003-01-13 00:32:26 +00001754
Chris Lattner44827152003-12-28 09:47:19 +00001755/// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
1756/// function, lowering any calls to unknown intrinsic functions into the
1757/// equivalent LLVM code.
Misha Brukman538607f2004-03-01 23:53:11 +00001758///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001759void X86ISel::LowerUnknownIntrinsicFunctionCalls(Function &F) {
Chris Lattner44827152003-12-28 09:47:19 +00001760 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
1761 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
1762 if (CallInst *CI = dyn_cast<CallInst>(I++))
1763 if (Function *F = CI->getCalledFunction())
1764 switch (F->getIntrinsicID()) {
Chris Lattneraed386e2003-12-28 09:53:23 +00001765 case Intrinsic::not_intrinsic:
Chris Lattner317201d2004-03-13 00:24:00 +00001766 case Intrinsic::vastart:
1767 case Intrinsic::vacopy:
1768 case Intrinsic::vaend:
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001769 case Intrinsic::returnaddress:
1770 case Intrinsic::frameaddress:
Chris Lattner915e5e52004-02-12 17:53:22 +00001771 case Intrinsic::memcpy:
Chris Lattner2a0f2242004-02-14 04:46:05 +00001772 case Intrinsic::memset:
Chris Lattnerdc572442004-06-15 21:36:44 +00001773 case Intrinsic::isunordered:
John Criswell4ffff9e2004-04-08 20:31:47 +00001774 case Intrinsic::readport:
1775 case Intrinsic::writeport:
Chris Lattner44827152003-12-28 09:47:19 +00001776 // We directly implement these intrinsics
1777 break;
John Criswelle5a4c152004-04-13 22:13:14 +00001778 case Intrinsic::readio: {
1779 // On X86, memory operations are in-order. Lower this intrinsic
1780 // into a volatile load.
Chris Lattnerb4fe76c2004-06-11 04:31:10 +00001781 LoadInst * LI = new LoadInst(CI->getOperand(1), "", true, CI);
1782 CI->replaceAllUsesWith(LI);
1783 BB->getInstList().erase(CI);
John Criswelle5a4c152004-04-13 22:13:14 +00001784 break;
1785 }
1786 case Intrinsic::writeio: {
1787 // On X86, memory operations are in-order. Lower this intrinsic
1788 // into a volatile store.
Chris Lattnerb4fe76c2004-06-11 04:31:10 +00001789 StoreInst *LI = new StoreInst(CI->getOperand(1),
1790 CI->getOperand(2), true, CI);
1791 CI->replaceAllUsesWith(LI);
1792 BB->getInstList().erase(CI);
John Criswelle5a4c152004-04-13 22:13:14 +00001793 break;
1794 }
Chris Lattner44827152003-12-28 09:47:19 +00001795 default:
1796 // All other intrinsic calls we must lower.
1797 Instruction *Before = CI->getPrev();
Chris Lattnerf70e0c22003-12-28 21:23:38 +00001798 TM.getIntrinsicLowering().LowerIntrinsicCall(CI);
Chris Lattner44827152003-12-28 09:47:19 +00001799 if (Before) { // Move iterator to instruction after call
Chris Lattnerb4fe76c2004-06-11 04:31:10 +00001800 I = Before; ++I;
Chris Lattner44827152003-12-28 09:47:19 +00001801 } else {
1802 I = BB->begin();
1803 }
1804 }
Chris Lattner44827152003-12-28 09:47:19 +00001805}
1806
Misha Brukmaneae1bf12004-09-21 18:21:21 +00001807void X86ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001808 unsigned TmpReg1, TmpReg2;
1809 switch (ID) {
Chris Lattner5634b9f2004-03-13 00:24:52 +00001810 case Intrinsic::vastart:
Chris Lattnereca195e2003-05-08 19:44:13 +00001811 // Get the address of the first vararg value...
Chris Lattner73815062003-10-18 05:56:40 +00001812 TmpReg1 = getReg(CI);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001813 addFrameReference(BuildMI(BB, X86::LEA32r, 5, TmpReg1), VarArgsFrameIndex);
Chris Lattnereca195e2003-05-08 19:44:13 +00001814 return;
1815
Chris Lattner5634b9f2004-03-13 00:24:52 +00001816 case Intrinsic::vacopy:
Chris Lattner73815062003-10-18 05:56:40 +00001817 TmpReg1 = getReg(CI);
1818 TmpReg2 = getReg(CI.getOperand(1));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001819 BuildMI(BB, X86::MOV32rr, 1, TmpReg1).addReg(TmpReg2);
Chris Lattnereca195e2003-05-08 19:44:13 +00001820 return;
Chris Lattner5634b9f2004-03-13 00:24:52 +00001821 case Intrinsic::vaend: return; // Noop on X86
Chris Lattnereca195e2003-05-08 19:44:13 +00001822
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001823 case Intrinsic::returnaddress:
1824 case Intrinsic::frameaddress:
1825 TmpReg1 = getReg(CI);
1826 if (cast<Constant>(CI.getOperand(1))->isNullValue()) {
Chris Lattner8cdbc352004-12-17 00:46:51 +00001827 if (ReturnAddressIndex == 0) {
Chris Lattner11cf7aa2004-12-17 00:07:46 +00001828 // Set up a frame object for the return address.
1829 ReturnAddressIndex = F->getFrameInfo()->CreateFixedObject(4, -4);
1830 }
1831
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001832 if (ID == Intrinsic::returnaddress) {
1833 // Just load the return address
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001834 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, TmpReg1),
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001835 ReturnAddressIndex);
1836 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001837 addFrameReference(BuildMI(BB, X86::LEA32r, 4, TmpReg1),
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001838 ReturnAddressIndex, -4);
1839 }
1840 } else {
1841 // Values other than zero are not implemented yet.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001842 BuildMI(BB, X86::MOV32ri, 1, TmpReg1).addImm(0);
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001843 }
1844 return;
1845
Chris Lattnerdc572442004-06-15 21:36:44 +00001846 case Intrinsic::isunordered:
1847 TmpReg1 = getReg(CI.getOperand(1));
1848 TmpReg2 = getReg(CI.getOperand(2));
1849 emitUCOMr(BB, BB->end(), TmpReg2, TmpReg1);
1850 TmpReg2 = getReg(CI);
1851 BuildMI(BB, X86::SETPr, 0, TmpReg2);
1852 return;
1853
Chris Lattner915e5e52004-02-12 17:53:22 +00001854 case Intrinsic::memcpy: {
1855 assert(CI.getNumOperands() == 5 && "Illegal llvm.memcpy call!");
1856 unsigned Align = 1;
1857 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1858 Align = AlignC->getRawValue();
1859 if (Align == 0) Align = 1;
1860 }
1861
1862 // Turn the byte code into # iterations
Chris Lattner915e5e52004-02-12 17:53:22 +00001863 unsigned CountReg;
Chris Lattner2a0f2242004-02-14 04:46:05 +00001864 unsigned Opcode;
Chris Lattner915e5e52004-02-12 17:53:22 +00001865 switch (Align & 3) {
1866 case 2: // WORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001867 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1868 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
1869 } else {
1870 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001871 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001872 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
Chris Lattner07122832004-02-13 23:36:47 +00001873 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001874 Opcode = X86::REP_MOVSW;
Chris Lattner915e5e52004-02-12 17:53:22 +00001875 break;
1876 case 0: // DWORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001877 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1878 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
1879 } else {
1880 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001881 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001882 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
Chris Lattner07122832004-02-13 23:36:47 +00001883 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001884 Opcode = X86::REP_MOVSD;
Chris Lattner915e5e52004-02-12 17:53:22 +00001885 break;
Chris Lattner8dd8d262004-02-26 01:20:02 +00001886 default: // BYTE aligned
Chris Lattner07122832004-02-13 23:36:47 +00001887 CountReg = getReg(CI.getOperand(3));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001888 Opcode = X86::REP_MOVSB;
Chris Lattner915e5e52004-02-12 17:53:22 +00001889 break;
1890 }
1891
1892 // No matter what the alignment is, we put the source in ESI, the
1893 // destination in EDI, and the count in ECX.
1894 TmpReg1 = getReg(CI.getOperand(1));
1895 TmpReg2 = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001896 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
1897 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
1898 BuildMI(BB, X86::MOV32rr, 1, X86::ESI).addReg(TmpReg2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001899 BuildMI(BB, Opcode, 0);
1900 return;
1901 }
1902 case Intrinsic::memset: {
1903 assert(CI.getNumOperands() == 5 && "Illegal llvm.memset call!");
1904 unsigned Align = 1;
1905 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1906 Align = AlignC->getRawValue();
1907 if (Align == 0) Align = 1;
Chris Lattner915e5e52004-02-12 17:53:22 +00001908 }
1909
Chris Lattner2a0f2242004-02-14 04:46:05 +00001910 // Turn the byte code into # iterations
Chris Lattner2a0f2242004-02-14 04:46:05 +00001911 unsigned CountReg;
1912 unsigned Opcode;
1913 if (ConstantInt *ValC = dyn_cast<ConstantInt>(CI.getOperand(2))) {
1914 unsigned Val = ValC->getRawValue() & 255;
1915
1916 // If the value is a constant, then we can potentially use larger copies.
1917 switch (Align & 3) {
1918 case 2: // WORD aligned
1919 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001920 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001921 } else {
1922 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001923 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001924 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001925 }
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001926 BuildMI(BB, X86::MOV16ri, 1, X86::AX).addImm((Val << 8) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001927 Opcode = X86::REP_STOSW;
1928 break;
1929 case 0: // DWORD aligned
1930 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001931 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001932 } else {
1933 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001934 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001935 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001936 }
1937 Val = (Val << 8) | Val;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001938 BuildMI(BB, X86::MOV32ri, 1, X86::EAX).addImm((Val << 16) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001939 Opcode = X86::REP_STOSD;
1940 break;
Chris Lattner8dd8d262004-02-26 01:20:02 +00001941 default: // BYTE aligned
Chris Lattner2a0f2242004-02-14 04:46:05 +00001942 CountReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001943 BuildMI(BB, X86::MOV8ri, 1, X86::AL).addImm(Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001944 Opcode = X86::REP_STOSB;
1945 break;
1946 }
1947 } else {
1948 // If it's not a constant value we are storing, just fall back. We could
1949 // try to be clever to form 16 bit and 32 bit values, but we don't yet.
1950 unsigned ValReg = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001951 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001952 CountReg = getReg(CI.getOperand(3));
1953 Opcode = X86::REP_STOSB;
1954 }
1955
1956 // No matter what the alignment is, we put the source in ESI, the
1957 // destination in EDI, and the count in ECX.
1958 TmpReg1 = getReg(CI.getOperand(1));
1959 //TmpReg2 = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001960 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
1961 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001962 BuildMI(BB, Opcode, 0);
Chris Lattner915e5e52004-02-12 17:53:22 +00001963 return;
1964 }
1965
Chris Lattner87e18de2004-04-13 17:20:37 +00001966 case Intrinsic::readport: {
1967 // First, determine that the size of the operand falls within the acceptable
1968 // range for this architecture.
John Criswell4ffff9e2004-04-08 20:31:47 +00001969 //
Chris Lattner87e18de2004-04-13 17:20:37 +00001970 if (getClassB(CI.getOperand(1)->getType()) != cShort) {
John Criswellca6ea0f2004-04-08 22:39:13 +00001971 std::cerr << "llvm.readport: Address size is not 16 bits\n";
Chris Lattner87e18de2004-04-13 17:20:37 +00001972 exit(1);
John Criswellca6ea0f2004-04-08 22:39:13 +00001973 }
John Criswell4ffff9e2004-04-08 20:31:47 +00001974
John Criswell4ffff9e2004-04-08 20:31:47 +00001975 // Now, move the I/O port address into the DX register and use the IN
1976 // instruction to get the input data.
1977 //
Chris Lattner87e18de2004-04-13 17:20:37 +00001978 unsigned Class = getClass(CI.getCalledFunction()->getReturnType());
1979 unsigned DestReg = getReg(CI);
John Criswell4ffff9e2004-04-08 20:31:47 +00001980
Chris Lattner87e18de2004-04-13 17:20:37 +00001981 // If the port is a single-byte constant, use the immediate form.
1982 if (ConstantInt *C = dyn_cast<ConstantInt>(CI.getOperand(1)))
1983 if ((C->getRawValue() & 255) == C->getRawValue()) {
1984 switch (Class) {
1985 case cByte:
1986 BuildMI(BB, X86::IN8ri, 1).addImm((unsigned char)C->getRawValue());
1987 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
1988 return;
1989 case cShort:
1990 BuildMI(BB, X86::IN16ri, 1).addImm((unsigned char)C->getRawValue());
1991 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AX);
1992 return;
1993 case cInt:
1994 BuildMI(BB, X86::IN32ri, 1).addImm((unsigned char)C->getRawValue());
1995 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::EAX);
1996 return;
1997 }
1998 }
1999
2000 unsigned Reg = getReg(CI.getOperand(1));
2001 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Reg);
2002 switch (Class) {
2003 case cByte:
2004 BuildMI(BB, X86::IN8rr, 0);
2005 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
2006 break;
2007 case cShort:
2008 BuildMI(BB, X86::IN16rr, 0);
2009 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AX);
2010 break;
2011 case cInt:
2012 BuildMI(BB, X86::IN32rr, 0);
2013 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::EAX);
2014 break;
2015 default:
2016 std::cerr << "Cannot do input on this data type";
John Criswellca6ea0f2004-04-08 22:39:13 +00002017 exit (1);
2018 }
John Criswell4ffff9e2004-04-08 20:31:47 +00002019 return;
Chris Lattner87e18de2004-04-13 17:20:37 +00002020 }
John Criswell4ffff9e2004-04-08 20:31:47 +00002021
Chris Lattner87e18de2004-04-13 17:20:37 +00002022 case Intrinsic::writeport: {
2023 // First, determine that the size of the operand falls within the
2024 // acceptable range for this architecture.
2025 if (getClass(CI.getOperand(2)->getType()) != cShort) {
2026 std::cerr << "llvm.writeport: Address size is not 16 bits\n";
2027 exit(1);
2028 }
2029
2030 unsigned Class = getClassB(CI.getOperand(1)->getType());
2031 unsigned ValReg = getReg(CI.getOperand(1));
2032 switch (Class) {
2033 case cByte:
2034 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
2035 break;
2036 case cShort:
2037 BuildMI(BB, X86::MOV16rr, 1, X86::AX).addReg(ValReg);
2038 break;
2039 case cInt:
2040 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(ValReg);
2041 break;
2042 default:
2043 std::cerr << "llvm.writeport: invalid data type for X86 target";
2044 exit(1);
2045 }
2046
2047
2048 // If the port is a single-byte constant, use the immediate form.
2049 if (ConstantInt *C = dyn_cast<ConstantInt>(CI.getOperand(2)))
2050 if ((C->getRawValue() & 255) == C->getRawValue()) {
2051 static const unsigned O[] = { X86::OUT8ir, X86::OUT16ir, X86::OUT32ir };
2052 BuildMI(BB, O[Class], 1).addImm((unsigned char)C->getRawValue());
2053 return;
2054 }
2055
2056 // Otherwise, move the I/O port address into the DX register and the value
2057 // to write into the AL/AX/EAX register.
2058 static const unsigned Opc[] = { X86::OUT8rr, X86::OUT16rr, X86::OUT32rr };
2059 unsigned Reg = getReg(CI.getOperand(2));
2060 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Reg);
2061 BuildMI(BB, Opc[Class], 0);
2062 return;
2063 }
2064
Chris Lattner44827152003-12-28 09:47:19 +00002065 default: assert(0 && "Error: unknown intrinsics should have been lowered!");
Chris Lattnereca195e2003-05-08 19:44:13 +00002066 }
2067}
2068
Chris Lattner7dee5da2004-03-08 01:58:35 +00002069static bool isSafeToFoldLoadIntoInstruction(LoadInst &LI, Instruction &User) {
2070 if (LI.getParent() != User.getParent())
2071 return false;
2072 BasicBlock::iterator It = &LI;
2073 // Check all of the instructions between the load and the user. We should
2074 // really use alias analysis here, but for now we just do something simple.
2075 for (++It; It != BasicBlock::iterator(&User); ++It) {
2076 switch (It->getOpcode()) {
Chris Lattner85c84e72004-03-18 06:29:54 +00002077 case Instruction::Free:
Chris Lattner7dee5da2004-03-08 01:58:35 +00002078 case Instruction::Store:
2079 case Instruction::Call:
2080 case Instruction::Invoke:
2081 return false;
Chris Lattner133dbb12004-04-12 03:02:48 +00002082 case Instruction::Load:
2083 if (cast<LoadInst>(It)->isVolatile() && LI.isVolatile())
2084 return false;
2085 break;
Chris Lattner7dee5da2004-03-08 01:58:35 +00002086 }
2087 }
2088 return true;
2089}
2090
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002091/// visitSimpleBinary - Implement simple binary operators for integral types...
2092/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, 4 for
2093/// Xor.
Misha Brukman538607f2004-03-01 23:53:11 +00002094///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002095void X86ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002096 unsigned DestReg = getReg(B);
2097 MachineBasicBlock::iterator MI = BB->end();
Chris Lattner721d2d42004-03-08 01:18:36 +00002098 Value *Op0 = B.getOperand(0), *Op1 = B.getOperand(1);
Chris Lattnerc81e6ba2004-05-10 15:15:55 +00002099 unsigned Class = getClassB(B.getType());
Chris Lattner721d2d42004-03-08 01:18:36 +00002100
Chris Lattnerde95c9e2004-10-17 06:10:40 +00002101 // If this is AND X, C, and it is only used by a setcc instruction, it will
2102 // be folded. There is no need to emit this instruction.
2103 if (B.hasOneUse() && OperatorClass == 2 && isa<ConstantInt>(Op1))
2104 if (Class == cByte || Class == cShort || Class == cInt) {
2105 Instruction *Use = cast<Instruction>(B.use_back());
2106 if (isa<SetCondInst>(Use) &&
2107 Use->getOperand(1) == Constant::getNullValue(B.getType())) {
2108 switch (getSetCCNumber(Use->getOpcode())) {
2109 case 0:
2110 case 1:
2111 return;
2112 default:
2113 if (B.getType()->isSigned()) return;
2114 }
2115 }
2116 }
2117
Chris Lattner7dee5da2004-03-08 01:58:35 +00002118 // Special case: op Reg, load [mem]
Chris Lattnerc81e6ba2004-05-10 15:15:55 +00002119 if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
Chris Lattnerccd97962004-06-17 22:15:25 +00002120 Op0->hasOneUse() &&
Chris Lattnerc81e6ba2004-05-10 15:15:55 +00002121 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
Chris Lattner7dee5da2004-03-08 01:58:35 +00002122 if (!B.swapOperands())
2123 std::swap(Op0, Op1); // Make sure any loads are in the RHS.
2124
Chris Lattnerccd97962004-06-17 22:15:25 +00002125 if (isa<LoadInst>(Op1) && Class != cLong && Op1->hasOneUse() &&
Chris Lattner7dee5da2004-03-08 01:58:35 +00002126 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
2127
Chris Lattner95157f72004-04-11 22:05:45 +00002128 unsigned Opcode;
2129 if (Class != cFP) {
2130 static const unsigned OpcodeTab[][3] = {
2131 // Arithmetic operators
2132 { X86::ADD8rm, X86::ADD16rm, X86::ADD32rm }, // ADD
2133 { X86::SUB8rm, X86::SUB16rm, X86::SUB32rm }, // SUB
2134
2135 // Bitwise operators
2136 { X86::AND8rm, X86::AND16rm, X86::AND32rm }, // AND
2137 { X86:: OR8rm, X86:: OR16rm, X86:: OR32rm }, // OR
2138 { X86::XOR8rm, X86::XOR16rm, X86::XOR32rm }, // XOR
2139 };
2140 Opcode = OpcodeTab[OperatorClass][Class];
2141 } else {
2142 static const unsigned OpcodeTab[][2] = {
2143 { X86::FADD32m, X86::FADD64m }, // ADD
2144 { X86::FSUB32m, X86::FSUB64m }, // SUB
2145 };
2146 const Type *Ty = Op0->getType();
2147 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
2148 Opcode = OpcodeTab[OperatorClass][Ty == Type::DoubleTy];
2149 }
Chris Lattner7dee5da2004-03-08 01:58:35 +00002150
Chris Lattner7dee5da2004-03-08 01:58:35 +00002151 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002152 if (AllocaInst *AI =
2153 dyn_castFixedAlloca(cast<LoadInst>(Op1)->getOperand(0))) {
2154 unsigned FI = getFixedSizedAllocaFI(AI);
2155 addFrameReference(BuildMI(BB, Opcode, 5, DestReg).addReg(Op0r), FI);
2156
2157 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00002158 X86AddressMode AM;
2159 getAddressingMode(cast<LoadInst>(Op1)->getOperand(0), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002160
Reid Spencerfc989e12004-08-30 00:13:26 +00002161 addFullAddress(BuildMI(BB, Opcode, 5, DestReg).addReg(Op0r), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002162 }
Chris Lattner7dee5da2004-03-08 01:58:35 +00002163 return;
2164 }
2165
Chris Lattner95157f72004-04-11 22:05:45 +00002166 // If this is a floating point subtract, check to see if we can fold the first
2167 // operand in.
2168 if (Class == cFP && OperatorClass == 1 &&
2169 isa<LoadInst>(Op0) &&
2170 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B)) {
2171 const Type *Ty = Op0->getType();
2172 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
2173 unsigned Opcode = Ty == Type::FloatTy ? X86::FSUBR32m : X86::FSUBR64m;
2174
Chris Lattner95157f72004-04-11 22:05:45 +00002175 unsigned Op1r = getReg(Op1);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002176 if (AllocaInst *AI =
2177 dyn_castFixedAlloca(cast<LoadInst>(Op0)->getOperand(0))) {
2178 unsigned FI = getFixedSizedAllocaFI(AI);
2179 addFrameReference(BuildMI(BB, Opcode, 5, DestReg).addReg(Op1r), FI);
2180 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00002181 X86AddressMode AM;
2182 getAddressingMode(cast<LoadInst>(Op0)->getOperand(0), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002183
Reid Spencerfc989e12004-08-30 00:13:26 +00002184 addFullAddress(BuildMI(BB, Opcode, 5, DestReg).addReg(Op1r), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002185 }
Chris Lattner95157f72004-04-11 22:05:45 +00002186 return;
2187 }
2188
Chris Lattner721d2d42004-03-08 01:18:36 +00002189 emitSimpleBinaryOperation(BB, MI, Op0, Op1, OperatorClass, DestReg);
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002190}
Chris Lattner3e130a22003-01-13 00:32:26 +00002191
Chris Lattner6621ed92004-04-11 21:23:56 +00002192
2193/// emitBinaryFPOperation - This method handles emission of floating point
2194/// Add (0), Sub (1), Mul (2), and Div (3) operations.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002195void X86ISel::emitBinaryFPOperation(MachineBasicBlock *BB,
2196 MachineBasicBlock::iterator IP,
2197 Value *Op0, Value *Op1,
2198 unsigned OperatorClass, unsigned DestReg) {
Chris Lattner6621ed92004-04-11 21:23:56 +00002199 // Special case: op Reg, <const fp>
2200 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1))
2201 if (!Op1C->isExactlyValue(+0.0) && !Op1C->isExactlyValue(+1.0)) {
2202 // Create a constant pool entry for this constant.
2203 MachineConstantPool *CP = F->getConstantPool();
2204 unsigned CPI = CP->getConstantPoolIndex(Op1C);
2205 const Type *Ty = Op1->getType();
2206
2207 static const unsigned OpcodeTab[][4] = {
2208 { X86::FADD32m, X86::FSUB32m, X86::FMUL32m, X86::FDIV32m }, // Float
2209 { X86::FADD64m, X86::FSUB64m, X86::FMUL64m, X86::FDIV64m }, // Double
2210 };
2211
2212 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
2213 unsigned Opcode = OpcodeTab[Ty != Type::FloatTy][OperatorClass];
2214 unsigned Op0r = getReg(Op0, BB, IP);
2215 addConstantPoolReference(BuildMI(*BB, IP, Opcode, 5,
2216 DestReg).addReg(Op0r), CPI);
2217 return;
2218 }
2219
Chris Lattner13c07fe2004-04-12 00:12:04 +00002220 // Special case: R1 = op <const fp>, R2
Chris Lattner6621ed92004-04-11 21:23:56 +00002221 if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op0))
2222 if (CFP->isExactlyValue(-0.0) && OperatorClass == 1) {
2223 // -0.0 - X === -X
2224 unsigned op1Reg = getReg(Op1, BB, IP);
2225 BuildMI(*BB, IP, X86::FCHS, 1, DestReg).addReg(op1Reg);
2226 return;
2227 } else if (!CFP->isExactlyValue(+0.0) && !CFP->isExactlyValue(+1.0)) {
Chris Lattner13c07fe2004-04-12 00:12:04 +00002228 // R1 = op CST, R2 --> R1 = opr R2, CST
Chris Lattner6621ed92004-04-11 21:23:56 +00002229
2230 // Create a constant pool entry for this constant.
2231 MachineConstantPool *CP = F->getConstantPool();
2232 unsigned CPI = CP->getConstantPoolIndex(CFP);
2233 const Type *Ty = CFP->getType();
2234
2235 static const unsigned OpcodeTab[][4] = {
2236 { X86::FADD32m, X86::FSUBR32m, X86::FMUL32m, X86::FDIVR32m }, // Float
2237 { X86::FADD64m, X86::FSUBR64m, X86::FMUL64m, X86::FDIVR64m }, // Double
2238 };
2239
2240 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2241 unsigned Opcode = OpcodeTab[Ty != Type::FloatTy][OperatorClass];
2242 unsigned Op1r = getReg(Op1, BB, IP);
2243 addConstantPoolReference(BuildMI(*BB, IP, Opcode, 5,
2244 DestReg).addReg(Op1r), CPI);
2245 return;
2246 }
2247
2248 // General case.
2249 static const unsigned OpcodeTab[4] = {
2250 X86::FpADD, X86::FpSUB, X86::FpMUL, X86::FpDIV
2251 };
2252
2253 unsigned Opcode = OpcodeTab[OperatorClass];
2254 unsigned Op0r = getReg(Op0, BB, IP);
2255 unsigned Op1r = getReg(Op1, BB, IP);
2256 BuildMI(*BB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
2257}
2258
Chris Lattnerb2acc512003-10-19 21:09:10 +00002259/// emitSimpleBinaryOperation - Implement simple binary operators for integral
2260/// types... OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for
2261/// Or, 4 for Xor.
Chris Lattner68aad932002-11-02 20:13:22 +00002262///
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002263/// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
2264/// and constant expression support.
Chris Lattnerb2acc512003-10-19 21:09:10 +00002265///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002266void X86ISel::emitSimpleBinaryOperation(MachineBasicBlock *MBB,
2267 MachineBasicBlock::iterator IP,
2268 Value *Op0, Value *Op1,
2269 unsigned OperatorClass,
2270 unsigned DestReg) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002271 unsigned Class = getClassB(Op0->getType());
Chris Lattnerb2acc512003-10-19 21:09:10 +00002272
Chris Lattner6621ed92004-04-11 21:23:56 +00002273 if (Class == cFP) {
2274 assert(OperatorClass < 2 && "No logical ops for FP!");
2275 emitBinaryFPOperation(MBB, IP, Op0, Op1, OperatorClass, DestReg);
2276 return;
2277 }
2278
Chris Lattner48b0c972004-04-11 20:26:20 +00002279 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0))
Chris Lattner667ea022004-06-18 00:50:37 +00002280 if (OperatorClass == 1) {
Chris Lattner48b0c972004-04-11 20:26:20 +00002281 static unsigned const NEGTab[] = {
2282 X86::NEG8r, X86::NEG16r, X86::NEG32r, 0, X86::NEG32r
2283 };
Chris Lattner667ea022004-06-18 00:50:37 +00002284
2285 // sub 0, X -> neg X
2286 if (CI->isNullValue()) {
2287 unsigned op1Reg = getReg(Op1, MBB, IP);
2288 BuildMI(*MBB, IP, NEGTab[Class], 1, DestReg).addReg(op1Reg);
Chris Lattner48b0c972004-04-11 20:26:20 +00002289
Chris Lattner667ea022004-06-18 00:50:37 +00002290 if (Class == cLong) {
2291 // We just emitted: Dl = neg Sl
2292 // Now emit : T = addc Sh, 0
2293 // : Dh = neg T
2294 unsigned T = makeAnotherReg(Type::IntTy);
2295 BuildMI(*MBB, IP, X86::ADC32ri, 2, T).addReg(op1Reg+1).addImm(0);
2296 BuildMI(*MBB, IP, X86::NEG32r, 1, DestReg+1).addReg(T);
2297 }
2298 return;
2299 } else if (Op1->hasOneUse() && Class != cLong) {
2300 // sub C, X -> tmp = neg X; DestReg = add tmp, C. This is better
2301 // than copying C into a temporary register, because of register
2302 // pressure (tmp and destreg can share a register.
2303 static unsigned const ADDRITab[] = {
2304 X86::ADD8ri, X86::ADD16ri, X86::ADD32ri, 0, X86::ADD32ri
2305 };
2306 unsigned op1Reg = getReg(Op1, MBB, IP);
2307 unsigned Tmp = makeAnotherReg(Op0->getType());
2308 BuildMI(*MBB, IP, NEGTab[Class], 1, Tmp).addReg(op1Reg);
Chris Lattner30483732004-06-20 07:49:54 +00002309 BuildMI(*MBB, IP, ADDRITab[Class], 2,
2310 DestReg).addReg(Tmp).addImm(CI->getRawValue());
Chris Lattner667ea022004-06-18 00:50:37 +00002311 return;
Chris Lattnerb2acc512003-10-19 21:09:10 +00002312 }
Chris Lattner48b0c972004-04-11 20:26:20 +00002313 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002314
Chris Lattner48b0c972004-04-11 20:26:20 +00002315 // Special case: op Reg, <const int>
2316 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner721d2d42004-03-08 01:18:36 +00002317 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002318
Chris Lattner721d2d42004-03-08 01:18:36 +00002319 // xor X, -1 -> not X
2320 if (OperatorClass == 4 && Op1C->isAllOnesValue()) {
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002321 static unsigned const NOTTab[] = {
2322 X86::NOT8r, X86::NOT16r, X86::NOT32r, 0, X86::NOT32r
2323 };
Chris Lattner721d2d42004-03-08 01:18:36 +00002324 BuildMI(*MBB, IP, NOTTab[Class], 1, DestReg).addReg(Op0r);
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002325 if (Class == cLong) // Invert the top part too
2326 BuildMI(*MBB, IP, X86::NOT32r, 1, DestReg+1).addReg(Op0r+1);
Chris Lattner721d2d42004-03-08 01:18:36 +00002327 return;
2328 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002329
Chris Lattner721d2d42004-03-08 01:18:36 +00002330 // add X, -1 -> dec X
Chris Lattner06521672004-04-06 03:36:57 +00002331 if (OperatorClass == 0 && Op1C->isAllOnesValue() && Class != cLong) {
2332 // Note that we can't use dec for 64-bit decrements, because it does not
2333 // set the carry flag!
2334 static unsigned const DECTab[] = { X86::DEC8r, X86::DEC16r, X86::DEC32r };
Chris Lattner721d2d42004-03-08 01:18:36 +00002335 BuildMI(*MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
2336 return;
2337 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002338
Chris Lattner721d2d42004-03-08 01:18:36 +00002339 // add X, 1 -> inc X
Chris Lattner06521672004-04-06 03:36:57 +00002340 if (OperatorClass == 0 && Op1C->equalsInt(1) && Class != cLong) {
2341 // Note that we can't use inc for 64-bit increments, because it does not
2342 // set the carry flag!
2343 static unsigned const INCTab[] = { X86::INC8r, X86::INC16r, X86::INC32r };
Alkis Evlogimenosbee8a092004-04-02 18:11:32 +00002344 BuildMI(*MBB, IP, INCTab[Class], 1, DestReg).addReg(Op0r);
Chris Lattner721d2d42004-03-08 01:18:36 +00002345 return;
2346 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002347
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002348 static const unsigned OpcodeTab[][5] = {
Chris Lattner721d2d42004-03-08 01:18:36 +00002349 // Arithmetic operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002350 { X86::ADD8ri, X86::ADD16ri, X86::ADD32ri, 0, X86::ADD32ri }, // ADD
2351 { X86::SUB8ri, X86::SUB16ri, X86::SUB32ri, 0, X86::SUB32ri }, // SUB
Chris Lattnerb2acc512003-10-19 21:09:10 +00002352
Chris Lattner721d2d42004-03-08 01:18:36 +00002353 // Bitwise operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002354 { X86::AND8ri, X86::AND16ri, X86::AND32ri, 0, X86::AND32ri }, // AND
2355 { X86:: OR8ri, X86:: OR16ri, X86:: OR32ri, 0, X86::OR32ri }, // OR
2356 { X86::XOR8ri, X86::XOR16ri, X86::XOR32ri, 0, X86::XOR32ri }, // XOR
Chris Lattner721d2d42004-03-08 01:18:36 +00002357 };
2358
Chris Lattner721d2d42004-03-08 01:18:36 +00002359 unsigned Opcode = OpcodeTab[OperatorClass][Class];
Chris Lattner33f7fa32004-04-06 03:15:53 +00002360 unsigned Op1l = cast<ConstantInt>(Op1C)->getRawValue();
Chris Lattner721d2d42004-03-08 01:18:36 +00002361
Chris Lattner33f7fa32004-04-06 03:15:53 +00002362 if (Class != cLong) {
2363 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addImm(Op1l);
2364 return;
Chris Lattner6621ed92004-04-11 21:23:56 +00002365 }
2366
2367 // If this is a long value and the high or low bits have a special
2368 // property, emit some special cases.
2369 unsigned Op1h = cast<ConstantInt>(Op1C)->getRawValue() >> 32LL;
2370
2371 // If the constant is zero in the low 32-bits, just copy the low part
2372 // across and apply the normal 32-bit operation to the high parts. There
2373 // will be no carry or borrow into the top.
2374 if (Op1l == 0) {
2375 if (OperatorClass != 2) // All but and...
2376 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg).addReg(Op0r);
2377 else
2378 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
2379 BuildMI(*MBB, IP, OpcodeTab[OperatorClass][cLong], 2, DestReg+1)
2380 .addReg(Op0r+1).addImm(Op1h);
Chris Lattner33f7fa32004-04-06 03:15:53 +00002381 return;
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002382 }
Chris Lattner6621ed92004-04-11 21:23:56 +00002383
2384 // If this is a logical operation and the top 32-bits are zero, just
2385 // operate on the lower 32.
2386 if (Op1h == 0 && OperatorClass > 1) {
2387 BuildMI(*MBB, IP, OpcodeTab[OperatorClass][cLong], 2, DestReg)
2388 .addReg(Op0r).addImm(Op1l);
2389 if (OperatorClass != 2) // All but and
2390 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(Op0r+1);
2391 else
2392 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
2393 return;
2394 }
2395
2396 // TODO: We could handle lots of other special cases here, such as AND'ing
2397 // with 0xFFFFFFFF00000000 -> noop, etc.
2398
2399 // Otherwise, code generate the full operation with a constant.
2400 static const unsigned TopTab[] = {
2401 X86::ADC32ri, X86::SBB32ri, X86::AND32ri, X86::OR32ri, X86::XOR32ri
2402 };
2403
2404 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addImm(Op1l);
2405 BuildMI(*MBB, IP, TopTab[OperatorClass], 2, DestReg+1)
2406 .addReg(Op0r+1).addImm(Op1h);
2407 return;
Chris Lattner721d2d42004-03-08 01:18:36 +00002408 }
2409
2410 // Finally, handle the general case now.
Chris Lattner7ba92302004-04-06 02:13:25 +00002411 static const unsigned OpcodeTab[][5] = {
Chris Lattner721d2d42004-03-08 01:18:36 +00002412 // Arithmetic operators
Chris Lattner6621ed92004-04-11 21:23:56 +00002413 { X86::ADD8rr, X86::ADD16rr, X86::ADD32rr, 0, X86::ADD32rr }, // ADD
2414 { X86::SUB8rr, X86::SUB16rr, X86::SUB32rr, 0, X86::SUB32rr }, // SUB
Chris Lattner721d2d42004-03-08 01:18:36 +00002415
Chris Lattnerb2acc512003-10-19 21:09:10 +00002416 // Bitwise operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002417 { X86::AND8rr, X86::AND16rr, X86::AND32rr, 0, X86::AND32rr }, // AND
2418 { X86:: OR8rr, X86:: OR16rr, X86:: OR32rr, 0, X86:: OR32rr }, // OR
2419 { X86::XOR8rr, X86::XOR16rr, X86::XOR32rr, 0, X86::XOR32rr }, // XOR
Chris Lattnerb2acc512003-10-19 21:09:10 +00002420 };
Chris Lattner721d2d42004-03-08 01:18:36 +00002421
Chris Lattnerb2acc512003-10-19 21:09:10 +00002422 unsigned Opcode = OpcodeTab[OperatorClass][Class];
Chris Lattner721d2d42004-03-08 01:18:36 +00002423 unsigned Op0r = getReg(Op0, MBB, IP);
2424 unsigned Op1r = getReg(Op1, MBB, IP);
2425 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
2426
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002427 if (Class == cLong) { // Handle the upper 32 bits of long values...
Chris Lattner721d2d42004-03-08 01:18:36 +00002428 static const unsigned TopTab[] = {
2429 X86::ADC32rr, X86::SBB32rr, X86::AND32rr, X86::OR32rr, X86::XOR32rr
2430 };
2431 BuildMI(*MBB, IP, TopTab[OperatorClass], 2,
2432 DestReg+1).addReg(Op0r+1).addReg(Op1r+1);
2433 }
Chris Lattnere2954c82002-11-02 20:04:26 +00002434}
2435
Chris Lattner3e130a22003-01-13 00:32:26 +00002436/// doMultiply - Emit appropriate instructions to multiply together the
2437/// registers op0Reg and op1Reg, and put the result in DestReg. The type of the
2438/// result should be given as DestTy.
2439///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002440void X86ISel::doMultiply(MachineBasicBlock *MBB,
2441 MachineBasicBlock::iterator MBBI,
2442 unsigned DestReg, const Type *DestTy,
2443 unsigned op0Reg, unsigned op1Reg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002444 unsigned Class = getClass(DestTy);
Chris Lattner94af4142002-12-25 05:13:53 +00002445 switch (Class) {
Chris Lattner0f1c4612003-06-21 17:16:58 +00002446 case cInt:
2447 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002448 BuildMI(*MBB, MBBI, Class == cInt ? X86::IMUL32rr:X86::IMUL16rr, 2, DestReg)
Chris Lattner0f1c4612003-06-21 17:16:58 +00002449 .addReg(op0Reg).addReg(op1Reg);
2450 return;
2451 case cByte:
2452 // Must use the MUL instruction, which forces use of AL...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002453 BuildMI(*MBB, MBBI, X86::MOV8rr, 1, X86::AL).addReg(op0Reg);
2454 BuildMI(*MBB, MBBI, X86::MUL8r, 1).addReg(op1Reg);
2455 BuildMI(*MBB, MBBI, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
Chris Lattner0f1c4612003-06-21 17:16:58 +00002456 return;
Chris Lattner94af4142002-12-25 05:13:53 +00002457 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00002458 case cLong: assert(0 && "doMultiply cannot operate on LONG values!");
Chris Lattner94af4142002-12-25 05:13:53 +00002459 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002460}
2461
Chris Lattnerb2acc512003-10-19 21:09:10 +00002462// ExactLog2 - This function solves for (Val == 1 << (N-1)) and returns N. It
2463// returns zero when the input is not exactly a power of two.
2464static unsigned ExactLog2(unsigned Val) {
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002465 if (Val == 0 || (Val & (Val-1))) return 0;
Chris Lattnerb2acc512003-10-19 21:09:10 +00002466 unsigned Count = 0;
2467 while (Val != 1) {
Chris Lattnerb2acc512003-10-19 21:09:10 +00002468 Val >>= 1;
2469 ++Count;
2470 }
2471 return Count+1;
2472}
2473
Chris Lattner462fa822004-04-11 20:56:28 +00002474
2475/// doMultiplyConst - This function is specialized to efficiently codegen an 8,
2476/// 16, or 32-bit integer multiply by a constant.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002477void X86ISel::doMultiplyConst(MachineBasicBlock *MBB,
2478 MachineBasicBlock::iterator IP,
2479 unsigned DestReg, const Type *DestTy,
2480 unsigned op0Reg, unsigned ConstRHS) {
Chris Lattner6ab06d52004-04-06 04:55:43 +00002481 static const unsigned MOVrrTab[] = {X86::MOV8rr, X86::MOV16rr, X86::MOV32rr};
2482 static const unsigned MOVriTab[] = {X86::MOV8ri, X86::MOV16ri, X86::MOV32ri};
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002483 static const unsigned ADDrrTab[] = {X86::ADD8rr, X86::ADD16rr, X86::ADD32rr};
Chris Lattner596b97f2004-07-19 23:47:21 +00002484 static const unsigned NEGrTab[] = {X86::NEG8r , X86::NEG16r , X86::NEG32r };
Chris Lattner6ab06d52004-04-06 04:55:43 +00002485
Chris Lattnerb2acc512003-10-19 21:09:10 +00002486 unsigned Class = getClass(DestTy);
Chris Lattner596b97f2004-07-19 23:47:21 +00002487 unsigned TmpReg;
Chris Lattnerb2acc512003-10-19 21:09:10 +00002488
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002489 // Handle special cases here.
2490 switch (ConstRHS) {
Chris Lattner596b97f2004-07-19 23:47:21 +00002491 case -2:
2492 TmpReg = makeAnotherReg(DestTy);
2493 BuildMI(*MBB, IP, NEGrTab[Class], 1, TmpReg).addReg(op0Reg);
2494 BuildMI(*MBB, IP, ADDrrTab[Class], 1,DestReg).addReg(TmpReg).addReg(TmpReg);
2495 return;
2496 case -1:
2497 BuildMI(*MBB, IP, NEGrTab[Class], 1, DestReg).addReg(op0Reg);
2498 return;
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002499 case 0:
Chris Lattner6ab06d52004-04-06 04:55:43 +00002500 BuildMI(*MBB, IP, MOVriTab[Class], 1, DestReg).addImm(0);
2501 return;
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002502 case 1:
Chris Lattner6ab06d52004-04-06 04:55:43 +00002503 BuildMI(*MBB, IP, MOVrrTab[Class], 1, DestReg).addReg(op0Reg);
2504 return;
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002505 case 2:
2506 BuildMI(*MBB, IP, ADDrrTab[Class], 1,DestReg).addReg(op0Reg).addReg(op0Reg);
2507 return;
2508 case 3:
2509 case 5:
2510 case 9:
2511 if (Class == cInt) {
Reid Spencerfc989e12004-08-30 00:13:26 +00002512 X86AddressMode AM;
2513 AM.BaseType = X86AddressMode::RegBase;
2514 AM.Base.Reg = op0Reg;
2515 AM.Scale = ConstRHS-1;
2516 AM.IndexReg = op0Reg;
2517 AM.Disp = 0;
2518 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 5, DestReg), AM);
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002519 return;
2520 }
Chris Lattner596b97f2004-07-19 23:47:21 +00002521 case -3:
2522 case -5:
2523 case -9:
2524 if (Class == cInt) {
2525 TmpReg = makeAnotherReg(DestTy);
Reid Spencerfc989e12004-08-30 00:13:26 +00002526 X86AddressMode AM;
2527 AM.BaseType = X86AddressMode::RegBase;
2528 AM.Base.Reg = op0Reg;
2529 AM.Scale = -ConstRHS-1;
2530 AM.IndexReg = op0Reg;
2531 AM.Disp = 0;
2532 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 5, TmpReg), AM);
Chris Lattner596b97f2004-07-19 23:47:21 +00002533 BuildMI(*MBB, IP, NEGrTab[Class], 1, DestReg).addReg(TmpReg);
2534 return;
2535 }
Chris Lattner6ab06d52004-04-06 04:55:43 +00002536 }
2537
Chris Lattnerb2acc512003-10-19 21:09:10 +00002538 // If the element size is exactly a power of 2, use a shift to get it.
2539 if (unsigned Shift = ExactLog2(ConstRHS)) {
2540 switch (Class) {
2541 default: assert(0 && "Unknown class for this function!");
2542 case cByte:
Chris Lattner596b97f2004-07-19 23:47:21 +00002543 BuildMI(*MBB, IP, X86::SHL8ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002544 return;
2545 case cShort:
Chris Lattner596b97f2004-07-19 23:47:21 +00002546 BuildMI(*MBB, IP, X86::SHL16ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002547 return;
2548 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002549 BuildMI(*MBB, IP, X86::SHL32ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002550 return;
2551 }
2552 }
Chris Lattner596b97f2004-07-19 23:47:21 +00002553
2554 // If the element size is a negative power of 2, use a shift/neg to get it.
2555 if (unsigned Shift = ExactLog2(-ConstRHS)) {
2556 TmpReg = makeAnotherReg(DestTy);
2557 BuildMI(*MBB, IP, NEGrTab[Class], 1, TmpReg).addReg(op0Reg);
2558 switch (Class) {
2559 default: assert(0 && "Unknown class for this function!");
2560 case cByte:
2561 BuildMI(*MBB, IP, X86::SHL8ri,2, DestReg).addReg(TmpReg).addImm(Shift-1);
2562 return;
2563 case cShort:
2564 BuildMI(*MBB, IP, X86::SHL16ri,2, DestReg).addReg(TmpReg).addImm(Shift-1);
2565 return;
2566 case cInt:
2567 BuildMI(*MBB, IP, X86::SHL32ri,2, DestReg).addReg(TmpReg).addImm(Shift-1);
2568 return;
2569 }
2570 }
Chris Lattnerc01d1232003-10-20 03:42:58 +00002571
2572 if (Class == cShort) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002573 BuildMI(*MBB, IP, X86::IMUL16rri,2,DestReg).addReg(op0Reg).addImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00002574 return;
2575 } else if (Class == cInt) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002576 BuildMI(*MBB, IP, X86::IMUL32rri,2,DestReg).addReg(op0Reg).addImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00002577 return;
2578 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002579
2580 // Most general case, emit a normal multiply...
Chris Lattner596b97f2004-07-19 23:47:21 +00002581 TmpReg = makeAnotherReg(DestTy);
Chris Lattneree352852004-02-29 07:22:16 +00002582 BuildMI(*MBB, IP, MOVriTab[Class], 1, TmpReg).addImm(ConstRHS);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002583
2584 // Emit a MUL to multiply the register holding the index by
2585 // elementSize, putting the result in OffsetReg.
2586 doMultiply(MBB, IP, DestReg, DestTy, op0Reg, TmpReg);
2587}
2588
Chris Lattnerca9671d2002-11-02 20:28:58 +00002589/// visitMul - Multiplies are not simple binary operators because they must deal
2590/// with the EAX register explicitly.
2591///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002592void X86ISel::visitMul(BinaryOperator &I) {
Chris Lattner462fa822004-04-11 20:56:28 +00002593 unsigned ResultReg = getReg(I);
2594
Chris Lattner95157f72004-04-11 22:05:45 +00002595 Value *Op0 = I.getOperand(0);
2596 Value *Op1 = I.getOperand(1);
2597
2598 // Fold loads into floating point multiplies.
2599 if (getClass(Op0->getType()) == cFP) {
2600 if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1))
2601 if (!I.swapOperands())
2602 std::swap(Op0, Op1); // Make sure any loads are in the RHS.
2603 if (LoadInst *LI = dyn_cast<LoadInst>(Op1))
2604 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2605 const Type *Ty = Op0->getType();
2606 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2607 unsigned Opcode = Ty == Type::FloatTy ? X86::FMUL32m : X86::FMUL64m;
2608
Chris Lattner95157f72004-04-11 22:05:45 +00002609 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002610 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2611 unsigned FI = getFixedSizedAllocaFI(AI);
2612 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), FI);
2613 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00002614 X86AddressMode AM;
2615 getAddressingMode(LI->getOperand(0), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002616
Reid Spencerfc989e12004-08-30 00:13:26 +00002617 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002618 }
Chris Lattner95157f72004-04-11 22:05:45 +00002619 return;
2620 }
2621 }
2622
Chris Lattner462fa822004-04-11 20:56:28 +00002623 MachineBasicBlock::iterator IP = BB->end();
Chris Lattner95157f72004-04-11 22:05:45 +00002624 emitMultiply(BB, IP, Op0, Op1, ResultReg);
Chris Lattner462fa822004-04-11 20:56:28 +00002625}
2626
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002627void X86ISel::emitMultiply(MachineBasicBlock *MBB,
2628 MachineBasicBlock::iterator IP,
2629 Value *Op0, Value *Op1, unsigned DestReg) {
Chris Lattner462fa822004-04-11 20:56:28 +00002630 MachineBasicBlock &BB = *MBB;
2631 TypeClass Class = getClass(Op0->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +00002632
2633 // Simple scalar multiply?
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002634 unsigned Op0Reg = getReg(Op0, &BB, IP);
Chris Lattner462fa822004-04-11 20:56:28 +00002635 switch (Class) {
2636 case cByte:
2637 case cShort:
2638 case cInt:
2639 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner462fa822004-04-11 20:56:28 +00002640 unsigned Val = (unsigned)CI->getRawValue(); // Isn't a 64-bit constant
2641 doMultiplyConst(&BB, IP, DestReg, Op0->getType(), Op0Reg, Val);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002642 } else {
Chris Lattner462fa822004-04-11 20:56:28 +00002643 unsigned Op1Reg = getReg(Op1, &BB, IP);
2644 doMultiply(&BB, IP, DestReg, Op1->getType(), Op0Reg, Op1Reg);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002645 }
Chris Lattner462fa822004-04-11 20:56:28 +00002646 return;
2647 case cFP:
Chris Lattner6621ed92004-04-11 21:23:56 +00002648 emitBinaryFPOperation(MBB, IP, Op0, Op1, 2, DestReg);
2649 return;
Chris Lattner462fa822004-04-11 20:56:28 +00002650 case cLong:
2651 break;
2652 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002653
Chris Lattner462fa822004-04-11 20:56:28 +00002654 // Long value. We have to do things the hard way...
2655 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2656 unsigned CLow = CI->getRawValue();
2657 unsigned CHi = CI->getRawValue() >> 32;
2658
2659 if (CLow == 0) {
2660 // If the low part of the constant is all zeros, things are simple.
2661 BuildMI(BB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
2662 doMultiplyConst(&BB, IP, DestReg+1, Type::UIntTy, Op0Reg, CHi);
2663 return;
2664 }
2665
2666 // Multiply the two low parts... capturing carry into EDX
2667 unsigned OverflowReg = 0;
2668 if (CLow == 1) {
2669 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(Op0Reg);
Chris Lattner028adc42004-04-06 04:29:36 +00002670 } else {
Chris Lattner462fa822004-04-11 20:56:28 +00002671 unsigned Op1RegL = makeAnotherReg(Type::UIntTy);
2672 OverflowReg = makeAnotherReg(Type::UIntTy);
2673 BuildMI(BB, IP, X86::MOV32ri, 1, Op1RegL).addImm(CLow);
2674 BuildMI(BB, IP, X86::MOV32rr, 1, X86::EAX).addReg(Op0Reg);
2675 BuildMI(BB, IP, X86::MUL32r, 1).addReg(Op1RegL); // AL*BL
Chris Lattner028adc42004-04-06 04:29:36 +00002676
Chris Lattner462fa822004-04-11 20:56:28 +00002677 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(X86::EAX); // AL*BL
2678 BuildMI(BB, IP, X86::MOV32rr, 1,
2679 OverflowReg).addReg(X86::EDX); // AL*BL >> 32
2680 }
2681
2682 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
2683 doMultiplyConst(&BB, IP, AHBLReg, Type::UIntTy, Op0Reg+1, CLow);
2684
2685 unsigned AHBLplusOverflowReg;
2686 if (OverflowReg) {
2687 AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
2688 BuildMI(BB, IP, X86::ADD32rr, 2, // AH*BL+(AL*BL >> 32)
Chris Lattner028adc42004-04-06 04:29:36 +00002689 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
Chris Lattner462fa822004-04-11 20:56:28 +00002690 } else {
2691 AHBLplusOverflowReg = AHBLReg;
2692 }
2693
2694 if (CHi == 0) {
2695 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg+1).addReg(AHBLplusOverflowReg);
2696 } else {
Chris Lattner028adc42004-04-06 04:29:36 +00002697 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
Chris Lattner462fa822004-04-11 20:56:28 +00002698 doMultiplyConst(&BB, IP, ALBHReg, Type::UIntTy, Op0Reg, CHi);
Chris Lattner028adc42004-04-06 04:29:36 +00002699
Chris Lattner462fa822004-04-11 20:56:28 +00002700 BuildMI(BB, IP, X86::ADD32rr, 2, // AL*BH + AH*BL + (AL*BL >> 32)
Chris Lattner028adc42004-04-06 04:29:36 +00002701 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
2702 }
Chris Lattner462fa822004-04-11 20:56:28 +00002703 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00002704 }
Chris Lattner462fa822004-04-11 20:56:28 +00002705
2706 // General 64x64 multiply
2707
2708 unsigned Op1Reg = getReg(Op1, &BB, IP);
2709 // Multiply the two low parts... capturing carry into EDX
2710 BuildMI(BB, IP, X86::MOV32rr, 1, X86::EAX).addReg(Op0Reg);
2711 BuildMI(BB, IP, X86::MUL32r, 1).addReg(Op1Reg); // AL*BL
2712
2713 unsigned OverflowReg = makeAnotherReg(Type::UIntTy);
2714 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(X86::EAX); // AL*BL
2715 BuildMI(BB, IP, X86::MOV32rr, 1,
2716 OverflowReg).addReg(X86::EDX); // AL*BL >> 32
2717
2718 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
2719 BuildMI(BB, IP, X86::IMUL32rr, 2,
2720 AHBLReg).addReg(Op0Reg+1).addReg(Op1Reg);
2721
2722 unsigned AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
2723 BuildMI(BB, IP, X86::ADD32rr, 2, // AH*BL+(AL*BL >> 32)
2724 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
2725
2726 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
2727 BuildMI(BB, IP, X86::IMUL32rr, 2,
2728 ALBHReg).addReg(Op0Reg).addReg(Op1Reg+1);
2729
2730 BuildMI(BB, IP, X86::ADD32rr, 2, // AL*BH + AH*BL + (AL*BL >> 32)
2731 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002732}
Chris Lattnerca9671d2002-11-02 20:28:58 +00002733
Chris Lattner06925362002-11-17 21:56:38 +00002734
Chris Lattnerf01729e2002-11-02 20:54:46 +00002735/// visitDivRem - Handle division and remainder instructions... these
2736/// instruction both require the same instructions to be generated, they just
2737/// select the result from a different register. Note that both of these
2738/// instructions work differently for signed and unsigned operands.
2739///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002740void X86ISel::visitDivRem(BinaryOperator &I) {
Chris Lattnercadff442003-10-23 17:21:43 +00002741 unsigned ResultReg = getReg(I);
Chris Lattner95157f72004-04-11 22:05:45 +00002742 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2743
2744 // Fold loads into floating point divides.
2745 if (getClass(Op0->getType()) == cFP) {
2746 if (LoadInst *LI = dyn_cast<LoadInst>(Op1))
2747 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2748 const Type *Ty = Op0->getType();
2749 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2750 unsigned Opcode = Ty == Type::FloatTy ? X86::FDIV32m : X86::FDIV64m;
2751
Chris Lattner95157f72004-04-11 22:05:45 +00002752 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002753 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2754 unsigned FI = getFixedSizedAllocaFI(AI);
2755 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), FI);
2756 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00002757 X86AddressMode AM;
2758 getAddressingMode(LI->getOperand(0), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002759
Reid Spencerfc989e12004-08-30 00:13:26 +00002760 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002761 }
Chris Lattner95157f72004-04-11 22:05:45 +00002762 return;
2763 }
2764
2765 if (LoadInst *LI = dyn_cast<LoadInst>(Op0))
2766 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2767 const Type *Ty = Op0->getType();
2768 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2769 unsigned Opcode = Ty == Type::FloatTy ? X86::FDIVR32m : X86::FDIVR64m;
2770
Chris Lattner95157f72004-04-11 22:05:45 +00002771 unsigned Op1r = getReg(Op1);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002772 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2773 unsigned FI = getFixedSizedAllocaFI(AI);
2774 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op1r), FI);
2775 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00002776 X86AddressMode AM;
2777 getAddressingMode(LI->getOperand(0), AM);
2778 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op1r), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002779 }
Chris Lattner95157f72004-04-11 22:05:45 +00002780 return;
2781 }
2782 }
2783
Chris Lattner94af4142002-12-25 05:13:53 +00002784
Chris Lattnercadff442003-10-23 17:21:43 +00002785 MachineBasicBlock::iterator IP = BB->end();
Chris Lattner95157f72004-04-11 22:05:45 +00002786 emitDivRemOperation(BB, IP, Op0, Op1,
Chris Lattner462fa822004-04-11 20:56:28 +00002787 I.getOpcode() == Instruction::Div, ResultReg);
Chris Lattnercadff442003-10-23 17:21:43 +00002788}
2789
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002790void X86ISel::emitDivRemOperation(MachineBasicBlock *BB,
2791 MachineBasicBlock::iterator IP,
2792 Value *Op0, Value *Op1, bool isDiv,
2793 unsigned ResultReg) {
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002794 const Type *Ty = Op0->getType();
2795 unsigned Class = getClass(Ty);
Chris Lattner94af4142002-12-25 05:13:53 +00002796 switch (Class) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002797 case cFP: // Floating point divide
Chris Lattnercadff442003-10-23 17:21:43 +00002798 if (isDiv) {
Chris Lattner6621ed92004-04-11 21:23:56 +00002799 emitBinaryFPOperation(BB, IP, Op0, Op1, 3, ResultReg);
2800 return;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00002801 } else { // Floating point remainder...
Chris Lattner462fa822004-04-11 20:56:28 +00002802 unsigned Op0Reg = getReg(Op0, BB, IP);
2803 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00002804 MachineInstr *TheCall =
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002805 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol("fmod", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00002806 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00002807 Args.push_back(ValueRecord(Op0Reg, Type::DoubleTy));
2808 Args.push_back(ValueRecord(Op1Reg, Type::DoubleTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00002809 doCall(ValueRecord(ResultReg, Type::DoubleTy), TheCall, Args);
2810 }
Chris Lattner94af4142002-12-25 05:13:53 +00002811 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00002812 case cLong: {
2813 static const char *FnName[] =
2814 { "__moddi3", "__divdi3", "__umoddi3", "__udivdi3" };
Chris Lattner462fa822004-04-11 20:56:28 +00002815 unsigned Op0Reg = getReg(Op0, BB, IP);
2816 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002817 unsigned NameIdx = Ty->isUnsigned()*2 + isDiv;
Chris Lattner3e130a22003-01-13 00:32:26 +00002818 MachineInstr *TheCall =
2819 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol(FnName[NameIdx], true);
2820
2821 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00002822 Args.push_back(ValueRecord(Op0Reg, Type::LongTy));
2823 Args.push_back(ValueRecord(Op1Reg, Type::LongTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00002824 doCall(ValueRecord(ResultReg, Type::LongTy), TheCall, Args);
2825 return;
2826 }
2827 case cByte: case cShort: case cInt:
Misha Brukmancf00c4a2003-10-10 17:57:28 +00002828 break; // Small integrals, handled below...
Chris Lattner3e130a22003-01-13 00:32:26 +00002829 default: assert(0 && "Unknown class!");
Chris Lattner94af4142002-12-25 05:13:53 +00002830 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00002831
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002832 static const unsigned MovOpcode[]={ X86::MOV8rr, X86::MOV16rr, X86::MOV32rr };
Chris Lattner2483f672004-10-06 05:01:07 +00002833 static const unsigned NEGOpcode[]={ X86::NEG8r, X86::NEG16r, X86::NEG32r };
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002834 static const unsigned SAROpcode[]={ X86::SAR8ri, X86::SAR16ri, X86::SAR32ri };
2835 static const unsigned SHROpcode[]={ X86::SHR8ri, X86::SHR16ri, X86::SHR32ri };
2836 static const unsigned ADDOpcode[]={ X86::ADD8rr, X86::ADD16rr, X86::ADD32rr };
2837
2838 // Special case signed division by power of 2.
Chris Lattner2483f672004-10-06 05:01:07 +00002839 if (ConstantSInt *CI = dyn_cast<ConstantSInt>(Op1))
2840 if (isDiv) {
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002841 assert(Class != cLong && "This doesn't handle 64-bit divides!");
2842 int V = CI->getValue();
2843
2844 if (V == 1) { // X /s 1 => X
2845 unsigned Op0Reg = getReg(Op0, BB, IP);
2846 BuildMI(*BB, IP, MovOpcode[Class], 1, ResultReg).addReg(Op0Reg);
2847 return;
2848 }
2849
2850 if (V == -1) { // X /s -1 => -X
2851 unsigned Op0Reg = getReg(Op0, BB, IP);
2852 BuildMI(*BB, IP, NEGOpcode[Class], 1, ResultReg).addReg(Op0Reg);
2853 return;
2854 }
2855
Chris Lattner610f1e22004-10-06 04:02:39 +00002856 if (V == 2 || V == -2) { // X /s 2
2857 static const unsigned CMPOpcode[] = {
2858 X86::CMP8ri, X86::CMP16ri, X86::CMP32ri
2859 };
2860 static const unsigned SBBOpcode[] = {
2861 X86::SBB8ri, X86::SBB16ri, X86::SBB32ri
2862 };
2863 unsigned Op0Reg = getReg(Op0, BB, IP);
2864 unsigned SignBit = 1 << (CI->getType()->getPrimitiveSize()*8-1);
2865 BuildMI(*BB, IP, CMPOpcode[Class], 2).addReg(Op0Reg).addImm(SignBit);
2866
2867 unsigned TmpReg = makeAnotherReg(Op0->getType());
2868 BuildMI(*BB, IP, SBBOpcode[Class], 2, TmpReg).addReg(Op0Reg).addImm(-1);
2869
2870 unsigned TmpReg2 = V == 2 ? ResultReg : makeAnotherReg(Op0->getType());
2871 BuildMI(*BB, IP, SAROpcode[Class], 2, TmpReg2).addReg(TmpReg).addImm(1);
2872 if (V == -2) {
2873 BuildMI(*BB, IP, NEGOpcode[Class], 1, ResultReg).addReg(TmpReg2);
2874 }
2875 return;
2876 }
2877
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002878 bool isNeg = false;
2879 if (V < 0) { // Not a positive power of 2?
2880 V = -V;
2881 isNeg = true; // Maybe it's a negative power of 2.
2882 }
2883 if (unsigned Log = ExactLog2(V)) {
2884 --Log;
2885 unsigned Op0Reg = getReg(Op0, BB, IP);
2886 unsigned TmpReg = makeAnotherReg(Op0->getType());
Chris Lattner3ffdff62004-10-06 04:19:43 +00002887 BuildMI(*BB, IP, SAROpcode[Class], 2, TmpReg)
2888 .addReg(Op0Reg).addImm(Log-1);
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002889 unsigned TmpReg2 = makeAnotherReg(Op0->getType());
2890 BuildMI(*BB, IP, SHROpcode[Class], 2, TmpReg2)
2891 .addReg(TmpReg).addImm(32-Log);
2892 unsigned TmpReg3 = makeAnotherReg(Op0->getType());
2893 BuildMI(*BB, IP, ADDOpcode[Class], 2, TmpReg3)
2894 .addReg(Op0Reg).addReg(TmpReg2);
2895
2896 unsigned TmpReg4 = isNeg ? makeAnotherReg(Op0->getType()) : ResultReg;
2897 BuildMI(*BB, IP, SAROpcode[Class], 2, TmpReg4)
Chris Lattner3ffdff62004-10-06 04:19:43 +00002898 .addReg(TmpReg3).addImm(Log);
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002899 if (isNeg)
2900 BuildMI(*BB, IP, NEGOpcode[Class], 1, ResultReg).addReg(TmpReg4);
2901 return;
2902 }
Chris Lattner2483f672004-10-06 05:01:07 +00002903 } else { // X % C
2904 assert(Class != cLong && "This doesn't handle 64-bit remainder!");
2905 int V = CI->getValue();
2906
2907 if (V == 2 || V == -2) { // X % 2, X % -2
Chris Lattner2483f672004-10-06 05:01:07 +00002908 static const unsigned SExtOpcode[] = { X86::CBW, X86::CWD, X86::CDQ };
2909 static const unsigned BaseReg[] = { X86::AL , X86::AX , X86::EAX };
2910 static const unsigned SExtReg[] = { X86::AH , X86::DX , X86::EDX };
2911 static const unsigned ANDOpcode[] = {
2912 X86::AND8ri, X86::AND16ri, X86::AND32ri
2913 };
2914 static const unsigned XOROpcode[] = {
2915 X86::XOR8rr, X86::XOR16rr, X86::XOR32rr
2916 };
2917 static const unsigned SUBOpcode[] = {
2918 X86::SUB8rr, X86::SUB16rr, X86::SUB32rr
2919 };
2920
2921 // Sign extend result into reg of -1 or 0.
2922 unsigned Op0Reg = getReg(Op0, BB, IP);
2923 BuildMI(*BB, IP, MovOpcode[Class], 1, BaseReg[Class]).addReg(Op0Reg);
2924 BuildMI(*BB, IP, SExtOpcode[Class], 0);
2925 unsigned TmpReg0 = makeAnotherReg(Op0->getType());
2926 BuildMI(*BB, IP, MovOpcode[Class], 1, TmpReg0).addReg(SExtReg[Class]);
2927
2928 unsigned TmpReg1 = makeAnotherReg(Op0->getType());
2929 BuildMI(*BB, IP, ANDOpcode[Class], 2, TmpReg1).addReg(Op0Reg).addImm(1);
2930
2931 unsigned TmpReg2 = makeAnotherReg(Op0->getType());
2932 BuildMI(*BB, IP, XOROpcode[Class], 2,
2933 TmpReg2).addReg(TmpReg1).addReg(TmpReg0);
2934 BuildMI(*BB, IP, SUBOpcode[Class], 2,
2935 ResultReg).addReg(TmpReg2).addReg(TmpReg0);
2936 return;
2937 }
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002938 }
2939
2940 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002941 static const unsigned ClrOpcode[]={ X86::MOV8ri, X86::MOV16ri, X86::MOV32ri };
Chris Lattnerf01729e2002-11-02 20:54:46 +00002942 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
Chris Lattner5384b382005-01-05 16:30:14 +00002943 static const unsigned SExOpcode[]={ X86::CBW , X86::CWD , X86::CDQ };
Chris Lattnerf01729e2002-11-02 20:54:46 +00002944
2945 static const unsigned DivOpcode[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002946 { X86::DIV8r , X86::DIV16r , X86::DIV32r , 0 }, // Unsigned division
2947 { X86::IDIV8r, X86::IDIV16r, X86::IDIV32r, 0 }, // Signed division
Chris Lattnerf01729e2002-11-02 20:54:46 +00002948 };
2949
Chris Lattnerf01729e2002-11-02 20:54:46 +00002950 unsigned Reg = Regs[Class];
2951 unsigned ExtReg = ExtRegs[Class];
Chris Lattnerf01729e2002-11-02 20:54:46 +00002952
2953 // Put the first operand into one of the A registers...
Chris Lattner462fa822004-04-11 20:56:28 +00002954 unsigned Op0Reg = getReg(Op0, BB, IP);
2955 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattneree352852004-02-29 07:22:16 +00002956 BuildMI(*BB, IP, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002957
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002958 if (Ty->isSigned()) {
Chris Lattner5384b382005-01-05 16:30:14 +00002959 // Emit a sign extension instruction.
2960 BuildMI(*BB, IP, SExOpcode[Class], 0);
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002961
2962 // Emit the appropriate divide or remainder instruction...
2963 BuildMI(*BB, IP, DivOpcode[1][Class], 1).addReg(Op1Reg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002964 } else {
Alkis Evlogimenosf998a7e2004-01-12 07:22:45 +00002965 // If unsigned, emit a zeroing instruction... (reg = 0)
Chris Lattneree352852004-02-29 07:22:16 +00002966 BuildMI(*BB, IP, ClrOpcode[Class], 2, ExtReg).addImm(0);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002967
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002968 // Emit the appropriate divide or remainder instruction...
2969 BuildMI(*BB, IP, DivOpcode[0][Class], 1).addReg(Op1Reg);
2970 }
Chris Lattner06925362002-11-17 21:56:38 +00002971
Chris Lattnerf01729e2002-11-02 20:54:46 +00002972 // Figure out which register we want to pick the result out of...
Chris Lattnercadff442003-10-23 17:21:43 +00002973 unsigned DestReg = isDiv ? Reg : ExtReg;
Chris Lattnerf01729e2002-11-02 20:54:46 +00002974
Chris Lattnerf01729e2002-11-02 20:54:46 +00002975 // Put the result into the destination register...
Chris Lattneree352852004-02-29 07:22:16 +00002976 BuildMI(*BB, IP, MovOpcode[Class], 1, ResultReg).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +00002977}
Chris Lattnere2954c82002-11-02 20:04:26 +00002978
Chris Lattner06925362002-11-17 21:56:38 +00002979
Brian Gaekea1719c92002-10-31 23:03:59 +00002980/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
2981/// for constant immediate shift values, and for constant immediate
2982/// shift values equal to 1. Even the general case is sort of special,
2983/// because the shift amount has to be in CL, not just any old register.
2984///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00002985void X86ISel::visitShiftInst(ShiftInst &I) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002986 MachineBasicBlock::iterator IP = BB->end ();
2987 emitShiftOperation (BB, IP, I.getOperand (0), I.getOperand (1),
2988 I.getOpcode () == Instruction::Shl, I.getType (),
2989 getReg (I));
2990}
2991
Chris Lattnerce7cafa2004-11-13 20:48:57 +00002992/// Emit code for a 'SHLD DestReg, Op0, Op1, Amt' operation, where Amt is a
2993/// constant.
2994void X86ISel::doSHLDConst(MachineBasicBlock *MBB,
2995 MachineBasicBlock::iterator IP,
2996 unsigned DestReg, unsigned Op0Reg, unsigned Op1Reg,
2997 unsigned Amt) {
2998 // SHLD is a very inefficient operation on every processor, try to do
2999 // somethign simpler for common values of 'Amt'.
3000 if (Amt == 0) {
3001 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg).addReg(Op0Reg);
3002 } else if (Amt == 1) {
3003 unsigned Tmp = makeAnotherReg(Type::UIntTy);
3004 BuildMI(*MBB, IP, X86::ADD32rr, 2, Tmp).addReg(Op1Reg).addReg(Op1Reg);
3005 BuildMI(*MBB, IP, X86::ADC32rr, 2, DestReg).addReg(Op0Reg).addReg(Op0Reg);
3006 } else if (Amt == 2 || Amt == 3) {
3007 // On the P4 and Athlon it is cheaper to replace shld ..., 2|3 with a
3008 // shift/lea pair. NOTE: This should not be done on the P6 family!
3009 unsigned Tmp = makeAnotherReg(Type::UIntTy);
3010 BuildMI(*MBB, IP, X86::SHR32ri, 2, Tmp).addReg(Op1Reg).addImm(32-Amt);
3011 X86AddressMode AM;
3012 AM.BaseType = X86AddressMode::RegBase;
3013 AM.Base.Reg = Tmp;
3014 AM.Scale = 1 << Amt;
3015 AM.IndexReg = Op0Reg;
3016 AM.Disp = 0;
3017 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 4, DestReg), AM);
3018 } else {
3019 // NOTE: It is always cheaper on the P4 to emit SHLD as two shifts and an OR
3020 // than it is to emit a real SHLD.
3021
3022 BuildMI(*MBB, IP, X86::SHLD32rri8, 3,
3023 DestReg).addReg(Op0Reg).addReg(Op1Reg).addImm(Amt);
3024 }
3025}
3026
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003027/// emitShiftOperation - Common code shared between visitShiftInst and
3028/// constant expression support.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003029void X86ISel::emitShiftOperation(MachineBasicBlock *MBB,
3030 MachineBasicBlock::iterator IP,
3031 Value *Op, Value *ShiftAmount,
3032 bool isLeftShift, const Type *ResultTy,
3033 unsigned DestReg) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003034 unsigned SrcReg = getReg (Op, MBB, IP);
3035 bool isSigned = ResultTy->isSigned ();
3036 unsigned Class = getClass (ResultTy);
Chris Lattnerde95c9e2004-10-17 06:10:40 +00003037
Chris Lattnerce7cafa2004-11-13 20:48:57 +00003038 static const unsigned ConstantOperand[][3] = {
3039 { X86::SHR8ri, X86::SHR16ri, X86::SHR32ri }, // SHR
3040 { X86::SAR8ri, X86::SAR16ri, X86::SAR32ri }, // SAR
3041 { X86::SHL8ri, X86::SHL16ri, X86::SHL32ri }, // SHL
3042 { X86::SHL8ri, X86::SHL16ri, X86::SHL32ri }, // SAL = SHL
Chris Lattner3e130a22003-01-13 00:32:26 +00003043 };
Chris Lattnerb1761fc2002-11-02 01:15:18 +00003044
Chris Lattnerce7cafa2004-11-13 20:48:57 +00003045 static const unsigned NonConstantOperand[][3] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003046 { X86::SHR8rCL, X86::SHR16rCL, X86::SHR32rCL }, // SHR
3047 { X86::SAR8rCL, X86::SAR16rCL, X86::SAR32rCL }, // SAR
3048 { X86::SHL8rCL, X86::SHL16rCL, X86::SHL32rCL }, // SHL
3049 { X86::SHL8rCL, X86::SHL16rCL, X86::SHL32rCL }, // SAL = SHL
Chris Lattner3e130a22003-01-13 00:32:26 +00003050 };
Chris Lattner796df732002-11-02 00:44:25 +00003051
Chris Lattnerce7cafa2004-11-13 20:48:57 +00003052 // Longs, as usual, are handled specially.
Chris Lattner3e130a22003-01-13 00:32:26 +00003053 if (Class == cLong) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003054 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00003055 unsigned Amount = CUI->getValue();
Chris Lattner62f5a942004-11-13 20:04:38 +00003056 if (Amount == 1 && isLeftShift) { // X << 1 == X+X
Chris Lattner44205ca2004-11-13 20:03:48 +00003057 BuildMI(*MBB, IP, X86::ADD32rr, 2,
3058 DestReg).addReg(SrcReg).addReg(SrcReg);
3059 BuildMI(*MBB, IP, X86::ADC32rr, 2,
3060 DestReg+1).addReg(SrcReg+1).addReg(SrcReg+1);
3061 } else if (Amount < 32) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003062 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
3063 if (isLeftShift) {
Chris Lattnerce7cafa2004-11-13 20:48:57 +00003064 doSHLDConst(MBB, IP, DestReg+1, SrcReg+1, SrcReg, Amount);
Chris Lattneree352852004-02-29 07:22:16 +00003065 BuildMI(*MBB, IP, Opc[2], 2, DestReg).addReg(SrcReg).addImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003066 } else {
Chris Lattnerce7cafa2004-11-13 20:48:57 +00003067 BuildMI(*MBB, IP, X86::SHRD32rri8, 3,
3068 DestReg).addReg(SrcReg ).addReg(SrcReg+1).addImm(Amount);
Chris Lattneree352852004-02-29 07:22:16 +00003069 BuildMI(*MBB, IP, Opc[2],2,DestReg+1).addReg(SrcReg+1).addImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003070 }
Chris Lattner36c625d2004-11-15 23:16:34 +00003071 } else if (Amount == 32) {
3072 if (isLeftShift) {
3073 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(SrcReg);
3074 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
3075 } else {
Chris Lattner39a83dc2004-11-16 18:40:52 +00003076 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg+1);
Chris Lattner36c625d2004-11-15 23:16:34 +00003077 if (!isSigned) {
3078 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
3079 } else {
3080 BuildMI(*MBB, IP, X86::SAR32ri, 2,
3081 DestReg+1).addReg(SrcReg).addImm(31);
3082 }
3083 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003084 } else { // Shifting more than 32 bits
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003085 Amount -= 32;
3086 if (isLeftShift) {
Chris Lattner36c625d2004-11-15 23:16:34 +00003087 BuildMI(*MBB, IP, X86::SHL32ri, 2,
3088 DestReg + 1).addReg(SrcReg).addImm(Amount);
Chris Lattner722070e2004-04-06 03:42:38 +00003089 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003090 } else {
Chris Lattner36c625d2004-11-15 23:16:34 +00003091 BuildMI(*MBB, IP, isSigned ? X86::SAR32ri : X86::SHR32ri, 2,
3092 DestReg).addReg(SrcReg+1).addImm(Amount);
Chris Lattner6d027f22005-04-06 20:59:35 +00003093 if (isSigned)
3094 BuildMI(*MBB, IP, X86::SAR32ri, 2,
3095 DestReg+1).addReg(SrcReg+1).addImm(31);
3096 else
3097 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003098 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003099 }
3100 } else {
Chris Lattner9171ef52003-06-01 01:56:54 +00003101 unsigned TmpReg = makeAnotherReg(Type::IntTy);
Chris Lattner9171ef52003-06-01 01:56:54 +00003102 if (!isLeftShift && isSigned) {
3103 // If this is a SHR of a Long, then we need to do funny sign extension
3104 // stuff. TmpReg gets the value to use as the high-part if we are
3105 // shifting more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003106 BuildMI(*MBB, IP, X86::SAR32ri, 2, TmpReg).addReg(SrcReg).addImm(31);
Chris Lattner9171ef52003-06-01 01:56:54 +00003107 } else {
3108 // Other shifts use a fixed zero value if the shift is more than 32
3109 // bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003110 BuildMI(*MBB, IP, X86::MOV32ri, 1, TmpReg).addImm(0);
Chris Lattner9171ef52003-06-01 01:56:54 +00003111 }
3112
3113 // Initialize CL with the shift amount...
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003114 unsigned ShiftAmountReg = getReg(ShiftAmount, MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003115 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00003116
3117 unsigned TmpReg2 = makeAnotherReg(Type::IntTy);
3118 unsigned TmpReg3 = makeAnotherReg(Type::IntTy);
3119 if (isLeftShift) {
3120 // TmpReg2 = shld inHi, inLo
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003121 BuildMI(*MBB, IP, X86::SHLD32rrCL,2,TmpReg2).addReg(SrcReg+1)
Chris Lattneree352852004-02-29 07:22:16 +00003122 .addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00003123 // TmpReg3 = shl inLo, CL
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003124 BuildMI(*MBB, IP, X86::SHL32rCL, 1, TmpReg3).addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00003125
3126 // Set the flags to indicate whether the shift was by more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003127 BuildMI(*MBB, IP, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00003128
3129 // DestHi = (>32) ? TmpReg3 : TmpReg2;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003130 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00003131 DestReg+1).addReg(TmpReg2).addReg(TmpReg3);
3132 // DestLo = (>32) ? TmpReg : TmpReg3;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003133 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003134 DestReg).addReg(TmpReg3).addReg(TmpReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00003135 } else {
3136 // TmpReg2 = shrd inLo, inHi
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003137 BuildMI(*MBB, IP, X86::SHRD32rrCL,2,TmpReg2).addReg(SrcReg)
Chris Lattneree352852004-02-29 07:22:16 +00003138 .addReg(SrcReg+1);
Chris Lattner9171ef52003-06-01 01:56:54 +00003139 // TmpReg3 = s[ah]r inHi, CL
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003140 BuildMI(*MBB, IP, isSigned ? X86::SAR32rCL : X86::SHR32rCL, 1, TmpReg3)
Chris Lattner9171ef52003-06-01 01:56:54 +00003141 .addReg(SrcReg+1);
3142
3143 // Set the flags to indicate whether the shift was by more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003144 BuildMI(*MBB, IP, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00003145
3146 // DestLo = (>32) ? TmpReg3 : TmpReg2;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003147 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00003148 DestReg).addReg(TmpReg2).addReg(TmpReg3);
3149
3150 // DestHi = (>32) ? TmpReg : TmpReg3;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003151 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00003152 DestReg+1).addReg(TmpReg3).addReg(TmpReg);
3153 }
Brian Gaekea1719c92002-10-31 23:03:59 +00003154 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003155 return;
3156 }
Chris Lattnere9913f22002-11-02 01:41:55 +00003157
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003158 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00003159 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
3160 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
Chris Lattnerb1761fc2002-11-02 01:15:18 +00003161
Chris Lattner44205ca2004-11-13 20:03:48 +00003162 if (CUI->getValue() == 1 && isLeftShift) { // X << 1 -> X+X
3163 static const int AddOpC[] = { X86::ADD8rr, X86::ADD16rr, X86::ADD32rr };
3164 BuildMI(*MBB, IP, AddOpC[Class], 2,DestReg).addReg(SrcReg).addReg(SrcReg);
3165 } else {
3166 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
3167 BuildMI(*MBB, IP, Opc[Class], 2,
3168 DestReg).addReg(SrcReg).addImm(CUI->getValue());
3169 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003170 } else { // The shift amount is non-constant.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00003171 unsigned ShiftAmountReg = getReg (ShiftAmount, MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003172 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +00003173
Chris Lattner3e130a22003-01-13 00:32:26 +00003174 const unsigned *Opc = NonConstantOperand[isLeftShift*2+isSigned];
Chris Lattneree352852004-02-29 07:22:16 +00003175 BuildMI(*MBB, IP, Opc[Class], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003176 }
3177}
Chris Lattnerb1761fc2002-11-02 01:15:18 +00003178
Chris Lattner3e130a22003-01-13 00:32:26 +00003179
Chris Lattner6fc3c522002-11-17 21:11:55 +00003180/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
Chris Lattnere8f0d922002-12-24 00:03:11 +00003181/// instruction. The load and store instructions are the only place where we
3182/// need to worry about the memory layout of the target machine.
Chris Lattner6fc3c522002-11-17 21:11:55 +00003183///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003184void X86ISel::visitLoadInst(LoadInst &I) {
Chris Lattner7dee5da2004-03-08 01:58:35 +00003185 // Check to see if this load instruction is going to be folded into a binary
3186 // instruction, like add. If so, we don't want to emit it. Wouldn't a real
3187 // pattern matching instruction selector be nice?
Chris Lattner95157f72004-04-11 22:05:45 +00003188 unsigned Class = getClassB(I.getType());
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003189 if (I.hasOneUse()) {
Chris Lattner7dee5da2004-03-08 01:58:35 +00003190 Instruction *User = cast<Instruction>(I.use_back());
3191 switch (User->getOpcode()) {
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003192 case Instruction::Cast:
3193 // If this is a cast from a signed-integer type to a floating point type,
3194 // fold the cast here.
John Criswell6b5bd582004-06-09 15:18:51 +00003195 if (getClassB(User->getType()) == cFP &&
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003196 (I.getType() == Type::ShortTy || I.getType() == Type::IntTy ||
3197 I.getType() == Type::LongTy)) {
3198 unsigned DestReg = getReg(User);
3199 static const unsigned Opcode[] = {
3200 0/*BYTE*/, X86::FILD16m, X86::FILD32m, 0/*FP*/, X86::FILD64m
3201 };
Chris Lattner9f1b5312004-05-13 15:12:43 +00003202
3203 if (AllocaInst *AI = dyn_castFixedAlloca(I.getOperand(0))) {
3204 unsigned FI = getFixedSizedAllocaFI(AI);
3205 addFrameReference(BuildMI(BB, Opcode[Class], 4, DestReg), FI);
3206 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00003207 X86AddressMode AM;
3208 getAddressingMode(I.getOperand(0), AM);
3209 addFullAddress(BuildMI(BB, Opcode[Class], 4, DestReg), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00003210 }
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003211 return;
3212 } else {
3213 User = 0;
3214 }
3215 break;
Chris Lattner13c07fe2004-04-12 00:12:04 +00003216
Chris Lattner7dee5da2004-03-08 01:58:35 +00003217 case Instruction::Add:
3218 case Instruction::Sub:
3219 case Instruction::And:
3220 case Instruction::Or:
3221 case Instruction::Xor:
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003222 if (Class == cLong) User = 0;
Chris Lattner7dee5da2004-03-08 01:58:35 +00003223 break;
Chris Lattner95157f72004-04-11 22:05:45 +00003224 case Instruction::Mul:
3225 case Instruction::Div:
Chris Lattner13c07fe2004-04-12 00:12:04 +00003226 if (Class != cFP) User = 0;
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003227 break; // Folding only implemented for floating point.
Chris Lattner95157f72004-04-11 22:05:45 +00003228 default: User = 0; break;
Chris Lattner7dee5da2004-03-08 01:58:35 +00003229 }
3230
3231 if (User) {
3232 // Okay, we found a user. If the load is the first operand and there is
3233 // no second operand load, reverse the operand ordering. Note that this
3234 // can fail for a subtract (ie, no change will be made).
Chris Lattner3dbb5042004-07-21 21:28:26 +00003235 bool Swapped = false;
Chris Lattner7dee5da2004-03-08 01:58:35 +00003236 if (!isa<LoadInst>(User->getOperand(1)))
Chris Lattner3dbb5042004-07-21 21:28:26 +00003237 Swapped = !cast<BinaryOperator>(User)->swapOperands();
Chris Lattner7dee5da2004-03-08 01:58:35 +00003238
3239 // Okay, now that everything is set up, if this load is used by the second
3240 // operand, and if there are no instructions that invalidate the load
3241 // before the binary operator, eliminate the load.
3242 if (User->getOperand(1) == &I &&
3243 isSafeToFoldLoadIntoInstruction(I, *User))
3244 return; // Eliminate the load!
Chris Lattner95157f72004-04-11 22:05:45 +00003245
3246 // If this is a floating point sub or div, we won't be able to swap the
3247 // operands, but we will still be able to eliminate the load.
3248 if (Class == cFP && User->getOperand(0) == &I &&
3249 !isa<LoadInst>(User->getOperand(1)) &&
3250 (User->getOpcode() == Instruction::Sub ||
3251 User->getOpcode() == Instruction::Div) &&
3252 isSafeToFoldLoadIntoInstruction(I, *User))
3253 return; // Eliminate the load!
Chris Lattner3dbb5042004-07-21 21:28:26 +00003254
3255 // If we swapped the operands to the instruction, but couldn't fold the
3256 // load anyway, swap them back. We don't want to break add X, int
3257 // folding.
3258 if (Swapped) cast<BinaryOperator>(User)->swapOperands();
Chris Lattner7dee5da2004-03-08 01:58:35 +00003259 }
3260 }
3261
Chris Lattner6ac1d712003-10-20 04:48:06 +00003262 static const unsigned Opcodes[] = {
Chris Lattner9f1b5312004-05-13 15:12:43 +00003263 X86::MOV8rm, X86::MOV16rm, X86::MOV32rm, X86::FLD32m, X86::MOV32rm
Chris Lattner3e130a22003-01-13 00:32:26 +00003264 };
Chris Lattner6ac1d712003-10-20 04:48:06 +00003265 unsigned Opcode = Opcodes[Class];
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003266 if (I.getType() == Type::DoubleTy) Opcode = X86::FLD64m;
Chris Lattner9f1b5312004-05-13 15:12:43 +00003267
3268 unsigned DestReg = getReg(I);
3269
3270 if (AllocaInst *AI = dyn_castFixedAlloca(I.getOperand(0))) {
3271 unsigned FI = getFixedSizedAllocaFI(AI);
3272 if (Class == cLong) {
3273 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, DestReg), FI);
3274 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, DestReg+1), FI, 4);
3275 } else {
3276 addFrameReference(BuildMI(BB, Opcode, 4, DestReg), FI);
3277 }
3278 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00003279 X86AddressMode AM;
3280 getAddressingMode(I.getOperand(0), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00003281
3282 if (Class == cLong) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003283 addFullAddress(BuildMI(BB, X86::MOV32rm, 4, DestReg), AM);
3284 AM.Disp += 4;
3285 addFullAddress(BuildMI(BB, X86::MOV32rm, 4, DestReg+1), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00003286 } else {
Reid Spencerfc989e12004-08-30 00:13:26 +00003287 addFullAddress(BuildMI(BB, Opcode, 4, DestReg), AM);
Chris Lattner9f1b5312004-05-13 15:12:43 +00003288 }
3289 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003290}
3291
Chris Lattner6fc3c522002-11-17 21:11:55 +00003292/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
3293/// instruction.
3294///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003295void X86ISel::visitStoreInst(StoreInst &I) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003296 X86AddressMode AM;
3297 getAddressingMode(I.getOperand(1), AM);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003298
Chris Lattner6c09db22003-10-20 04:11:23 +00003299 const Type *ValTy = I.getOperand(0)->getType();
3300 unsigned Class = getClassB(ValTy);
Chris Lattner6ac1d712003-10-20 04:48:06 +00003301
Chris Lattner5a830962004-02-25 02:56:58 +00003302 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(0))) {
3303 uint64_t Val = CI->getRawValue();
3304 if (Class == cLong) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003305 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm(Val & ~0U);
3306 AM.Disp += 4;
3307 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm(Val>>32);
Chris Lattner5a830962004-02-25 02:56:58 +00003308 } else {
3309 static const unsigned Opcodes[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003310 X86::MOV8mi, X86::MOV16mi, X86::MOV32mi
Chris Lattner5a830962004-02-25 02:56:58 +00003311 };
3312 unsigned Opcode = Opcodes[Class];
Reid Spencerfc989e12004-08-30 00:13:26 +00003313 addFullAddress(BuildMI(BB, Opcode, 5), AM).addImm(Val);
Chris Lattner5a830962004-02-25 02:56:58 +00003314 }
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00003315 } else if (isa<ConstantPointerNull>(I.getOperand(0))) {
Chris Lattner358a9022004-10-15 05:05:29 +00003316 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm(0);
Chris Lattner10902622005-04-21 19:11:03 +00003317 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(0))) {
3318 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addGlobalAddress(GV);
Chris Lattner5a830962004-02-25 02:56:58 +00003319 } else if (ConstantBool *CB = dyn_cast<ConstantBool>(I.getOperand(0))) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003320 addFullAddress(BuildMI(BB, X86::MOV8mi, 5), AM).addImm(CB->getValue());
Chris Lattnere7a31c92004-05-07 21:18:15 +00003321 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) {
3322 // Store constant FP values with integer instructions to avoid having to
3323 // load the constants from the constant pool then do a store.
3324 if (CFP->getType() == Type::FloatTy) {
3325 union {
3326 unsigned I;
3327 float F;
3328 } V;
3329 V.F = CFP->getValue();
Reid Spencerfc989e12004-08-30 00:13:26 +00003330 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm(V.I);
Chris Lattner5a830962004-02-25 02:56:58 +00003331 } else {
Chris Lattnere7a31c92004-05-07 21:18:15 +00003332 union {
3333 uint64_t I;
3334 double F;
3335 } V;
3336 V.F = CFP->getValue();
Reid Spencerfc989e12004-08-30 00:13:26 +00003337 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm((unsigned)V.I);
3338 AM.Disp += 4;
3339 addFullAddress(BuildMI(BB, X86::MOV32mi, 5), AM).addImm(
Chris Lattnere7a31c92004-05-07 21:18:15 +00003340 unsigned(V.I >> 32));
Chris Lattner5a830962004-02-25 02:56:58 +00003341 }
Chris Lattnere7a31c92004-05-07 21:18:15 +00003342
3343 } else if (Class == cLong) {
3344 unsigned ValReg = getReg(I.getOperand(0));
Reid Spencerfc989e12004-08-30 00:13:26 +00003345 addFullAddress(BuildMI(BB, X86::MOV32mr, 5), AM).addReg(ValReg);
3346 AM.Disp += 4;
3347 addFullAddress(BuildMI(BB, X86::MOV32mr, 5), AM).addReg(ValReg+1);
Chris Lattnere7a31c92004-05-07 21:18:15 +00003348 } else {
Chris Lattner358a9022004-10-15 05:05:29 +00003349 // FIXME: stop emitting these two instructions:
3350 // movl $global,%eax
3351 // movl %eax,(%ebx)
3352 // when one instruction will suffice. That includes when the global
3353 // has an offset applied to it.
Chris Lattnere7a31c92004-05-07 21:18:15 +00003354 unsigned ValReg = getReg(I.getOperand(0));
3355 static const unsigned Opcodes[] = {
3356 X86::MOV8mr, X86::MOV16mr, X86::MOV32mr, X86::FST32m
3357 };
3358 unsigned Opcode = Opcodes[Class];
3359 if (ValTy == Type::DoubleTy) Opcode = X86::FST64m;
Chris Lattner9f1b5312004-05-13 15:12:43 +00003360
Reid Spencerfc989e12004-08-30 00:13:26 +00003361 addFullAddress(BuildMI(BB, Opcode, 1+4), AM).addReg(ValReg);
Chris Lattner94af4142002-12-25 05:13:53 +00003362 }
Chris Lattner6fc3c522002-11-17 21:11:55 +00003363}
3364
3365
Misha Brukman538607f2004-03-01 23:53:11 +00003366/// visitCastInst - Here we have various kinds of copying with or without sign
3367/// extension going on.
3368///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003369void X86ISel::visitCastInst(CastInst &CI) {
Chris Lattnerf5854472003-06-21 16:01:24 +00003370 Value *Op = CI.getOperand(0);
Chris Lattner427aeb42004-04-11 19:21:59 +00003371
Chris Lattner99382862004-04-12 00:23:04 +00003372 unsigned SrcClass = getClassB(Op->getType());
3373 unsigned DestClass = getClassB(CI.getType());
3374 // Noop casts are not emitted: getReg will return the source operand as the
3375 // register to use for any uses of the noop cast.
Chris Lattner8b486a12004-06-29 00:14:38 +00003376 if (DestClass == SrcClass) {
3377 // The only detail in this plan is that casts from double -> float are
3378 // truncating operations that we have to codegen through memory (despite
3379 // the fact that the source/dest registers are the same class).
3380 if (CI.getType() != Type::FloatTy || Op->getType() != Type::DoubleTy)
3381 return;
3382 }
Chris Lattner427aeb42004-04-11 19:21:59 +00003383
Chris Lattnerf5854472003-06-21 16:01:24 +00003384 // If this is a cast from a 32-bit integer to a Long type, and the only uses
3385 // of the case are GEP instructions, then the cast does not need to be
3386 // generated explicitly, it will be folded into the GEP.
Chris Lattner99382862004-04-12 00:23:04 +00003387 if (DestClass == cLong && SrcClass == cInt) {
Chris Lattnerf5854472003-06-21 16:01:24 +00003388 bool AllUsesAreGEPs = true;
3389 for (Value::use_iterator I = CI.use_begin(), E = CI.use_end(); I != E; ++I)
3390 if (!isa<GetElementPtrInst>(*I)) {
3391 AllUsesAreGEPs = false;
3392 break;
3393 }
3394
3395 // No need to codegen this cast if all users are getelementptr instrs...
3396 if (AllUsesAreGEPs) return;
3397 }
3398
Chris Lattner99382862004-04-12 00:23:04 +00003399 // If this cast converts a load from a short,int, or long integer to a FP
3400 // value, we will have folded this cast away.
3401 if (DestClass == cFP && isa<LoadInst>(Op) && Op->hasOneUse() &&
3402 (Op->getType() == Type::ShortTy || Op->getType() == Type::IntTy ||
3403 Op->getType() == Type::LongTy))
3404 return;
3405
3406
Chris Lattner548f61d2003-04-23 17:22:12 +00003407 unsigned DestReg = getReg(CI);
3408 MachineBasicBlock::iterator MI = BB->end();
Chris Lattnerf5854472003-06-21 16:01:24 +00003409 emitCastOperation(BB, MI, Op, CI.getType(), DestReg);
Chris Lattner548f61d2003-04-23 17:22:12 +00003410}
3411
Misha Brukman538607f2004-03-01 23:53:11 +00003412/// emitCastOperation - Common code shared between visitCastInst and constant
3413/// expression cast support.
3414///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003415void X86ISel::emitCastOperation(MachineBasicBlock *BB,
3416 MachineBasicBlock::iterator IP,
3417 Value *Src, const Type *DestTy,
3418 unsigned DestReg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00003419 const Type *SrcTy = Src->getType();
3420 unsigned SrcClass = getClassB(SrcTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00003421 unsigned DestClass = getClassB(DestTy);
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003422 unsigned SrcReg = getReg(Src, BB, IP);
3423
Chris Lattner3e130a22003-01-13 00:32:26 +00003424 // Implement casts to bool by using compare on the operand followed by set if
3425 // not zero on the result.
3426 if (DestTy == Type::BoolTy) {
Chris Lattner20772542003-06-01 03:38:24 +00003427 switch (SrcClass) {
3428 case cByte:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003429 BuildMI(*BB, IP, X86::TEST8rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003430 break;
3431 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003432 BuildMI(*BB, IP, X86::TEST16rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003433 break;
3434 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003435 BuildMI(*BB, IP, X86::TEST32rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003436 break;
3437 case cLong: {
3438 unsigned TmpReg = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003439 BuildMI(*BB, IP, X86::OR32rr, 2, TmpReg).addReg(SrcReg).addReg(SrcReg+1);
Chris Lattner20772542003-06-01 03:38:24 +00003440 break;
3441 }
3442 case cFP:
Chris Lattneree352852004-02-29 07:22:16 +00003443 BuildMI(*BB, IP, X86::FTST, 1).addReg(SrcReg);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003444 BuildMI(*BB, IP, X86::FNSTSW8r, 0);
Chris Lattneree352852004-02-29 07:22:16 +00003445 BuildMI(*BB, IP, X86::SAHF, 1);
Chris Lattner311ca2e2004-02-23 03:21:41 +00003446 break;
Chris Lattner20772542003-06-01 03:38:24 +00003447 }
3448
3449 // If the zero flag is not set, then the value is true, set the byte to
3450 // true.
Chris Lattneree352852004-02-29 07:22:16 +00003451 BuildMI(*BB, IP, X86::SETNEr, 1, DestReg);
Chris Lattner94af4142002-12-25 05:13:53 +00003452 return;
3453 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003454
3455 static const unsigned RegRegMove[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003456 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr, X86::FpMOV, X86::MOV32rr
Chris Lattner3e130a22003-01-13 00:32:26 +00003457 };
3458
3459 // Implement casts between values of the same type class (as determined by
3460 // getClass) by using a register-to-register move.
3461 if (SrcClass == DestClass) {
3462 if (SrcClass <= cInt || (SrcClass == cFP && SrcTy == DestTy)) {
Chris Lattneree352852004-02-29 07:22:16 +00003463 BuildMI(*BB, IP, RegRegMove[SrcClass], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003464 } else if (SrcClass == cFP) {
3465 if (SrcTy == Type::FloatTy) { // double -> float
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003466 assert(DestTy == Type::DoubleTy && "Unknown cFP member!");
Chris Lattneree352852004-02-29 07:22:16 +00003467 BuildMI(*BB, IP, X86::FpMOV, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003468 } else { // float -> double
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003469 assert(SrcTy == Type::DoubleTy && DestTy == Type::FloatTy &&
3470 "Unknown cFP member!");
3471 // Truncate from double to float by storing to memory as short, then
3472 // reading it back.
3473 unsigned FltAlign = TM.getTargetData().getFloatAlignment();
Chris Lattner3e130a22003-01-13 00:32:26 +00003474 int FrameIdx = F->getFrameInfo()->CreateStackObject(4, FltAlign);
Chris Lattner5384b382005-01-05 16:30:14 +00003475 addFrameReference(BuildMI(*BB, IP, X86::FST32m, 5),
3476 FrameIdx).addReg(SrcReg);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003477 addFrameReference(BuildMI(*BB, IP, X86::FLD32m, 5, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003478 }
3479 } else if (SrcClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003480 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg);
3481 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg+1).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003482 } else {
Chris Lattnerc53544a2003-05-12 20:16:58 +00003483 assert(0 && "Cannot handle this type of cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00003484 abort();
Brian Gaeked474e9c2002-12-06 10:49:33 +00003485 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003486 return;
3487 }
3488
3489 // Handle cast of SMALLER int to LARGER int using a move with sign extension
3490 // or zero extension, depending on whether the source type was signed.
3491 if (SrcClass <= cInt && (DestClass <= cInt || DestClass == cLong) &&
3492 SrcClass < DestClass) {
3493 bool isLong = DestClass == cLong;
3494 if (isLong) DestClass = cInt;
3495
3496 static const unsigned Opc[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003497 { X86::MOVSX16rr8, X86::MOVSX32rr8, X86::MOVSX32rr16, X86::MOV32rr }, // s
3498 { X86::MOVZX16rr8, X86::MOVZX32rr8, X86::MOVZX32rr16, X86::MOV32rr } // u
Chris Lattner3e130a22003-01-13 00:32:26 +00003499 };
3500
Chris Lattner96e3b422004-05-09 22:28:45 +00003501 bool isUnsigned = SrcTy->isUnsigned() || SrcTy == Type::BoolTy;
Chris Lattneree352852004-02-29 07:22:16 +00003502 BuildMI(*BB, IP, Opc[isUnsigned][SrcClass + DestClass - 1], 1,
Chris Lattner548f61d2003-04-23 17:22:12 +00003503 DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003504
3505 if (isLong) { // Handle upper 32 bits as appropriate...
3506 if (isUnsigned) // Zero out top bits...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003507 BuildMI(*BB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00003508 else // Sign extend bottom half...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003509 BuildMI(*BB, IP, X86::SAR32ri, 2, DestReg+1).addReg(DestReg).addImm(31);
Brian Gaeked474e9c2002-12-06 10:49:33 +00003510 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003511 return;
3512 }
3513
3514 // Special case long -> int ...
3515 if (SrcClass == cLong && DestClass == cInt) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003516 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003517 return;
3518 }
3519
3520 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by a
3521 // move out of AX or AL.
3522 if ((SrcClass <= cInt || SrcClass == cLong) && DestClass <= cInt
3523 && SrcClass > DestClass) {
3524 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX, 0, X86::EAX };
Chris Lattneree352852004-02-29 07:22:16 +00003525 BuildMI(*BB, IP, RegRegMove[SrcClass], 1, AReg[SrcClass]).addReg(SrcReg);
3526 BuildMI(*BB, IP, RegRegMove[DestClass], 1, DestReg).addReg(AReg[DestClass]);
Chris Lattner3e130a22003-01-13 00:32:26 +00003527 return;
3528 }
3529
3530 // Handle casts from integer to floating point now...
3531 if (DestClass == cFP) {
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003532 // Promote the integer to a type supported by FLD. We do this because there
3533 // are no unsigned FLD instructions, so we must promote an unsigned value to
3534 // a larger signed value, then use FLD on the larger value.
3535 //
3536 const Type *PromoteType = 0;
Chris Lattner85aa7092004-04-10 18:32:01 +00003537 unsigned PromoteOpcode = 0;
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003538 unsigned RealDestReg = DestReg;
Chris Lattnerf70c22b2004-06-17 18:19:28 +00003539 switch (SrcTy->getTypeID()) {
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003540 case Type::BoolTyID:
3541 case Type::SByteTyID:
3542 // We don't have the facilities for directly loading byte sized data from
3543 // memory (even signed). Promote it to 16 bits.
3544 PromoteType = Type::ShortTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003545 PromoteOpcode = X86::MOVSX16rr8;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003546 break;
3547 case Type::UByteTyID:
3548 PromoteType = Type::ShortTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003549 PromoteOpcode = X86::MOVZX16rr8;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003550 break;
3551 case Type::UShortTyID:
3552 PromoteType = Type::IntTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003553 PromoteOpcode = X86::MOVZX32rr16;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003554 break;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003555 case Type::ULongTyID:
Chris Lattner56a31c62004-10-17 08:01:28 +00003556 case Type::UIntTyID:
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003557 // Don't fild into the read destination.
3558 DestReg = makeAnotherReg(Type::DoubleTy);
3559 break;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003560 default: // No promotion needed...
3561 break;
3562 }
3563
3564 if (PromoteType) {
3565 unsigned TmpReg = makeAnotherReg(PromoteType);
Chris Lattner7b92de1e2004-04-06 19:29:36 +00003566 BuildMI(*BB, IP, PromoteOpcode, 1, TmpReg).addReg(SrcReg);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003567 SrcTy = PromoteType;
3568 SrcClass = getClass(PromoteType);
Chris Lattner3e130a22003-01-13 00:32:26 +00003569 SrcReg = TmpReg;
3570 }
3571
3572 // Spill the integer to memory and reload it from there...
Chris Lattnerb6bac512004-02-25 06:13:04 +00003573 int FrameIdx =
3574 F->getFrameInfo()->CreateStackObject(SrcTy, TM.getTargetData());
Chris Lattner3e130a22003-01-13 00:32:26 +00003575
3576 if (SrcClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003577 addFrameReference(BuildMI(*BB, IP, X86::MOV32mr, 5),
Chris Lattneree352852004-02-29 07:22:16 +00003578 FrameIdx).addReg(SrcReg);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003579 addFrameReference(BuildMI(*BB, IP, X86::MOV32mr, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003580 FrameIdx, 4).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003581 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003582 static const unsigned Op1[] = { X86::MOV8mr, X86::MOV16mr, X86::MOV32mr };
Chris Lattneree352852004-02-29 07:22:16 +00003583 addFrameReference(BuildMI(*BB, IP, Op1[SrcClass], 5),
3584 FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003585 }
3586
3587 static const unsigned Op2[] =
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003588 { 0/*byte*/, X86::FILD16m, X86::FILD32m, 0/*FP*/, X86::FILD64m };
Chris Lattneree352852004-02-29 07:22:16 +00003589 addFrameReference(BuildMI(*BB, IP, Op2[SrcClass], 5, DestReg), FrameIdx);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003590
Chris Lattner56a31c62004-10-17 08:01:28 +00003591 if (SrcTy == Type::UIntTy) {
3592 // If this is a cast from uint -> double, we need to be careful about if
3593 // the "sign" bit is set. If so, we don't want to make a negative number,
3594 // we want to make a positive number. Emit code to add an offset if the
3595 // sign bit is set.
3596
3597 // Compute whether the sign bit is set by shifting the reg right 31 bits.
3598 unsigned IsNeg = makeAnotherReg(Type::IntTy);
Chris Lattner6e7c47c2005-01-09 01:49:29 +00003599 BuildMI(*BB, IP, X86::SHR32ri, 2, IsNeg).addReg(SrcReg).addImm(31);
Chris Lattner56a31c62004-10-17 08:01:28 +00003600
3601 // Create a CP value that has the offset in one word and 0 in the other.
3602 static ConstantInt *TheOffset = ConstantUInt::get(Type::ULongTy,
3603 0x4f80000000000000ULL);
3604 unsigned CPI = F->getConstantPool()->getConstantPoolIndex(TheOffset);
Chris Lattner6e7c47c2005-01-09 01:49:29 +00003605 BuildMI(*BB, IP, X86::FADD32m, 5, RealDestReg).addReg(DestReg)
Chris Lattner56a31c62004-10-17 08:01:28 +00003606 .addConstantPoolIndex(CPI).addZImm(4).addReg(IsNeg).addSImm(0);
3607
3608 } else if (SrcTy == Type::ULongTy) {
3609 // We need special handling for unsigned 64-bit integer sources. If the
3610 // input number has the "sign bit" set, then we loaded it incorrectly as a
3611 // negative 64-bit number. In this case, add an offset value.
3612
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003613 // Emit a test instruction to see if the dynamic input value was signed.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003614 BuildMI(*BB, IP, X86::TEST32rr, 2).addReg(SrcReg+1).addReg(SrcReg+1);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003615
Chris Lattnerb6bac512004-02-25 06:13:04 +00003616 // If the sign bit is set, get a pointer to an offset, otherwise get a
3617 // pointer to a zero.
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003618 MachineConstantPool *CP = F->getConstantPool();
3619 unsigned Zero = makeAnotherReg(Type::IntTy);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003620 Constant *Null = Constant::getNullValue(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003621 addConstantPoolReference(BuildMI(*BB, IP, X86::LEA32r, 5, Zero),
Chris Lattnerb6bac512004-02-25 06:13:04 +00003622 CP->getConstantPoolIndex(Null));
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003623 unsigned Offset = makeAnotherReg(Type::IntTy);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003624 Constant *OffsetCst = ConstantUInt::get(Type::UIntTy, 0x5f800000);
3625
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003626 addConstantPoolReference(BuildMI(*BB, IP, X86::LEA32r, 5, Offset),
Chris Lattnerb6bac512004-02-25 06:13:04 +00003627 CP->getConstantPoolIndex(OffsetCst));
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003628 unsigned Addr = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003629 BuildMI(*BB, IP, X86::CMOVS32rr, 2, Addr).addReg(Zero).addReg(Offset);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003630
3631 // Load the constant for an add. FIXME: this could make an 'fadd' that
3632 // reads directly from memory, but we don't support these yet.
3633 unsigned ConstReg = makeAnotherReg(Type::DoubleTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003634 addDirectMem(BuildMI(*BB, IP, X86::FLD32m, 4, ConstReg), Addr);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003635
Chris Lattneree352852004-02-29 07:22:16 +00003636 BuildMI(*BB, IP, X86::FpADD, 2, RealDestReg)
3637 .addReg(ConstReg).addReg(DestReg);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003638 }
3639
Chris Lattner3e130a22003-01-13 00:32:26 +00003640 return;
3641 }
3642
3643 // Handle casts from floating point to integer now...
3644 if (SrcClass == cFP) {
3645 // Change the floating point control register to use "round towards zero"
3646 // mode when truncating to an integer value.
3647 //
3648 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003649 addFrameReference(BuildMI(*BB, IP, X86::FNSTCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003650
3651 // Load the old value of the high byte of the control word...
3652 unsigned HighPartOfCW = makeAnotherReg(Type::UByteTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003653 addFrameReference(BuildMI(*BB, IP, X86::MOV8rm, 4, HighPartOfCW),
Chris Lattneree352852004-02-29 07:22:16 +00003654 CWFrameIdx, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003655
3656 // Set the high part to be round to zero...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003657 addFrameReference(BuildMI(*BB, IP, X86::MOV8mi, 5),
Chris Lattneree352852004-02-29 07:22:16 +00003658 CWFrameIdx, 1).addImm(12);
Chris Lattner3e130a22003-01-13 00:32:26 +00003659
3660 // Reload the modified control word now...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003661 addFrameReference(BuildMI(*BB, IP, X86::FLDCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003662
3663 // Restore the memory image of control word to original value
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003664 addFrameReference(BuildMI(*BB, IP, X86::MOV8mr, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003665 CWFrameIdx, 1).addReg(HighPartOfCW);
Chris Lattner3e130a22003-01-13 00:32:26 +00003666
3667 // We don't have the facilities for directly storing byte sized data to
3668 // memory. Promote it to 16 bits. We also must promote unsigned values to
3669 // larger classes because we only have signed FP stores.
3670 unsigned StoreClass = DestClass;
3671 const Type *StoreTy = DestTy;
3672 if (StoreClass == cByte || DestTy->isUnsigned())
3673 switch (StoreClass) {
3674 case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
3675 case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
3676 case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break;
Brian Gaeked4615052003-07-18 20:23:43 +00003677 // The following treatment of cLong may not be perfectly right,
3678 // but it survives chains of casts of the form
3679 // double->ulong->double.
3680 case cLong: StoreTy = Type::LongTy; StoreClass = cLong; break;
Chris Lattner3e130a22003-01-13 00:32:26 +00003681 default: assert(0 && "Unknown store class!");
3682 }
3683
3684 // Spill the integer to memory and reload it from there...
3685 int FrameIdx =
3686 F->getFrameInfo()->CreateStackObject(StoreTy, TM.getTargetData());
3687
3688 static const unsigned Op1[] =
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003689 { 0, X86::FIST16m, X86::FIST32m, 0, X86::FISTP64m };
Chris Lattneree352852004-02-29 07:22:16 +00003690 addFrameReference(BuildMI(*BB, IP, Op1[StoreClass], 5),
3691 FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003692
3693 if (DestClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003694 addFrameReference(BuildMI(*BB, IP, X86::MOV32rm, 4, DestReg), FrameIdx);
3695 addFrameReference(BuildMI(*BB, IP, X86::MOV32rm, 4, DestReg+1),
Chris Lattneree352852004-02-29 07:22:16 +00003696 FrameIdx, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +00003697 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003698 static const unsigned Op2[] = { X86::MOV8rm, X86::MOV16rm, X86::MOV32rm };
Chris Lattneree352852004-02-29 07:22:16 +00003699 addFrameReference(BuildMI(*BB, IP, Op2[DestClass], 4, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003700 }
3701
3702 // Reload the original control word now...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003703 addFrameReference(BuildMI(*BB, IP, X86::FLDCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003704 return;
3705 }
3706
Brian Gaeked474e9c2002-12-06 10:49:33 +00003707 // Anything we haven't handled already, we can't (yet) handle at all.
Chris Lattnerc53544a2003-05-12 20:16:58 +00003708 assert(0 && "Unhandled cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00003709 abort();
Brian Gaekefa8d5712002-11-22 11:07:01 +00003710}
Brian Gaekea1719c92002-10-31 23:03:59 +00003711
Chris Lattner73815062003-10-18 05:56:40 +00003712/// visitVANextInst - Implement the va_next instruction...
Chris Lattnereca195e2003-05-08 19:44:13 +00003713///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003714void X86ISel::visitVANextInst(VANextInst &I) {
Chris Lattner73815062003-10-18 05:56:40 +00003715 unsigned VAList = getReg(I.getOperand(0));
Chris Lattnereca195e2003-05-08 19:44:13 +00003716 unsigned DestReg = getReg(I);
3717
Chris Lattnereca195e2003-05-08 19:44:13 +00003718 unsigned Size;
Chris Lattnerf70c22b2004-06-17 18:19:28 +00003719 switch (I.getArgType()->getTypeID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00003720 default:
3721 std::cerr << I;
Chris Lattner73815062003-10-18 05:56:40 +00003722 assert(0 && "Error: bad type for va_next instruction!");
Chris Lattnereca195e2003-05-08 19:44:13 +00003723 return;
3724 case Type::PointerTyID:
3725 case Type::UIntTyID:
3726 case Type::IntTyID:
3727 Size = 4;
Chris Lattnereca195e2003-05-08 19:44:13 +00003728 break;
3729 case Type::ULongTyID:
3730 case Type::LongTyID:
Chris Lattnereca195e2003-05-08 19:44:13 +00003731 case Type::DoubleTyID:
3732 Size = 8;
Chris Lattnereca195e2003-05-08 19:44:13 +00003733 break;
3734 }
3735
3736 // Increment the VAList pointer...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003737 BuildMI(BB, X86::ADD32ri, 2, DestReg).addReg(VAList).addImm(Size);
Chris Lattner73815062003-10-18 05:56:40 +00003738}
Chris Lattnereca195e2003-05-08 19:44:13 +00003739
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003740void X86ISel::visitVAArgInst(VAArgInst &I) {
Chris Lattner73815062003-10-18 05:56:40 +00003741 unsigned VAList = getReg(I.getOperand(0));
3742 unsigned DestReg = getReg(I);
3743
Chris Lattnerf70c22b2004-06-17 18:19:28 +00003744 switch (I.getType()->getTypeID()) {
Chris Lattner73815062003-10-18 05:56:40 +00003745 default:
3746 std::cerr << I;
3747 assert(0 && "Error: bad type for va_next instruction!");
3748 return;
3749 case Type::PointerTyID:
3750 case Type::UIntTyID:
3751 case Type::IntTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003752 addDirectMem(BuildMI(BB, X86::MOV32rm, 4, DestReg), VAList);
Chris Lattner73815062003-10-18 05:56:40 +00003753 break;
3754 case Type::ULongTyID:
3755 case Type::LongTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003756 addDirectMem(BuildMI(BB, X86::MOV32rm, 4, DestReg), VAList);
3757 addRegOffset(BuildMI(BB, X86::MOV32rm, 4, DestReg+1), VAList, 4);
Chris Lattner73815062003-10-18 05:56:40 +00003758 break;
3759 case Type::DoubleTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003760 addDirectMem(BuildMI(BB, X86::FLD64m, 4, DestReg), VAList);
Chris Lattner73815062003-10-18 05:56:40 +00003761 break;
3762 }
Chris Lattnereca195e2003-05-08 19:44:13 +00003763}
3764
Misha Brukman538607f2004-03-01 23:53:11 +00003765/// visitGetElementPtrInst - instruction-select GEP instructions
3766///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003767void X86ISel::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnerb6bac512004-02-25 06:13:04 +00003768 // If this GEP instruction will be folded into all of its users, we don't need
3769 // to explicitly calculate it!
Reid Spencerfc989e12004-08-30 00:13:26 +00003770 X86AddressMode AM;
3771 if (isGEPFoldable(0, I.getOperand(0), I.op_begin()+1, I.op_end(), AM)) {
Chris Lattnerb6bac512004-02-25 06:13:04 +00003772 // Check all of the users of the instruction to see if they are loads and
3773 // stores.
3774 bool AllWillFold = true;
3775 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI)
3776 if (cast<Instruction>(*UI)->getOpcode() != Instruction::Load)
3777 if (cast<Instruction>(*UI)->getOpcode() != Instruction::Store ||
3778 cast<Instruction>(*UI)->getOperand(0) == &I) {
3779 AllWillFold = false;
3780 break;
3781 }
3782
3783 // If the instruction is foldable, and will be folded into all users, don't
3784 // emit it!
3785 if (AllWillFold) return;
3786 }
3787
Chris Lattner3e130a22003-01-13 00:32:26 +00003788 unsigned outputReg = getReg(I);
Chris Lattner827832c2004-02-22 17:05:38 +00003789 emitGEPOperation(BB, BB->end(), I.getOperand(0),
Brian Gaeke68b1edc2002-12-16 04:23:29 +00003790 I.op_begin()+1, I.op_end(), outputReg);
Chris Lattnerc0812d82002-12-13 06:56:29 +00003791}
3792
Chris Lattner985fe3d2004-02-25 03:45:50 +00003793/// getGEPIndex - Inspect the getelementptr operands specified with GEPOps and
3794/// GEPTypes (the derived types being stepped through at each level). On return
3795/// from this function, if some indexes of the instruction are representable as
3796/// an X86 lea instruction, the machine operands are put into the Ops
3797/// instruction and the consumed indexes are poped from the GEPOps/GEPTypes
3798/// lists. Otherwise, GEPOps.size() is returned. If this returns a an
3799/// addressing mode that only partially consumes the input, the BaseReg input of
3800/// the addressing mode must be left free.
3801///
3802/// Note that there is one fewer entry in GEPTypes than there is in GEPOps.
3803///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003804void X86ISel::getGEPIndex(MachineBasicBlock *MBB,
3805 MachineBasicBlock::iterator IP,
3806 std::vector<Value*> &GEPOps,
3807 std::vector<const Type*> &GEPTypes,
3808 X86AddressMode &AM) {
Chris Lattnerb6bac512004-02-25 06:13:04 +00003809 const TargetData &TD = TM.getTargetData();
3810
Chris Lattner985fe3d2004-02-25 03:45:50 +00003811 // Clear out the state we are working with...
Reid Spencerfc989e12004-08-30 00:13:26 +00003812 AM.BaseType = X86AddressMode::RegBase;
3813 AM.Base.Reg = 0; // No base register
3814 AM.Scale = 1; // Unit scale
3815 AM.IndexReg = 0; // No index register
3816 AM.Disp = 0; // No displacement
Chris Lattnerb6bac512004-02-25 06:13:04 +00003817
Chris Lattner985fe3d2004-02-25 03:45:50 +00003818 // While there are GEP indexes that can be folded into the current address,
3819 // keep processing them.
3820 while (!GEPTypes.empty()) {
3821 if (const StructType *StTy = dyn_cast<StructType>(GEPTypes.back())) {
3822 // It's a struct access. CUI is the index into the structure,
3823 // which names the field. This index must have unsigned type.
3824 const ConstantUInt *CUI = cast<ConstantUInt>(GEPOps.back());
3825
3826 // Use the TargetData structure to pick out what the layout of the
3827 // structure is in memory. Since the structure index must be constant, we
3828 // can get its value and use it to find the right byte offset from the
3829 // StructLayout class's list of structure member offsets.
Reid Spencerfc989e12004-08-30 00:13:26 +00003830 AM.Disp += TD.getStructLayout(StTy)->MemberOffsets[CUI->getValue()];
Chris Lattner985fe3d2004-02-25 03:45:50 +00003831 GEPOps.pop_back(); // Consume a GEP operand
3832 GEPTypes.pop_back();
3833 } else {
3834 // It's an array or pointer access: [ArraySize x ElementType].
3835 const SequentialType *SqTy = cast<SequentialType>(GEPTypes.back());
3836 Value *idx = GEPOps.back();
3837
3838 // idx is the index into the array. Unlike with structure
3839 // indices, we may not know its actual value at code-generation
3840 // time.
Chris Lattner985fe3d2004-02-25 03:45:50 +00003841
3842 // If idx is a constant, fold it into the offset.
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003843 unsigned TypeSize = TD.getTypeSize(SqTy->getElementType());
Chris Lattner985fe3d2004-02-25 03:45:50 +00003844 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(idx)) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003845 AM.Disp += TypeSize*CSI->getValue();
Chris Lattner28977af2004-04-05 01:30:19 +00003846 } else if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(idx)) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003847 AM.Disp += TypeSize*CUI->getValue();
Chris Lattner985fe3d2004-02-25 03:45:50 +00003848 } else {
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003849 // If the index reg is already taken, we can't handle this index.
Reid Spencerfc989e12004-08-30 00:13:26 +00003850 if (AM.IndexReg) return;
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003851
3852 // If this is a size that we can handle, then add the index as
3853 switch (TypeSize) {
3854 case 1: case 2: case 4: case 8:
3855 // These are all acceptable scales on X86.
Reid Spencerfc989e12004-08-30 00:13:26 +00003856 AM.Scale = TypeSize;
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003857 break;
3858 default:
3859 // Otherwise, we can't handle this scale
3860 return;
3861 }
3862
3863 if (CastInst *CI = dyn_cast<CastInst>(idx))
3864 if (CI->getOperand(0)->getType() == Type::IntTy ||
3865 CI->getOperand(0)->getType() == Type::UIntTy)
3866 idx = CI->getOperand(0);
3867
Reid Spencerfc989e12004-08-30 00:13:26 +00003868 AM.IndexReg = MBB ? getReg(idx, MBB, IP) : 1;
Chris Lattner985fe3d2004-02-25 03:45:50 +00003869 }
3870
3871 GEPOps.pop_back(); // Consume a GEP operand
3872 GEPTypes.pop_back();
3873 }
3874 }
Chris Lattnerb6bac512004-02-25 06:13:04 +00003875
Chris Lattnerdf040972004-05-23 21:23:12 +00003876 // GEPTypes is empty, which means we have a single operand left. Set it as
3877 // the base register.
Chris Lattnerb6bac512004-02-25 06:13:04 +00003878 //
Reid Spencerfc989e12004-08-30 00:13:26 +00003879 assert(AM.Base.Reg == 0);
Chris Lattnerdf040972004-05-23 21:23:12 +00003880
Reid Spencerfc989e12004-08-30 00:13:26 +00003881 if (AllocaInst *AI = dyn_castFixedAlloca(GEPOps.back())) {
3882 AM.BaseType = X86AddressMode::FrameIndexBase;
3883 AM.Base.FrameIndex = getFixedSizedAllocaFI(AI);
Chris Lattnerdf040972004-05-23 21:23:12 +00003884 GEPOps.pop_back();
3885 return;
Reid Spencerfc989e12004-08-30 00:13:26 +00003886 }
3887
Chris Lattner358a9022004-10-15 05:05:29 +00003888 if (GlobalValue *GV = dyn_cast<GlobalValue>(GEPOps.back())) {
3889 AM.GV = GV;
3890 GEPOps.pop_back();
3891 return;
Chris Lattnerdf040972004-05-23 21:23:12 +00003892 }
Chris Lattnerdf040972004-05-23 21:23:12 +00003893
Reid Spencerfc989e12004-08-30 00:13:26 +00003894 AM.Base.Reg = MBB ? getReg(GEPOps[0], MBB, IP) : 1;
Chris Lattnerb6bac512004-02-25 06:13:04 +00003895 GEPOps.pop_back(); // Consume the last GEP operand
Chris Lattner985fe3d2004-02-25 03:45:50 +00003896}
3897
3898
Chris Lattnerb6bac512004-02-25 06:13:04 +00003899/// isGEPFoldable - Return true if the specified GEP can be completely
3900/// folded into the addressing mode of a load/store or lea instruction.
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003901bool X86ISel::isGEPFoldable(MachineBasicBlock *MBB,
3902 Value *Src, User::op_iterator IdxBegin,
3903 User::op_iterator IdxEnd, X86AddressMode &AM) {
Chris Lattner7ca04092004-02-22 17:35:42 +00003904
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003905 std::vector<Value*> GEPOps;
3906 GEPOps.resize(IdxEnd-IdxBegin+1);
3907 GEPOps[0] = Src;
3908 std::copy(IdxBegin, IdxEnd, GEPOps.begin()+1);
3909
Chris Lattnerdf040972004-05-23 21:23:12 +00003910 std::vector<const Type*>
3911 GEPTypes(gep_type_begin(Src->getType(), IdxBegin, IdxEnd),
3912 gep_type_end(Src->getType(), IdxBegin, IdxEnd));
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003913
Chris Lattnerb6bac512004-02-25 06:13:04 +00003914 MachineBasicBlock::iterator IP;
3915 if (MBB) IP = MBB->end();
Reid Spencerfc989e12004-08-30 00:13:26 +00003916 getGEPIndex(MBB, IP, GEPOps, GEPTypes, AM);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003917
3918 // We can fold it away iff the getGEPIndex call eliminated all operands.
3919 return GEPOps.empty();
3920}
3921
Misha Brukmaneae1bf12004-09-21 18:21:21 +00003922void X86ISel::emitGEPOperation(MachineBasicBlock *MBB,
3923 MachineBasicBlock::iterator IP,
3924 Value *Src, User::op_iterator IdxBegin,
3925 User::op_iterator IdxEnd, unsigned TargetReg) {
Chris Lattnerb6bac512004-02-25 06:13:04 +00003926 const TargetData &TD = TM.getTargetData();
Chris Lattnerb6bac512004-02-25 06:13:04 +00003927
Chris Lattnerd2995df2004-07-15 00:58:53 +00003928 // If this is a getelementptr null, with all constant integer indices, just
3929 // replace it with TargetReg = 42.
3930 if (isa<ConstantPointerNull>(Src)) {
3931 User::op_iterator I = IdxBegin;
3932 for (; I != IdxEnd; ++I)
3933 if (!isa<ConstantInt>(*I))
3934 break;
3935 if (I == IdxEnd) { // All constant indices
3936 unsigned Offset = TD.getIndexedOffset(Src->getType(),
3937 std::vector<Value*>(IdxBegin, IdxEnd));
3938 BuildMI(*MBB, IP, X86::MOV32ri, 1, TargetReg).addImm(Offset);
3939 return;
3940 }
3941 }
3942
Chris Lattnerb6bac512004-02-25 06:13:04 +00003943 std::vector<Value*> GEPOps;
3944 GEPOps.resize(IdxEnd-IdxBegin+1);
3945 GEPOps[0] = Src;
3946 std::copy(IdxBegin, IdxEnd, GEPOps.begin()+1);
3947
3948 std::vector<const Type*> GEPTypes;
3949 GEPTypes.assign(gep_type_begin(Src->getType(), IdxBegin, IdxEnd),
3950 gep_type_end(Src->getType(), IdxBegin, IdxEnd));
Chris Lattner985fe3d2004-02-25 03:45:50 +00003951
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003952 // Keep emitting instructions until we consume the entire GEP instruction.
3953 while (!GEPOps.empty()) {
3954 unsigned OldSize = GEPOps.size();
Reid Spencerfc989e12004-08-30 00:13:26 +00003955 X86AddressMode AM;
3956 getGEPIndex(MBB, IP, GEPOps, GEPTypes, AM);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003957
Chris Lattner985fe3d2004-02-25 03:45:50 +00003958 if (GEPOps.size() != OldSize) {
3959 // getGEPIndex consumed some of the input. Build an LEA instruction here.
Chris Lattnerb6bac512004-02-25 06:13:04 +00003960 unsigned NextTarget = 0;
3961 if (!GEPOps.empty()) {
Reid Spencerfc989e12004-08-30 00:13:26 +00003962 assert(AM.Base.Reg == 0 &&
Chris Lattnerb6bac512004-02-25 06:13:04 +00003963 "getGEPIndex should have left the base register open for chaining!");
Reid Spencerfc989e12004-08-30 00:13:26 +00003964 NextTarget = AM.Base.Reg = makeAnotherReg(Type::UIntTy);
Chris Lattner985fe3d2004-02-25 03:45:50 +00003965 }
Chris Lattnerb6bac512004-02-25 06:13:04 +00003966
Reid Spencerfc989e12004-08-30 00:13:26 +00003967 if (AM.BaseType == X86AddressMode::RegBase &&
Chris Lattner358a9022004-10-15 05:05:29 +00003968 AM.IndexReg == 0 && AM.Disp == 0 && !AM.GV)
Reid Spencerfc989e12004-08-30 00:13:26 +00003969 BuildMI(*MBB, IP, X86::MOV32rr, 1, TargetReg).addReg(AM.Base.Reg);
Chris Lattner358a9022004-10-15 05:05:29 +00003970 else if (AM.BaseType == X86AddressMode::RegBase && AM.Base.Reg == 0 &&
3971 AM.IndexReg == 0 && AM.Disp == 0)
3972 BuildMI(*MBB, IP, X86::MOV32ri, 1, TargetReg).addGlobalAddress(AM.GV);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003973 else
Reid Spencerfc989e12004-08-30 00:13:26 +00003974 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 5, TargetReg), AM);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003975 --IP;
3976 TargetReg = NextTarget;
Chris Lattner985fe3d2004-02-25 03:45:50 +00003977 } else if (GEPTypes.empty()) {
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003978 // The getGEPIndex operation didn't want to build an LEA. Check to see if
3979 // all operands are consumed but the base pointer. If so, just load it
3980 // into the register.
Chris Lattner7ca04092004-02-22 17:35:42 +00003981 if (GlobalValue *GV = dyn_cast<GlobalValue>(GEPOps[0])) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003982 BuildMI(*MBB, IP, X86::MOV32ri, 1, TargetReg).addGlobalAddress(GV);
Chris Lattner7ca04092004-02-22 17:35:42 +00003983 } else {
3984 unsigned BaseReg = getReg(GEPOps[0], MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003985 BuildMI(*MBB, IP, X86::MOV32rr, 1, TargetReg).addReg(BaseReg);
Chris Lattner7ca04092004-02-22 17:35:42 +00003986 }
3987 break; // we are now done
Chris Lattnerb6bac512004-02-25 06:13:04 +00003988
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003989 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +00003990 // It's an array or pointer access: [ArraySize x ElementType].
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003991 const SequentialType *SqTy = cast<SequentialType>(GEPTypes.back());
3992 Value *idx = GEPOps.back();
3993 GEPOps.pop_back(); // Consume a GEP operand
3994 GEPTypes.pop_back();
Chris Lattner8a307e82002-12-16 19:32:50 +00003995
Chris Lattner28977af2004-04-05 01:30:19 +00003996 // Many GEP instructions use a [cast (int/uint) to LongTy] as their
Chris Lattnerf5854472003-06-21 16:01:24 +00003997 // operand on X86. Handle this case directly now...
3998 if (CastInst *CI = dyn_cast<CastInst>(idx))
3999 if (CI->getOperand(0)->getType() == Type::IntTy ||
4000 CI->getOperand(0)->getType() == Type::UIntTy)
4001 idx = CI->getOperand(0);
4002
Chris Lattner3e130a22003-01-13 00:32:26 +00004003 // We want to add BaseReg to(idxReg * sizeof ElementType). First, we
Chris Lattner8a307e82002-12-16 19:32:50 +00004004 // must find the size of the pointed-to type (Not coincidentally, the next
4005 // type is the type of the elements in the array).
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004006 const Type *ElTy = SqTy->getElementType();
4007 unsigned elementSize = TD.getTypeSize(ElTy);
Chris Lattner8a307e82002-12-16 19:32:50 +00004008
4009 // If idxReg is a constant, we don't need to perform the multiply!
Chris Lattner28977af2004-04-05 01:30:19 +00004010 if (ConstantInt *CSI = dyn_cast<ConstantInt>(idx)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00004011 if (!CSI->isNullValue()) {
Chris Lattner28977af2004-04-05 01:30:19 +00004012 unsigned Offset = elementSize*CSI->getRawValue();
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004013 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004014 BuildMI(*MBB, IP, X86::ADD32ri, 2, TargetReg)
Chris Lattneree352852004-02-29 07:22:16 +00004015 .addReg(Reg).addImm(Offset);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004016 --IP; // Insert the next instruction before this one.
4017 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00004018 }
4019 } else if (elementSize == 1) {
4020 // If the element size is 1, we don't have to multiply, just add
4021 unsigned idxReg = getReg(idx, MBB, IP);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004022 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004023 BuildMI(*MBB, IP, X86::ADD32rr, 2,TargetReg).addReg(Reg).addReg(idxReg);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004024 --IP; // Insert the next instruction before this one.
4025 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00004026 } else {
4027 unsigned idxReg = getReg(idx, MBB, IP);
4028 unsigned OffsetReg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00004029
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004030 // Make sure we can back the iterator up to point to the first
4031 // instruction emitted.
4032 MachineBasicBlock::iterator BeforeIt = IP;
4033 if (IP == MBB->begin())
4034 BeforeIt = MBB->end();
4035 else
4036 --BeforeIt;
Chris Lattnerb2acc512003-10-19 21:09:10 +00004037 doMultiplyConst(MBB, IP, OffsetReg, Type::IntTy, idxReg, elementSize);
4038
Chris Lattner8a307e82002-12-16 19:32:50 +00004039 // Emit an ADD to add OffsetReg to the basePtr.
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004040 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004041 BuildMI(*MBB, IP, X86::ADD32rr, 2, TargetReg)
Chris Lattneree352852004-02-29 07:22:16 +00004042 .addReg(Reg).addReg(OffsetReg);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00004043
4044 // Step to the first instruction of the multiply.
4045 if (BeforeIt == MBB->end())
4046 IP = MBB->begin();
4047 else
4048 IP = ++BeforeIt;
4049
4050 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00004051 }
Brian Gaeke20244b72002-12-12 15:33:40 +00004052 }
Brian Gaeke20244b72002-12-12 15:33:40 +00004053 }
Brian Gaeke20244b72002-12-12 15:33:40 +00004054}
4055
Chris Lattner065faeb2002-12-28 20:24:02 +00004056/// visitAllocaInst - If this is a fixed size alloca, allocate space from the
4057/// frame manager, otherwise do it the hard way.
4058///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00004059void X86ISel::visitAllocaInst(AllocaInst &I) {
Chris Lattner9f1b5312004-05-13 15:12:43 +00004060 // If this is a fixed size alloca in the entry block for the function, we
4061 // statically stack allocate the space, so we don't need to do anything here.
4062 //
Chris Lattnercb2fd552004-05-13 07:40:27 +00004063 if (dyn_castFixedAlloca(&I)) return;
Chris Lattner9f1b5312004-05-13 15:12:43 +00004064
Brian Gaekee48ec012002-12-13 06:46:31 +00004065 // Find the data size of the alloca inst's getAllocatedType.
Chris Lattner065faeb2002-12-28 20:24:02 +00004066 const Type *Ty = I.getAllocatedType();
4067 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
4068
Chris Lattner065faeb2002-12-28 20:24:02 +00004069 // Create a register to hold the temporary result of multiplying the type size
4070 // constant by the variable amount.
4071 unsigned TotalSizeReg = makeAnotherReg(Type::UIntTy);
4072 unsigned SrcReg1 = getReg(I.getArraySize());
Chris Lattner065faeb2002-12-28 20:24:02 +00004073
4074 // TotalSizeReg = mul <numelements>, <TypeSize>
4075 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00004076 doMultiplyConst(BB, MBBI, TotalSizeReg, Type::UIntTy, SrcReg1, TySize);
Chris Lattner065faeb2002-12-28 20:24:02 +00004077
4078 // AddedSize = add <TotalSizeReg>, 15
4079 unsigned AddedSizeReg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004080 BuildMI(BB, X86::ADD32ri, 2, AddedSizeReg).addReg(TotalSizeReg).addImm(15);
Chris Lattner065faeb2002-12-28 20:24:02 +00004081
4082 // AlignedSize = and <AddedSize>, ~15
4083 unsigned AlignedSize = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004084 BuildMI(BB, X86::AND32ri, 2, AlignedSize).addReg(AddedSizeReg).addImm(~15);
Chris Lattner065faeb2002-12-28 20:24:02 +00004085
Brian Gaekee48ec012002-12-13 06:46:31 +00004086 // Subtract size from stack pointer, thereby allocating some space.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004087 BuildMI(BB, X86::SUB32rr, 2, X86::ESP).addReg(X86::ESP).addReg(AlignedSize);
Chris Lattner065faeb2002-12-28 20:24:02 +00004088
Brian Gaekee48ec012002-12-13 06:46:31 +00004089 // Put a pointer to the space into the result register, by copying
4090 // the stack pointer.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00004091 BuildMI(BB, X86::MOV32rr, 1, getReg(I)).addReg(X86::ESP);
Chris Lattner065faeb2002-12-28 20:24:02 +00004092
Misha Brukman48196b32003-05-03 02:18:17 +00004093 // Inform the Frame Information that we have just allocated a variable-sized
Chris Lattner065faeb2002-12-28 20:24:02 +00004094 // object.
4095 F->getFrameInfo()->CreateVariableSizedObject();
Brian Gaeke20244b72002-12-12 15:33:40 +00004096}
Chris Lattner3e130a22003-01-13 00:32:26 +00004097
4098/// visitMallocInst - Malloc instructions are code generated into direct calls
4099/// to the library malloc.
4100///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00004101void X86ISel::visitMallocInst(MallocInst &I) {
Chris Lattner3e130a22003-01-13 00:32:26 +00004102 unsigned AllocSize = TM.getTargetData().getTypeSize(I.getAllocatedType());
4103 unsigned Arg;
4104
4105 if (ConstantUInt *C = dyn_cast<ConstantUInt>(I.getOperand(0))) {
4106 Arg = getReg(ConstantUInt::get(Type::UIntTy, C->getValue() * AllocSize));
4107 } else {
4108 Arg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00004109 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00004110 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00004111 doMultiplyConst(BB, MBBI, Arg, Type::UIntTy, Op0Reg, AllocSize);
Chris Lattner3e130a22003-01-13 00:32:26 +00004112 }
4113
4114 std::vector<ValueRecord> Args;
4115 Args.push_back(ValueRecord(Arg, Type::UIntTy));
4116 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00004117 1).addExternalSymbol("malloc", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00004118 doCall(ValueRecord(getReg(I), I.getType()), TheCall, Args);
4119}
4120
4121
4122/// visitFreeInst - Free instructions are code gen'd to call the free libc
4123/// function.
4124///
Misha Brukmaneae1bf12004-09-21 18:21:21 +00004125void X86ISel::visitFreeInst(FreeInst &I) {
Chris Lattner3e130a22003-01-13 00:32:26 +00004126 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00004127 Args.push_back(ValueRecord(I.getOperand(0)));
Chris Lattner3e130a22003-01-13 00:32:26 +00004128 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00004129 1).addExternalSymbol("free", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00004130 doCall(ValueRecord(0, Type::VoidTy), TheCall, Args);
4131}
4132
Chris Lattnerd281de22003-07-26 23:49:58 +00004133/// createX86SimpleInstructionSelector - This pass converts an LLVM function
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00004134/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00004135/// generated code sucks but the implementation is nice and simple.
4136///
Chris Lattnerf70e0c22003-12-28 21:23:38 +00004137FunctionPass *llvm::createX86SimpleInstructionSelector(TargetMachine &TM) {
Misha Brukmaneae1bf12004-09-21 18:21:21 +00004138 return new X86ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00004139}