blob: 422b19591595ecf7ffac5a70cfa88f58a7aa5bbe [file] [log] [blame]
Chris Lattner5930d3d2005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattner655e7df2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the Evan Cheng and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengd49cc362006-02-10 22:24:32 +000015#define DEBUG_TYPE "isel"
Chris Lattner655e7df2005-11-16 01:54:32 +000016#include "X86.h"
Evan Chengbc7a0f442006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000018#include "X86ISelLowering.h"
Chris Lattner7c551262006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chris Lattner3f0f71b2005-11-19 02:11:08 +000022#include "llvm/GlobalValue.h"
Chris Lattner7c551262006-01-11 01:15:34 +000023#include "llvm/Instructions.h"
Chris Lattner5d70a7c2006-03-25 06:47:10 +000024#include "llvm/Intrinsics.h"
Chris Lattner7c551262006-01-11 01:15:34 +000025#include "llvm/Support/CFG.h"
Chris Lattner3f0f71b2005-11-19 02:11:08 +000026#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000027#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng73a1ad92006-01-10 20:26:56 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner7c551262006-01-11 01:15:34 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
30#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000031#include "llvm/CodeGen/SelectionDAGISel.h"
32#include "llvm/Target/TargetMachine.h"
33#include "llvm/Support/Debug.h"
34#include "llvm/ADT/Statistic.h"
Chris Lattnerde02d772006-01-22 23:41:00 +000035#include <iostream>
Evan Cheng54cb1832006-02-05 06:46:41 +000036#include <set>
Chris Lattner655e7df2005-11-16 01:54:32 +000037using namespace llvm;
38
39//===----------------------------------------------------------------------===//
40// Pattern Matcher Implementation
41//===----------------------------------------------------------------------===//
42
43namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000044 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
45 /// SDOperand's instead of register numbers for the leaves of the matched
46 /// tree.
47 struct X86ISelAddressMode {
48 enum {
49 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000050 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000051 } BaseType;
52
53 struct { // This is really a union, discriminated by BaseType!
54 SDOperand Reg;
55 int FrameIndex;
56 } Base;
57
58 unsigned Scale;
59 SDOperand IndexReg;
60 unsigned Disp;
61 GlobalValue *GV;
Evan Cheng77d86ff2006-02-25 10:09:08 +000062 Constant *CP;
63 unsigned Align; // CP alignment.
Chris Lattner3f0f71b2005-11-19 02:11:08 +000064
65 X86ISelAddressMode()
Evan Cheng77d86ff2006-02-25 10:09:08 +000066 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0), GV(0),
67 CP(0), Align(0) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000068 }
69 };
70}
71
72namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +000073 Statistic<>
74 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
75
76 //===--------------------------------------------------------------------===//
77 /// ISel - X86 specific code to select X86 machine instructions for
78 /// SelectionDAG operations.
79 ///
80 class X86DAGToDAGISel : public SelectionDAGISel {
81 /// ContainsFPCode - Every instruction we select that uses or defines a FP
82 /// register should set this to true.
83 bool ContainsFPCode;
84
85 /// X86Lowering - This object fully describes how to lower LLVM code to an
86 /// X86-specific SelectionDAG.
87 X86TargetLowering X86Lowering;
88
89 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
90 /// make the right decision when generating code for different targets.
91 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +000092
93 unsigned GlobalBaseReg;
Chris Lattner655e7df2005-11-16 01:54:32 +000094 public:
Evan Cheng2dd2c652006-03-13 23:20:37 +000095 X86DAGToDAGISel(X86TargetMachine &TM)
96 : SelectionDAGISel(X86Lowering),
97 X86Lowering(*TM.getTargetLowering()) {
Chris Lattner655e7df2005-11-16 01:54:32 +000098 Subtarget = &TM.getSubtarget<X86Subtarget>();
99 }
100
Evan Cheng5588de92006-02-18 00:15:05 +0000101 virtual bool runOnFunction(Function &Fn) {
102 // Make sure we re-emit a set of the global base reg if necessary
103 GlobalBaseReg = 0;
104 return SelectionDAGISel::runOnFunction(Fn);
105 }
106
Chris Lattner655e7df2005-11-16 01:54:32 +0000107 virtual const char *getPassName() const {
108 return "X86 DAG->DAG Instruction Selection";
109 }
110
111 /// InstructionSelectBasicBlock - This callback is invoked by
112 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
113 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
114
Evan Chengbc7a0f442006-01-11 06:09:51 +0000115 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
116
Chris Lattner655e7df2005-11-16 01:54:32 +0000117// Include the pieces autogenerated from the target description.
118#include "X86GenDAGISel.inc"
119
120 private:
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000121 void Select(SDOperand &Result, SDOperand N);
Chris Lattner655e7df2005-11-16 01:54:32 +0000122
Evan Chenga86ba852006-02-11 02:05:36 +0000123 bool MatchAddress(SDOperand N, X86ISelAddressMode &AM, bool isRoot = true);
Evan Chengc9fab312005-12-08 02:01:35 +0000124 bool SelectAddr(SDOperand N, SDOperand &Base, SDOperand &Scale,
125 SDOperand &Index, SDOperand &Disp);
126 bool SelectLEAAddr(SDOperand N, SDOperand &Base, SDOperand &Scale,
127 SDOperand &Index, SDOperand &Disp);
Evan Chengd5f2ba02006-02-06 06:02:33 +0000128 bool TryFoldLoad(SDOperand P, SDOperand N,
129 SDOperand &Base, SDOperand &Scale,
Evan Cheng10d27902006-01-06 20:36:21 +0000130 SDOperand &Index, SDOperand &Disp);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000131
Evan Cheng67ed58e2005-12-12 21:49:40 +0000132 inline void getAddressOperands(X86ISelAddressMode &AM, SDOperand &Base,
133 SDOperand &Scale, SDOperand &Index,
134 SDOperand &Disp) {
135 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
136 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, MVT::i32) : AM.Base.Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000137 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000138 Index = AM.IndexReg;
139 Disp = AM.GV ? CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp)
Evan Cheng77d86ff2006-02-25 10:09:08 +0000140 : (AM.CP ?
141 CurDAG->getTargetConstantPool(AM.CP, MVT::i32, AM.Align, AM.Disp)
142 : getI32Imm(AM.Disp));
Evan Cheng67ed58e2005-12-12 21:49:40 +0000143 }
144
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000145 /// getI8Imm - Return a target constant with the specified value, of type
146 /// i8.
147 inline SDOperand getI8Imm(unsigned Imm) {
148 return CurDAG->getTargetConstant(Imm, MVT::i8);
149 }
150
Chris Lattner655e7df2005-11-16 01:54:32 +0000151 /// getI16Imm - Return a target constant with the specified value, of type
152 /// i16.
153 inline SDOperand getI16Imm(unsigned Imm) {
154 return CurDAG->getTargetConstant(Imm, MVT::i16);
155 }
156
157 /// getI32Imm - Return a target constant with the specified value, of type
158 /// i32.
159 inline SDOperand getI32Imm(unsigned Imm) {
160 return CurDAG->getTargetConstant(Imm, MVT::i32);
161 }
Evan Chengd49cc362006-02-10 22:24:32 +0000162
Evan Cheng5588de92006-02-18 00:15:05 +0000163 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
164 /// base register. Return the virtual register that holds this value.
165 SDOperand getGlobalBaseReg();
166
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000167#ifndef NDEBUG
168 unsigned Indent;
169#endif
Chris Lattner655e7df2005-11-16 01:54:32 +0000170 };
171}
172
173/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
174/// when it has created a SelectionDAG for us to codegen.
175void X86DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
176 DEBUG(BB->dump());
Chris Lattner7c551262006-01-11 01:15:34 +0000177 MachineFunction::iterator FirstMBB = BB;
Chris Lattner655e7df2005-11-16 01:54:32 +0000178
179 // Codegen the basic block.
Evan Chengd49cc362006-02-10 22:24:32 +0000180#ifndef NDEBUG
181 DEBUG(std::cerr << "===== Instruction selection begins:\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000182 Indent = 0;
Evan Chengd49cc362006-02-10 22:24:32 +0000183#endif
Evan Cheng54cb1832006-02-05 06:46:41 +0000184 DAG.setRoot(SelectRoot(DAG.getRoot()));
Evan Cheng4af59da2006-05-25 00:24:28 +0000185 assert(InFlightSet.empty() && "ISel InFlightSet has not been emptied!");
Evan Chengd49cc362006-02-10 22:24:32 +0000186#ifndef NDEBUG
187 DEBUG(std::cerr << "===== Instruction selection ends:\n");
188#endif
Evan Cheng1d9b6712005-12-19 22:36:02 +0000189 CodeGenMap.clear();
Evan Cheng1a8e74d2006-05-24 20:46:25 +0000190 HandleMap.clear();
191 ReplaceMap.clear();
Chris Lattner655e7df2005-11-16 01:54:32 +0000192 DAG.RemoveDeadNodes();
193
194 // Emit machine code to BB.
195 ScheduleAndEmitDAG(DAG);
Chris Lattner7c551262006-01-11 01:15:34 +0000196
197 // If we are emitting FP stack code, scan the basic block to determine if this
198 // block defines any FP values. If so, put an FP_REG_KILL instruction before
199 // the terminator of the block.
Evan Chengcde9e302006-01-27 08:10:46 +0000200 if (!Subtarget->hasSSE2()) {
Chris Lattner7c551262006-01-11 01:15:34 +0000201 // Note that FP stack instructions *are* used in SSE code when returning
202 // values, but these are not live out of the basic block, so we don't need
203 // an FP_REG_KILL in this case either.
204 bool ContainsFPCode = false;
205
206 // Scan all of the machine instructions in these MBBs, checking for FP
207 // stores.
208 MachineFunction::iterator MBBI = FirstMBB;
209 do {
210 for (MachineBasicBlock::iterator I = MBBI->begin(), E = MBBI->end();
211 !ContainsFPCode && I != E; ++I) {
212 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op) {
213 if (I->getOperand(op).isRegister() && I->getOperand(op).isDef() &&
214 MRegisterInfo::isVirtualRegister(I->getOperand(op).getReg()) &&
215 RegMap->getRegClass(I->getOperand(0).getReg()) ==
216 X86::RFPRegisterClass) {
217 ContainsFPCode = true;
218 break;
219 }
220 }
221 }
222 } while (!ContainsFPCode && &*(MBBI++) != BB);
223
224 // Check PHI nodes in successor blocks. These PHI's will be lowered to have
225 // a copy of the input value in this block.
226 if (!ContainsFPCode) {
227 // Final check, check LLVM BB's that are successors to the LLVM BB
228 // corresponding to BB for FP PHI nodes.
229 const BasicBlock *LLVMBB = BB->getBasicBlock();
230 const PHINode *PN;
231 for (succ_const_iterator SI = succ_begin(LLVMBB), E = succ_end(LLVMBB);
232 !ContainsFPCode && SI != E; ++SI) {
233 for (BasicBlock::const_iterator II = SI->begin();
234 (PN = dyn_cast<PHINode>(II)); ++II) {
235 if (PN->getType()->isFloatingPoint()) {
236 ContainsFPCode = true;
237 break;
238 }
239 }
240 }
241 }
242
243 // Finally, if we found any FP code, emit the FP_REG_KILL instruction.
244 if (ContainsFPCode) {
245 BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
246 ++NumFPKill;
247 }
248 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000249}
250
Evan Chengbc7a0f442006-01-11 06:09:51 +0000251/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
252/// the main function.
253static void EmitSpecialCodeForMain(MachineBasicBlock *BB,
254 MachineFrameInfo *MFI) {
255 // Switch the FPU to 64-bit precision mode for better compatibility and speed.
256 int CWFrameIdx = MFI->CreateStackObject(2, 2);
257 addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx);
258
259 // Set the high part to be 64-bit precision.
260 addFrameReference(BuildMI(BB, X86::MOV8mi, 5),
261 CWFrameIdx, 1).addImm(2);
262
263 // Reload the modified control word now.
264 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
265}
266
267void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
268 // If this is main, emit special code for main.
269 MachineBasicBlock *BB = MF.begin();
270 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
271 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
272}
273
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000274/// MatchAddress - Add the specified node to the specified addressing mode,
275/// returning true if it cannot be done. This just pattern matches for the
276/// addressing mode
Evan Chenga86ba852006-02-11 02:05:36 +0000277bool X86DAGToDAGISel::MatchAddress(SDOperand N, X86ISelAddressMode &AM,
278 bool isRoot) {
Evan Cheng77d86ff2006-02-25 10:09:08 +0000279 bool Available = false;
280 // If N has already been selected, reuse the result unless in some very
281 // specific cases.
Evan Chenga86ba852006-02-11 02:05:36 +0000282 std::map<SDOperand, SDOperand>::iterator CGMI= CodeGenMap.find(N.getValue(0));
283 if (CGMI != CodeGenMap.end()) {
Evan Cheng77d86ff2006-02-25 10:09:08 +0000284 Available = true;
Evan Chenga86ba852006-02-11 02:05:36 +0000285 }
286
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000287 switch (N.getOpcode()) {
288 default: break;
Evan Cheng77d86ff2006-02-25 10:09:08 +0000289 case ISD::Constant:
290 AM.Disp += cast<ConstantSDNode>(N)->getValue();
291 return false;
292
293 case X86ISD::Wrapper:
294 // If both base and index components have been picked, we can't fit
295 // the result available in the register in the addressing mode. Duplicate
296 // GlobalAddress or ConstantPool as displacement.
297 if (!Available || (AM.Base.Reg.Val && AM.IndexReg.Val)) {
298 if (ConstantPoolSDNode *CP =
299 dyn_cast<ConstantPoolSDNode>(N.getOperand(0))) {
300 if (AM.CP == 0) {
301 AM.CP = CP->get();
302 AM.Align = CP->getAlignment();
303 AM.Disp += CP->getOffset();
304 return false;
305 }
306 } else if (GlobalAddressSDNode *G =
307 dyn_cast<GlobalAddressSDNode>(N.getOperand(0))) {
308 if (AM.GV == 0) {
309 AM.GV = G->getGlobal();
310 AM.Disp += G->getOffset();
311 return false;
312 }
313 }
314 }
315 break;
316
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000317 case ISD::FrameIndex:
318 if (AM.BaseType == X86ISelAddressMode::RegBase && AM.Base.Reg.Val == 0) {
319 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
320 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
321 return false;
322 }
323 break;
Evan Chengc9fab312005-12-08 02:01:35 +0000324
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000325 case ISD::SHL:
Evan Cheng77d86ff2006-02-25 10:09:08 +0000326 if (!Available && AM.IndexReg.Val == 0 && AM.Scale == 1)
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000327 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1))) {
328 unsigned Val = CN->getValue();
329 if (Val == 1 || Val == 2 || Val == 3) {
330 AM.Scale = 1 << Val;
331 SDOperand ShVal = N.Val->getOperand(0);
332
333 // Okay, we know that we have a scale by now. However, if the scaled
334 // value is an add of something and a constant, we can fold the
335 // constant into the disp field here.
336 if (ShVal.Val->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
337 isa<ConstantSDNode>(ShVal.Val->getOperand(1))) {
338 AM.IndexReg = ShVal.Val->getOperand(0);
339 ConstantSDNode *AddVal =
340 cast<ConstantSDNode>(ShVal.Val->getOperand(1));
341 AM.Disp += AddVal->getValue() << Val;
342 } else {
343 AM.IndexReg = ShVal;
344 }
345 return false;
346 }
347 }
348 break;
Evan Chengc9fab312005-12-08 02:01:35 +0000349
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000350 case ISD::MUL:
351 // X*[3,5,9] -> X+X*[2,4,8]
Evan Cheng77d86ff2006-02-25 10:09:08 +0000352 if (!Available &&
353 AM.BaseType == X86ISelAddressMode::RegBase &&
354 AM.Base.Reg.Val == 0 &&
355 AM.IndexReg.Val == 0)
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000356 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1)))
357 if (CN->getValue() == 3 || CN->getValue() == 5 || CN->getValue() == 9) {
358 AM.Scale = unsigned(CN->getValue())-1;
359
360 SDOperand MulVal = N.Val->getOperand(0);
361 SDOperand Reg;
362
363 // Okay, we know that we have a scale by now. However, if the scaled
364 // value is an add of something and a constant, we can fold the
365 // constant into the disp field here.
366 if (MulVal.Val->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
367 isa<ConstantSDNode>(MulVal.Val->getOperand(1))) {
368 Reg = MulVal.Val->getOperand(0);
369 ConstantSDNode *AddVal =
370 cast<ConstantSDNode>(MulVal.Val->getOperand(1));
371 AM.Disp += AddVal->getValue() * CN->getValue();
372 } else {
373 Reg = N.Val->getOperand(0);
374 }
375
376 AM.IndexReg = AM.Base.Reg = Reg;
377 return false;
378 }
379 break;
380
381 case ISD::ADD: {
Evan Cheng77d86ff2006-02-25 10:09:08 +0000382 if (!Available) {
Evan Chenga86ba852006-02-11 02:05:36 +0000383 X86ISelAddressMode Backup = AM;
384 if (!MatchAddress(N.Val->getOperand(0), AM, false) &&
385 !MatchAddress(N.Val->getOperand(1), AM, false))
386 return false;
387 AM = Backup;
388 if (!MatchAddress(N.Val->getOperand(1), AM, false) &&
389 !MatchAddress(N.Val->getOperand(0), AM, false))
390 return false;
391 AM = Backup;
392 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000393 break;
394 }
Evan Cheng734e1e22006-05-30 06:59:36 +0000395
396 case ISD::OR: {
397 if (!Available) {
398 X86ISelAddressMode Backup = AM;
399 // Look for (x << c1) | c2 where (c2 < c1)
400 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(0));
401 if (CN && !MatchAddress(N.Val->getOperand(1), AM, false)) {
402 if (AM.GV == NULL && AM.Disp == 0 && CN->getValue() < AM.Scale) {
403 AM.Disp = CN->getValue();
404 return false;
405 }
406 }
407 AM = Backup;
408 CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1));
409 if (CN && !MatchAddress(N.Val->getOperand(0), AM, false)) {
410 if (AM.GV == NULL && AM.Disp == 0 && CN->getValue() < AM.Scale) {
411 AM.Disp = CN->getValue();
412 return false;
413 }
414 }
415 AM = Backup;
416 }
417 break;
418 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000419 }
420
421 // Is the base register already occupied?
422 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.Val) {
423 // If so, check to see if the scale index register is set.
424 if (AM.IndexReg.Val == 0) {
425 AM.IndexReg = N;
426 AM.Scale = 1;
427 return false;
428 }
429
430 // Otherwise, we cannot select it.
431 return true;
432 }
433
434 // Default, generate it as a register.
435 AM.BaseType = X86ISelAddressMode::RegBase;
436 AM.Base.Reg = N;
437 return false;
438}
439
Evan Chengc9fab312005-12-08 02:01:35 +0000440/// SelectAddr - returns true if it is able pattern match an addressing mode.
441/// It returns the operands which make up the maximal addressing mode it can
442/// match by reference.
443bool X86DAGToDAGISel::SelectAddr(SDOperand N, SDOperand &Base, SDOperand &Scale,
444 SDOperand &Index, SDOperand &Disp) {
445 X86ISelAddressMode AM;
Evan Chengbc7a0f442006-01-11 06:09:51 +0000446 if (MatchAddress(N, AM))
447 return false;
Evan Chengc9fab312005-12-08 02:01:35 +0000448
Evan Chengbc7a0f442006-01-11 06:09:51 +0000449 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Evan Chengd19d51f2006-02-05 05:25:07 +0000450 if (!AM.Base.Reg.Val)
Evan Chengbc7a0f442006-01-11 06:09:51 +0000451 AM.Base.Reg = CurDAG->getRegister(0, MVT::i32);
Evan Chengc9fab312005-12-08 02:01:35 +0000452 }
Evan Chengbc7a0f442006-01-11 06:09:51 +0000453
Evan Chengd19d51f2006-02-05 05:25:07 +0000454 if (!AM.IndexReg.Val)
Evan Chengbc7a0f442006-01-11 06:09:51 +0000455 AM.IndexReg = CurDAG->getRegister(0, MVT::i32);
456
457 getAddressOperands(AM, Base, Scale, Index, Disp);
Evan Cheng77d86ff2006-02-25 10:09:08 +0000458
Evan Chengbc7a0f442006-01-11 06:09:51 +0000459 return true;
Evan Chengc9fab312005-12-08 02:01:35 +0000460}
461
Evan Cheng77d86ff2006-02-25 10:09:08 +0000462/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
463/// mode it matches can be cost effectively emitted as an LEA instruction.
464/// For X86, it always is unless it's just a (Reg + const).
465bool X86DAGToDAGISel::SelectLEAAddr(SDOperand N, SDOperand &Base,
466 SDOperand &Scale,
467 SDOperand &Index, SDOperand &Disp) {
468 X86ISelAddressMode AM;
469 if (MatchAddress(N, AM))
470 return false;
471
472 unsigned Complexity = 0;
473 if (AM.BaseType == X86ISelAddressMode::RegBase)
474 if (AM.Base.Reg.Val)
475 Complexity = 1;
476 else
477 AM.Base.Reg = CurDAG->getRegister(0, MVT::i32);
478 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
479 Complexity = 4;
480
481 if (AM.IndexReg.Val)
482 Complexity++;
483 else
484 AM.IndexReg = CurDAG->getRegister(0, MVT::i32);
485
Evan Cheng990c3602006-02-28 21:13:57 +0000486 if (AM.Scale > 2)
Evan Cheng77d86ff2006-02-25 10:09:08 +0000487 Complexity += 2;
Evan Cheng990c3602006-02-28 21:13:57 +0000488 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg
489 else if (AM.Scale > 1)
490 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +0000491
492 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
493 // to a LEA. This is determined with some expermentation but is by no means
494 // optimal (especially for code size consideration). LEA is nice because of
495 // its three-address nature. Tweak the cost function again when we can run
496 // convertToThreeAddress() at register allocation time.
497 if (AM.GV || AM.CP)
498 Complexity += 2;
499
500 if (AM.Disp && (AM.Base.Reg.Val || AM.IndexReg.Val))
501 Complexity++;
502
503 if (Complexity > 2) {
504 getAddressOperands(AM, Base, Scale, Index, Disp);
505 return true;
506 }
507
508 return false;
509}
510
Evan Chengd5f2ba02006-02-06 06:02:33 +0000511bool X86DAGToDAGISel::TryFoldLoad(SDOperand P, SDOperand N,
512 SDOperand &Base, SDOperand &Scale,
513 SDOperand &Index, SDOperand &Disp) {
514 if (N.getOpcode() == ISD::LOAD &&
515 N.hasOneUse() &&
516 !CodeGenMap.count(N.getValue(0)) &&
517 (P.getNumOperands() == 1 || !isNonImmUse(P.Val, N.Val)))
Evan Cheng10d27902006-01-06 20:36:21 +0000518 return SelectAddr(N.getOperand(1), Base, Scale, Index, Disp);
519 return false;
520}
521
522static bool isRegister0(SDOperand Op) {
Evan Chengc9fab312005-12-08 02:01:35 +0000523 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op))
524 return (R->getReg() == 0);
525 return false;
526}
527
Evan Cheng5588de92006-02-18 00:15:05 +0000528/// getGlobalBaseReg - Output the instructions required to put the
529/// base address to use for accessing globals into a register.
530///
531SDOperand X86DAGToDAGISel::getGlobalBaseReg() {
532 if (!GlobalBaseReg) {
533 // Insert the set of GlobalBaseReg into the first MBB of the function
534 MachineBasicBlock &FirstMBB = BB->getParent()->front();
535 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
536 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
537 // FIXME: when we get to LP64, we will need to create the appropriate
538 // type of register here.
Evan Cheng9fee4422006-05-16 07:21:53 +0000539 GlobalBaseReg = RegMap->createVirtualRegister(X86::GR32RegisterClass);
Evan Cheng5588de92006-02-18 00:15:05 +0000540 BuildMI(FirstMBB, MBBI, X86::MovePCtoStack, 0);
541 BuildMI(FirstMBB, MBBI, X86::POP32r, 1, GlobalBaseReg);
542 }
543 return CurDAG->getRegister(GlobalBaseReg, MVT::i32);
544}
545
Evan Chengf838cfc2006-05-20 01:36:52 +0000546static SDNode *FindCallStartFromCall(SDNode *Node) {
547 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
548 assert(Node->getOperand(0).getValueType() == MVT::Other &&
549 "Node doesn't have a token chain argument!");
550 return FindCallStartFromCall(Node->getOperand(0).Val);
551}
552
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000553void X86DAGToDAGISel::Select(SDOperand &Result, SDOperand N) {
Evan Cheng00fcb002005-12-15 01:02:48 +0000554 SDNode *Node = N.Val;
555 MVT::ValueType NVT = Node->getValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +0000556 unsigned Opc, MOpc;
557 unsigned Opcode = Node->getOpcode();
Chris Lattner655e7df2005-11-16 01:54:32 +0000558
Evan Chengd49cc362006-02-10 22:24:32 +0000559#ifndef NDEBUG
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000560 DEBUG(std::cerr << std::string(Indent, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000561 DEBUG(std::cerr << "Selecting: ");
562 DEBUG(Node->dump(CurDAG));
563 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000564 Indent += 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000565#endif
566
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000567 if (Opcode >= ISD::BUILTIN_OP_END && Opcode < X86ISD::FIRST_NUMBER) {
568 Result = N;
Evan Chengd49cc362006-02-10 22:24:32 +0000569#ifndef NDEBUG
Evan Chenga86ba852006-02-11 02:05:36 +0000570 DEBUG(std::cerr << std::string(Indent-2, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000571 DEBUG(std::cerr << "== ");
572 DEBUG(Node->dump(CurDAG));
573 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000574 Indent -= 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000575#endif
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000576 return; // Already selected.
577 }
Evan Cheng2ae799a2006-01-11 22:15:18 +0000578
579 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000580 if (CGMI != CodeGenMap.end()) {
581 Result = CGMI->second;
Evan Chengd49cc362006-02-10 22:24:32 +0000582#ifndef NDEBUG
Evan Chenga86ba852006-02-11 02:05:36 +0000583 DEBUG(std::cerr << std::string(Indent-2, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000584 DEBUG(std::cerr << "== ");
585 DEBUG(Result.Val->dump(CurDAG));
586 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000587 Indent -= 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000588#endif
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000589 return;
590 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000591
Evan Cheng10d27902006-01-06 20:36:21 +0000592 switch (Opcode) {
Chris Lattner655e7df2005-11-16 01:54:32 +0000593 default: break;
Evan Chenge0ed6ec2006-02-23 20:41:18 +0000594 case X86ISD::GlobalBaseReg:
595 Result = getGlobalBaseReg();
596 return;
597
Evan Cheng77d86ff2006-02-25 10:09:08 +0000598 case ISD::ADD: {
599 // Turn ADD X, c to MOV32ri X+c. This cannot be done with tblgen'd
600 // code and is matched first so to prevent it from being turned into
601 // LEA32r X+c.
602 SDOperand N0 = N.getOperand(0);
603 SDOperand N1 = N.getOperand(1);
604 if (N.Val->getValueType(0) == MVT::i32 &&
605 N0.getOpcode() == X86ISD::Wrapper &&
606 N1.getOpcode() == ISD::Constant) {
607 unsigned Offset = (unsigned)cast<ConstantSDNode>(N1)->getValue();
608 SDOperand C(0, 0);
609 // TODO: handle ExternalSymbolSDNode.
610 if (GlobalAddressSDNode *G =
611 dyn_cast<GlobalAddressSDNode>(N0.getOperand(0))) {
612 C = CurDAG->getTargetGlobalAddress(G->getGlobal(), MVT::i32,
613 G->getOffset() + Offset);
614 } else if (ConstantPoolSDNode *CP =
615 dyn_cast<ConstantPoolSDNode>(N0.getOperand(0))) {
616 C = CurDAG->getTargetConstantPool(CP->get(), MVT::i32,
617 CP->getAlignment(),
618 CP->getOffset()+Offset);
619 }
620
621 if (C.Val) {
622 if (N.Val->hasOneUse()) {
623 Result = CurDAG->SelectNodeTo(N.Val, X86::MOV32ri, MVT::i32, C);
624 } else {
625 SDNode *ResNode = CurDAG->getTargetNode(X86::MOV32ri, MVT::i32, C);
626 Result = CodeGenMap[N] = SDOperand(ResNode, 0);
627 }
628 return;
629 }
630 }
631
632 // Other cases are handled by auto-generated code.
633 break;
Evan Cheng1f342c22006-02-23 02:43:52 +0000634 }
Evan Chenge0ed6ec2006-02-23 20:41:18 +0000635
Evan Cheng10d27902006-01-06 20:36:21 +0000636 case ISD::MULHU:
637 case ISD::MULHS: {
638 if (Opcode == ISD::MULHU)
639 switch (NVT) {
640 default: assert(0 && "Unsupported VT!");
641 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
642 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
643 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
644 }
645 else
646 switch (NVT) {
647 default: assert(0 && "Unsupported VT!");
648 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
649 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
650 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
651 }
652
653 unsigned LoReg, HiReg;
654 switch (NVT) {
655 default: assert(0 && "Unsupported VT!");
656 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
657 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
658 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
659 }
660
661 SDOperand N0 = Node->getOperand(0);
662 SDOperand N1 = Node->getOperand(1);
663
664 bool foldedLoad = false;
665 SDOperand Tmp0, Tmp1, Tmp2, Tmp3;
Evan Chengd5f2ba02006-02-06 06:02:33 +0000666 foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3);
Evan Cheng92e27972006-01-06 23:19:29 +0000667 // MULHU and MULHS are commmutative
668 if (!foldedLoad) {
Evan Chengd5f2ba02006-02-06 06:02:33 +0000669 foldedLoad = TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3);
Evan Cheng92e27972006-01-06 23:19:29 +0000670 if (foldedLoad) {
671 N0 = Node->getOperand(1);
672 N1 = Node->getOperand(0);
673 }
674 }
675
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000676 SDOperand Chain;
677 if (foldedLoad)
678 Select(Chain, N1.getOperand(0));
679 else
680 Chain = CurDAG->getEntryNode();
Evan Cheng10d27902006-01-06 20:36:21 +0000681
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000682 SDOperand InFlag(0, 0);
683 Select(N0, N0);
Evan Cheng10d27902006-01-06 20:36:21 +0000684 Chain = CurDAG->getCopyToReg(Chain, CurDAG->getRegister(LoReg, NVT),
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000685 N0, InFlag);
Evan Cheng10d27902006-01-06 20:36:21 +0000686 InFlag = Chain.getValue(1);
687
688 if (foldedLoad) {
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000689 Select(Tmp0, Tmp0);
690 Select(Tmp1, Tmp1);
691 Select(Tmp2, Tmp2);
692 Select(Tmp3, Tmp3);
Evan Chengd1b82d82006-02-09 07:17:49 +0000693 SDNode *CNode =
694 CurDAG->getTargetNode(MOpc, MVT::Other, MVT::Flag, Tmp0, Tmp1,
695 Tmp2, Tmp3, Chain, InFlag);
696 Chain = SDOperand(CNode, 0);
697 InFlag = SDOperand(CNode, 1);
Evan Cheng10d27902006-01-06 20:36:21 +0000698 } else {
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000699 Select(N1, N1);
Evan Chengd1b82d82006-02-09 07:17:49 +0000700 InFlag =
701 SDOperand(CurDAG->getTargetNode(Opc, MVT::Flag, N1, InFlag), 0);
Evan Cheng10d27902006-01-06 20:36:21 +0000702 }
703
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000704 Result = CurDAG->getCopyFromReg(Chain, HiReg, NVT, InFlag);
Evan Cheng10d27902006-01-06 20:36:21 +0000705 CodeGenMap[N.getValue(0)] = Result;
Evan Chengd5f2ba02006-02-06 06:02:33 +0000706 if (foldedLoad) {
Evan Cheng92e27972006-01-06 23:19:29 +0000707 CodeGenMap[N1.getValue(1)] = Result.getValue(1);
Evan Cheng101e4b92006-02-09 22:12:53 +0000708 AddHandleReplacement(N1.Val, 1, Result.Val, 1);
Evan Chengd5f2ba02006-02-06 06:02:33 +0000709 }
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000710
Evan Chengd49cc362006-02-10 22:24:32 +0000711#ifndef NDEBUG
Evan Chenga86ba852006-02-11 02:05:36 +0000712 DEBUG(std::cerr << std::string(Indent-2, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000713 DEBUG(std::cerr << "== ");
714 DEBUG(Result.Val->dump(CurDAG));
715 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000716 Indent -= 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000717#endif
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000718 return;
Evan Cheng92e27972006-01-06 23:19:29 +0000719 }
Evan Cheng5588de92006-02-18 00:15:05 +0000720
Evan Cheng92e27972006-01-06 23:19:29 +0000721 case ISD::SDIV:
722 case ISD::UDIV:
723 case ISD::SREM:
724 case ISD::UREM: {
725 bool isSigned = Opcode == ISD::SDIV || Opcode == ISD::SREM;
726 bool isDiv = Opcode == ISD::SDIV || Opcode == ISD::UDIV;
727 if (!isSigned)
728 switch (NVT) {
729 default: assert(0 && "Unsupported VT!");
730 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
731 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
732 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
733 }
734 else
735 switch (NVT) {
736 default: assert(0 && "Unsupported VT!");
737 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
738 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
739 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
740 }
741
742 unsigned LoReg, HiReg;
743 unsigned ClrOpcode, SExtOpcode;
744 switch (NVT) {
745 default: assert(0 && "Unsupported VT!");
746 case MVT::i8:
747 LoReg = X86::AL; HiReg = X86::AH;
748 ClrOpcode = X86::MOV8ri;
749 SExtOpcode = X86::CBW;
750 break;
751 case MVT::i16:
752 LoReg = X86::AX; HiReg = X86::DX;
753 ClrOpcode = X86::MOV16ri;
754 SExtOpcode = X86::CWD;
755 break;
756 case MVT::i32:
757 LoReg = X86::EAX; HiReg = X86::EDX;
758 ClrOpcode = X86::MOV32ri;
759 SExtOpcode = X86::CDQ;
760 break;
761 }
762
763 SDOperand N0 = Node->getOperand(0);
764 SDOperand N1 = Node->getOperand(1);
765
766 bool foldedLoad = false;
767 SDOperand Tmp0, Tmp1, Tmp2, Tmp3;
Evan Chengd5f2ba02006-02-06 06:02:33 +0000768 foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3);
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000769 SDOperand Chain;
770 if (foldedLoad)
771 Select(Chain, N1.getOperand(0));
772 else
773 Chain = CurDAG->getEntryNode();
Evan Cheng92e27972006-01-06 23:19:29 +0000774
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000775 SDOperand InFlag(0, 0);
776 Select(N0, N0);
Evan Cheng92e27972006-01-06 23:19:29 +0000777 Chain = CurDAG->getCopyToReg(Chain, CurDAG->getRegister(LoReg, NVT),
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000778 N0, InFlag);
Evan Cheng92e27972006-01-06 23:19:29 +0000779 InFlag = Chain.getValue(1);
780
781 if (isSigned) {
782 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +0000783 InFlag =
784 SDOperand(CurDAG->getTargetNode(SExtOpcode, MVT::Flag, InFlag), 0);
Evan Cheng92e27972006-01-06 23:19:29 +0000785 } else {
786 // Zero out the high part, effectively zero extending the input.
787 SDOperand ClrNode =
Evan Chengd1b82d82006-02-09 07:17:49 +0000788 SDOperand(CurDAG->getTargetNode(ClrOpcode, NVT,
789 CurDAG->getTargetConstant(0, NVT)), 0);
Evan Cheng92e27972006-01-06 23:19:29 +0000790 Chain = CurDAG->getCopyToReg(Chain, CurDAG->getRegister(HiReg, NVT),
791 ClrNode, InFlag);
792 InFlag = Chain.getValue(1);
793 }
794
795 if (foldedLoad) {
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000796 Select(Tmp0, Tmp0);
797 Select(Tmp1, Tmp1);
798 Select(Tmp2, Tmp2);
799 Select(Tmp3, Tmp3);
Evan Chengd1b82d82006-02-09 07:17:49 +0000800 SDNode *CNode =
801 CurDAG->getTargetNode(MOpc, MVT::Other, MVT::Flag, Tmp0, Tmp1,
802 Tmp2, Tmp3, Chain, InFlag);
803 Chain = SDOperand(CNode, 0);
804 InFlag = SDOperand(CNode, 1);
Evan Cheng92e27972006-01-06 23:19:29 +0000805 } else {
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000806 Select(N1, N1);
Evan Chengd1b82d82006-02-09 07:17:49 +0000807 InFlag =
808 SDOperand(CurDAG->getTargetNode(Opc, MVT::Flag, N1, InFlag), 0);
Evan Cheng92e27972006-01-06 23:19:29 +0000809 }
810
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000811 Result = CurDAG->getCopyFromReg(Chain, isDiv ? LoReg : HiReg,
812 NVT, InFlag);
Evan Cheng92e27972006-01-06 23:19:29 +0000813 CodeGenMap[N.getValue(0)] = Result;
Evan Chengd5f2ba02006-02-06 06:02:33 +0000814 if (foldedLoad) {
Evan Cheng92e27972006-01-06 23:19:29 +0000815 CodeGenMap[N1.getValue(1)] = Result.getValue(1);
Evan Cheng101e4b92006-02-09 22:12:53 +0000816 AddHandleReplacement(N1.Val, 1, Result.Val, 1);
Evan Chengd5f2ba02006-02-06 06:02:33 +0000817 }
Evan Chengd49cc362006-02-10 22:24:32 +0000818
819#ifndef NDEBUG
Evan Chenga86ba852006-02-11 02:05:36 +0000820 DEBUG(std::cerr << std::string(Indent-2, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000821 DEBUG(std::cerr << "== ");
822 DEBUG(Result.Val->dump(CurDAG));
823 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000824 Indent -= 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000825#endif
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000826 return;
Evan Cheng10d27902006-01-06 20:36:21 +0000827 }
Evan Cheng9733bde2006-05-08 08:01:26 +0000828
829 case ISD::TRUNCATE: {
830 if (NVT == MVT::i8) {
831 unsigned Opc2;
832 MVT::ValueType VT;
833 switch (Node->getOperand(0).getValueType()) {
834 default: assert(0 && "Unknown truncate!");
835 case MVT::i16:
836 Opc = X86::MOV16to16_;
837 VT = MVT::i16;
Evan Cheng9fee4422006-05-16 07:21:53 +0000838 Opc2 = X86::TRUNC_GR16_GR8;
Evan Cheng9733bde2006-05-08 08:01:26 +0000839 break;
840 case MVT::i32:
841 Opc = X86::MOV32to32_;
842 VT = MVT::i32;
Evan Cheng9fee4422006-05-16 07:21:53 +0000843 Opc2 = X86::TRUNC_GR32_GR8;
Evan Cheng9733bde2006-05-08 08:01:26 +0000844 break;
845 }
846
847 SDOperand Tmp0, Tmp1;
848 Select(Tmp0, Node->getOperand(0));
849 Tmp1 = SDOperand(CurDAG->getTargetNode(Opc, VT, Tmp0), 0);
850 Result = CodeGenMap[N] =
851 SDOperand(CurDAG->getTargetNode(Opc2, NVT, Tmp1), 0);
852
853#ifndef NDEBUG
854 DEBUG(std::cerr << std::string(Indent-2, ' '));
855 DEBUG(std::cerr << "== ");
856 DEBUG(Result.Val->dump(CurDAG));
857 DEBUG(std::cerr << "\n");
858 Indent -= 2;
859#endif
860 return;
861 }
Evan Chenga26c4512006-05-20 07:44:28 +0000862
863 break;
Evan Cheng9733bde2006-05-08 08:01:26 +0000864 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000865 }
866
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000867 SelectCode(Result, N);
Evan Chengd49cc362006-02-10 22:24:32 +0000868#ifndef NDEBUG
Evan Chenga86ba852006-02-11 02:05:36 +0000869 DEBUG(std::cerr << std::string(Indent-2, ' '));
Evan Chengd49cc362006-02-10 22:24:32 +0000870 DEBUG(std::cerr << "=> ");
871 DEBUG(Result.Val->dump(CurDAG));
872 DEBUG(std::cerr << "\n");
Evan Cheng2b6f78b2006-02-10 22:46:26 +0000873 Indent -= 2;
Evan Chengd49cc362006-02-10 22:24:32 +0000874#endif
Chris Lattner655e7df2005-11-16 01:54:32 +0000875}
876
877/// createX86ISelDag - This pass converts a legalized DAG into a
878/// X86-specific DAG, ready for instruction scheduling.
879///
Evan Cheng2dd2c652006-03-13 23:20:37 +0000880FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM) {
Chris Lattner655e7df2005-11-16 01:54:32 +0000881 return new X86DAGToDAGISel(TM);
882}