blob: 4a44dbf419b962a088fc0b0ab3b22f72d758a4ed [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===//
2//
3// This file defines a simple peephole instruction selector for the x86 platform
4//
5//===----------------------------------------------------------------------===//
6
7#include "X86.h"
Chris Lattner055c9652002-10-29 21:05:24 +00008#include "X86InstrInfo.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +00009#include "X86InstrBuilder.h"
Chris Lattner72614082002-10-25 22:55:53 +000010#include "llvm/Function.h"
11#include "llvm/iTerminators.h"
Brian Gaeke1749d632002-11-07 17:59:21 +000012#include "llvm/iOperators.h"
Brian Gaekea1719c92002-10-31 23:03:59 +000013#include "llvm/iOther.h"
Chris Lattner51b49a92002-11-02 19:45:49 +000014#include "llvm/iPHINode.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +000015#include "llvm/iMemory.h"
Chris Lattner72614082002-10-25 22:55:53 +000016#include "llvm/Type.h"
Brian Gaeke20244b72002-12-12 15:33:40 +000017#include "llvm/DerivedTypes.h"
Chris Lattnerc5291f52002-10-27 21:16:59 +000018#include "llvm/Constants.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000019#include "llvm/Pass.h"
Chris Lattner341a9372002-10-29 17:43:55 +000020#include "llvm/CodeGen/MachineFunction.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/Target/TargetMachine.h"
Chris Lattner72614082002-10-25 22:55:53 +000023#include "llvm/Support/InstVisitor.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000024#include "llvm/Target/MRegisterInfo.h"
25#include <map>
Chris Lattner72614082002-10-25 22:55:53 +000026
Chris Lattner06925362002-11-17 21:56:38 +000027using namespace MOTy; // Get Use, Def, UseAndDef
28
Chris Lattner333b2fa2002-12-13 10:09:43 +000029
30/// BMI - A special BuildMI variant that takes an iterator to insert the
31/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000032/// this is the version for when you have a destination register in mind.
33inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattner333b2fa2002-12-13 10:09:43 +000034 MachineBasicBlock::iterator &I,
35 MachineOpCode Opcode,
36 unsigned NumOperands,
37 unsigned DestReg) {
Chris Lattnerd7d38722002-12-13 13:04:04 +000038 assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattner333b2fa2002-12-13 10:09:43 +000039 MachineInstr *MI = new MachineInstr(Opcode, NumOperands+1, true, true);
Brian Gaeke71794c02002-12-13 11:22:48 +000040 I = ++MBB->insert(I, MI);
Chris Lattner333b2fa2002-12-13 10:09:43 +000041 return MachineInstrBuilder(MI).addReg(DestReg, MOTy::Def);
42}
43
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000044/// BMI - A special BuildMI variant that takes an iterator to insert the
45/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000046inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000047 MachineBasicBlock::iterator &I,
48 MachineOpCode Opcode,
49 unsigned NumOperands) {
Chris Lattnerd7d38722002-12-13 13:04:04 +000050 assert(I > MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000051 MachineInstr *MI = new MachineInstr(Opcode, NumOperands, true, true);
Brian Gaeke71794c02002-12-13 11:22:48 +000052 I = ++MBB->insert(I, MI);
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000053 return MachineInstrBuilder(MI);
54}
55
Chris Lattner333b2fa2002-12-13 10:09:43 +000056
Chris Lattner72614082002-10-25 22:55:53 +000057namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000058 struct ISel : public FunctionPass, InstVisitor<ISel> {
59 TargetMachine &TM;
Chris Lattner341a9372002-10-29 17:43:55 +000060 MachineFunction *F; // The function we are compiling into
61 MachineBasicBlock *BB; // The current MBB we are compiling
Chris Lattner72614082002-10-25 22:55:53 +000062
63 unsigned CurReg;
64 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
65
Chris Lattner333b2fa2002-12-13 10:09:43 +000066 // MBBMap - Mapping between LLVM BB -> Machine BB
67 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
68
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000069 ISel(TargetMachine &tm)
70 : TM(tm), F(0), BB(0), CurReg(MRegisterInfo::FirstVirtualRegister) {}
Chris Lattner72614082002-10-25 22:55:53 +000071
72 /// runOnFunction - Top level implementation of instruction selection for
73 /// the entire function.
74 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000075 bool runOnFunction(Function &Fn) {
Chris Lattner36b36032002-10-29 23:40:58 +000076 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +000077
78 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
79 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
80
81 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000082 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +000083
84 // Select the PHI nodes
85 SelectPHINodes();
86
Chris Lattner72614082002-10-25 22:55:53 +000087 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +000088 MBBMap.clear();
Chris Lattner94e8ee22002-11-21 17:26:58 +000089 CurReg = MRegisterInfo::FirstVirtualRegister;
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000090 F = 0;
Chris Lattner72614082002-10-25 22:55:53 +000091 return false; // We never modify the LLVM itself.
92 }
93
94 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +000095 /// block. This simply creates a new MachineBasicBlock to emit code into
96 /// and adds it to the current MachineFunction. Subsequent visit* for
97 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +000098 ///
99 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000100 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000101 }
102
Chris Lattner333b2fa2002-12-13 10:09:43 +0000103
104 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
105 /// because we have to generate our sources into the source basic blocks,
106 /// not the current one.
107 ///
108 void SelectPHINodes();
109
Chris Lattner72614082002-10-25 22:55:53 +0000110 // Visitation methods for various instructions. These methods simply emit
111 // fixed X86 code for each instruction.
112 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000113
114 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000115 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000116 void visitBranchInst(BranchInst &BI);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000117 void visitCallInst(CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000118
119 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000120 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000121 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
122 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Brian Gaeke20244b72002-12-12 15:33:40 +0000123 void doMultiply(unsigned destReg, const Type *resultType,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000124 unsigned op0Reg, unsigned op1Reg,
125 MachineBasicBlock *MBB,
126 MachineBasicBlock::iterator &MBBI);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000127 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000128
Chris Lattnerf01729e2002-11-02 20:54:46 +0000129 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
130 void visitRem(BinaryOperator &B) { visitDivRem(B); }
131 void visitDivRem(BinaryOperator &B);
132
Chris Lattnere2954c82002-11-02 20:04:26 +0000133 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000134 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
135 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
136 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000137
138 // Binary comparison operators
Chris Lattner05093a52002-11-21 15:52:38 +0000139 void visitSetCCInst(SetCondInst &I, unsigned OpNum);
140 void visitSetEQ(SetCondInst &I) { visitSetCCInst(I, 0); }
141 void visitSetNE(SetCondInst &I) { visitSetCCInst(I, 1); }
142 void visitSetLT(SetCondInst &I) { visitSetCCInst(I, 2); }
143 void visitSetGT(SetCondInst &I) { visitSetCCInst(I, 3); }
144 void visitSetLE(SetCondInst &I) { visitSetCCInst(I, 4); }
145 void visitSetGE(SetCondInst &I) { visitSetCCInst(I, 5); }
Chris Lattner6fc3c522002-11-17 21:11:55 +0000146
147 // Memory Instructions
148 void visitLoadInst(LoadInst &I);
149 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000150 void visitGetElementPtrInst(GetElementPtrInst &I);
151 void visitMallocInst(MallocInst &I);
Brian Gaekee48ec012002-12-13 06:46:31 +0000152 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000153 void visitAllocaInst(AllocaInst &I);
154
Chris Lattnere2954c82002-11-02 20:04:26 +0000155 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000156 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000157 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000158 void visitCastInst(CastInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000159
160 void visitInstruction(Instruction &I) {
161 std::cerr << "Cannot instruction select: " << I;
162 abort();
163 }
164
Brian Gaeke95780cc2002-12-13 07:56:18 +0000165 /// promote32 - Make a value 32-bits wide, and put it somewhere.
166 void promote32 (const unsigned targetReg, Value *v);
167
168 // emitGEPOperation - Common code shared between visitGetElementPtrInst and
Chris Lattnerc0812d82002-12-13 06:56:29 +0000169 // constant expression GEP support.
170 //
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000171 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator&IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000172 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000173 User::op_iterator IdxEnd, unsigned TargetReg);
174
Chris Lattnerc5291f52002-10-27 21:16:59 +0000175 /// copyConstantToRegister - Output the instructions required to put the
176 /// specified constant into the specified register.
177 ///
Chris Lattner333b2fa2002-12-13 10:09:43 +0000178 void copyConstantToRegister(Constant *C, unsigned Reg,
179 MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000180 MachineBasicBlock::iterator &MBBI);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000181
Brian Gaeke20244b72002-12-12 15:33:40 +0000182 /// makeAnotherReg - This method returns the next register number
183 /// we haven't yet used.
Chris Lattnerc0812d82002-12-13 06:56:29 +0000184 unsigned makeAnotherReg(const Type *Ty) {
185 // Add the mapping of regnumber => reg class to MachineFunction
186 F->addRegMap(CurReg, TM.getRegisterInfo()->getRegClassForType(Ty));
187 return CurReg++;
Brian Gaeke20244b72002-12-12 15:33:40 +0000188 }
189
Chris Lattner72614082002-10-25 22:55:53 +0000190 /// getReg - This method turns an LLVM value into a register number. This
191 /// is guaranteed to produce the same register number for a particular value
192 /// every time it is queried.
193 ///
194 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000195 unsigned getReg(Value *V) {
196 // Just append to the end of the current bb.
197 MachineBasicBlock::iterator It = BB->end();
198 return getReg(V, BB, It);
199 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000200 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000201 MachineBasicBlock::iterator &IPt) {
Chris Lattner72614082002-10-25 22:55:53 +0000202 unsigned &Reg = RegMap[V];
Misha Brukmand2cc0172002-11-20 00:58:23 +0000203 if (Reg == 0) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000204 Reg = makeAnotherReg(V->getType());
Misha Brukmand2cc0172002-11-20 00:58:23 +0000205 RegMap[V] = Reg;
Misha Brukmand2cc0172002-11-20 00:58:23 +0000206 }
Chris Lattner72614082002-10-25 22:55:53 +0000207
Chris Lattner6f8fd252002-10-27 21:23:43 +0000208 // If this operand is a constant, emit the code to copy the constant into
209 // the register here...
210 //
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000211 if (Constant *C = dyn_cast<Constant>(V)) {
Brian Gaeke992447f2002-12-13 11:39:18 +0000212 copyConstantToRegister(C, Reg, MBB, IPt);
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000213 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
214 // Move the address of the global into the register
Brian Gaeke71794c02002-12-13 11:22:48 +0000215 BMI(MBB, IPt, X86::MOVir32, 1, Reg).addReg(GV);
Chris Lattnerd6c4cfa2002-12-04 17:15:34 +0000216 } else if (Argument *A = dyn_cast<Argument>(V)) {
Brian Gaeke95780cc2002-12-13 07:56:18 +0000217 // Find the position of the argument in the argument list.
218 const Function *f = F->getFunction ();
Brian Gaekeed6902c2002-12-13 09:28:50 +0000219 // The function's arguments look like this:
220 // [EBP] -- copy of old EBP
221 // [EBP + 4] -- return address
222 // [EBP + 8] -- first argument (leftmost lexically)
223 // So we want to start with counter = 2.
Chris Lattner333b2fa2002-12-13 10:09:43 +0000224 int counter = 2, argPos = -1;
Brian Gaeke95780cc2002-12-13 07:56:18 +0000225 for (Function::const_aiterator ai = f->abegin (), ae = f->aend ();
226 ai != ae; ++ai) {
Brian Gaeke95780cc2002-12-13 07:56:18 +0000227 if (&(*ai) == A) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000228 argPos = counter;
Brian Gaekeed6902c2002-12-13 09:28:50 +0000229 break; // Only need to find it once. ;-)
Brian Gaeke95780cc2002-12-13 07:56:18 +0000230 }
Brian Gaekeed6902c2002-12-13 09:28:50 +0000231 ++counter;
Brian Gaeke95780cc2002-12-13 07:56:18 +0000232 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000233 assert (argPos != -1
Brian Gaeke95780cc2002-12-13 07:56:18 +0000234 && "Argument not found in current function's argument list");
Chris Lattner333b2fa2002-12-13 10:09:43 +0000235 // Load it out of the stack frame at EBP + 4*argPos.
Brian Gaeke71794c02002-12-13 11:22:48 +0000236 addRegOffset(BMI(MBB, IPt, X86::MOVmr32, 4, Reg), X86::EBP, 4*argPos);
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000237 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000238
Chris Lattner72614082002-10-25 22:55:53 +0000239 return Reg;
240 }
Chris Lattner72614082002-10-25 22:55:53 +0000241 };
242}
243
Chris Lattner43189d12002-11-17 20:07:45 +0000244/// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
245/// Representation.
246///
247enum TypeClass {
248 cByte, cShort, cInt, cLong, cFloat, cDouble
249};
250
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000251/// getClass - Turn a primitive type into a "class" number which is based on the
252/// size of the type, and whether or not it is floating point.
253///
Chris Lattner43189d12002-11-17 20:07:45 +0000254static inline TypeClass getClass(const Type *Ty) {
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000255 switch (Ty->getPrimitiveID()) {
256 case Type::SByteTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000257 case Type::UByteTyID: return cByte; // Byte operands are class #0
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000258 case Type::ShortTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000259 case Type::UShortTyID: return cShort; // Short operands are class #1
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000260 case Type::IntTyID:
261 case Type::UIntTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000262 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000263
264 case Type::LongTyID:
Chris Lattnerc0812d82002-12-13 06:56:29 +0000265 case Type::ULongTyID: //return cLong; // Longs are class #3
266 return cInt; // FIXME: LONGS ARE TREATED AS INTS!
267
Chris Lattner43189d12002-11-17 20:07:45 +0000268 case Type::FloatTyID: return cFloat; // Float is class #4
269 case Type::DoubleTyID: return cDouble; // Doubles are class #5
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000270 default:
271 assert(0 && "Invalid type to getClass!");
Chris Lattner43189d12002-11-17 20:07:45 +0000272 return cByte; // not reached
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000273 }
274}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000275
Chris Lattner06925362002-11-17 21:56:38 +0000276
Chris Lattnerc5291f52002-10-27 21:16:59 +0000277/// copyConstantToRegister - Output the instructions required to put the
278/// specified constant into the specified register.
279///
Chris Lattner333b2fa2002-12-13 10:09:43 +0000280void ISel::copyConstantToRegister(Constant *C, unsigned R,
Brian Gaeke71794c02002-12-13 11:22:48 +0000281 MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000282 MachineBasicBlock::iterator &IP) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000283 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
284 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000285 emitGEPOperation(BB, IP, CE->getOperand(0),
286 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000287 return;
288 }
289
Brian Gaeke20244b72002-12-12 15:33:40 +0000290 std::cerr << "Offending expr: " << C << "\n";
Chris Lattnerc0812d82002-12-13 06:56:29 +0000291 assert (0 && "Constant expressions not yet handled!\n");
Brian Gaeke20244b72002-12-12 15:33:40 +0000292 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000293
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000294 if (C->getType()->isIntegral()) {
295 unsigned Class = getClass(C->getType());
296 assert(Class != 3 && "Type not handled yet!");
297
298 static const unsigned IntegralOpcodeTab[] = {
299 X86::MOVir8, X86::MOVir16, X86::MOVir32
300 };
301
302 if (C->getType()->isSigned()) {
303 ConstantSInt *CSI = cast<ConstantSInt>(C);
Brian Gaeke71794c02002-12-13 11:22:48 +0000304 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addSImm(CSI->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000305 } else {
306 ConstantUInt *CUI = cast<ConstantUInt>(C);
Brian Gaeke71794c02002-12-13 11:22:48 +0000307 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addZImm(CUI->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000308 }
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000309 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000310 // Copy zero (null pointer) to the register.
Brian Gaeke71794c02002-12-13 11:22:48 +0000311 BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(0);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000312 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000313 unsigned SrcReg = getReg(CPR->getValue(), BB, IP);
Brian Gaeke71794c02002-12-13 11:22:48 +0000314 BMI(MBB, IP, X86::MOVrr32, 1, R).addReg(SrcReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000315 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +0000316 std::cerr << "Offending constant: " << C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000317 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000318 }
319}
320
Chris Lattner333b2fa2002-12-13 10:09:43 +0000321/// SelectPHINodes - Insert machine code to generate phis. This is tricky
322/// because we have to generate our sources into the source basic blocks, not
323/// the current one.
324///
325void ISel::SelectPHINodes() {
326 const Function &LF = *F->getFunction(); // The LLVM function...
327 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
328 const BasicBlock *BB = I;
329 MachineBasicBlock *MBB = MBBMap[I];
330
331 // Loop over all of the PHI nodes in the LLVM basic block...
332 unsigned NumPHIs = 0;
333 for (BasicBlock::const_iterator I = BB->begin();
334 PHINode *PN = (PHINode*)dyn_cast<PHINode>(&*I); ++I) {
335 // Create a new machine instr PHI node, and insert it.
336 MachineInstr *MI = BuildMI(X86::PHI, PN->getNumOperands(), getReg(*PN));
337 MBB->insert(MBB->begin()+NumPHIs++, MI); // Insert it at the top of the BB
338
339 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
340 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
341
342 // Get the incoming value into a virtual register. If it is not already
343 // available in a virtual register, insert the computation code into
344 // PredMBB
Chris Lattner92053632002-12-13 11:52:34 +0000345 //
346
347 MachineBasicBlock::iterator PI = PredMBB->begin();
348 while ((*PI)->getOpcode() == X86::PHI) ++PI;
349
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000350 MI->addRegOperand(getReg(PN->getIncomingValue(i), PredMBB, PI));
Chris Lattner333b2fa2002-12-13 10:09:43 +0000351
352 // FIXME: Pass in the MachineBasicBlocks instead of the basic blocks...
353 MI->addPCDispOperand(PN->getIncomingBlock(i)); // PredMBB
354 }
355 }
356 }
357}
358
359
Chris Lattner06925362002-11-17 21:56:38 +0000360
Brian Gaeke1749d632002-11-07 17:59:21 +0000361/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
362/// register, then move it to wherever the result should be.
363/// We handle FP setcc instructions by pushing them, doing a
364/// compare-and-pop-twice, and then copying the concodes to the main
365/// processor's concodes (I didn't make this up, it's in the Intel manual)
366///
Chris Lattner05093a52002-11-21 15:52:38 +0000367void ISel::visitSetCCInst(SetCondInst &I, unsigned OpNum) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000368 // The arguments are already supposed to be of the same type.
Chris Lattner05093a52002-11-21 15:52:38 +0000369 const Type *CompTy = I.getOperand(0)->getType();
370 unsigned reg1 = getReg(I.getOperand(0));
371 unsigned reg2 = getReg(I.getOperand(1));
372
373 unsigned Class = getClass(CompTy);
374 switch (Class) {
375 // Emit: cmp <var1>, <var2> (do the comparison). We can
376 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
377 // 32-bit.
378 case cByte:
379 BuildMI (BB, X86::CMPrr8, 2).addReg (reg1).addReg (reg2);
380 break;
381 case cShort:
382 BuildMI (BB, X86::CMPrr16, 2).addReg (reg1).addReg (reg2);
383 break;
384 case cInt:
385 BuildMI (BB, X86::CMPrr32, 2).addReg (reg1).addReg (reg2);
386 break;
387
388 // Push the variables on the stack with fldl opcodes.
389 // FIXME: assuming var1, var2 are in memory, if not, spill to
390 // stack first
391 case cFloat: // Floats
Brian Gaeke20244b72002-12-12 15:33:40 +0000392 BuildMI (BB, X86::FLDr32, 1).addReg (reg1);
393 BuildMI (BB, X86::FLDr32, 1).addReg (reg2);
Chris Lattner05093a52002-11-21 15:52:38 +0000394 break;
395 case cDouble: // Doubles
Brian Gaeke20244b72002-12-12 15:33:40 +0000396 BuildMI (BB, X86::FLDr64, 1).addReg (reg1);
397 BuildMI (BB, X86::FLDr64, 1).addReg (reg2);
Chris Lattner05093a52002-11-21 15:52:38 +0000398 break;
399 case cLong:
400 default:
401 visitInstruction(I);
402 }
403
404 if (CompTy->isFloatingPoint()) {
405 // (Non-trapping) compare and pop twice.
406 BuildMI (BB, X86::FUCOMPP, 0);
407 // Move fp status word (concodes) to ax.
408 BuildMI (BB, X86::FNSTSWr8, 1, X86::AX);
409 // Load real concodes from ax.
410 BuildMI (BB, X86::SAHF, 1).addReg(X86::AH);
411 }
412
Brian Gaeke1749d632002-11-07 17:59:21 +0000413 // Emit setOp instruction (extract concode; clobbers ax),
414 // using the following mapping:
415 // LLVM -> X86 signed X86 unsigned
416 // ----- ----- -----
417 // seteq -> sete sete
418 // setne -> setne setne
419 // setlt -> setl setb
420 // setgt -> setg seta
421 // setle -> setle setbe
422 // setge -> setge setae
Chris Lattner05093a52002-11-21 15:52:38 +0000423
424 static const unsigned OpcodeTab[2][6] = {
Chris Lattner4b4e9dd2002-11-21 16:19:42 +0000425 {X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAr, X86::SETBEr, X86::SETAEr},
426 {X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGr, X86::SETLEr, X86::SETGEr},
Chris Lattner05093a52002-11-21 15:52:38 +0000427 };
428
429 BuildMI(BB, OpcodeTab[CompTy->isSigned()][OpNum], 0, X86::AL);
430
Brian Gaeke1749d632002-11-07 17:59:21 +0000431 // Put it in the result using a move.
Chris Lattner05093a52002-11-21 15:52:38 +0000432 BuildMI (BB, X86::MOVrr8, 1, getReg(I)).addReg(X86::AL);
Brian Gaeke1749d632002-11-07 17:59:21 +0000433}
Chris Lattner51b49a92002-11-02 19:45:49 +0000434
Brian Gaekec2505982002-11-30 11:57:28 +0000435/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
436/// operand, in the specified target register.
437void
Chris Lattnerc0812d82002-12-13 06:56:29 +0000438ISel::promote32 (unsigned targetReg, Value *v)
Brian Gaekec2505982002-11-30 11:57:28 +0000439{
440 unsigned vReg = getReg (v);
441 unsigned Class = getClass (v->getType ());
442 bool isUnsigned = v->getType ()->isUnsigned ();
443 assert (((Class == cByte) || (Class == cShort) || (Class == cInt))
444 && "Unpromotable operand class in promote32");
445 switch (Class)
446 {
447 case cByte:
448 // Extend value into target register (8->32)
449 if (isUnsigned)
450 BuildMI (BB, X86::MOVZXr32r8, 1, targetReg).addReg (vReg);
451 else
452 BuildMI (BB, X86::MOVSXr32r8, 1, targetReg).addReg (vReg);
453 break;
454 case cShort:
455 // Extend value into target register (16->32)
456 if (isUnsigned)
457 BuildMI (BB, X86::MOVZXr32r16, 1, targetReg).addReg (vReg);
458 else
459 BuildMI (BB, X86::MOVSXr32r16, 1, targetReg).addReg (vReg);
460 break;
461 case cInt:
462 // Move value into target register (32->32)
463 BuildMI (BB, X86::MOVrr32, 1, targetReg).addReg (vReg);
464 break;
465 }
466}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000467
Chris Lattner72614082002-10-25 22:55:53 +0000468/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
469/// we have the following possibilities:
470///
471/// ret void: No return value, simply emit a 'ret' instruction
472/// ret sbyte, ubyte : Extend value into EAX and return
473/// ret short, ushort: Extend value into EAX and return
474/// ret int, uint : Move value into EAX and return
475/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +0000476/// ret long, ulong : Move value into EAX/EDX and return
477/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +0000478///
Brian Gaekec2505982002-11-30 11:57:28 +0000479void
480ISel::visitReturnInst (ReturnInst &I)
481{
482 if (I.getNumOperands () == 0)
483 {
484 // Emit a 'ret' instruction
485 BuildMI (BB, X86::RET, 0);
486 return;
487 }
488 Value *rv = I.getOperand (0);
489 unsigned Class = getClass (rv->getType ());
490 switch (Class)
491 {
492 // integral return values: extend or move into EAX and return.
493 case cByte:
494 case cShort:
495 case cInt:
496 promote32 (X86::EAX, rv);
497 break;
498 // ret float/double: top of FP stack
499 // FLD <val>
500 case cFloat: // Floats
Brian Gaeke20244b72002-12-12 15:33:40 +0000501 BuildMI (BB, X86::FLDr32, 1).addReg (getReg (rv));
Brian Gaekec2505982002-11-30 11:57:28 +0000502 break;
503 case cDouble: // Doubles
Brian Gaeke20244b72002-12-12 15:33:40 +0000504 BuildMI (BB, X86::FLDr64, 1).addReg (getReg (rv));
Brian Gaekec2505982002-11-30 11:57:28 +0000505 break;
506 case cLong:
507 // ret long: use EAX(least significant 32 bits)/EDX (most
508 // significant 32)...uh, I think so Brain, but how do i call
509 // up the two parts of the value from inside this mouse
510 // cage? *zort*
511 default:
512 visitInstruction (I);
513 }
Chris Lattner43189d12002-11-17 20:07:45 +0000514 // Emit a 'ret' instruction
Brian Gaekec2505982002-11-30 11:57:28 +0000515 BuildMI (BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +0000516}
517
Chris Lattner51b49a92002-11-02 19:45:49 +0000518/// visitBranchInst - Handle conditional and unconditional branches here. Note
519/// that since code layout is frozen at this point, that if we are trying to
520/// jump to a block that is the immediate successor of the current block, we can
521/// just make a fall-through. (but we don't currently).
522///
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000523void
524ISel::visitBranchInst (BranchInst & BI)
525{
526 if (BI.isConditional ())
527 {
528 BasicBlock *ifTrue = BI.getSuccessor (0);
529 BasicBlock *ifFalse = BI.getSuccessor (1); // this is really unobvious
Chris Lattner2df035b2002-11-02 19:27:56 +0000530
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000531 // simplest thing I can think of: compare condition with zero,
532 // followed by jump-if-equal to ifFalse, and jump-if-nonequal to
533 // ifTrue
534 unsigned int condReg = getReg (BI.getCondition ());
Chris Lattner97ad9e12002-11-21 01:59:50 +0000535 BuildMI (BB, X86::CMPri8, 2).addReg (condReg).addZImm (0);
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000536 BuildMI (BB, X86::JNE, 1).addPCDisp (BI.getSuccessor (0));
537 BuildMI (BB, X86::JE, 1).addPCDisp (BI.getSuccessor (1));
538 }
539 else // unconditional branch
540 {
541 BuildMI (BB, X86::JMP, 1).addPCDisp (BI.getSuccessor (0));
542 }
Chris Lattner2df035b2002-11-02 19:27:56 +0000543}
544
Brian Gaeke18a20212002-11-29 12:01:58 +0000545/// visitCallInst - Push args on stack and do a procedure call instruction.
546void
547ISel::visitCallInst (CallInst & CI)
548{
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000549 // keep a counter of how many bytes we pushed on the stack
550 unsigned bytesPushed = 0;
551
Brian Gaeke18a20212002-11-29 12:01:58 +0000552 // Push the arguments on the stack in reverse order, as specified by
553 // the ABI.
Chris Lattnerd852c152002-12-03 20:30:12 +0000554 for (unsigned i = CI.getNumOperands()-1; i >= 1; --i)
Brian Gaeke18a20212002-11-29 12:01:58 +0000555 {
556 Value *v = CI.getOperand (i);
Brian Gaeke18a20212002-11-29 12:01:58 +0000557 switch (getClass (v->getType ()))
558 {
Brian Gaekec2505982002-11-30 11:57:28 +0000559 case cByte:
560 case cShort:
Brian Gaekebb25f2f2002-12-03 00:51:09 +0000561 // Promote V to 32 bits wide, and move the result into EAX,
562 // then push EAX.
Brian Gaekec2505982002-11-30 11:57:28 +0000563 promote32 (X86::EAX, v);
564 BuildMI (BB, X86::PUSHr32, 1).addReg (X86::EAX);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000565 bytesPushed += 4;
Brian Gaekec2505982002-11-30 11:57:28 +0000566 break;
Brian Gaeke18a20212002-11-29 12:01:58 +0000567 case cInt:
Chris Lattner33ced562002-12-04 06:56:56 +0000568 case cFloat: {
569 unsigned Reg = getReg(v);
570 BuildMI (BB, X86::PUSHr32, 1).addReg(Reg);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000571 bytesPushed += 4;
Brian Gaeke18a20212002-11-29 12:01:58 +0000572 break;
Chris Lattner33ced562002-12-04 06:56:56 +0000573 }
Brian Gaeke18a20212002-11-29 12:01:58 +0000574 default:
Brian Gaekebb25f2f2002-12-03 00:51:09 +0000575 // FIXME: long/ulong/double args not handled.
Brian Gaeke18a20212002-11-29 12:01:58 +0000576 visitInstruction (CI);
577 break;
578 }
579 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +0000580
581 if (Function *F = CI.getCalledFunction()) {
582 // Emit a CALL instruction with PC-relative displacement.
583 BuildMI(BB, X86::CALLpcrel32, 1).addPCDisp(F);
584 } else {
585 unsigned Reg = getReg(CI.getCalledValue());
586 BuildMI(BB, X86::CALLr32, 1).addReg(Reg);
587 }
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000588
589 // Adjust the stack by `bytesPushed' amount if non-zero
590 if (bytesPushed > 0)
591 BuildMI (BB, X86::ADDri32, 2).addReg(X86::ESP).addZImm(bytesPushed);
Chris Lattnera3243642002-12-04 23:45:28 +0000592
593 // If there is a return value, scavenge the result from the location the call
594 // leaves it in...
595 //
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000596 if (CI.getType() != Type::VoidTy) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000597 unsigned resultTypeClass = getClass (CI.getType ());
598 switch (resultTypeClass) {
599 case cByte:
600 case cShort:
601 case cInt: {
602 // Integral results are in %eax, or the appropriate portion
603 // thereof.
604 static const unsigned regRegMove[] = {
605 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
606 };
607 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
608 BuildMI (BB, regRegMove[resultTypeClass], 1,
609 getReg (CI)).addReg (AReg[resultTypeClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000610 break;
Brian Gaeke20244b72002-12-12 15:33:40 +0000611 }
612 case cFloat:
613 // Floating-point return values live in %st(0) (i.e., the top of
614 // the FP stack.) The general way to approach this is to do a
615 // FSTP to save the top of the FP stack on the real stack, then
616 // do a MOV to load the top of the real stack into the target
617 // register.
618 visitInstruction (CI); // FIXME: add the right args for the calls below
619 // BuildMI (BB, X86::FSTPm32, 0);
620 // BuildMI (BB, X86::MOVmr32, 0);
621 break;
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000622 default:
623 std::cerr << "Cannot get return value for call of type '"
624 << *CI.getType() << "'\n";
625 visitInstruction(CI);
626 }
Chris Lattnera3243642002-12-04 23:45:28 +0000627 }
Brian Gaekefa8d5712002-11-22 11:07:01 +0000628}
Chris Lattner2df035b2002-11-02 19:27:56 +0000629
Chris Lattner68aad932002-11-02 20:13:22 +0000630/// visitSimpleBinary - Implement simple binary operators for integral types...
631/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or,
632/// 4 for Xor.
633///
634void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
635 if (B.getType() == Type::BoolTy) // FIXME: Handle bools for logicals
Chris Lattnere2954c82002-11-02 20:04:26 +0000636 visitInstruction(B);
637
638 unsigned Class = getClass(B.getType());
639 if (Class > 2) // FIXME: Handle longs
640 visitInstruction(B);
641
642 static const unsigned OpcodeTab[][4] = {
Chris Lattner68aad932002-11-02 20:13:22 +0000643 // Arithmetic operators
644 { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32, 0 }, // ADD
645 { X86::SUBrr8, X86::SUBrr16, X86::SUBrr32, 0 }, // SUB
646
647 // Bitwise operators
Chris Lattnere2954c82002-11-02 20:04:26 +0000648 { X86::ANDrr8, X86::ANDrr16, X86::ANDrr32, 0 }, // AND
649 { X86:: ORrr8, X86:: ORrr16, X86:: ORrr32, 0 }, // OR
650 { X86::XORrr8, X86::XORrr16, X86::XORrr32, 0 }, // XOR
651 };
652
653 unsigned Opcode = OpcodeTab[OperatorClass][Class];
654 unsigned Op0r = getReg(B.getOperand(0));
655 unsigned Op1r = getReg(B.getOperand(1));
656 BuildMI(BB, Opcode, 2, getReg(B)).addReg(Op0r).addReg(Op1r);
657}
658
Brian Gaeke20244b72002-12-12 15:33:40 +0000659/// doMultiply - Emit appropriate instructions to multiply together
660/// the registers op0Reg and op1Reg, and put the result in destReg.
661/// The type of the result should be given as resultType.
662void
663ISel::doMultiply(unsigned destReg, const Type *resultType,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000664 unsigned op0Reg, unsigned op1Reg,
665 MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI)
Brian Gaeke20244b72002-12-12 15:33:40 +0000666{
667 unsigned Class = getClass (resultType);
668
669 // FIXME:
670 assert (Class <= 2 && "Someday, we will learn how to multiply"
671 "longs and floating-point numbers. This is not that day.");
672
673 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
674 static const unsigned MulOpcode[]={ X86::MULrr8, X86::MULrr16, X86::MULrr32 };
675 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
676 unsigned Reg = Regs[Class];
677
678 // Emit a MOV to put the first operand into the appropriately-sized
679 // subreg of EAX.
Brian Gaeke71794c02002-12-13 11:22:48 +0000680 BMI(MBB, MBBI, MovOpcode[Class], 1, Reg).addReg (op0Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000681
682 // Emit the appropriate multiply instruction.
Brian Gaeke71794c02002-12-13 11:22:48 +0000683 BMI(MBB, MBBI, MulOpcode[Class], 1).addReg (op1Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000684
685 // Emit another MOV to put the result into the destination register.
Brian Gaeke71794c02002-12-13 11:22:48 +0000686 BMI(MBB, MBBI, MovOpcode[Class], 1, destReg).addReg (Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000687}
688
Chris Lattnerca9671d2002-11-02 20:28:58 +0000689/// visitMul - Multiplies are not simple binary operators because they must deal
690/// with the EAX register explicitly.
691///
692void ISel::visitMul(BinaryOperator &I) {
Chris Lattner202a2d02002-12-13 13:07:42 +0000693 unsigned DestReg = getReg(I);
694 unsigned Op0Reg = getReg(I.getOperand(0));
695 unsigned Op1Reg = getReg(I.getOperand(1));
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000696 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattner202a2d02002-12-13 13:07:42 +0000697 doMultiply(DestReg, I.getType(), Op0Reg, Op1Reg, BB, MBBI);
Chris Lattnerf01729e2002-11-02 20:54:46 +0000698}
Chris Lattnerca9671d2002-11-02 20:28:58 +0000699
Chris Lattner06925362002-11-17 21:56:38 +0000700
Chris Lattnerf01729e2002-11-02 20:54:46 +0000701/// visitDivRem - Handle division and remainder instructions... these
702/// instruction both require the same instructions to be generated, they just
703/// select the result from a different register. Note that both of these
704/// instructions work differently for signed and unsigned operands.
705///
706void ISel::visitDivRem(BinaryOperator &I) {
707 unsigned Class = getClass(I.getType());
708 if (Class > 2) // FIXME: Handle longs
709 visitInstruction(I);
710
711 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
712 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
Brian Gaeke6559bb92002-11-14 22:32:30 +0000713 static const unsigned ExtOpcode[]={ X86::CBW , X86::CWD , X86::CDQ };
Chris Lattnerf01729e2002-11-02 20:54:46 +0000714 static const unsigned ClrOpcode[]={ X86::XORrr8, X86::XORrr16, X86::XORrr32 };
715 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
716
717 static const unsigned DivOpcode[][4] = {
718 { X86::DIVrr8 , X86::DIVrr16 , X86::DIVrr32 , 0 }, // Unsigned division
719 { X86::IDIVrr8, X86::IDIVrr16, X86::IDIVrr32, 0 }, // Signed division
720 };
721
722 bool isSigned = I.getType()->isSigned();
723 unsigned Reg = Regs[Class];
724 unsigned ExtReg = ExtRegs[Class];
Chris Lattner6fc3c522002-11-17 21:11:55 +0000725 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattnerf01729e2002-11-02 20:54:46 +0000726 unsigned Op1Reg = getReg(I.getOperand(1));
727
728 // Put the first operand into one of the A registers...
729 BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
730
731 if (isSigned) {
732 // Emit a sign extension instruction...
Chris Lattnera4978cc2002-12-01 23:24:58 +0000733 BuildMI(BB, ExtOpcode[Class], 0);
Chris Lattnerf01729e2002-11-02 20:54:46 +0000734 } else {
735 // If unsigned, emit a zeroing instruction... (reg = xor reg, reg)
736 BuildMI(BB, ClrOpcode[Class], 2, ExtReg).addReg(ExtReg).addReg(ExtReg);
737 }
738
Chris Lattner06925362002-11-17 21:56:38 +0000739 // Emit the appropriate divide or remainder instruction...
Chris Lattner92845e32002-11-21 18:54:29 +0000740 BuildMI(BB, DivOpcode[isSigned][Class], 1).addReg(Op1Reg);
Chris Lattner06925362002-11-17 21:56:38 +0000741
Chris Lattnerf01729e2002-11-02 20:54:46 +0000742 // Figure out which register we want to pick the result out of...
743 unsigned DestReg = (I.getOpcode() == Instruction::Div) ? Reg : ExtReg;
744
Chris Lattnerf01729e2002-11-02 20:54:46 +0000745 // Put the result into the destination register...
746 BuildMI(BB, MovOpcode[Class], 1, getReg(I)).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000747}
Chris Lattnere2954c82002-11-02 20:04:26 +0000748
Chris Lattner06925362002-11-17 21:56:38 +0000749
Brian Gaekea1719c92002-10-31 23:03:59 +0000750/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
751/// for constant immediate shift values, and for constant immediate
752/// shift values equal to 1. Even the general case is sort of special,
753/// because the shift amount has to be in CL, not just any old register.
754///
Chris Lattnerf01729e2002-11-02 20:54:46 +0000755void ISel::visitShiftInst (ShiftInst &I) {
756 unsigned Op0r = getReg (I.getOperand(0));
757 unsigned DestReg = getReg(I);
Chris Lattnere9913f22002-11-02 01:41:55 +0000758 bool isLeftShift = I.getOpcode() == Instruction::Shl;
759 bool isOperandSigned = I.getType()->isUnsigned();
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000760 unsigned OperandClass = getClass(I.getType());
761
762 if (OperandClass > 2)
763 visitInstruction(I); // Can't handle longs yet!
Chris Lattner796df732002-11-02 00:44:25 +0000764
Brian Gaekea1719c92002-10-31 23:03:59 +0000765 if (ConstantUInt *CUI = dyn_cast <ConstantUInt> (I.getOperand (1)))
766 {
Chris Lattner796df732002-11-02 00:44:25 +0000767 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
768 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
769 unsigned char shAmt = CUI->getValue();
770
Chris Lattnere9913f22002-11-02 01:41:55 +0000771 static const unsigned ConstantOperand[][4] = {
772 { X86::SHRir8, X86::SHRir16, X86::SHRir32, 0 }, // SHR
773 { X86::SARir8, X86::SARir16, X86::SARir32, 0 }, // SAR
774 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SHL
775 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000776 };
777
Chris Lattnere9913f22002-11-02 01:41:55 +0000778 const unsigned *OpTab = // Figure out the operand table to use
779 ConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000780
Brian Gaekea1719c92002-10-31 23:03:59 +0000781 // Emit: <insn> reg, shamt (shift-by-immediate opcode "ir" form.)
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000782 BuildMI(BB, OpTab[OperandClass], 2, DestReg).addReg(Op0r).addZImm(shAmt);
Brian Gaekea1719c92002-10-31 23:03:59 +0000783 }
784 else
785 {
786 // The shift amount is non-constant.
787 //
788 // In fact, you can only shift with a variable shift amount if
789 // that amount is already in the CL register, so we have to put it
790 // there first.
791 //
Chris Lattnere9913f22002-11-02 01:41:55 +0000792
Brian Gaekea1719c92002-10-31 23:03:59 +0000793 // Emit: move cl, shiftAmount (put the shift amount in CL.)
Chris Lattnerca9671d2002-11-02 20:28:58 +0000794 BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(getReg(I.getOperand(1)));
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000795
796 // This is a shift right (SHR).
Chris Lattnere9913f22002-11-02 01:41:55 +0000797 static const unsigned NonConstantOperand[][4] = {
798 { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32, 0 }, // SHR
799 { X86::SARrr8, X86::SARrr16, X86::SARrr32, 0 }, // SAR
800 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SHL
801 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000802 };
803
Chris Lattnere9913f22002-11-02 01:41:55 +0000804 const unsigned *OpTab = // Figure out the operand table to use
805 NonConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000806
Chris Lattner3a9a6932002-11-21 22:49:20 +0000807 BuildMI(BB, OpTab[OperandClass], 1, DestReg).addReg(Op0r);
Brian Gaekea1719c92002-10-31 23:03:59 +0000808 }
809}
810
Chris Lattner06925362002-11-17 21:56:38 +0000811
Chris Lattner6fc3c522002-11-17 21:11:55 +0000812/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
813/// instruction.
814///
815void ISel::visitLoadInst(LoadInst &I) {
816 unsigned Class = getClass(I.getType());
817 if (Class > 2) // FIXME: Handle longs and others...
818 visitInstruction(I);
819
820 static const unsigned Opcode[] = { X86::MOVmr8, X86::MOVmr16, X86::MOVmr32 };
821
822 unsigned AddressReg = getReg(I.getOperand(0));
823 addDirectMem(BuildMI(BB, Opcode[Class], 4, getReg(I)), AddressReg);
824}
825
Chris Lattner06925362002-11-17 21:56:38 +0000826
Chris Lattner6fc3c522002-11-17 21:11:55 +0000827/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
828/// instruction.
829///
830void ISel::visitStoreInst(StoreInst &I) {
831 unsigned Class = getClass(I.getOperand(0)->getType());
832 if (Class > 2) // FIXME: Handle longs and others...
833 visitInstruction(I);
834
835 static const unsigned Opcode[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 };
836
837 unsigned ValReg = getReg(I.getOperand(0));
838 unsigned AddressReg = getReg(I.getOperand(1));
839 addDirectMem(BuildMI(BB, Opcode[Class], 1+4), AddressReg).addReg(ValReg);
840}
841
842
Brian Gaekec11232a2002-11-26 10:43:30 +0000843/// visitCastInst - Here we have various kinds of copying with or without
844/// sign extension going on.
Brian Gaekefa8d5712002-11-22 11:07:01 +0000845void
846ISel::visitCastInst (CastInst &CI)
847{
Chris Lattnerf18a36e2002-12-03 18:15:59 +0000848 const Type *targetType = CI.getType ();
Brian Gaeke07f02612002-12-03 07:36:03 +0000849 Value *operand = CI.getOperand (0);
850 unsigned int operandReg = getReg (operand);
Chris Lattnerf18a36e2002-12-03 18:15:59 +0000851 const Type *sourceType = operand->getType ();
Brian Gaeke07f02612002-12-03 07:36:03 +0000852 unsigned int destReg = getReg (CI);
Brian Gaeked474e9c2002-12-06 10:49:33 +0000853 //
854 // Currently we handle:
855 //
856 // 1) cast * to bool
857 //
858 // 2) cast {sbyte, ubyte} to {sbyte, ubyte}
859 // cast {short, ushort} to {ushort, short}
860 // cast {int, uint, ptr} to {int, uint, ptr}
861 //
862 // 3) cast {sbyte, ubyte} to {ushort, short}
863 // cast {sbyte, ubyte} to {int, uint, ptr}
864 // cast {short, ushort} to {int, uint, ptr}
865 //
866 // 4) cast {int, uint, ptr} to {short, ushort}
867 // cast {int, uint, ptr} to {sbyte, ubyte}
868 // cast {short, ushort} to {sbyte, ubyte}
Chris Lattner7d255892002-12-13 11:31:59 +0000869
Brian Gaeked474e9c2002-12-06 10:49:33 +0000870 // 1) Implement casts to bool by using compare on the operand followed
871 // by set if not zero on the result.
872 if (targetType == Type::BoolTy)
873 {
874 BuildMI (BB, X86::CMPri8, 2).addReg (operandReg).addZImm (0);
875 BuildMI (BB, X86::SETNEr, 1, destReg);
876 return;
877 }
Chris Lattner7d255892002-12-13 11:31:59 +0000878
Brian Gaeked474e9c2002-12-06 10:49:33 +0000879 // 2) Implement casts between values of the same type class (as determined
880 // by getClass) by using a register-to-register move.
Chris Lattner7d255892002-12-13 11:31:59 +0000881 unsigned srcClass = sourceType == Type::BoolTy ? cByte : getClass(sourceType);
882 unsigned targClass = getClass (targetType);
Brian Gaeked474e9c2002-12-06 10:49:33 +0000883 static const unsigned regRegMove[] = {
884 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
885 };
886 if ((srcClass < 3) && (targClass < 3) && (srcClass == targClass))
887 {
888 BuildMI (BB, regRegMove[srcClass], 1, destReg).addReg (operandReg);
889 return;
890 }
891 // 3) Handle cast of SMALLER int to LARGER int using a move with sign
892 // extension or zero extension, depending on whether the source type
893 // was signed.
894 if ((srcClass < 3) && (targClass < 3) && (srcClass < targClass))
895 {
896 static const unsigned ops[] = {
897 X86::MOVSXr16r8, X86::MOVSXr32r8, X86::MOVSXr32r16,
898 X86::MOVZXr16r8, X86::MOVZXr32r8, X86::MOVZXr32r16
899 };
900 unsigned srcSigned = sourceType->isSigned ();
901 BuildMI (BB, ops[3 * srcSigned + srcClass + targClass - 1], 1,
902 destReg).addReg (operandReg);
903 return;
904 }
905 // 4) Handle cast of LARGER int to SMALLER int using a move to EAX
906 // followed by a move out of AX or AL.
907 if ((srcClass < 3) && (targClass < 3) && (srcClass > targClass))
908 {
909 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
910 BuildMI (BB, regRegMove[srcClass], 1,
911 AReg[srcClass]).addReg (operandReg);
912 BuildMI (BB, regRegMove[targClass], 1, destReg).addReg (AReg[srcClass]);
913 return;
914 }
915 // Anything we haven't handled already, we can't (yet) handle at all.
Brian Gaeke20244b72002-12-12 15:33:40 +0000916 //
917 // FP to integral casts can be handled with FISTP to store onto the
918 // stack while converting to integer, followed by a MOV to load from
919 // the stack into the result register. Integral to FP casts can be
920 // handled with MOV to store onto the stack, followed by a FILD to
921 // load from the stack while converting to FP. For the moment, I
922 // can't quite get straight in my head how to borrow myself some
923 // stack space and write on it. Otherwise, this would be trivial.
Brian Gaekefa8d5712002-11-22 11:07:01 +0000924 visitInstruction (CI);
925}
Brian Gaekea1719c92002-10-31 23:03:59 +0000926
Brian Gaeke20244b72002-12-12 15:33:40 +0000927/// visitGetElementPtrInst - I don't know, most programs don't have
928/// getelementptr instructions, right? That means we can put off
929/// implementing this, right? Right. This method emits machine
930/// instructions to perform type-safe pointer arithmetic. I am
931/// guessing this could be cleaned up somewhat to use fewer temporary
932/// registers.
933void
934ISel::visitGetElementPtrInst (GetElementPtrInst &I)
935{
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000936 MachineBasicBlock::iterator MI = BB->end();
937 emitGEPOperation(BB, MI, I.getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000938 I.op_begin()+1, I.op_end(), getReg(I));
Chris Lattnerc0812d82002-12-13 06:56:29 +0000939}
940
Brian Gaeke71794c02002-12-13 11:22:48 +0000941void ISel::emitGEPOperation(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000942 MachineBasicBlock::iterator &IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000943 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000944 User::op_iterator IdxEnd, unsigned TargetReg) {
945 const TargetData &TD = TM.getTargetData();
946 const Type *Ty = Src->getType();
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000947 unsigned basePtrReg = getReg(Src, BB, IP);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000948
Brian Gaeke20244b72002-12-12 15:33:40 +0000949 // GEPs have zero or more indices; we must perform a struct access
950 // or array access for each one.
Chris Lattnerc0812d82002-12-13 06:56:29 +0000951 for (GetElementPtrInst::op_iterator oi = IdxBegin,
952 oe = IdxEnd; oi != oe; ++oi) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000953 Value *idx = *oi;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000954 unsigned nextBasePtrReg = makeAnotherReg(Type::UIntTy);
Brian Gaeke20244b72002-12-12 15:33:40 +0000955 if (const StructType *StTy = dyn_cast <StructType> (Ty)) {
956 // It's a struct access. idx is the index into the structure,
957 // which names the field. This index must have ubyte type.
958 const ConstantUInt *CUI = cast <ConstantUInt> (idx);
959 assert (CUI->getType () == Type::UByteTy
960 && "Funny-looking structure index in GEP");
961 // Use the TargetData structure to pick out what the layout of
962 // the structure is in memory. Since the structure index must
963 // be constant, we can get its value and use it to find the
964 // right byte offset from the StructLayout class's list of
965 // structure member offsets.
966 unsigned idxValue = CUI->getValue ();
967 unsigned memberOffset =
968 TD.getStructLayout (StTy)->MemberOffsets[idxValue];
969 // Emit an ADD to add memberOffset to the basePtr.
Brian Gaeke71794c02002-12-13 11:22:48 +0000970 BMI(MBB, IP, X86::ADDri32, 2,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000971 nextBasePtrReg).addReg (basePtrReg).addZImm (memberOffset);
Brian Gaeke20244b72002-12-12 15:33:40 +0000972 // The next type is the member of the structure selected by the
973 // index.
974 Ty = StTy->getElementTypes ()[idxValue];
975 } else if (const SequentialType *SqTy = cast <SequentialType> (Ty)) {
976 // It's an array or pointer access: [ArraySize x ElementType].
Brian Gaeke20244b72002-12-12 15:33:40 +0000977 const Type *typeOfSequentialTypeIndex = SqTy->getIndexType ();
978 // idx is the index into the array. Unlike with structure
979 // indices, we may not know its actual value at code-generation
980 // time.
981 assert (idx->getType () == typeOfSequentialTypeIndex
982 && "Funny-looking array index in GEP");
983 // We want to add basePtrReg to (idxReg * sizeof
984 // ElementType). First, we must find the size of the pointed-to
985 // type. (Not coincidentally, the next type is the type of the
986 // elements in the array.)
987 Ty = SqTy->getElementType ();
988 unsigned elementSize = TD.getTypeSize (Ty);
Brian Gaeke71794c02002-12-13 11:22:48 +0000989 unsigned elementSizeReg = makeAnotherReg(typeOfSequentialTypeIndex);
990 copyConstantToRegister(ConstantSInt::get(typeOfSequentialTypeIndex,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000991 elementSize), elementSizeReg,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000992 BB, IP);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000993
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000994 unsigned idxReg = getReg(idx, BB, IP);
Brian Gaeke20244b72002-12-12 15:33:40 +0000995 // Emit a MUL to multiply the register holding the index by
996 // elementSize, putting the result in memberOffsetReg.
Chris Lattnerc0812d82002-12-13 06:56:29 +0000997 unsigned memberOffsetReg = makeAnotherReg(Type::UIntTy);
Brian Gaeke20244b72002-12-12 15:33:40 +0000998 doMultiply (memberOffsetReg, typeOfSequentialTypeIndex,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000999 elementSizeReg, idxReg, BB, IP);
Brian Gaeke20244b72002-12-12 15:33:40 +00001000 // Emit an ADD to add memberOffsetReg to the basePtr.
Brian Gaeke71794c02002-12-13 11:22:48 +00001001 BMI(MBB, IP, X86::ADDrr32, 2,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +00001002 nextBasePtrReg).addReg (basePtrReg).addReg (memberOffsetReg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001003 }
1004 // Now that we are here, further indices refer to subtypes of this
1005 // one, so we don't need to worry about basePtrReg itself, anymore.
1006 basePtrReg = nextBasePtrReg;
1007 }
1008 // After we have processed all the indices, the result is left in
1009 // basePtrReg. Move it to the register where we were expected to
1010 // put the answer. A 32-bit move should do it, because we are in
1011 // ILP32 land.
Brian Gaeke71794c02002-12-13 11:22:48 +00001012 BMI(MBB, IP, X86::MOVrr32, 1, TargetReg).addReg (basePtrReg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001013}
1014
1015
1016/// visitMallocInst - I know that personally, whenever I want to remember
1017/// something, I have to clear off some space in my brain.
1018void
1019ISel::visitMallocInst (MallocInst &I)
1020{
Brian Gaekee48ec012002-12-13 06:46:31 +00001021 // We assume that by this point, malloc instructions have been
1022 // lowered to calls, and dlsym will magically find malloc for us.
1023 // So we do not want to see malloc instructions here.
1024 visitInstruction (I);
1025}
1026
1027
1028/// visitFreeInst - same story as MallocInst
1029void
1030ISel::visitFreeInst (FreeInst &I)
1031{
1032 // We assume that by this point, free instructions have been
1033 // lowered to calls, and dlsym will magically find free for us.
1034 // So we do not want to see free instructions here.
Brian Gaeke20244b72002-12-12 15:33:40 +00001035 visitInstruction (I);
1036}
1037
1038
1039/// visitAllocaInst - I want some stack space. Come on, man, I said I
1040/// want some freakin' stack space.
1041void
1042ISel::visitAllocaInst (AllocaInst &I)
1043{
Brian Gaekee48ec012002-12-13 06:46:31 +00001044 // Find the data size of the alloca inst's getAllocatedType.
1045 const Type *allocatedType = I.getAllocatedType ();
1046 const TargetData &TD = TM.DataLayout;
1047 unsigned allocatedTypeSize = TD.getTypeSize (allocatedType);
1048 // Keep stack 32-bit aligned.
1049 unsigned int allocatedTypeWords = allocatedTypeSize / 4;
1050 if (allocatedTypeSize % 4 != 0) { allocatedTypeWords++; }
1051 // Subtract size from stack pointer, thereby allocating some space.
1052 BuildMI (BB, X86::SUBri32, 1, X86::ESP).addZImm (allocatedTypeWords * 4);
1053 // Put a pointer to the space into the result register, by copying
1054 // the stack pointer.
1055 BuildMI (BB, X86::MOVrr32, 1, getReg (I)).addReg (X86::ESP);
Brian Gaeke20244b72002-12-12 15:33:40 +00001056}
1057
1058
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001059/// createSimpleX86InstructionSelector - This pass converts an LLVM function
1060/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00001061/// generated code sucks but the implementation is nice and simple.
1062///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001063Pass *createSimpleX86InstructionSelector(TargetMachine &TM) {
1064 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00001065}