blob: b895be2591bac543c76d6cbb5b695a965c873fcf [file] [log] [blame]
Chris Lattner88c8a232005-01-07 07:49:41 +00001//===-- X86ISelPattern.cpp - A pattern matching inst selector for X86 -----===//
Chris Lattner1d13a922005-01-10 22:10:13 +00002//
Chris Lattner88c8a232005-01-07 07:49:41 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanc88330a2005-04-21 23:38:14 +00007//
Chris Lattner88c8a232005-01-07 07:49:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for X86.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86.h"
15#include "X86InstrBuilder.h"
16#include "X86RegisterInfo.h"
Nate Begemanf26625e2005-07-12 01:41:54 +000017#include "X86Subtarget.h"
Chris Lattner76ac0682005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
Chris Lattner7ce7a8f2005-05-12 23:06:28 +000019#include "llvm/CallingConv.h"
Chris Lattner6972c312005-05-09 03:36:39 +000020#include "llvm/Constants.h"
21#include "llvm/Instructions.h"
Chris Lattner88c8a232005-01-07 07:49:41 +000022#include "llvm/Function.h"
Chris Lattner6972c312005-05-09 03:36:39 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner88c8a232005-01-07 07:49:41 +000024#include "llvm/CodeGen/MachineFunction.h"
25#include "llvm/CodeGen/MachineFrameInfo.h"
26#include "llvm/CodeGen/SelectionDAG.h"
27#include "llvm/CodeGen/SelectionDAGISel.h"
28#include "llvm/CodeGen/SSARegMap.h"
29#include "llvm/Target/TargetData.h"
30#include "llvm/Target/TargetLowering.h"
Nate Begemanf26625e2005-07-12 01:41:54 +000031#include "llvm/Target/TargetMachine.h"
Chris Lattnerdb68d392005-04-30 04:25:35 +000032#include "llvm/Target/TargetOptions.h"
Chris Lattner6972c312005-05-09 03:36:39 +000033#include "llvm/Support/CFG.h"
Chris Lattner88c8a232005-01-07 07:49:41 +000034#include "llvm/Support/MathExtras.h"
35#include "llvm/ADT/Statistic.h"
36#include <set>
Jeff Cohen407aa012005-01-12 04:29:05 +000037#include <algorithm>
Chris Lattner88c8a232005-01-07 07:49:41 +000038using namespace llvm;
39
Chris Lattnera36117b2005-05-14 06:52:07 +000040//===----------------------------------------------------------------------===//
41// Pattern Matcher Implementation
42//===----------------------------------------------------------------------===//
Chris Lattner88c8a232005-01-07 07:49:41 +000043
Chris Lattnera7acdda2005-01-18 01:06:26 +000044namespace {
45 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
46 /// SDOperand's instead of register numbers for the leaves of the matched
47 /// tree.
48 struct X86ISelAddressMode {
49 enum {
50 RegBase,
51 FrameIndexBase,
52 } BaseType;
Misha Brukmanc88330a2005-04-21 23:38:14 +000053
Chris Lattnera7acdda2005-01-18 01:06:26 +000054 struct { // This is really a union, discriminated by BaseType!
55 SDOperand Reg;
56 int FrameIndex;
57 } Base;
Misha Brukmanc88330a2005-04-21 23:38:14 +000058
Chris Lattnera7acdda2005-01-18 01:06:26 +000059 unsigned Scale;
60 SDOperand IndexReg;
61 unsigned Disp;
62 GlobalValue *GV;
Misha Brukmanc88330a2005-04-21 23:38:14 +000063
Chris Lattnera7acdda2005-01-18 01:06:26 +000064 X86ISelAddressMode()
65 : BaseType(RegBase), Scale(1), IndexReg(), Disp(), GV(0) {
66 }
67 };
68}
Chris Lattner88c8a232005-01-07 07:49:41 +000069
70
71namespace {
72 Statistic<>
73 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
74
75 //===--------------------------------------------------------------------===//
76 /// ISel - X86 specific code to select X86 machine instructions for
77 /// SelectionDAG operations.
78 ///
79 class ISel : public SelectionDAGISel {
80 /// ContainsFPCode - Every instruction we select that uses or defines a FP
81 /// register should set this to true.
82 bool ContainsFPCode;
83
84 /// X86Lowering - This object fully describes how to lower LLVM code to an
85 /// X86-specific SelectionDAG.
86 X86TargetLowering X86Lowering;
87
Chris Lattner0d1f82a2005-01-11 03:11:44 +000088 /// RegPressureMap - This keeps an approximate count of the number of
89 /// registers required to evaluate each node in the graph.
90 std::map<SDNode*, unsigned> RegPressureMap;
Chris Lattner88c8a232005-01-07 07:49:41 +000091
92 /// ExprMap - As shared expressions are codegen'd, we keep track of which
93 /// vreg the value is produced in, so we only emit one copy of each compiled
94 /// tree.
95 std::map<SDOperand, unsigned> ExprMap;
Chris Lattner88c8a232005-01-07 07:49:41 +000096
Chris Lattnerdd66a412005-05-15 05:46:45 +000097 /// TheDAG - The DAG being selected during Select* operations.
98 SelectionDAG *TheDAG;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000099
100 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
Nate Begemanf26625e2005-07-12 01:41:54 +0000101 /// make the right decision when generating code for different targets.
102 const X86Subtarget *Subtarget;
Chris Lattner88c8a232005-01-07 07:49:41 +0000103 public:
104 ISel(TargetMachine &TM) : SelectionDAGISel(X86Lowering), X86Lowering(TM) {
Chris Lattner158acab2005-08-05 21:54:27 +0000105 Subtarget = &TM.getSubtarget<X86Subtarget>();
Chris Lattner88c8a232005-01-07 07:49:41 +0000106 }
107
Chris Lattnere1e844c2005-01-21 21:35:14 +0000108 virtual const char *getPassName() const {
109 return "X86 Pattern Instruction Selection";
110 }
111
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000112 unsigned getRegPressure(SDOperand O) {
113 return RegPressureMap[O.Val];
114 }
115 unsigned ComputeRegPressure(SDOperand O);
116
Chris Lattner88c8a232005-01-07 07:49:41 +0000117 /// InstructionSelectBasicBlock - This callback is invoked by
118 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner6fba62d62005-01-12 04:21:28 +0000119 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
Chris Lattner88c8a232005-01-07 07:49:41 +0000120
Chris Lattner0b17b452005-05-13 07:38:09 +0000121 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
122
Chris Lattner30607ec2005-01-25 20:03:11 +0000123 bool isFoldableLoad(SDOperand Op, SDOperand OtherOp,
124 bool FloatPromoteOk = false);
Chris Lattner62b22422005-01-11 21:19:59 +0000125 void EmitFoldedLoad(SDOperand Op, X86AddressMode &AM);
Chris Lattner96113fd2005-01-17 19:25:26 +0000126 bool TryToFoldLoadOpStore(SDNode *Node);
Chris Lattner29f58192005-01-19 07:37:26 +0000127 bool EmitOrOpOp(SDOperand Op1, SDOperand Op2, unsigned DestReg);
Chris Lattner3be6cd52005-01-17 01:34:14 +0000128 void EmitCMP(SDOperand LHS, SDOperand RHS, bool isOnlyUse);
Chris Lattner37ed2852005-01-11 04:06:27 +0000129 bool EmitBranchCC(MachineBasicBlock *Dest, SDOperand Chain, SDOperand Cond);
Nate Begeman8d394eb2005-08-03 23:26:28 +0000130 void EmitSelectCC(SDOperand Cond, SDOperand True, SDOperand False,
131 MVT::ValueType SVT, unsigned RDest);
Chris Lattner88c8a232005-01-07 07:49:41 +0000132 unsigned SelectExpr(SDOperand N);
Chris Lattnera7acdda2005-01-18 01:06:26 +0000133
134 X86AddressMode SelectAddrExprs(const X86ISelAddressMode &IAM);
135 bool MatchAddress(SDOperand N, X86ISelAddressMode &AM);
136 void SelectAddress(SDOperand N, X86AddressMode &AM);
Chris Lattnerdd66a412005-05-15 05:46:45 +0000137 bool EmitPotentialTailCall(SDNode *Node);
138 void EmitFastCCToFastCCTailCall(SDNode *TailCallNode);
Chris Lattner88c8a232005-01-07 07:49:41 +0000139 void Select(SDOperand N);
140 };
141}
142
Chris Lattnerd8145bc2005-05-10 03:53:18 +0000143/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
144/// the main function.
145static void EmitSpecialCodeForMain(MachineBasicBlock *BB,
146 MachineFrameInfo *MFI) {
147 // Switch the FPU to 64-bit precision mode for better compatibility and speed.
148 int CWFrameIdx = MFI->CreateStackObject(2, 2);
149 addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx);
150
151 // Set the high part to be 64-bit precision.
152 addFrameReference(BuildMI(BB, X86::MOV8mi, 5),
153 CWFrameIdx, 1).addImm(2);
154
155 // Reload the modified control word now.
156 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
157}
158
Chris Lattner0b17b452005-05-13 07:38:09 +0000159void ISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
Chris Lattner0b17b452005-05-13 07:38:09 +0000160 // If this is main, emit special code for main.
Chris Lattnerb42e9622005-09-14 06:06:45 +0000161 MachineBasicBlock *BB = MF.begin();
Chris Lattner0b17b452005-05-13 07:38:09 +0000162 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
163 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
164}
165
166
Chris Lattner6fba62d62005-01-12 04:21:28 +0000167/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
168/// when it has created a SelectionDAG for us to codegen.
169void ISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
170 // While we're doing this, keep track of whether we see any FP code for
171 // FP_REG_KILL insertion.
172 ContainsFPCode = false;
Chris Lattnerd8145bc2005-05-10 03:53:18 +0000173 MachineFunction *MF = BB->getParent();
Chris Lattner6fba62d62005-01-12 04:21:28 +0000174
175 // Scan the PHI nodes that already are inserted into this basic block. If any
176 // of them is a PHI of a floating point value, we need to insert an
177 // FP_REG_KILL.
Chris Lattnerd8145bc2005-05-10 03:53:18 +0000178 SSARegMap *RegMap = MF->getSSARegMap();
Chris Lattner0b17b452005-05-13 07:38:09 +0000179 if (BB != MF->begin())
180 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
181 I != E; ++I) {
182 assert(I->getOpcode() == X86::PHI &&
183 "Isn't just PHI nodes?");
184 if (RegMap->getRegClass(I->getOperand(0).getReg()) ==
185 X86::RFPRegisterClass) {
186 ContainsFPCode = true;
187 break;
188 }
Chris Lattner6fba62d62005-01-12 04:21:28 +0000189 }
Chris Lattnerd8145bc2005-05-10 03:53:18 +0000190
Chris Lattner6fba62d62005-01-12 04:21:28 +0000191 // Compute the RegPressureMap, which is an approximation for the number of
192 // registers required to compute each node.
193 ComputeRegPressure(DAG.getRoot());
194
Chris Lattnerdd66a412005-05-15 05:46:45 +0000195 TheDAG = &DAG;
196
Chris Lattner6fba62d62005-01-12 04:21:28 +0000197 // Codegen the basic block.
198 Select(DAG.getRoot());
199
Chris Lattnerdd66a412005-05-15 05:46:45 +0000200 TheDAG = 0;
201
Chris Lattner6fba62d62005-01-12 04:21:28 +0000202 // Finally, look at all of the successors of this block. If any contain a PHI
203 // node of FP type, we need to insert an FP_REG_KILL in this block.
204 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
205 E = BB->succ_end(); SI != E && !ContainsFPCode; ++SI)
206 for (MachineBasicBlock::iterator I = (*SI)->begin(), E = (*SI)->end();
207 I != E && I->getOpcode() == X86::PHI; ++I) {
208 if (RegMap->getRegClass(I->getOperand(0).getReg()) ==
209 X86::RFPRegisterClass) {
210 ContainsFPCode = true;
211 break;
212 }
213 }
Misha Brukmanc88330a2005-04-21 23:38:14 +0000214
Chris Lattner6972c312005-05-09 03:36:39 +0000215 // Final check, check LLVM BB's that are successors to the LLVM BB
216 // corresponding to BB for FP PHI nodes.
217 const BasicBlock *LLVMBB = BB->getBasicBlock();
218 const PHINode *PN;
219 if (!ContainsFPCode)
220 for (succ_const_iterator SI = succ_begin(LLVMBB), E = succ_end(LLVMBB);
221 SI != E && !ContainsFPCode; ++SI)
222 for (BasicBlock::const_iterator II = SI->begin();
223 (PN = dyn_cast<PHINode>(II)); ++II)
224 if (PN->getType()->isFloatingPoint()) {
225 ContainsFPCode = true;
226 break;
227 }
228
Chris Lattner6fba62d62005-01-12 04:21:28 +0000229 // Insert FP_REG_KILL instructions into basic blocks that need them. This
230 // only occurs due to the floating point stackifier not being aggressive
231 // enough to handle arbitrary global stackification.
232 //
233 // Currently we insert an FP_REG_KILL instruction into each block that uses or
234 // defines a floating point virtual register.
235 //
236 // When the global register allocators (like linear scan) finally update live
237 // variable analysis, we can keep floating point values in registers across
238 // basic blocks. This will be a huge win, but we are waiting on the global
239 // allocators before we can do this.
240 //
Chris Lattner472a2652005-03-30 01:10:00 +0000241 if (ContainsFPCode) {
Chris Lattner6fba62d62005-01-12 04:21:28 +0000242 BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
243 ++NumFPKill;
244 }
Misha Brukmanc88330a2005-04-21 23:38:14 +0000245
Chris Lattner6fba62d62005-01-12 04:21:28 +0000246 // Clear state used for selection.
247 ExprMap.clear();
Chris Lattner6fba62d62005-01-12 04:21:28 +0000248 RegPressureMap.clear();
249}
250
251
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000252// ComputeRegPressure - Compute the RegPressureMap, which is an approximation
253// for the number of registers required to compute each node. This is basically
254// computing a generalized form of the Sethi-Ullman number for each node.
255unsigned ISel::ComputeRegPressure(SDOperand O) {
256 SDNode *N = O.Val;
257 unsigned &Result = RegPressureMap[N];
258 if (Result) return Result;
259
Chris Lattner8fea42b2005-01-11 03:37:59 +0000260 // FIXME: Should operations like CALL (which clobber lots o regs) have a
261 // higher fixed cost??
262
Chris Lattner8aa10fc2005-01-11 22:29:12 +0000263 if (N->getNumOperands() == 0) {
264 Result = 1;
265 } else {
266 unsigned MaxRegUse = 0;
267 unsigned NumExtraMaxRegUsers = 0;
268 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
269 unsigned Regs;
270 if (N->getOperand(i).getOpcode() == ISD::Constant)
271 Regs = 0;
272 else
273 Regs = ComputeRegPressure(N->getOperand(i));
274 if (Regs > MaxRegUse) {
275 MaxRegUse = Regs;
276 NumExtraMaxRegUsers = 0;
277 } else if (Regs == MaxRegUse &&
278 N->getOperand(i).getValueType() != MVT::Other) {
279 ++NumExtraMaxRegUsers;
280 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000281 }
Chris Lattnerca318ed2005-01-17 22:56:09 +0000282
283 if (O.getOpcode() != ISD::TokenFactor)
284 Result = MaxRegUse+NumExtraMaxRegUsers;
285 else
Chris Lattnera5d137f2005-01-17 23:02:13 +0000286 Result = MaxRegUse == 1 ? 0 : MaxRegUse-1;
Chris Lattner8aa10fc2005-01-11 22:29:12 +0000287 }
Chris Lattnerb7fe57a2005-01-12 02:19:06 +0000288
Chris Lattner75bac9f2005-01-11 23:21:30 +0000289 //std::cerr << " WEIGHT: " << Result << " "; N->dump(); std::cerr << "\n";
Chris Lattner8aa10fc2005-01-11 22:29:12 +0000290 return Result;
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000291}
292
Chris Lattner5b04f332005-01-20 16:50:16 +0000293/// NodeTransitivelyUsesValue - Return true if N or any of its uses uses Op.
294/// The DAG cannot have cycles in it, by definition, so the visited set is not
295/// needed to prevent infinite loops. The DAG CAN, however, have unbounded
296/// reuse, so it prevents exponential cases.
297///
298static bool NodeTransitivelyUsesValue(SDOperand N, SDOperand Op,
299 std::set<SDNode*> &Visited) {
300 if (N == Op) return true; // Found it.
301 SDNode *Node = N.Val;
Chris Lattnere70eb9da2005-01-21 21:43:02 +0000302 if (Node->getNumOperands() == 0 || // Leaf?
303 Node->getNodeDepth() <= Op.getNodeDepth()) return false; // Can't find it?
Chris Lattner5b04f332005-01-20 16:50:16 +0000304 if (!Visited.insert(Node).second) return false; // Already visited?
305
306 // Recurse for the first N-1 operands.
307 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
308 if (NodeTransitivelyUsesValue(Node->getOperand(i), Op, Visited))
309 return true;
310
311 // Tail recurse for the last operand.
312 return NodeTransitivelyUsesValue(Node->getOperand(0), Op, Visited);
313}
314
Chris Lattnera7acdda2005-01-18 01:06:26 +0000315X86AddressMode ISel::SelectAddrExprs(const X86ISelAddressMode &IAM) {
316 X86AddressMode Result;
317
318 // If we need to emit two register operands, emit the one with the highest
319 // register pressure first.
320 if (IAM.BaseType == X86ISelAddressMode::RegBase &&
321 IAM.Base.Reg.Val && IAM.IndexReg.Val) {
Chris Lattner5b04f332005-01-20 16:50:16 +0000322 bool EmitBaseThenIndex;
Chris Lattnera7acdda2005-01-18 01:06:26 +0000323 if (getRegPressure(IAM.Base.Reg) > getRegPressure(IAM.IndexReg)) {
Chris Lattner5b04f332005-01-20 16:50:16 +0000324 std::set<SDNode*> Visited;
325 EmitBaseThenIndex = true;
326 // If Base ends up pointing to Index, we must emit index first. This is
327 // because of the way we fold loads, we may end up doing bad things with
328 // the folded add.
329 if (NodeTransitivelyUsesValue(IAM.Base.Reg, IAM.IndexReg, Visited))
330 EmitBaseThenIndex = false;
331 } else {
332 std::set<SDNode*> Visited;
333 EmitBaseThenIndex = false;
334 // If Base ends up pointing to Index, we must emit index first. This is
335 // because of the way we fold loads, we may end up doing bad things with
336 // the folded add.
337 if (NodeTransitivelyUsesValue(IAM.IndexReg, IAM.Base.Reg, Visited))
338 EmitBaseThenIndex = true;
339 }
340
341 if (EmitBaseThenIndex) {
Chris Lattnera7acdda2005-01-18 01:06:26 +0000342 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
343 Result.IndexReg = SelectExpr(IAM.IndexReg);
344 } else {
345 Result.IndexReg = SelectExpr(IAM.IndexReg);
346 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
347 }
Chris Lattner5b04f332005-01-20 16:50:16 +0000348
Chris Lattnera7acdda2005-01-18 01:06:26 +0000349 } else if (IAM.BaseType == X86ISelAddressMode::RegBase && IAM.Base.Reg.Val) {
350 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
351 } else if (IAM.IndexReg.Val) {
352 Result.IndexReg = SelectExpr(IAM.IndexReg);
353 }
Misha Brukmanc88330a2005-04-21 23:38:14 +0000354
Chris Lattnera7acdda2005-01-18 01:06:26 +0000355 switch (IAM.BaseType) {
356 case X86ISelAddressMode::RegBase:
357 Result.BaseType = X86AddressMode::RegBase;
358 break;
359 case X86ISelAddressMode::FrameIndexBase:
360 Result.BaseType = X86AddressMode::FrameIndexBase;
361 Result.Base.FrameIndex = IAM.Base.FrameIndex;
362 break;
363 default:
364 assert(0 && "Unknown base type!");
365 break;
366 }
367 Result.Scale = IAM.Scale;
368 Result.Disp = IAM.Disp;
369 Result.GV = IAM.GV;
370 return Result;
371}
372
373/// SelectAddress - Pattern match the maximal addressing mode for this node and
374/// emit all of the leaf registers.
375void ISel::SelectAddress(SDOperand N, X86AddressMode &AM) {
376 X86ISelAddressMode IAM;
377 MatchAddress(N, IAM);
378 AM = SelectAddrExprs(IAM);
379}
380
381/// MatchAddress - Add the specified node to the specified addressing mode,
382/// returning true if it cannot be done. This just pattern matches for the
383/// addressing mode, it does not cause any code to be emitted. For that, use
384/// SelectAddress.
385bool ISel::MatchAddress(SDOperand N, X86ISelAddressMode &AM) {
Chris Lattner88c8a232005-01-07 07:49:41 +0000386 switch (N.getOpcode()) {
387 default: break;
388 case ISD::FrameIndex:
Chris Lattnera7acdda2005-01-18 01:06:26 +0000389 if (AM.BaseType == X86ISelAddressMode::RegBase && AM.Base.Reg.Val == 0) {
390 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Chris Lattner88c8a232005-01-07 07:49:41 +0000391 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
392 return false;
393 }
394 break;
395 case ISD::GlobalAddress:
396 if (AM.GV == 0) {
Nate Begemanf26625e2005-07-12 01:41:54 +0000397 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
398 // For Darwin, external and weak symbols are indirect, so we want to load
399 // the value at address GV, not the value of GV itself. This means that
400 // the GlobalAddress must be in the base or index register of the address,
401 // not the GV offset field.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000402 if (Subtarget->getIndirectExternAndWeakGlobals() &&
Nate Begemanf26625e2005-07-12 01:41:54 +0000403 (GV->hasWeakLinkage() || GV->isExternal())) {
404 break;
405 } else {
406 AM.GV = GV;
407 return false;
408 }
Chris Lattner88c8a232005-01-07 07:49:41 +0000409 }
410 break;
411 case ISD::Constant:
412 AM.Disp += cast<ConstantSDNode>(N)->getValue();
413 return false;
414 case ISD::SHL:
Chris Lattner3676cd62005-01-13 05:53:16 +0000415 // We might have folded the load into this shift, so don't regen the value
416 // if so.
417 if (ExprMap.count(N)) break;
418
Chris Lattnera7acdda2005-01-18 01:06:26 +0000419 if (AM.IndexReg.Val == 0 && AM.Scale == 1)
Chris Lattner88c8a232005-01-07 07:49:41 +0000420 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1))) {
421 unsigned Val = CN->getValue();
422 if (Val == 1 || Val == 2 || Val == 3) {
423 AM.Scale = 1 << Val;
Chris Lattnerb74ec4c2005-01-11 06:36:20 +0000424 SDOperand ShVal = N.Val->getOperand(0);
425
426 // Okay, we know that we have a scale by now. However, if the scaled
427 // value is an add of something and a constant, we can fold the
428 // constant into the disp field here.
Chris Lattnered246ec2005-01-18 04:18:32 +0000429 if (ShVal.Val->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
Chris Lattnerb74ec4c2005-01-11 06:36:20 +0000430 isa<ConstantSDNode>(ShVal.Val->getOperand(1))) {
Chris Lattnera7acdda2005-01-18 01:06:26 +0000431 AM.IndexReg = ShVal.Val->getOperand(0);
Chris Lattnerb74ec4c2005-01-11 06:36:20 +0000432 ConstantSDNode *AddVal =
433 cast<ConstantSDNode>(ShVal.Val->getOperand(1));
434 AM.Disp += AddVal->getValue() << Val;
Chris Lattner3676cd62005-01-13 05:53:16 +0000435 } else {
Chris Lattnera7acdda2005-01-18 01:06:26 +0000436 AM.IndexReg = ShVal;
Chris Lattnerb74ec4c2005-01-11 06:36:20 +0000437 }
Chris Lattner88c8a232005-01-07 07:49:41 +0000438 return false;
439 }
440 }
441 break;
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000442 case ISD::MUL:
Chris Lattner3676cd62005-01-13 05:53:16 +0000443 // We might have folded the load into this mul, so don't regen the value if
444 // so.
445 if (ExprMap.count(N)) break;
446
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000447 // X*[3,5,9] -> X+X*[2,4,8]
Chris Lattnera7acdda2005-01-18 01:06:26 +0000448 if (AM.IndexReg.Val == 0 && AM.BaseType == X86ISelAddressMode::RegBase &&
449 AM.Base.Reg.Val == 0)
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000450 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1)))
451 if (CN->getValue() == 3 || CN->getValue() == 5 || CN->getValue() == 9) {
452 AM.Scale = unsigned(CN->getValue())-1;
453
454 SDOperand MulVal = N.Val->getOperand(0);
Chris Lattnera7acdda2005-01-18 01:06:26 +0000455 SDOperand Reg;
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000456
457 // Okay, we know that we have a scale by now. However, if the scaled
458 // value is an add of something and a constant, we can fold the
459 // constant into the disp field here.
Chris Lattnered246ec2005-01-18 04:18:32 +0000460 if (MulVal.Val->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000461 isa<ConstantSDNode>(MulVal.Val->getOperand(1))) {
Chris Lattnera7acdda2005-01-18 01:06:26 +0000462 Reg = MulVal.Val->getOperand(0);
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000463 ConstantSDNode *AddVal =
464 cast<ConstantSDNode>(MulVal.Val->getOperand(1));
465 AM.Disp += AddVal->getValue() * CN->getValue();
Misha Brukmanc88330a2005-04-21 23:38:14 +0000466 } else {
Chris Lattnera7acdda2005-01-18 01:06:26 +0000467 Reg = N.Val->getOperand(0);
Chris Lattner8cf9cda2005-01-11 19:37:02 +0000468 }
469
470 AM.IndexReg = AM.Base.Reg = Reg;
471 return false;
472 }
473 break;
Chris Lattner88c8a232005-01-07 07:49:41 +0000474
475 case ISD::ADD: {
Chris Lattner3676cd62005-01-13 05:53:16 +0000476 // We might have folded the load into this mul, so don't regen the value if
477 // so.
478 if (ExprMap.count(N)) break;
479
Chris Lattnera7acdda2005-01-18 01:06:26 +0000480 X86ISelAddressMode Backup = AM;
481 if (!MatchAddress(N.Val->getOperand(0), AM) &&
482 !MatchAddress(N.Val->getOperand(1), AM))
Chris Lattner88c8a232005-01-07 07:49:41 +0000483 return false;
484 AM = Backup;
Chris Lattnera7acdda2005-01-18 01:06:26 +0000485 if (!MatchAddress(N.Val->getOperand(1), AM) &&
486 !MatchAddress(N.Val->getOperand(0), AM))
Chris Lattner17553602005-01-12 18:08:53 +0000487 return false;
488 AM = Backup;
Chris Lattner88c8a232005-01-07 07:49:41 +0000489 break;
490 }
491 }
492
Chris Lattner378262d2005-01-11 04:40:19 +0000493 // Is the base register already occupied?
Chris Lattnera7acdda2005-01-18 01:06:26 +0000494 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.Val) {
Chris Lattner378262d2005-01-11 04:40:19 +0000495 // If so, check to see if the scale index register is set.
Chris Lattnera7acdda2005-01-18 01:06:26 +0000496 if (AM.IndexReg.Val == 0) {
497 AM.IndexReg = N;
Chris Lattner378262d2005-01-11 04:40:19 +0000498 AM.Scale = 1;
499 return false;
500 }
501
502 // Otherwise, we cannot select it.
Chris Lattner88c8a232005-01-07 07:49:41 +0000503 return true;
Chris Lattner378262d2005-01-11 04:40:19 +0000504 }
Chris Lattner88c8a232005-01-07 07:49:41 +0000505
506 // Default, generate it as a register.
Chris Lattnera7acdda2005-01-18 01:06:26 +0000507 AM.BaseType = X86ISelAddressMode::RegBase;
508 AM.Base.Reg = N;
Chris Lattner88c8a232005-01-07 07:49:41 +0000509 return false;
510}
511
512/// Emit2SetCCsAndLogical - Emit the following sequence of instructions,
513/// assuming that the temporary registers are in the 8-bit register class.
514///
515/// Tmp1 = setcc1
516/// Tmp2 = setcc2
517/// DestReg = logicalop Tmp1, Tmp2
518///
519static void Emit2SetCCsAndLogical(MachineBasicBlock *BB, unsigned SetCC1,
520 unsigned SetCC2, unsigned LogicalOp,
521 unsigned DestReg) {
522 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
523 unsigned Tmp1 = RegMap->createVirtualRegister(X86::R8RegisterClass);
524 unsigned Tmp2 = RegMap->createVirtualRegister(X86::R8RegisterClass);
525 BuildMI(BB, SetCC1, 0, Tmp1);
526 BuildMI(BB, SetCC2, 0, Tmp2);
527 BuildMI(BB, LogicalOp, 2, DestReg).addReg(Tmp1).addReg(Tmp2);
528}
529
530/// EmitSetCC - Emit the code to set the specified 8-bit register to 1 if the
531/// condition codes match the specified SetCCOpcode. Note that some conditions
532/// require multiple instructions to generate the correct value.
533static void EmitSetCC(MachineBasicBlock *BB, unsigned DestReg,
534 ISD::CondCode SetCCOpcode, bool isFP) {
535 unsigned Opc;
536 if (!isFP) {
537 switch (SetCCOpcode) {
538 default: assert(0 && "Illegal integer SetCC!");
539 case ISD::SETEQ: Opc = X86::SETEr; break;
540 case ISD::SETGT: Opc = X86::SETGr; break;
541 case ISD::SETGE: Opc = X86::SETGEr; break;
542 case ISD::SETLT: Opc = X86::SETLr; break;
543 case ISD::SETLE: Opc = X86::SETLEr; break;
544 case ISD::SETNE: Opc = X86::SETNEr; break;
545 case ISD::SETULT: Opc = X86::SETBr; break;
546 case ISD::SETUGT: Opc = X86::SETAr; break;
547 case ISD::SETULE: Opc = X86::SETBEr; break;
548 case ISD::SETUGE: Opc = X86::SETAEr; break;
549 }
550 } else {
551 // On a floating point condition, the flags are set as follows:
552 // ZF PF CF op
553 // 0 | 0 | 0 | X > Y
554 // 0 | 0 | 1 | X < Y
555 // 1 | 0 | 0 | X == Y
556 // 1 | 1 | 1 | unordered
557 //
558 switch (SetCCOpcode) {
559 default: assert(0 && "Invalid FP setcc!");
560 case ISD::SETUEQ:
561 case ISD::SETEQ:
562 Opc = X86::SETEr; // True if ZF = 1
563 break;
564 case ISD::SETOGT:
565 case ISD::SETGT:
566 Opc = X86::SETAr; // True if CF = 0 and ZF = 0
567 break;
568 case ISD::SETOGE:
569 case ISD::SETGE:
570 Opc = X86::SETAEr; // True if CF = 0
571 break;
572 case ISD::SETULT:
573 case ISD::SETLT:
574 Opc = X86::SETBr; // True if CF = 1
575 break;
576 case ISD::SETULE:
577 case ISD::SETLE:
578 Opc = X86::SETBEr; // True if CF = 1 or ZF = 1
579 break;
580 case ISD::SETONE:
581 case ISD::SETNE:
582 Opc = X86::SETNEr; // True if ZF = 0
583 break;
584 case ISD::SETUO:
585 Opc = X86::SETPr; // True if PF = 1
586 break;
587 case ISD::SETO:
588 Opc = X86::SETNPr; // True if PF = 0
589 break;
590 case ISD::SETOEQ: // !PF & ZF
591 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETEr, X86::AND8rr, DestReg);
592 return;
593 case ISD::SETOLT: // !PF & CF
594 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETBr, X86::AND8rr, DestReg);
595 return;
596 case ISD::SETOLE: // !PF & (CF || ZF)
597 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETBEr, X86::AND8rr, DestReg);
598 return;
599 case ISD::SETUGT: // PF | (!ZF & !CF)
600 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETAr, X86::OR8rr, DestReg);
601 return;
602 case ISD::SETUGE: // PF | !CF
603 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETAEr, X86::OR8rr, DestReg);
604 return;
605 case ISD::SETUNE: // PF | !ZF
606 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETNEr, X86::OR8rr, DestReg);
607 return;
608 }
609 }
610 BuildMI(BB, Opc, 0, DestReg);
611}
612
613
614/// EmitBranchCC - Emit code into BB that arranges for control to transfer to
615/// the Dest block if the Cond condition is true. If we cannot fold this
616/// condition into the branch, return true.
617///
Chris Lattner37ed2852005-01-11 04:06:27 +0000618bool ISel::EmitBranchCC(MachineBasicBlock *Dest, SDOperand Chain,
619 SDOperand Cond) {
Chris Lattner88c8a232005-01-07 07:49:41 +0000620 // FIXME: Evaluate whether it would be good to emit code like (X < Y) | (A >
621 // B) using two conditional branches instead of one condbr, two setcc's, and
622 // an or.
623 if ((Cond.getOpcode() == ISD::OR ||
624 Cond.getOpcode() == ISD::AND) && Cond.Val->hasOneUse()) {
625 // And and or set the flags for us, so there is no need to emit a TST of the
626 // result. It is only safe to do this if there is only a single use of the
627 // AND/OR though, otherwise we don't know it will be emitted here.
Chris Lattner37ed2852005-01-11 04:06:27 +0000628 Select(Chain);
Chris Lattner88c8a232005-01-07 07:49:41 +0000629 SelectExpr(Cond);
630 BuildMI(BB, X86::JNE, 1).addMBB(Dest);
631 return false;
632 }
633
634 // Codegen br not C -> JE.
635 if (Cond.getOpcode() == ISD::XOR)
636 if (ConstantSDNode *NC = dyn_cast<ConstantSDNode>(Cond.Val->getOperand(1)))
637 if (NC->isAllOnesValue()) {
Chris Lattner37ed2852005-01-11 04:06:27 +0000638 unsigned CondR;
639 if (getRegPressure(Chain) > getRegPressure(Cond)) {
640 Select(Chain);
641 CondR = SelectExpr(Cond.Val->getOperand(0));
642 } else {
643 CondR = SelectExpr(Cond.Val->getOperand(0));
644 Select(Chain);
645 }
Chris Lattner88c8a232005-01-07 07:49:41 +0000646 BuildMI(BB, X86::TEST8rr, 2).addReg(CondR).addReg(CondR);
647 BuildMI(BB, X86::JE, 1).addMBB(Dest);
648 return false;
649 }
650
Chris Lattner6ec77452005-08-09 20:21:10 +0000651 if (Cond.getOpcode() != ISD::SETCC)
Chris Lattner88c8a232005-01-07 07:49:41 +0000652 return true; // Can only handle simple setcc's so far.
Chris Lattner6ec77452005-08-09 20:21:10 +0000653 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Chris Lattner88c8a232005-01-07 07:49:41 +0000654
655 unsigned Opc;
656
657 // Handle integer conditions first.
Chris Lattner6ec77452005-08-09 20:21:10 +0000658 if (MVT::isInteger(Cond.getOperand(0).getValueType())) {
659 switch (CC) {
Chris Lattner88c8a232005-01-07 07:49:41 +0000660 default: assert(0 && "Illegal integer SetCC!");
661 case ISD::SETEQ: Opc = X86::JE; break;
662 case ISD::SETGT: Opc = X86::JG; break;
663 case ISD::SETGE: Opc = X86::JGE; break;
664 case ISD::SETLT: Opc = X86::JL; break;
665 case ISD::SETLE: Opc = X86::JLE; break;
666 case ISD::SETNE: Opc = X86::JNE; break;
667 case ISD::SETULT: Opc = X86::JB; break;
668 case ISD::SETUGT: Opc = X86::JA; break;
669 case ISD::SETULE: Opc = X86::JBE; break;
670 case ISD::SETUGE: Opc = X86::JAE; break;
671 }
Chris Lattner37ed2852005-01-11 04:06:27 +0000672 Select(Chain);
Chris Lattner6ec77452005-08-09 20:21:10 +0000673 EmitCMP(Cond.getOperand(0), Cond.getOperand(1), Cond.hasOneUse());
Chris Lattner88c8a232005-01-07 07:49:41 +0000674 BuildMI(BB, Opc, 1).addMBB(Dest);
675 return false;
676 }
677
Chris Lattner88c8a232005-01-07 07:49:41 +0000678 unsigned Opc2 = 0; // Second branch if needed.
679
680 // On a floating point condition, the flags are set as follows:
681 // ZF PF CF op
682 // 0 | 0 | 0 | X > Y
683 // 0 | 0 | 1 | X < Y
684 // 1 | 0 | 0 | X == Y
685 // 1 | 1 | 1 | unordered
686 //
Chris Lattner6ec77452005-08-09 20:21:10 +0000687 switch (CC) {
Chris Lattner88c8a232005-01-07 07:49:41 +0000688 default: assert(0 && "Invalid FP setcc!");
689 case ISD::SETUEQ:
690 case ISD::SETEQ: Opc = X86::JE; break; // True if ZF = 1
691 case ISD::SETOGT:
692 case ISD::SETGT: Opc = X86::JA; break; // True if CF = 0 and ZF = 0
693 case ISD::SETOGE:
694 case ISD::SETGE: Opc = X86::JAE; break; // True if CF = 0
695 case ISD::SETULT:
696 case ISD::SETLT: Opc = X86::JB; break; // True if CF = 1
697 case ISD::SETULE:
698 case ISD::SETLE: Opc = X86::JBE; break; // True if CF = 1 or ZF = 1
699 case ISD::SETONE:
700 case ISD::SETNE: Opc = X86::JNE; break; // True if ZF = 0
701 case ISD::SETUO: Opc = X86::JP; break; // True if PF = 1
702 case ISD::SETO: Opc = X86::JNP; break; // True if PF = 0
703 case ISD::SETUGT: // PF = 1 | (ZF = 0 & CF = 0)
704 Opc = X86::JA; // ZF = 0 & CF = 0
705 Opc2 = X86::JP; // PF = 1
706 break;
707 case ISD::SETUGE: // PF = 1 | CF = 0
708 Opc = X86::JAE; // CF = 0
709 Opc2 = X86::JP; // PF = 1
710 break;
711 case ISD::SETUNE: // PF = 1 | ZF = 0
712 Opc = X86::JNE; // ZF = 0
713 Opc2 = X86::JP; // PF = 1
714 break;
715 case ISD::SETOEQ: // PF = 0 & ZF = 1
716 //X86::JNP, X86::JE
717 //X86::AND8rr
718 return true; // FIXME: Emit more efficient code for this branch.
719 case ISD::SETOLT: // PF = 0 & CF = 1
720 //X86::JNP, X86::JB
721 //X86::AND8rr
722 return true; // FIXME: Emit more efficient code for this branch.
723 case ISD::SETOLE: // PF = 0 & (CF = 1 || ZF = 1)
724 //X86::JNP, X86::JBE
725 //X86::AND8rr
726 return true; // FIXME: Emit more efficient code for this branch.
727 }
728
Chris Lattner37ed2852005-01-11 04:06:27 +0000729 Select(Chain);
Chris Lattner6ec77452005-08-09 20:21:10 +0000730 EmitCMP(Cond.getOperand(0), Cond.getOperand(1), Cond.hasOneUse());
Chris Lattner88c8a232005-01-07 07:49:41 +0000731 BuildMI(BB, Opc, 1).addMBB(Dest);
732 if (Opc2)
733 BuildMI(BB, Opc2, 1).addMBB(Dest);
734 return false;
735}
736
Chris Lattner1d13a922005-01-10 22:10:13 +0000737/// EmitSelectCC - Emit code into BB that performs a select operation between
Nate Begeman8d394eb2005-08-03 23:26:28 +0000738/// the two registers RTrue and RFalse, generating a result into RDest.
Chris Lattner1d13a922005-01-10 22:10:13 +0000739///
Nate Begeman8d394eb2005-08-03 23:26:28 +0000740void ISel::EmitSelectCC(SDOperand Cond, SDOperand True, SDOperand False,
741 MVT::ValueType SVT, unsigned RDest) {
742 unsigned RTrue, RFalse;
Chris Lattner1d13a922005-01-10 22:10:13 +0000743 enum Condition {
744 EQ, NE, LT, LE, GT, GE, B, BE, A, AE, P, NP,
745 NOT_SET
746 } CondCode = NOT_SET;
747
748 static const unsigned CMOVTAB16[] = {
749 X86::CMOVE16rr, X86::CMOVNE16rr, X86::CMOVL16rr, X86::CMOVLE16rr,
750 X86::CMOVG16rr, X86::CMOVGE16rr, X86::CMOVB16rr, X86::CMOVBE16rr,
Misha Brukmanc88330a2005-04-21 23:38:14 +0000751 X86::CMOVA16rr, X86::CMOVAE16rr, X86::CMOVP16rr, X86::CMOVNP16rr,
Chris Lattner1d13a922005-01-10 22:10:13 +0000752 };
753 static const unsigned CMOVTAB32[] = {
754 X86::CMOVE32rr, X86::CMOVNE32rr, X86::CMOVL32rr, X86::CMOVLE32rr,
755 X86::CMOVG32rr, X86::CMOVGE32rr, X86::CMOVB32rr, X86::CMOVBE32rr,
Misha Brukmanc88330a2005-04-21 23:38:14 +0000756 X86::CMOVA32rr, X86::CMOVAE32rr, X86::CMOVP32rr, X86::CMOVNP32rr,
Chris Lattner1d13a922005-01-10 22:10:13 +0000757 };
758 static const unsigned CMOVTABFP[] = {
Chris Lattnerf431ad42005-12-21 07:47:04 +0000759 X86::FpCMOVE, X86::FpCMOVNE, /*missing*/0, /*missing*/0,
760 /*missing*/0, /*missing*/ 0, X86::FpCMOVB, X86::FpCMOVBE,
Evan Cheng468fecd2006-01-21 02:55:41 +0000761 X86::FpCMOVNBE,X86::FpCMOVNB, X86::FpCMOVP, X86::FpCMOVNP
Chris Lattner1d13a922005-01-10 22:10:13 +0000762 };
Nate Begemana0b5e032005-07-15 00:38:55 +0000763 static const int SSE_CMOVTAB[] = {
Nate Begeman8d394eb2005-08-03 23:26:28 +0000764 /*CMPEQ*/ 0, /*CMPNEQ*/ 4, /*missing*/ 0, /*missing*/ 0,
765 /*missing*/ 0, /*missing*/ 0, /*CMPLT*/ 1, /*CMPLE*/ 2,
766 /*CMPNLE*/ 6, /*CMPNLT*/ 5, /*CMPUNORD*/ 3, /*CMPORD*/ 7
Nate Begeman8a093362005-07-06 18:59:04 +0000767 };
Nate Begeman8d394eb2005-08-03 23:26:28 +0000768
Chris Lattner6ec77452005-08-09 20:21:10 +0000769 if (Cond.getOpcode() == ISD::SETCC) {
770 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
771 if (MVT::isInteger(Cond.getOperand(0).getValueType())) {
772 switch (CC) {
Chris Lattner1d13a922005-01-10 22:10:13 +0000773 default: assert(0 && "Unknown integer comparison!");
774 case ISD::SETEQ: CondCode = EQ; break;
775 case ISD::SETGT: CondCode = GT; break;
776 case ISD::SETGE: CondCode = GE; break;
777 case ISD::SETLT: CondCode = LT; break;
778 case ISD::SETLE: CondCode = LE; break;
779 case ISD::SETNE: CondCode = NE; break;
780 case ISD::SETULT: CondCode = B; break;
781 case ISD::SETUGT: CondCode = A; break;
782 case ISD::SETULE: CondCode = BE; break;
783 case ISD::SETUGE: CondCode = AE; break;
784 }
785 } else {
786 // On a floating point condition, the flags are set as follows:
787 // ZF PF CF op
788 // 0 | 0 | 0 | X > Y
789 // 0 | 0 | 1 | X < Y
790 // 1 | 0 | 0 | X == Y
791 // 1 | 1 | 1 | unordered
792 //
Chris Lattner6ec77452005-08-09 20:21:10 +0000793 switch (CC) {
Chris Lattner1d13a922005-01-10 22:10:13 +0000794 default: assert(0 && "Unknown FP comparison!");
795 case ISD::SETUEQ:
796 case ISD::SETEQ: CondCode = EQ; break; // True if ZF = 1
797 case ISD::SETOGT:
798 case ISD::SETGT: CondCode = A; break; // True if CF = 0 and ZF = 0
799 case ISD::SETOGE:
800 case ISD::SETGE: CondCode = AE; break; // True if CF = 0
801 case ISD::SETULT:
802 case ISD::SETLT: CondCode = B; break; // True if CF = 1
803 case ISD::SETULE:
804 case ISD::SETLE: CondCode = BE; break; // True if CF = 1 or ZF = 1
805 case ISD::SETONE:
806 case ISD::SETNE: CondCode = NE; break; // True if ZF = 0
807 case ISD::SETUO: CondCode = P; break; // True if PF = 1
808 case ISD::SETO: CondCode = NP; break; // True if PF = 0
809 case ISD::SETUGT: // PF = 1 | (ZF = 0 & CF = 0)
810 case ISD::SETUGE: // PF = 1 | CF = 0
811 case ISD::SETUNE: // PF = 1 | ZF = 0
812 case ISD::SETOEQ: // PF = 0 & ZF = 1
813 case ISD::SETOLT: // PF = 0 & CF = 1
814 case ISD::SETOLE: // PF = 0 & (CF = 1 || ZF = 1)
815 // We cannot emit this comparison as a single cmov.
816 break;
817 }
818 }
Chris Lattner6ec77452005-08-09 20:21:10 +0000819
Chris Lattner1d13a922005-01-10 22:10:13 +0000820
Chris Lattner6ec77452005-08-09 20:21:10 +0000821 // There's no SSE equivalent of FCMOVE. For cases where we set a condition
822 // code above and one of the results of the select is +0.0, then we can fake
823 // it up through a clever AND with mask. Otherwise, we will fall through to
824 // the code below that will use a PHI node to select the right value.
825 if (X86ScalarSSE && (SVT == MVT::f32 || SVT == MVT::f64)) {
826 if (Cond.getOperand(0).getValueType() == SVT &&
827 NOT_SET != CondCode) {
828 ConstantFPSDNode *CT = dyn_cast<ConstantFPSDNode>(True);
829 ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(False);
830 bool TrueZero = CT && CT->isExactlyValue(0.0);
831 bool FalseZero = CF && CF->isExactlyValue(0.0);
832 if (TrueZero || FalseZero) {
833 SDOperand LHS = Cond.getOperand(0);
834 SDOperand RHS = Cond.getOperand(1);
835
836 // Select the two halves of the condition
837 unsigned RLHS, RRHS;
838 if (getRegPressure(LHS) > getRegPressure(RHS)) {
839 RLHS = SelectExpr(LHS);
840 RRHS = SelectExpr(RHS);
841 } else {
842 RRHS = SelectExpr(RHS);
843 RLHS = SelectExpr(LHS);
844 }
845
846 // Emit the comparison and generate a mask from it
847 unsigned MaskReg = MakeReg(SVT);
848 unsigned Opc = (SVT == MVT::f32) ? X86::CMPSSrr : X86::CMPSDrr;
849 BuildMI(BB, Opc, 3, MaskReg).addReg(RLHS).addReg(RRHS)
850 .addImm(SSE_CMOVTAB[CondCode]);
851
852 if (TrueZero) {
853 RFalse = SelectExpr(False);
854 Opc = (SVT == MVT::f32) ? X86::ANDNPSrr : X86::ANDNPDrr;
855 BuildMI(BB, Opc, 2, RDest).addReg(MaskReg).addReg(RFalse);
856 } else {
857 RTrue = SelectExpr(True);
858 Opc = (SVT == MVT::f32) ? X86::ANDPSrr : X86::ANDPDrr;
859 BuildMI(BB, Opc, 2, RDest).addReg(MaskReg).addReg(RTrue);
860 }
861 return;
Nate Begeman8d394eb2005-08-03 23:26:28 +0000862 }
Nate Begeman8d394eb2005-08-03 23:26:28 +0000863 }
Nate Begeman8a093362005-07-06 18:59:04 +0000864 }
Nate Begeman8d394eb2005-08-03 23:26:28 +0000865 }
866
867 // Select the true and false values for use in both the SSE PHI case, and the
868 // integer or x87 cmov cases below.
869 if (getRegPressure(True) > getRegPressure(False)) {
870 RTrue = SelectExpr(True);
871 RFalse = SelectExpr(False);
872 } else {
873 RFalse = SelectExpr(False);
874 RTrue = SelectExpr(True);
875 }
876
877 // Since there's no SSE equivalent of FCMOVE, and we couldn't generate an
878 // AND with mask, we'll have to do the normal RISC thing and generate a PHI
879 // node to select between the true and false values.
880 if (X86ScalarSSE && (SVT == MVT::f32 || SVT == MVT::f64)) {
881 // FIXME: emit a direct compare and branch rather than setting a cond reg
882 // and testing it.
883 unsigned CondReg = SelectExpr(Cond);
884 BuildMI(BB, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
885
886 // Create an iterator with which to insert the MBB for copying the false
887 // value and the MBB to hold the PHI instruction for this SetCC.
888 MachineBasicBlock *thisMBB = BB;
889 const BasicBlock *LLVM_BB = BB->getBasicBlock();
890 ilist<MachineBasicBlock>::iterator It = BB;
891 ++It;
892
893 // thisMBB:
894 // ...
895 // TrueVal = ...
896 // cmpTY ccX, r1, r2
897 // bCC sinkMBB
898 // fallthrough --> copy0MBB
899 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
900 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
901 BuildMI(BB, X86::JNE, 1).addMBB(sinkMBB);
902 MachineFunction *F = BB->getParent();
903 F->getBasicBlockList().insert(It, copy0MBB);
904 F->getBasicBlockList().insert(It, sinkMBB);
905 // Update machine-CFG edges
906 BB->addSuccessor(copy0MBB);
907 BB->addSuccessor(sinkMBB);
908
909 // copy0MBB:
910 // %FalseValue = ...
911 // # fallthrough to sinkMBB
912 BB = copy0MBB;
913 // Update machine-CFG edges
914 BB->addSuccessor(sinkMBB);
915
916 // sinkMBB:
917 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
918 // ...
919 BB = sinkMBB;
920 BuildMI(BB, X86::PHI, 4, RDest).addReg(RFalse)
921 .addMBB(copy0MBB).addReg(RTrue).addMBB(thisMBB);
Nate Begeman8a093362005-07-06 18:59:04 +0000922 return;
923 }
924
Chris Lattner1d13a922005-01-10 22:10:13 +0000925 unsigned Opc = 0;
926 if (CondCode != NOT_SET) {
927 switch (SVT) {
928 default: assert(0 && "Cannot select this type!");
929 case MVT::i16: Opc = CMOVTAB16[CondCode]; break;
930 case MVT::i32: Opc = CMOVTAB32[CondCode]; break;
Chris Lattnere44e6d12005-01-11 03:50:45 +0000931 case MVT::f64: Opc = CMOVTABFP[CondCode]; break;
Chris Lattner1d13a922005-01-10 22:10:13 +0000932 }
933 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000934
Chris Lattner1d13a922005-01-10 22:10:13 +0000935 // Finally, if we weren't able to fold this, just emit the condition and test
936 // it.
937 if (CondCode == NOT_SET || Opc == 0) {
938 // Get the condition into the zero flag.
939 unsigned CondReg = SelectExpr(Cond);
940 BuildMI(BB, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
941
942 switch (SVT) {
943 default: assert(0 && "Cannot select this type!");
944 case MVT::i16: Opc = X86::CMOVE16rr; break;
945 case MVT::i32: Opc = X86::CMOVE32rr; break;
Chris Lattnerf431ad42005-12-21 07:47:04 +0000946 case MVT::f64: Opc = X86::FpCMOVE; break;
Chris Lattner1d13a922005-01-10 22:10:13 +0000947 }
948 } else {
949 // FIXME: CMP R, 0 -> TEST R, R
Chris Lattner3be6cd52005-01-17 01:34:14 +0000950 EmitCMP(Cond.getOperand(0), Cond.getOperand(1), Cond.Val->hasOneUse());
Chris Lattner8fea42b2005-01-11 03:37:59 +0000951 std::swap(RTrue, RFalse);
Chris Lattner1d13a922005-01-10 22:10:13 +0000952 }
953 BuildMI(BB, Opc, 2, RDest).addReg(RTrue).addReg(RFalse);
954}
955
Chris Lattner3be6cd52005-01-17 01:34:14 +0000956void ISel::EmitCMP(SDOperand LHS, SDOperand RHS, bool HasOneUse) {
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000957 unsigned Opc;
Chris Lattner88c8a232005-01-07 07:49:41 +0000958 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(RHS)) {
959 Opc = 0;
Chris Lattnera56d29d2005-01-17 06:26:58 +0000960 if (HasOneUse && isFoldableLoad(LHS, RHS)) {
Chris Lattner2cfce682005-01-12 02:02:48 +0000961 switch (RHS.getValueType()) {
962 default: break;
963 case MVT::i1:
964 case MVT::i8: Opc = X86::CMP8mi; break;
965 case MVT::i16: Opc = X86::CMP16mi; break;
966 case MVT::i32: Opc = X86::CMP32mi; break;
967 }
968 if (Opc) {
969 X86AddressMode AM;
970 EmitFoldedLoad(LHS, AM);
971 addFullAddress(BuildMI(BB, Opc, 5), AM).addImm(CN->getValue());
972 return;
973 }
974 }
975
Chris Lattner88c8a232005-01-07 07:49:41 +0000976 switch (RHS.getValueType()) {
977 default: break;
978 case MVT::i1:
979 case MVT::i8: Opc = X86::CMP8ri; break;
980 case MVT::i16: Opc = X86::CMP16ri; break;
981 case MVT::i32: Opc = X86::CMP32ri; break;
982 }
983 if (Opc) {
Chris Lattner0d1f82a2005-01-11 03:11:44 +0000984 unsigned Tmp1 = SelectExpr(LHS);
Chris Lattner88c8a232005-01-07 07:49:41 +0000985 BuildMI(BB, Opc, 2).addReg(Tmp1).addImm(CN->getValue());
986 return;
987 }
Chris Lattner720a62e2005-01-14 22:37:41 +0000988 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(RHS)) {
Nate Begeman8a093362005-07-06 18:59:04 +0000989 if (!X86ScalarSSE && (CN->isExactlyValue(+0.0) ||
990 CN->isExactlyValue(-0.0))) {
Chris Lattner720a62e2005-01-14 22:37:41 +0000991 unsigned Reg = SelectExpr(LHS);
Chris Lattnerf431ad42005-12-21 07:47:04 +0000992 BuildMI(BB, X86::FpTST, 1).addReg(Reg);
Chris Lattner720a62e2005-01-14 22:37:41 +0000993 BuildMI(BB, X86::FNSTSW8r, 0);
994 BuildMI(BB, X86::SAHF, 1);
Chris Lattner43832b02005-03-17 16:29:26 +0000995 return;
Chris Lattner720a62e2005-01-14 22:37:41 +0000996 }
Chris Lattner88c8a232005-01-07 07:49:41 +0000997 }
998
Chris Lattner2cfce682005-01-12 02:02:48 +0000999 Opc = 0;
Chris Lattnera56d29d2005-01-17 06:26:58 +00001000 if (HasOneUse && isFoldableLoad(LHS, RHS)) {
Chris Lattner2cfce682005-01-12 02:02:48 +00001001 switch (RHS.getValueType()) {
1002 default: break;
1003 case MVT::i1:
1004 case MVT::i8: Opc = X86::CMP8mr; break;
1005 case MVT::i16: Opc = X86::CMP16mr; break;
1006 case MVT::i32: Opc = X86::CMP32mr; break;
1007 }
1008 if (Opc) {
1009 X86AddressMode AM;
Chris Lattner3676cd62005-01-13 05:53:16 +00001010 EmitFoldedLoad(LHS, AM);
1011 unsigned Reg = SelectExpr(RHS);
Chris Lattner2cfce682005-01-12 02:02:48 +00001012 addFullAddress(BuildMI(BB, Opc, 5), AM).addReg(Reg);
1013 return;
1014 }
1015 }
1016
Chris Lattner88c8a232005-01-07 07:49:41 +00001017 switch (LHS.getValueType()) {
1018 default: assert(0 && "Cannot compare this value!");
1019 case MVT::i1:
1020 case MVT::i8: Opc = X86::CMP8rr; break;
1021 case MVT::i16: Opc = X86::CMP16rr; break;
1022 case MVT::i32: Opc = X86::CMP32rr; break;
Nate Begeman8a093362005-07-06 18:59:04 +00001023 case MVT::f32: Opc = X86::UCOMISSrr; break;
Chris Lattnerf431ad42005-12-21 07:47:04 +00001024 case MVT::f64: Opc = X86ScalarSSE ? X86::UCOMISDrr : X86::FpUCOMIr; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00001025 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001026 unsigned Tmp1, Tmp2;
1027 if (getRegPressure(LHS) > getRegPressure(RHS)) {
1028 Tmp1 = SelectExpr(LHS);
1029 Tmp2 = SelectExpr(RHS);
1030 } else {
1031 Tmp2 = SelectExpr(RHS);
1032 Tmp1 = SelectExpr(LHS);
1033 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001034 BuildMI(BB, Opc, 2).addReg(Tmp1).addReg(Tmp2);
1035}
1036
Chris Lattner62b22422005-01-11 21:19:59 +00001037/// isFoldableLoad - Return true if this is a load instruction that can safely
1038/// be folded into an operation that uses it.
Chris Lattner30607ec2005-01-25 20:03:11 +00001039bool ISel::isFoldableLoad(SDOperand Op, SDOperand OtherOp, bool FloatPromoteOk){
1040 if (Op.getOpcode() == ISD::LOAD) {
1041 // FIXME: currently can't fold constant pool indexes.
1042 if (isa<ConstantPoolSDNode>(Op.getOperand(1)))
1043 return false;
1044 } else if (FloatPromoteOk && Op.getOpcode() == ISD::EXTLOAD &&
Chris Lattner53676df2005-07-10 01:56:13 +00001045 cast<VTSDNode>(Op.getOperand(3))->getVT() == MVT::f32) {
Chris Lattner30607ec2005-01-25 20:03:11 +00001046 // FIXME: currently can't fold constant pool indexes.
1047 if (isa<ConstantPoolSDNode>(Op.getOperand(1)))
1048 return false;
1049 } else {
Chris Lattner62b22422005-01-11 21:19:59 +00001050 return false;
Chris Lattner30607ec2005-01-25 20:03:11 +00001051 }
Chris Lattner62b22422005-01-11 21:19:59 +00001052
1053 // If this load has already been emitted, we clearly can't fold it.
Chris Lattner3676cd62005-01-13 05:53:16 +00001054 assert(Op.ResNo == 0 && "Not a use of the value of the load?");
1055 if (ExprMap.count(Op.getValue(1))) return false;
1056 assert(!ExprMap.count(Op.getValue(0)) && "Value in map but not token chain?");
Chris Lattner78d30282005-01-18 03:51:59 +00001057 assert(!ExprMap.count(Op.getValue(1))&&"Token lowered but value not in map?");
Chris Lattner62b22422005-01-11 21:19:59 +00001058
Chris Lattnera56d29d2005-01-17 06:26:58 +00001059 // If there is not just one use of its value, we cannot fold.
1060 if (!Op.Val->hasNUsesOfValue(1, 0)) return false;
1061
1062 // Finally, we cannot fold the load into the operation if this would induce a
1063 // cycle into the resultant dag. To check for this, see if OtherOp (the other
1064 // operand of the operation we are folding the load into) can possible use the
1065 // chain node defined by the load.
1066 if (OtherOp.Val && !Op.Val->hasNUsesOfValue(0, 1)) { // Has uses of chain?
1067 std::set<SDNode*> Visited;
1068 if (NodeTransitivelyUsesValue(OtherOp, Op.getValue(1), Visited))
1069 return false;
1070 }
1071 return true;
Chris Lattner62b22422005-01-11 21:19:59 +00001072}
1073
Chris Lattnera56d29d2005-01-17 06:26:58 +00001074
Chris Lattner62b22422005-01-11 21:19:59 +00001075/// EmitFoldedLoad - Ensure that the arguments of the load are code generated,
1076/// and compute the address being loaded into AM.
1077void ISel::EmitFoldedLoad(SDOperand Op, X86AddressMode &AM) {
1078 SDOperand Chain = Op.getOperand(0);
1079 SDOperand Address = Op.getOperand(1);
Chris Lattnera7acdda2005-01-18 01:06:26 +00001080
Chris Lattner62b22422005-01-11 21:19:59 +00001081 if (getRegPressure(Chain) > getRegPressure(Address)) {
1082 Select(Chain);
1083 SelectAddress(Address, AM);
1084 } else {
1085 SelectAddress(Address, AM);
1086 Select(Chain);
1087 }
1088
1089 // The chain for this load is now lowered.
Chris Lattner3676cd62005-01-13 05:53:16 +00001090 assert(ExprMap.count(SDOperand(Op.Val, 1)) == 0 &&
1091 "Load emitted more than once?");
Chris Lattner78d30282005-01-18 03:51:59 +00001092 if (!ExprMap.insert(std::make_pair(Op.getValue(1), 1)).second)
Chris Lattner3676cd62005-01-13 05:53:16 +00001093 assert(0 && "Load emitted more than once!");
Chris Lattner62b22422005-01-11 21:19:59 +00001094}
1095
Chris Lattner29f58192005-01-19 07:37:26 +00001096// EmitOrOpOp - Pattern match the expression (Op1|Op2), where we know that op1
1097// and op2 are i8/i16/i32 values with one use each (the or). If we can form a
1098// SHLD or SHRD, emit the instruction (generating the value into DestReg) and
1099// return true.
1100bool ISel::EmitOrOpOp(SDOperand Op1, SDOperand Op2, unsigned DestReg) {
Chris Lattner41fe2012005-01-19 06:18:43 +00001101 if (Op1.getOpcode() == ISD::SHL && Op2.getOpcode() == ISD::SRL) {
1102 // good!
1103 } else if (Op2.getOpcode() == ISD::SHL && Op1.getOpcode() == ISD::SRL) {
1104 std::swap(Op1, Op2); // Op1 is the SHL now.
1105 } else {
1106 return false; // No match
1107 }
1108
1109 SDOperand ShlVal = Op1.getOperand(0);
1110 SDOperand ShlAmt = Op1.getOperand(1);
1111 SDOperand ShrVal = Op2.getOperand(0);
1112 SDOperand ShrAmt = Op2.getOperand(1);
1113
Chris Lattner29f58192005-01-19 07:37:26 +00001114 unsigned RegSize = MVT::getSizeInBits(Op1.getValueType());
1115
Chris Lattner41fe2012005-01-19 06:18:43 +00001116 // Find out if ShrAmt = 32-ShlAmt or ShlAmt = 32-ShrAmt.
1117 if (ShlAmt.getOpcode() == ISD::SUB && ShlAmt.getOperand(1) == ShrAmt)
1118 if (ConstantSDNode *SubCST = dyn_cast<ConstantSDNode>(ShlAmt.getOperand(0)))
Chris Lattnerde87d1462005-01-19 08:07:05 +00001119 if (SubCST->getValue() == RegSize) {
1120 // (A >> ShrAmt) | (A << (32-ShrAmt)) ==> ROR A, ShrAmt
Chris Lattner41fe2012005-01-19 06:18:43 +00001121 // (A >> ShrAmt) | (B << (32-ShrAmt)) ==> SHRD A, B, ShrAmt
Chris Lattnerde87d1462005-01-19 08:07:05 +00001122 if (ShrVal == ShlVal) {
1123 unsigned Reg, ShAmt;
1124 if (getRegPressure(ShrVal) > getRegPressure(ShrAmt)) {
1125 Reg = SelectExpr(ShrVal);
1126 ShAmt = SelectExpr(ShrAmt);
1127 } else {
1128 ShAmt = SelectExpr(ShrAmt);
1129 Reg = SelectExpr(ShrVal);
1130 }
1131 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1132 unsigned Opc = RegSize == 8 ? X86::ROR8rCL :
1133 (RegSize == 16 ? X86::ROR16rCL : X86::ROR32rCL);
1134 BuildMI(BB, Opc, 1, DestReg).addReg(Reg);
1135 return true;
1136 } else if (RegSize != 8) {
Chris Lattner41fe2012005-01-19 06:18:43 +00001137 unsigned AReg, BReg;
1138 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattner41fe2012005-01-19 06:18:43 +00001139 BReg = SelectExpr(ShlVal);
Chris Lattner474aac42005-01-19 17:24:34 +00001140 AReg = SelectExpr(ShrVal);
Chris Lattner41fe2012005-01-19 06:18:43 +00001141 } else {
Chris Lattner41fe2012005-01-19 06:18:43 +00001142 AReg = SelectExpr(ShrVal);
Chris Lattner474aac42005-01-19 17:24:34 +00001143 BReg = SelectExpr(ShlVal);
Chris Lattner41fe2012005-01-19 06:18:43 +00001144 }
Chris Lattnerde87d1462005-01-19 08:07:05 +00001145 unsigned ShAmt = SelectExpr(ShrAmt);
1146 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1147 unsigned Opc = RegSize == 16 ? X86::SHRD16rrCL : X86::SHRD32rrCL;
1148 BuildMI(BB, Opc, 2, DestReg).addReg(AReg).addReg(BReg);
Chris Lattner41fe2012005-01-19 06:18:43 +00001149 return true;
1150 }
1151 }
1152
Chris Lattnerde87d1462005-01-19 08:07:05 +00001153 if (ShrAmt.getOpcode() == ISD::SUB && ShrAmt.getOperand(1) == ShlAmt)
1154 if (ConstantSDNode *SubCST = dyn_cast<ConstantSDNode>(ShrAmt.getOperand(0)))
1155 if (SubCST->getValue() == RegSize) {
1156 // (A << ShlAmt) | (A >> (32-ShlAmt)) ==> ROL A, ShrAmt
1157 // (A << ShlAmt) | (B >> (32-ShlAmt)) ==> SHLD A, B, ShrAmt
1158 if (ShrVal == ShlVal) {
1159 unsigned Reg, ShAmt;
1160 if (getRegPressure(ShrVal) > getRegPressure(ShlAmt)) {
1161 Reg = SelectExpr(ShrVal);
1162 ShAmt = SelectExpr(ShlAmt);
1163 } else {
1164 ShAmt = SelectExpr(ShlAmt);
1165 Reg = SelectExpr(ShrVal);
1166 }
1167 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1168 unsigned Opc = RegSize == 8 ? X86::ROL8rCL :
1169 (RegSize == 16 ? X86::ROL16rCL : X86::ROL32rCL);
1170 BuildMI(BB, Opc, 1, DestReg).addReg(Reg);
1171 return true;
1172 } else if (RegSize != 8) {
1173 unsigned AReg, BReg;
1174 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattner474aac42005-01-19 17:24:34 +00001175 AReg = SelectExpr(ShlVal);
1176 BReg = SelectExpr(ShrVal);
Chris Lattnerde87d1462005-01-19 08:07:05 +00001177 } else {
Chris Lattner474aac42005-01-19 17:24:34 +00001178 BReg = SelectExpr(ShrVal);
1179 AReg = SelectExpr(ShlVal);
Chris Lattnerde87d1462005-01-19 08:07:05 +00001180 }
1181 unsigned ShAmt = SelectExpr(ShlAmt);
1182 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1183 unsigned Opc = RegSize == 16 ? X86::SHLD16rrCL : X86::SHLD32rrCL;
1184 BuildMI(BB, Opc, 2, DestReg).addReg(AReg).addReg(BReg);
1185 return true;
1186 }
1187 }
Chris Lattner41fe2012005-01-19 06:18:43 +00001188
Chris Lattnerde87d1462005-01-19 08:07:05 +00001189 if (ConstantSDNode *ShrCst = dyn_cast<ConstantSDNode>(ShrAmt))
1190 if (ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(ShlAmt))
1191 if (ShrCst->getValue() < RegSize && ShlCst->getValue() < RegSize)
1192 if (ShrCst->getValue() == RegSize-ShlCst->getValue()) {
1193 // (A >> 5) | (A << 27) --> ROR A, 5
1194 // (A >> 5) | (B << 27) --> SHRD A, B, 5
1195 if (ShrVal == ShlVal) {
1196 unsigned Reg = SelectExpr(ShrVal);
1197 unsigned Opc = RegSize == 8 ? X86::ROR8ri :
1198 (RegSize == 16 ? X86::ROR16ri : X86::ROR32ri);
1199 BuildMI(BB, Opc, 2, DestReg).addReg(Reg).addImm(ShrCst->getValue());
1200 return true;
1201 } else if (RegSize != 8) {
1202 unsigned AReg, BReg;
1203 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattnerde87d1462005-01-19 08:07:05 +00001204 BReg = SelectExpr(ShlVal);
Chris Lattner474aac42005-01-19 17:24:34 +00001205 AReg = SelectExpr(ShrVal);
Chris Lattnerde87d1462005-01-19 08:07:05 +00001206 } else {
Chris Lattnerde87d1462005-01-19 08:07:05 +00001207 AReg = SelectExpr(ShrVal);
Chris Lattner474aac42005-01-19 17:24:34 +00001208 BReg = SelectExpr(ShlVal);
Chris Lattnerde87d1462005-01-19 08:07:05 +00001209 }
1210 unsigned Opc = RegSize == 16 ? X86::SHRD16rri8 : X86::SHRD32rri8;
1211 BuildMI(BB, Opc, 3, DestReg).addReg(AReg).addReg(BReg)
1212 .addImm(ShrCst->getValue());
1213 return true;
1214 }
1215 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00001216
Chris Lattner41fe2012005-01-19 06:18:43 +00001217 return false;
1218}
1219
Chris Lattner88c8a232005-01-07 07:49:41 +00001220unsigned ISel::SelectExpr(SDOperand N) {
1221 unsigned Result;
Chris Lattner9982da22005-10-02 16:29:36 +00001222 unsigned Tmp1 = 0, Tmp2 = 0, Tmp3 = 0, Opc = 0;
Chris Lattnerb52e0412005-01-08 19:28:19 +00001223 SDNode *Node = N.Val;
Chris Lattner62b22422005-01-11 21:19:59 +00001224 SDOperand Op0, Op1;
Chris Lattnerb52e0412005-01-08 19:28:19 +00001225
Evan Chengbc7a0f442006-01-11 06:09:51 +00001226 if (Node->getOpcode() == ISD::CopyFromReg ||
1227 Node->getOpcode() == ISD::Register) {
1228 unsigned Reg = (Node->getOpcode() == ISD::CopyFromReg) ?
1229 cast<RegisterSDNode>(Node->getOperand(1))->getReg() :
1230 cast<RegisterSDNode>(Node)->getReg();
Chris Lattner7c762782005-08-16 21:56:37 +00001231 // Just use the specified register as our input if we can.
Chris Lattner5f9c1342006-01-13 20:19:44 +00001232 if (Node->getOpcode() == ISD::Register ||
1233 MRegisterInfo::isVirtualRegister(Reg))
Chris Lattner7c762782005-08-16 21:56:37 +00001234 return Reg;
Evan Chengbc7a0f442006-01-11 06:09:51 +00001235 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00001236
Chris Lattner62b22422005-01-11 21:19:59 +00001237 unsigned &Reg = ExprMap[N];
1238 if (Reg) return Reg;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001239
Chris Lattnera31d4c72005-04-02 04:01:14 +00001240 switch (N.getOpcode()) {
1241 default:
Chris Lattner62b22422005-01-11 21:19:59 +00001242 Reg = Result = (N.getValueType() != MVT::Other) ?
Chris Lattnera31d4c72005-04-02 04:01:14 +00001243 MakeReg(N.getValueType()) : 1;
1244 break;
Chris Lattner1b3520c2005-05-14 08:48:15 +00001245 case X86ISD::TAILCALL:
1246 case X86ISD::CALL:
Chris Lattner62b22422005-01-11 21:19:59 +00001247 // If this is a call instruction, make sure to prepare ALL of the result
1248 // values as well as the chain.
Chris Lattner1b3520c2005-05-14 08:48:15 +00001249 ExprMap[N.getValue(0)] = 1;
1250 if (Node->getNumValues() > 1) {
1251 Result = MakeReg(Node->getValueType(1));
1252 ExprMap[N.getValue(1)] = Result;
1253 for (unsigned i = 2, e = Node->getNumValues(); i != e; ++i)
Chris Lattner62b22422005-01-11 21:19:59 +00001254 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
Chris Lattner1b3520c2005-05-14 08:48:15 +00001255 } else {
1256 Result = 1;
Chris Lattner88c8a232005-01-07 07:49:41 +00001257 }
Chris Lattnera31d4c72005-04-02 04:01:14 +00001258 break;
1259 case ISD::ADD_PARTS:
1260 case ISD::SUB_PARTS:
1261 case ISD::SHL_PARTS:
1262 case ISD::SRL_PARTS:
1263 case ISD::SRA_PARTS:
1264 Result = MakeReg(Node->getValueType(0));
1265 ExprMap[N.getValue(0)] = Result;
1266 for (unsigned i = 1, e = N.Val->getNumValues(); i != e; ++i)
1267 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
1268 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00001269 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00001270
Chris Lattner88c8a232005-01-07 07:49:41 +00001271 switch (N.getOpcode()) {
1272 default:
Chris Lattnerb52e0412005-01-08 19:28:19 +00001273 Node->dump();
Chris Lattner88c8a232005-01-07 07:49:41 +00001274 assert(0 && "Node not handled!\n");
Nate Begeman8a093362005-07-06 18:59:04 +00001275 case ISD::FP_EXTEND:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001276 assert(X86ScalarSSE && "Scalar SSE FP must be enabled to use f32");
Nate Begeman8a093362005-07-06 18:59:04 +00001277 Tmp1 = SelectExpr(N.getOperand(0));
1278 BuildMI(BB, X86::CVTSS2SDrr, 1, Result).addReg(Tmp1);
1279 return Result;
Nate Begemana0b5e032005-07-15 00:38:55 +00001280 case ISD::FP_ROUND:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001281 assert(X86ScalarSSE && "Scalar SSE FP must be enabled to use f32");
Nate Begemana0b5e032005-07-15 00:38:55 +00001282 Tmp1 = SelectExpr(N.getOperand(0));
1283 BuildMI(BB, X86::CVTSD2SSrr, 1, Result).addReg(Tmp1);
1284 return Result;
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001285 case ISD::CopyFromReg:
1286 Select(N.getOperand(0));
1287 if (Result == 1) {
1288 Reg = Result = ExprMap[N.getValue(0)] =
1289 MakeReg(N.getValue(0).getValueType());
1290 }
Chris Lattner7c762782005-08-16 21:56:37 +00001291 Tmp1 = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001292 switch (Node->getValueType(0)) {
1293 default: assert(0 && "Cannot CopyFromReg this!");
1294 case MVT::i1:
1295 case MVT::i8:
Chris Lattner7c762782005-08-16 21:56:37 +00001296 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(Tmp1);
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001297 return Result;
1298 case MVT::i16:
Chris Lattner7c762782005-08-16 21:56:37 +00001299 BuildMI(BB, X86::MOV16rr, 1, Result).addReg(Tmp1);
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001300 return Result;
1301 case MVT::i32:
Chris Lattner7c762782005-08-16 21:56:37 +00001302 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(Tmp1);
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001303 return Result;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001304 }
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00001305
Chris Lattner88c8a232005-01-07 07:49:41 +00001306 case ISD::FrameIndex:
1307 Tmp1 = cast<FrameIndexSDNode>(N)->getIndex();
1308 addFrameReference(BuildMI(BB, X86::LEA32r, 4, Result), (int)Tmp1);
1309 return Result;
1310 case ISD::ConstantPool:
Chris Lattnerc30405e2005-08-26 17:15:30 +00001311 Tmp1 = BB->getParent()->getConstantPool()->
1312 getConstantPoolIndex(cast<ConstantPoolSDNode>(N)->get());
Chris Lattner88c8a232005-01-07 07:49:41 +00001313 addConstantPoolReference(BuildMI(BB, X86::LEA32r, 4, Result), Tmp1);
1314 return Result;
1315 case ISD::ConstantFP:
Nate Begeman8d394eb2005-08-03 23:26:28 +00001316 if (X86ScalarSSE) {
1317 assert(cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0) &&
1318 "SSE only supports +0.0");
1319 Opc = (N.getValueType() == MVT::f32) ? X86::FLD0SS : X86::FLD0SD;
1320 BuildMI(BB, Opc, 0, Result);
1321 return Result;
1322 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001323 ContainsFPCode = true;
1324 Tmp1 = Result; // Intermediate Register
1325 if (cast<ConstantFPSDNode>(N)->getValue() < 0.0 ||
1326 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
1327 Tmp1 = MakeReg(MVT::f64);
1328
1329 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0) ||
1330 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
Chris Lattnerf431ad42005-12-21 07:47:04 +00001331 BuildMI(BB, X86::FpLD0, 0, Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00001332 else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0) ||
1333 cast<ConstantFPSDNode>(N)->isExactlyValue(-1.0))
Chris Lattnerf431ad42005-12-21 07:47:04 +00001334 BuildMI(BB, X86::FpLD1, 0, Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00001335 else
1336 assert(0 && "Unexpected constant!");
1337 if (Tmp1 != Result)
Chris Lattnerf431ad42005-12-21 07:47:04 +00001338 BuildMI(BB, X86::FpCHS, 1, Result).addReg(Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00001339 return Result;
1340 case ISD::Constant:
1341 switch (N.getValueType()) {
1342 default: assert(0 && "Cannot use constants of this type!");
1343 case MVT::i1:
1344 case MVT::i8: Opc = X86::MOV8ri; break;
1345 case MVT::i16: Opc = X86::MOV16ri; break;
1346 case MVT::i32: Opc = X86::MOV32ri; break;
1347 }
1348 BuildMI(BB, Opc, 1,Result).addImm(cast<ConstantSDNode>(N)->getValue());
1349 return Result;
Chris Lattnerf4b985d2005-04-01 22:46:45 +00001350 case ISD::UNDEF:
1351 if (Node->getValueType(0) == MVT::f64) {
1352 // FIXME: SHOULD TEACH STACKIFIER ABOUT UNDEF VALUES!
Chris Lattnerf431ad42005-12-21 07:47:04 +00001353 BuildMI(BB, X86::FpLD0, 0, Result);
Chris Lattnerf4b985d2005-04-01 22:46:45 +00001354 } else {
1355 BuildMI(BB, X86::IMPLICIT_DEF, 0, Result);
1356 }
1357 return Result;
Chris Lattner88c8a232005-01-07 07:49:41 +00001358 case ISD::GlobalAddress: {
1359 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
Nate Begemanf26625e2005-07-12 01:41:54 +00001360 // For Darwin, external and weak symbols are indirect, so we want to load
1361 // the value at address GV, not the value of GV itself.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001362 if (Subtarget->getIndirectExternAndWeakGlobals() &&
Nate Begemanf26625e2005-07-12 01:41:54 +00001363 (GV->hasWeakLinkage() || GV->isExternal())) {
1364 BuildMI(BB, X86::MOV32rm, 4, Result).addReg(0).addZImm(1).addReg(0)
1365 .addGlobalAddress(GV, false, 0);
1366 } else {
1367 BuildMI(BB, X86::MOV32ri, 1, Result).addGlobalAddress(GV);
1368 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001369 return Result;
1370 }
1371 case ISD::ExternalSymbol: {
1372 const char *Sym = cast<ExternalSymbolSDNode>(N)->getSymbol();
1373 BuildMI(BB, X86::MOV32ri, 1, Result).addExternalSymbol(Sym);
1374 return Result;
1375 }
Chris Lattner210975c2005-09-02 00:16:09 +00001376 case ISD::ANY_EXTEND: // treat any extend like zext
Chris Lattner88c8a232005-01-07 07:49:41 +00001377 case ISD::ZERO_EXTEND: {
1378 int DestIs16 = N.getValueType() == MVT::i16;
1379 int SrcIs16 = N.getOperand(0).getValueType() == MVT::i16;
Chris Lattner282781c2005-01-09 18:52:44 +00001380
1381 // FIXME: This hack is here for zero extension casts from bool to i8. This
1382 // would not be needed if bools were promoted by Legalize.
1383 if (N.getValueType() == MVT::i8) {
Chris Lattnerb0eef822005-01-11 23:33:00 +00001384 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner282781c2005-01-09 18:52:44 +00001385 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(Tmp1);
1386 return Result;
1387 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001388
Chris Lattnera56d29d2005-01-17 06:26:58 +00001389 if (isFoldableLoad(N.getOperand(0), SDOperand())) {
Chris Lattnerb0eef822005-01-11 23:33:00 +00001390 static const unsigned Opc[3] = {
1391 X86::MOVZX32rm8, X86::MOVZX32rm16, X86::MOVZX16rm8
1392 };
1393
1394 X86AddressMode AM;
1395 EmitFoldedLoad(N.getOperand(0), AM);
1396 addFullAddress(BuildMI(BB, Opc[SrcIs16+DestIs16*2], 4, Result), AM);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001397
Chris Lattnerb0eef822005-01-11 23:33:00 +00001398 return Result;
1399 }
1400
Chris Lattner88c8a232005-01-07 07:49:41 +00001401 static const unsigned Opc[3] = {
1402 X86::MOVZX32rr8, X86::MOVZX32rr16, X86::MOVZX16rr8
1403 };
Chris Lattnerb0eef822005-01-11 23:33:00 +00001404 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00001405 BuildMI(BB, Opc[SrcIs16+DestIs16*2], 1, Result).addReg(Tmp1);
1406 return Result;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001407 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001408 case ISD::SIGN_EXTEND: {
1409 int DestIs16 = N.getValueType() == MVT::i16;
1410 int SrcIs16 = N.getOperand(0).getValueType() == MVT::i16;
1411
Chris Lattner282781c2005-01-09 18:52:44 +00001412 // FIXME: Legalize should promote bools to i8!
1413 assert(N.getOperand(0).getValueType() != MVT::i1 &&
1414 "Sign extend from bool not implemented!");
1415
Chris Lattnera56d29d2005-01-17 06:26:58 +00001416 if (isFoldableLoad(N.getOperand(0), SDOperand())) {
Chris Lattnerb0eef822005-01-11 23:33:00 +00001417 static const unsigned Opc[3] = {
1418 X86::MOVSX32rm8, X86::MOVSX32rm16, X86::MOVSX16rm8
1419 };
1420
1421 X86AddressMode AM;
1422 EmitFoldedLoad(N.getOperand(0), AM);
1423 addFullAddress(BuildMI(BB, Opc[SrcIs16+DestIs16*2], 4, Result), AM);
1424 return Result;
1425 }
1426
Chris Lattner88c8a232005-01-07 07:49:41 +00001427 static const unsigned Opc[3] = {
1428 X86::MOVSX32rr8, X86::MOVSX32rr16, X86::MOVSX16rr8
1429 };
1430 Tmp1 = SelectExpr(N.getOperand(0));
1431 BuildMI(BB, Opc[SrcIs16+DestIs16*2], 1, Result).addReg(Tmp1);
1432 return Result;
1433 }
1434 case ISD::TRUNCATE:
1435 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by
1436 // a move out of AX or AL.
1437 switch (N.getOperand(0).getValueType()) {
1438 default: assert(0 && "Unknown truncate!");
1439 case MVT::i8: Tmp2 = X86::AL; Opc = X86::MOV8rr; break;
1440 case MVT::i16: Tmp2 = X86::AX; Opc = X86::MOV16rr; break;
1441 case MVT::i32: Tmp2 = X86::EAX; Opc = X86::MOV32rr; break;
1442 }
1443 Tmp1 = SelectExpr(N.getOperand(0));
1444 BuildMI(BB, Opc, 1, Tmp2).addReg(Tmp1);
1445
1446 switch (N.getValueType()) {
1447 default: assert(0 && "Unknown truncate!");
1448 case MVT::i1:
1449 case MVT::i8: Tmp2 = X86::AL; Opc = X86::MOV8rr; break;
1450 case MVT::i16: Tmp2 = X86::AX; Opc = X86::MOV16rr; break;
1451 }
1452 BuildMI(BB, Opc, 1, Result).addReg(Tmp2);
1453 return Result;
1454
Chris Lattner507a2752005-07-16 00:28:20 +00001455 case ISD::SINT_TO_FP: {
Nate Begeman8a093362005-07-06 18:59:04 +00001456 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
1457 unsigned PromoteOpcode = 0;
1458
Nate Begeman7e74c832005-07-16 02:02:34 +00001459 // We can handle any sint to fp with the direct sse conversion instructions.
Nate Begeman8a093362005-07-06 18:59:04 +00001460 if (X86ScalarSSE) {
Nate Begeman7e74c832005-07-16 02:02:34 +00001461 Opc = (N.getValueType() == MVT::f64) ? X86::CVTSI2SDrr : X86::CVTSI2SSrr;
Nate Begeman8a093362005-07-06 18:59:04 +00001462 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1463 return Result;
1464 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001465
Chris Lattnere44e6d12005-01-11 03:50:45 +00001466 ContainsFPCode = true;
Chris Lattner282781c2005-01-09 18:52:44 +00001467
Chris Lattner282781c2005-01-09 18:52:44 +00001468 // Spill the integer to memory and reload it from there.
Nate Begeman7e74c832005-07-16 02:02:34 +00001469 MVT::ValueType SrcTy = N.getOperand(0).getValueType();
Chris Lattner282781c2005-01-09 18:52:44 +00001470 unsigned Size = MVT::getSizeInBits(SrcTy)/8;
1471 MachineFunction *F = BB->getParent();
1472 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
1473
1474 switch (SrcTy) {
Chris Lattner282781c2005-01-09 18:52:44 +00001475 case MVT::i32:
Chris Lattner507a2752005-07-16 00:28:20 +00001476 addFrameReference(BuildMI(BB, X86::MOV32mr, 5), FrameIdx).addReg(Tmp1);
Chris Lattnerf431ad42005-12-21 07:47:04 +00001477 addFrameReference(BuildMI(BB, X86::FpILD32m, 5, Result), FrameIdx);
Chris Lattner282781c2005-01-09 18:52:44 +00001478 break;
1479 case MVT::i16:
Chris Lattner507a2752005-07-16 00:28:20 +00001480 addFrameReference(BuildMI(BB, X86::MOV16mr, 5), FrameIdx).addReg(Tmp1);
Chris Lattnerf431ad42005-12-21 07:47:04 +00001481 addFrameReference(BuildMI(BB, X86::FpILD16m, 5, Result), FrameIdx);
Chris Lattner282781c2005-01-09 18:52:44 +00001482 break;
1483 default: break; // No promotion required.
1484 }
Chris Lattner507a2752005-07-16 00:28:20 +00001485 return Result;
Chris Lattner282781c2005-01-09 18:52:44 +00001486 }
Chris Lattner4738d1b2005-07-30 00:05:54 +00001487 case ISD::FP_TO_SINT:
Chris Lattner282781c2005-01-09 18:52:44 +00001488 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
1489
Nate Begeman8a093362005-07-06 18:59:04 +00001490 // If the target supports SSE2 and is performing FP operations in SSE regs
1491 // instead of the FP stack, then we can use the efficient CVTSS2SI and
1492 // CVTSD2SI instructions.
Chris Lattner4738d1b2005-07-30 00:05:54 +00001493 assert(X86ScalarSSE);
1494 if (MVT::f32 == N.getOperand(0).getValueType()) {
1495 BuildMI(BB, X86::CVTTSS2SIrr, 1, Result).addReg(Tmp1);
1496 } else if (MVT::f64 == N.getOperand(0).getValueType()) {
1497 BuildMI(BB, X86::CVTTSD2SIrr, 1, Result).addReg(Tmp1);
1498 } else {
1499 assert(0 && "Not an f32 or f64?");
1500 abort();
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001501 }
Chris Lattner282781c2005-01-09 18:52:44 +00001502 return Result;
Chris Lattner4738d1b2005-07-30 00:05:54 +00001503
Chris Lattner0815dcae2005-09-28 22:29:17 +00001504 case ISD::FADD:
Chris Lattner88c8a232005-01-07 07:49:41 +00001505 case ISD::ADD:
Chris Lattner62b22422005-01-11 21:19:59 +00001506 Op0 = N.getOperand(0);
1507 Op1 = N.getOperand(1);
1508
Chris Lattner30607ec2005-01-25 20:03:11 +00001509 if (isFoldableLoad(Op0, Op1, true)) {
Chris Lattner62b22422005-01-11 21:19:59 +00001510 std::swap(Op0, Op1);
Chris Lattnera56d29d2005-01-17 06:26:58 +00001511 goto FoldAdd;
1512 }
Chris Lattner62b22422005-01-11 21:19:59 +00001513
Chris Lattner30607ec2005-01-25 20:03:11 +00001514 if (isFoldableLoad(Op1, Op0, true)) {
Chris Lattnera56d29d2005-01-17 06:26:58 +00001515 FoldAdd:
Chris Lattner62b22422005-01-11 21:19:59 +00001516 switch (N.getValueType()) {
1517 default: assert(0 && "Cannot add this type!");
1518 case MVT::i1:
1519 case MVT::i8: Opc = X86::ADD8rm; break;
1520 case MVT::i16: Opc = X86::ADD16rm; break;
1521 case MVT::i32: Opc = X86::ADD32rm; break;
Nate Begeman8a093362005-07-06 18:59:04 +00001522 case MVT::f32: Opc = X86::ADDSSrm; break;
Chris Lattner30607ec2005-01-25 20:03:11 +00001523 case MVT::f64:
1524 // For F64, handle promoted load operations (from F32) as well!
Nate Begeman8a093362005-07-06 18:59:04 +00001525 if (X86ScalarSSE) {
1526 assert(Op1.getOpcode() == ISD::LOAD && "SSE load not promoted");
1527 Opc = X86::ADDSDrm;
1528 } else {
Chris Lattnerf431ad42005-12-21 07:47:04 +00001529 Opc = Op1.getOpcode() == ISD::LOAD ? X86::FpADD64m : X86::FpADD32m;
Nate Begeman8a093362005-07-06 18:59:04 +00001530 }
Chris Lattner30607ec2005-01-25 20:03:11 +00001531 break;
Chris Lattner62b22422005-01-11 21:19:59 +00001532 }
1533 X86AddressMode AM;
Chris Lattner3676cd62005-01-13 05:53:16 +00001534 EmitFoldedLoad(Op1, AM);
1535 Tmp1 = SelectExpr(Op0);
Chris Lattner62b22422005-01-11 21:19:59 +00001536 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1537 return Result;
1538 }
1539
Chris Lattner88c8a232005-01-07 07:49:41 +00001540 // See if we can codegen this as an LEA to fold operations together.
1541 if (N.getValueType() == MVT::i32) {
Chris Lattnerd7f93952005-01-18 02:25:52 +00001542 ExprMap.erase(N);
Chris Lattnera7acdda2005-01-18 01:06:26 +00001543 X86ISelAddressMode AM;
Chris Lattnerd7f93952005-01-18 02:25:52 +00001544 MatchAddress(N, AM);
1545 ExprMap[N] = Result;
1546
1547 // If this is not just an add, emit the LEA. For a simple add (like
1548 // reg+reg or reg+imm), we just emit an add. It might be a good idea to
1549 // leave this as LEA, then peephole it to 'ADD' after two address elim
1550 // happens.
1551 if (AM.Scale != 1 || AM.BaseType == X86ISelAddressMode::FrameIndexBase||
1552 AM.GV || (AM.Base.Reg.Val && AM.IndexReg.Val && AM.Disp)) {
1553 X86AddressMode XAM = SelectAddrExprs(AM);
1554 addFullAddress(BuildMI(BB, X86::LEA32r, 4, Result), XAM);
1555 return Result;
Chris Lattner88c8a232005-01-07 07:49:41 +00001556 }
1557 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001558
Chris Lattner62b22422005-01-11 21:19:59 +00001559 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
Chris Lattner88c8a232005-01-07 07:49:41 +00001560 Opc = 0;
1561 if (CN->getValue() == 1) { // add X, 1 -> inc X
1562 switch (N.getValueType()) {
1563 default: assert(0 && "Cannot integer add this type!");
1564 case MVT::i8: Opc = X86::INC8r; break;
1565 case MVT::i16: Opc = X86::INC16r; break;
1566 case MVT::i32: Opc = X86::INC32r; break;
1567 }
1568 } else if (CN->isAllOnesValue()) { // add X, -1 -> dec X
1569 switch (N.getValueType()) {
1570 default: assert(0 && "Cannot integer add this type!");
1571 case MVT::i8: Opc = X86::DEC8r; break;
1572 case MVT::i16: Opc = X86::DEC16r; break;
1573 case MVT::i32: Opc = X86::DEC32r; break;
1574 }
1575 }
1576
1577 if (Opc) {
Chris Lattner62b22422005-01-11 21:19:59 +00001578 Tmp1 = SelectExpr(Op0);
Chris Lattner88c8a232005-01-07 07:49:41 +00001579 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1580 return Result;
1581 }
1582
1583 switch (N.getValueType()) {
1584 default: assert(0 && "Cannot add this type!");
1585 case MVT::i8: Opc = X86::ADD8ri; break;
1586 case MVT::i16: Opc = X86::ADD16ri; break;
1587 case MVT::i32: Opc = X86::ADD32ri; break;
1588 }
1589 if (Opc) {
Chris Lattner62b22422005-01-11 21:19:59 +00001590 Tmp1 = SelectExpr(Op0);
Chris Lattner88c8a232005-01-07 07:49:41 +00001591 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
1592 return Result;
1593 }
1594 }
1595
Chris Lattner88c8a232005-01-07 07:49:41 +00001596 switch (N.getValueType()) {
1597 default: assert(0 && "Cannot add this type!");
1598 case MVT::i8: Opc = X86::ADD8rr; break;
1599 case MVT::i16: Opc = X86::ADD16rr; break;
1600 case MVT::i32: Opc = X86::ADD32rr; break;
Nate Begeman8a093362005-07-06 18:59:04 +00001601 case MVT::f32: Opc = X86::ADDSSrr; break;
1602 case MVT::f64: Opc = X86ScalarSSE ? X86::ADDSDrr : X86::FpADD; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00001603 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001604
Chris Lattner62b22422005-01-11 21:19:59 +00001605 if (getRegPressure(Op0) > getRegPressure(Op1)) {
1606 Tmp1 = SelectExpr(Op0);
1607 Tmp2 = SelectExpr(Op1);
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001608 } else {
Chris Lattner62b22422005-01-11 21:19:59 +00001609 Tmp2 = SelectExpr(Op1);
1610 Tmp1 = SelectExpr(Op0);
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001611 }
1612
Chris Lattner88c8a232005-01-07 07:49:41 +00001613 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1614 return Result;
Chris Lattner0e0b5992005-04-02 05:30:17 +00001615
Nate Begeman8a093362005-07-06 18:59:04 +00001616 case ISD::FSQRT:
1617 Tmp1 = SelectExpr(Node->getOperand(0));
1618 if (X86ScalarSSE) {
1619 Opc = (N.getValueType() == MVT::f32) ? X86::SQRTSSrr : X86::SQRTSDrr;
1620 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1621 } else {
Chris Lattnerf431ad42005-12-21 07:47:04 +00001622 BuildMI(BB, X86::FpSQRT, 1, Result).addReg(Tmp1);
Nate Begeman8a093362005-07-06 18:59:04 +00001623 }
1624 return Result;
1625
1626 // FIXME:
1627 // Once we can spill 16 byte constants into the constant pool, we can
1628 // implement SSE equivalents of FABS and FCHS.
Chris Lattner0e0b5992005-04-02 05:30:17 +00001629 case ISD::FABS:
Chris Lattner0e0b5992005-04-02 05:30:17 +00001630 case ISD::FNEG:
Chris Lattnerdb68d392005-04-30 04:25:35 +00001631 case ISD::FSIN:
1632 case ISD::FCOS:
Chris Lattner014d2c42005-04-28 22:07:18 +00001633 assert(N.getValueType()==MVT::f64 && "Illegal type for this operation");
Chris Lattner0e0b5992005-04-02 05:30:17 +00001634 Tmp1 = SelectExpr(Node->getOperand(0));
Chris Lattner014d2c42005-04-28 22:07:18 +00001635 switch (N.getOpcode()) {
1636 default: assert(0 && "Unreachable!");
Chris Lattnerf431ad42005-12-21 07:47:04 +00001637 case ISD::FABS: BuildMI(BB, X86::FpABS, 1, Result).addReg(Tmp1); break;
1638 case ISD::FNEG: BuildMI(BB, X86::FpCHS, 1, Result).addReg(Tmp1); break;
1639 case ISD::FSIN: BuildMI(BB, X86::FpSIN, 1, Result).addReg(Tmp1); break;
1640 case ISD::FCOS: BuildMI(BB, X86::FpCOS, 1, Result).addReg(Tmp1); break;
Chris Lattner014d2c42005-04-28 22:07:18 +00001641 }
Chris Lattner0e0b5992005-04-02 05:30:17 +00001642 return Result;
1643
Chris Lattner4fbb4af2005-04-06 04:21:07 +00001644 case ISD::MULHU:
1645 switch (N.getValueType()) {
1646 default: assert(0 && "Unsupported VT!");
1647 case MVT::i8: Tmp2 = X86::MUL8r; break;
1648 case MVT::i16: Tmp2 = X86::MUL16r; break;
1649 case MVT::i32: Tmp2 = X86::MUL32r; break;
1650 }
1651 // FALL THROUGH
1652 case ISD::MULHS: {
1653 unsigned MovOpc, LowReg, HiReg;
1654 switch (N.getValueType()) {
1655 default: assert(0 && "Unsupported VT!");
Misha Brukmanc88330a2005-04-21 23:38:14 +00001656 case MVT::i8:
Chris Lattner4fbb4af2005-04-06 04:21:07 +00001657 MovOpc = X86::MOV8rr;
1658 LowReg = X86::AL;
1659 HiReg = X86::AH;
1660 Opc = X86::IMUL8r;
1661 break;
1662 case MVT::i16:
1663 MovOpc = X86::MOV16rr;
1664 LowReg = X86::AX;
1665 HiReg = X86::DX;
1666 Opc = X86::IMUL16r;
1667 break;
1668 case MVT::i32:
1669 MovOpc = X86::MOV32rr;
1670 LowReg = X86::EAX;
1671 HiReg = X86::EDX;
1672 Opc = X86::IMUL32r;
1673 break;
1674 }
1675 if (Node->getOpcode() != ISD::MULHS)
1676 Opc = Tmp2; // Get the MULHU opcode.
1677
1678 Op0 = Node->getOperand(0);
1679 Op1 = Node->getOperand(1);
1680 if (getRegPressure(Op0) > getRegPressure(Op1)) {
1681 Tmp1 = SelectExpr(Op0);
1682 Tmp2 = SelectExpr(Op1);
1683 } else {
1684 Tmp2 = SelectExpr(Op1);
1685 Tmp1 = SelectExpr(Op0);
1686 }
1687
1688 // FIXME: Implement folding of loads into the memory operands here!
1689 BuildMI(BB, MovOpc, 1, LowReg).addReg(Tmp1);
1690 BuildMI(BB, Opc, 1).addReg(Tmp2);
1691 BuildMI(BB, MovOpc, 1, Result).addReg(HiReg);
1692 return Result;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001693 }
Chris Lattner4fbb4af2005-04-06 04:21:07 +00001694
Chris Lattner0815dcae2005-09-28 22:29:17 +00001695 case ISD::FSUB:
1696 case ISD::FMUL:
Chris Lattner88c8a232005-01-07 07:49:41 +00001697 case ISD::SUB:
Chris Lattner62b22422005-01-11 21:19:59 +00001698 case ISD::MUL:
1699 case ISD::AND:
1700 case ISD::OR:
Chris Lattnerefe90202005-01-12 04:23:22 +00001701 case ISD::XOR: {
Chris Lattner62b22422005-01-11 21:19:59 +00001702 static const unsigned SUBTab[] = {
1703 X86::SUB8ri, X86::SUB16ri, X86::SUB32ri, 0, 0,
Chris Lattnerf431ad42005-12-21 07:47:04 +00001704 X86::SUB8rm, X86::SUB16rm, X86::SUB32rm, X86::FpSUB32m, X86::FpSUB64m,
Chris Lattner62b22422005-01-11 21:19:59 +00001705 X86::SUB8rr, X86::SUB16rr, X86::SUB32rr, X86::FpSUB , X86::FpSUB,
1706 };
Nate Begeman8a093362005-07-06 18:59:04 +00001707 static const unsigned SSE_SUBTab[] = {
1708 X86::SUB8ri, X86::SUB16ri, X86::SUB32ri, 0, 0,
1709 X86::SUB8rm, X86::SUB16rm, X86::SUB32rm, X86::SUBSSrm, X86::SUBSDrm,
1710 X86::SUB8rr, X86::SUB16rr, X86::SUB32rr, X86::SUBSSrr, X86::SUBSDrr,
1711 };
Chris Lattner62b22422005-01-11 21:19:59 +00001712 static const unsigned MULTab[] = {
1713 0, X86::IMUL16rri, X86::IMUL32rri, 0, 0,
Chris Lattnerf431ad42005-12-21 07:47:04 +00001714 0, X86::IMUL16rm , X86::IMUL32rm, X86::FpMUL32m, X86::FpMUL64m,
Chris Lattner62b22422005-01-11 21:19:59 +00001715 0, X86::IMUL16rr , X86::IMUL32rr, X86::FpMUL , X86::FpMUL,
1716 };
Nate Begeman8a093362005-07-06 18:59:04 +00001717 static const unsigned SSE_MULTab[] = {
1718 0, X86::IMUL16rri, X86::IMUL32rri, 0, 0,
1719 0, X86::IMUL16rm , X86::IMUL32rm, X86::MULSSrm, X86::MULSDrm,
1720 0, X86::IMUL16rr , X86::IMUL32rr, X86::MULSSrr, X86::MULSDrr,
1721 };
Chris Lattner62b22422005-01-11 21:19:59 +00001722 static const unsigned ANDTab[] = {
1723 X86::AND8ri, X86::AND16ri, X86::AND32ri, 0, 0,
1724 X86::AND8rm, X86::AND16rm, X86::AND32rm, 0, 0,
Misha Brukmanc88330a2005-04-21 23:38:14 +00001725 X86::AND8rr, X86::AND16rr, X86::AND32rr, 0, 0,
Chris Lattner62b22422005-01-11 21:19:59 +00001726 };
1727 static const unsigned ORTab[] = {
1728 X86::OR8ri, X86::OR16ri, X86::OR32ri, 0, 0,
1729 X86::OR8rm, X86::OR16rm, X86::OR32rm, 0, 0,
1730 X86::OR8rr, X86::OR16rr, X86::OR32rr, 0, 0,
1731 };
1732 static const unsigned XORTab[] = {
1733 X86::XOR8ri, X86::XOR16ri, X86::XOR32ri, 0, 0,
1734 X86::XOR8rm, X86::XOR16rm, X86::XOR32rm, 0, 0,
1735 X86::XOR8rr, X86::XOR16rr, X86::XOR32rr, 0, 0,
1736 };
1737
1738 Op0 = Node->getOperand(0);
1739 Op1 = Node->getOperand(1);
1740
Chris Lattner29f58192005-01-19 07:37:26 +00001741 if (Node->getOpcode() == ISD::OR && Op0.hasOneUse() && Op1.hasOneUse())
1742 if (EmitOrOpOp(Op0, Op1, Result)) // Match SHLD, SHRD, and rotates.
Chris Lattner41fe2012005-01-19 06:18:43 +00001743 return Result;
1744
1745 if (Node->getOpcode() == ISD::SUB)
Chris Lattner88c8a232005-01-07 07:49:41 +00001746 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(0)))
1747 if (CN->isNullValue()) { // 0 - N -> neg N
1748 switch (N.getValueType()) {
1749 default: assert(0 && "Cannot sub this type!");
1750 case MVT::i1:
1751 case MVT::i8: Opc = X86::NEG8r; break;
1752 case MVT::i16: Opc = X86::NEG16r; break;
1753 case MVT::i32: Opc = X86::NEG32r; break;
1754 }
1755 Tmp1 = SelectExpr(N.getOperand(1));
1756 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1757 return Result;
1758 }
1759
Chris Lattner62b22422005-01-11 21:19:59 +00001760 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
1761 if (CN->isAllOnesValue() && Node->getOpcode() == ISD::XOR) {
Chris Lattner0cd6b9a2005-01-17 00:23:16 +00001762 Opc = 0;
Chris Lattner9d7cf992005-01-11 04:31:30 +00001763 switch (N.getValueType()) {
1764 default: assert(0 && "Cannot add this type!");
Chris Lattner0cd6b9a2005-01-17 00:23:16 +00001765 case MVT::i1: break; // Not supported, don't invert upper bits!
Chris Lattner9d7cf992005-01-11 04:31:30 +00001766 case MVT::i8: Opc = X86::NOT8r; break;
1767 case MVT::i16: Opc = X86::NOT16r; break;
1768 case MVT::i32: Opc = X86::NOT32r; break;
1769 }
Chris Lattner0cd6b9a2005-01-17 00:23:16 +00001770 if (Opc) {
1771 Tmp1 = SelectExpr(Op0);
1772 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1773 return Result;
1774 }
Chris Lattner9d7cf992005-01-11 04:31:30 +00001775 }
1776
Chris Lattnerb72ea1b2005-01-17 06:48:02 +00001777 // Fold common multiplies into LEA instructions.
1778 if (Node->getOpcode() == ISD::MUL && N.getValueType() == MVT::i32) {
1779 switch ((int)CN->getValue()) {
1780 default: break;
1781 case 3:
1782 case 5:
1783 case 9:
Chris Lattnerb72ea1b2005-01-17 06:48:02 +00001784 // Remove N from exprmap so SelectAddress doesn't get confused.
1785 ExprMap.erase(N);
Chris Lattnera7acdda2005-01-18 01:06:26 +00001786 X86AddressMode AM;
Chris Lattnerb72ea1b2005-01-17 06:48:02 +00001787 SelectAddress(N, AM);
1788 // Restore it to the map.
1789 ExprMap[N] = Result;
1790 addFullAddress(BuildMI(BB, X86::LEA32r, 4, Result), AM);
1791 return Result;
1792 }
1793 }
1794
Chris Lattner88c8a232005-01-07 07:49:41 +00001795 switch (N.getValueType()) {
Chris Lattner9d7cf992005-01-11 04:31:30 +00001796 default: assert(0 && "Cannot xor this type!");
Chris Lattner88c8a232005-01-07 07:49:41 +00001797 case MVT::i1:
Chris Lattner62b22422005-01-11 21:19:59 +00001798 case MVT::i8: Opc = 0; break;
1799 case MVT::i16: Opc = 1; break;
1800 case MVT::i32: Opc = 2; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00001801 }
Chris Lattner62b22422005-01-11 21:19:59 +00001802 switch (Node->getOpcode()) {
1803 default: assert(0 && "Unreachable!");
Chris Lattner0815dcae2005-09-28 22:29:17 +00001804 case ISD::FSUB:
Nate Begeman8a093362005-07-06 18:59:04 +00001805 case ISD::SUB: Opc = X86ScalarSSE ? SSE_SUBTab[Opc] : SUBTab[Opc]; break;
Chris Lattner0815dcae2005-09-28 22:29:17 +00001806 case ISD::FMUL:
Nate Begeman8a093362005-07-06 18:59:04 +00001807 case ISD::MUL: Opc = X86ScalarSSE ? SSE_MULTab[Opc] : MULTab[Opc]; break;
Chris Lattner62b22422005-01-11 21:19:59 +00001808 case ISD::AND: Opc = ANDTab[Opc]; break;
1809 case ISD::OR: Opc = ORTab[Opc]; break;
1810 case ISD::XOR: Opc = XORTab[Opc]; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00001811 }
Chris Lattner62b22422005-01-11 21:19:59 +00001812 if (Opc) { // Can't fold MUL:i8 R, imm
1813 Tmp1 = SelectExpr(Op0);
Chris Lattner88c8a232005-01-07 07:49:41 +00001814 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
1815 return Result;
1816 }
1817 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001818
Chris Lattner30607ec2005-01-25 20:03:11 +00001819 if (isFoldableLoad(Op0, Op1, true))
Chris Lattner0815dcae2005-09-28 22:29:17 +00001820 if (Node->getOpcode() != ISD::SUB && Node->getOpcode() != ISD::FSUB) {
Chris Lattner62b22422005-01-11 21:19:59 +00001821 std::swap(Op0, Op1);
Chris Lattnera56d29d2005-01-17 06:26:58 +00001822 goto FoldOps;
Chris Lattner62b22422005-01-11 21:19:59 +00001823 } else {
Chris Lattner30607ec2005-01-25 20:03:11 +00001824 // For FP, emit 'reverse' subract, with a memory operand.
Nate Begeman8a093362005-07-06 18:59:04 +00001825 if (N.getValueType() == MVT::f64 && !X86ScalarSSE) {
Chris Lattner30607ec2005-01-25 20:03:11 +00001826 if (Op0.getOpcode() == ISD::EXTLOAD)
Chris Lattnerf431ad42005-12-21 07:47:04 +00001827 Opc = X86::FpSUBR32m;
Chris Lattner30607ec2005-01-25 20:03:11 +00001828 else
Chris Lattnerf431ad42005-12-21 07:47:04 +00001829 Opc = X86::FpSUBR64m;
Chris Lattner30607ec2005-01-25 20:03:11 +00001830
Chris Lattner62b22422005-01-11 21:19:59 +00001831 X86AddressMode AM;
Chris Lattner3676cd62005-01-13 05:53:16 +00001832 EmitFoldedLoad(Op0, AM);
1833 Tmp1 = SelectExpr(Op1);
Chris Lattner62b22422005-01-11 21:19:59 +00001834 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1835 return Result;
1836 }
1837 }
1838
Chris Lattner30607ec2005-01-25 20:03:11 +00001839 if (isFoldableLoad(Op1, Op0, true)) {
Chris Lattnera56d29d2005-01-17 06:26:58 +00001840 FoldOps:
Chris Lattner62b22422005-01-11 21:19:59 +00001841 switch (N.getValueType()) {
1842 default: assert(0 && "Cannot operate on this type!");
1843 case MVT::i1:
1844 case MVT::i8: Opc = 5; break;
1845 case MVT::i16: Opc = 6; break;
1846 case MVT::i32: Opc = 7; break;
Nate Begeman8a093362005-07-06 18:59:04 +00001847 case MVT::f32: Opc = 8; break;
Chris Lattner30607ec2005-01-25 20:03:11 +00001848 // For F64, handle promoted load operations (from F32) as well!
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001849 case MVT::f64:
1850 assert((!X86ScalarSSE || Op1.getOpcode() == ISD::LOAD) &&
Nate Begeman8a093362005-07-06 18:59:04 +00001851 "SSE load should have been promoted");
1852 Opc = Op1.getOpcode() == ISD::LOAD ? 9 : 8; break;
Chris Lattner62b22422005-01-11 21:19:59 +00001853 }
1854 switch (Node->getOpcode()) {
1855 default: assert(0 && "Unreachable!");
Chris Lattner0815dcae2005-09-28 22:29:17 +00001856 case ISD::FSUB:
Nate Begeman8a093362005-07-06 18:59:04 +00001857 case ISD::SUB: Opc = X86ScalarSSE ? SSE_SUBTab[Opc] : SUBTab[Opc]; break;
Chris Lattner0815dcae2005-09-28 22:29:17 +00001858 case ISD::FMUL:
Nate Begeman8a093362005-07-06 18:59:04 +00001859 case ISD::MUL: Opc = X86ScalarSSE ? SSE_MULTab[Opc] : MULTab[Opc]; break;
Chris Lattner62b22422005-01-11 21:19:59 +00001860 case ISD::AND: Opc = ANDTab[Opc]; break;
1861 case ISD::OR: Opc = ORTab[Opc]; break;
1862 case ISD::XOR: Opc = XORTab[Opc]; break;
1863 }
1864
1865 X86AddressMode AM;
Chris Lattner3676cd62005-01-13 05:53:16 +00001866 EmitFoldedLoad(Op1, AM);
1867 Tmp1 = SelectExpr(Op0);
Chris Lattner62b22422005-01-11 21:19:59 +00001868 if (Opc) {
1869 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1870 } else {
1871 assert(Node->getOpcode() == ISD::MUL &&
1872 N.getValueType() == MVT::i8 && "Unexpected situation!");
1873 // Must use the MUL instruction, which forces use of AL.
1874 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(Tmp1);
1875 addFullAddress(BuildMI(BB, X86::MUL8m, 1), AM);
1876 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
1877 }
1878 return Result;
Chris Lattner0d1f82a2005-01-11 03:11:44 +00001879 }
Chris Lattner62b22422005-01-11 21:19:59 +00001880
1881 if (getRegPressure(Op0) > getRegPressure(Op1)) {
1882 Tmp1 = SelectExpr(Op0);
1883 Tmp2 = SelectExpr(Op1);
1884 } else {
1885 Tmp2 = SelectExpr(Op1);
1886 Tmp1 = SelectExpr(Op0);
1887 }
1888
Chris Lattner88c8a232005-01-07 07:49:41 +00001889 switch (N.getValueType()) {
1890 default: assert(0 && "Cannot add this type!");
Chris Lattner62b22422005-01-11 21:19:59 +00001891 case MVT::i1:
1892 case MVT::i8: Opc = 10; break;
1893 case MVT::i16: Opc = 11; break;
1894 case MVT::i32: Opc = 12; break;
1895 case MVT::f32: Opc = 13; break;
1896 case MVT::f64: Opc = 14; break;
1897 }
1898 switch (Node->getOpcode()) {
1899 default: assert(0 && "Unreachable!");
Chris Lattner0815dcae2005-09-28 22:29:17 +00001900 case ISD::FSUB:
Nate Begeman8a093362005-07-06 18:59:04 +00001901 case ISD::SUB: Opc = X86ScalarSSE ? SSE_SUBTab[Opc] : SUBTab[Opc]; break;
Chris Lattner0815dcae2005-09-28 22:29:17 +00001902 case ISD::FMUL:
Nate Begeman8a093362005-07-06 18:59:04 +00001903 case ISD::MUL: Opc = X86ScalarSSE ? SSE_MULTab[Opc] : MULTab[Opc]; break;
Chris Lattner62b22422005-01-11 21:19:59 +00001904 case ISD::AND: Opc = ANDTab[Opc]; break;
1905 case ISD::OR: Opc = ORTab[Opc]; break;
1906 case ISD::XOR: Opc = XORTab[Opc]; break;
1907 }
1908 if (Opc) {
1909 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1910 } else {
1911 assert(Node->getOpcode() == ISD::MUL &&
1912 N.getValueType() == MVT::i8 && "Unexpected situation!");
Chris Lattner750d38b2005-01-10 20:55:48 +00001913 // Must use the MUL instruction, which forces use of AL.
1914 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(Tmp1);
1915 BuildMI(BB, X86::MUL8r, 1).addReg(Tmp2);
1916 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
Chris Lattner88c8a232005-01-07 07:49:41 +00001917 }
Chris Lattner88c8a232005-01-07 07:49:41 +00001918 return Result;
Chris Lattnerefe90202005-01-12 04:23:22 +00001919 }
Chris Lattner2a631fa2005-01-20 18:53:00 +00001920 case ISD::ADD_PARTS:
1921 case ISD::SUB_PARTS: {
1922 assert(N.getNumOperands() == 4 && N.getValueType() == MVT::i32 &&
1923 "Not an i64 add/sub!");
1924 // Emit all of the operands.
1925 std::vector<unsigned> InVals;
1926 for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)
1927 InVals.push_back(SelectExpr(N.getOperand(i)));
1928 if (N.getOpcode() == ISD::ADD_PARTS) {
1929 BuildMI(BB, X86::ADD32rr, 2, Result).addReg(InVals[0]).addReg(InVals[2]);
1930 BuildMI(BB, X86::ADC32rr,2,Result+1).addReg(InVals[1]).addReg(InVals[3]);
1931 } else {
1932 BuildMI(BB, X86::SUB32rr, 2, Result).addReg(InVals[0]).addReg(InVals[2]);
1933 BuildMI(BB, X86::SBB32rr, 2,Result+1).addReg(InVals[1]).addReg(InVals[3]);
1934 }
1935 return Result+N.ResNo;
1936 }
1937
Chris Lattnera31d4c72005-04-02 04:01:14 +00001938 case ISD::SHL_PARTS:
1939 case ISD::SRA_PARTS:
1940 case ISD::SRL_PARTS: {
1941 assert(N.getNumOperands() == 3 && N.getValueType() == MVT::i32 &&
1942 "Not an i64 shift!");
1943 unsigned ShiftOpLo = SelectExpr(N.getOperand(0));
1944 unsigned ShiftOpHi = SelectExpr(N.getOperand(1));
1945 unsigned TmpReg = MakeReg(MVT::i32);
1946 if (N.getOpcode() == ISD::SRA_PARTS) {
1947 // If this is a SHR of a Long, then we need to do funny sign extension
1948 // stuff. TmpReg gets the value to use as the high-part if we are
1949 // shifting more than 32 bits.
1950 BuildMI(BB, X86::SAR32ri, 2, TmpReg).addReg(ShiftOpHi).addImm(31);
1951 } else {
1952 // Other shifts use a fixed zero value if the shift is more than 32 bits.
1953 BuildMI(BB, X86::MOV32ri, 1, TmpReg).addImm(0);
1954 }
1955
1956 // Initialize CL with the shift amount.
1957 unsigned ShiftAmountReg = SelectExpr(N.getOperand(2));
1958 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShiftAmountReg);
1959
1960 unsigned TmpReg2 = MakeReg(MVT::i32);
1961 unsigned TmpReg3 = MakeReg(MVT::i32);
1962 if (N.getOpcode() == ISD::SHL_PARTS) {
1963 // TmpReg2 = shld inHi, inLo
1964 BuildMI(BB, X86::SHLD32rrCL, 2,TmpReg2).addReg(ShiftOpHi)
1965 .addReg(ShiftOpLo);
1966 // TmpReg3 = shl inLo, CL
1967 BuildMI(BB, X86::SHL32rCL, 1, TmpReg3).addReg(ShiftOpLo);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001968
Chris Lattnera31d4c72005-04-02 04:01:14 +00001969 // Set the flags to indicate whether the shift was by more than 32 bits.
1970 BuildMI(BB, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001971
Chris Lattnera31d4c72005-04-02 04:01:14 +00001972 // DestHi = (>32) ? TmpReg3 : TmpReg2;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001973 BuildMI(BB, X86::CMOVNE32rr, 2,
Chris Lattnera31d4c72005-04-02 04:01:14 +00001974 Result+1).addReg(TmpReg2).addReg(TmpReg3);
1975 // DestLo = (>32) ? TmpReg : TmpReg3;
1976 BuildMI(BB, X86::CMOVNE32rr, 2,
1977 Result).addReg(TmpReg3).addReg(TmpReg);
1978 } else {
1979 // TmpReg2 = shrd inLo, inHi
1980 BuildMI(BB, X86::SHRD32rrCL,2,TmpReg2).addReg(ShiftOpLo)
1981 .addReg(ShiftOpHi);
1982 // TmpReg3 = s[ah]r inHi, CL
Misha Brukmanc88330a2005-04-21 23:38:14 +00001983 BuildMI(BB, N.getOpcode() == ISD::SRA_PARTS ? X86::SAR32rCL
Chris Lattnera31d4c72005-04-02 04:01:14 +00001984 : X86::SHR32rCL, 1, TmpReg3)
1985 .addReg(ShiftOpHi);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001986
Chris Lattnera31d4c72005-04-02 04:01:14 +00001987 // Set the flags to indicate whether the shift was by more than 32 bits.
1988 BuildMI(BB, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001989
Chris Lattnera31d4c72005-04-02 04:01:14 +00001990 // DestLo = (>32) ? TmpReg3 : TmpReg2;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001991 BuildMI(BB, X86::CMOVNE32rr, 2,
Chris Lattnera31d4c72005-04-02 04:01:14 +00001992 Result).addReg(TmpReg2).addReg(TmpReg3);
Misha Brukmanc88330a2005-04-21 23:38:14 +00001993
Chris Lattnera31d4c72005-04-02 04:01:14 +00001994 // DestHi = (>32) ? TmpReg : TmpReg3;
Misha Brukmanc88330a2005-04-21 23:38:14 +00001995 BuildMI(BB, X86::CMOVNE32rr, 2,
Chris Lattnera31d4c72005-04-02 04:01:14 +00001996 Result+1).addReg(TmpReg3).addReg(TmpReg);
1997 }
1998 return Result+N.ResNo;
1999 }
2000
Chris Lattner88c8a232005-01-07 07:49:41 +00002001 case ISD::SELECT:
Nate Begeman8d394eb2005-08-03 23:26:28 +00002002 EmitSelectCC(N.getOperand(0), N.getOperand(1), N.getOperand(2),
2003 N.getValueType(), Result);
Chris Lattnerb14a63a2005-01-16 07:34:08 +00002004 return Result;
Chris Lattner88c8a232005-01-07 07:49:41 +00002005
Chris Lattner0815dcae2005-09-28 22:29:17 +00002006 case ISD::FDIV:
2007 case ISD::FREM:
Chris Lattner88c8a232005-01-07 07:49:41 +00002008 case ISD::SDIV:
2009 case ISD::UDIV:
2010 case ISD::SREM:
2011 case ISD::UREM: {
Chris Lattnerb14a63a2005-01-16 07:34:08 +00002012 assert((N.getOpcode() != ISD::SREM || MVT::isInteger(N.getValueType())) &&
2013 "We don't support this operator!");
2014
Chris Lattner0815dcae2005-09-28 22:29:17 +00002015 if (N.getOpcode() == ISD::SDIV || N.getOpcode() == ISD::FDIV) {
Chris Lattner1b206152005-01-25 20:35:10 +00002016 // We can fold loads into FpDIVs, but not really into any others.
Nate Begemanfcd2f762005-07-07 06:32:01 +00002017 if (N.getValueType() == MVT::f64 && !X86ScalarSSE) {
Chris Lattner1b206152005-01-25 20:35:10 +00002018 // Check for reversed and unreversed DIV.
2019 if (isFoldableLoad(N.getOperand(0), N.getOperand(1), true)) {
2020 if (N.getOperand(0).getOpcode() == ISD::EXTLOAD)
Chris Lattnerf431ad42005-12-21 07:47:04 +00002021 Opc = X86::FpDIVR32m;
Chris Lattner1b206152005-01-25 20:35:10 +00002022 else
Chris Lattnerf431ad42005-12-21 07:47:04 +00002023 Opc = X86::FpDIVR64m;
Chris Lattner1b206152005-01-25 20:35:10 +00002024 X86AddressMode AM;
2025 EmitFoldedLoad(N.getOperand(0), AM);
2026 Tmp1 = SelectExpr(N.getOperand(1));
2027 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
2028 return Result;
2029 } else if (isFoldableLoad(N.getOperand(1), N.getOperand(0), true) &&
2030 N.getOperand(1).getOpcode() == ISD::LOAD) {
2031 if (N.getOperand(1).getOpcode() == ISD::EXTLOAD)
Chris Lattnerf431ad42005-12-21 07:47:04 +00002032 Opc = X86::FpDIV32m;
Chris Lattner1b206152005-01-25 20:35:10 +00002033 else
Chris Lattnerf431ad42005-12-21 07:47:04 +00002034 Opc = X86::FpDIV64m;
Chris Lattner1b206152005-01-25 20:35:10 +00002035 X86AddressMode AM;
2036 EmitFoldedLoad(N.getOperand(1), AM);
2037 Tmp1 = SelectExpr(N.getOperand(0));
2038 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
2039 return Result;
2040 }
2041 }
Chris Lattner60c23bd2005-04-13 03:29:53 +00002042 }
Chris Lattner88c8a232005-01-07 07:49:41 +00002043
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002044 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2045 Tmp1 = SelectExpr(N.getOperand(0));
2046 Tmp2 = SelectExpr(N.getOperand(1));
2047 } else {
2048 Tmp2 = SelectExpr(N.getOperand(1));
2049 Tmp1 = SelectExpr(N.getOperand(0));
2050 }
Chris Lattner88c8a232005-01-07 07:49:41 +00002051
2052 bool isSigned = N.getOpcode() == ISD::SDIV || N.getOpcode() == ISD::SREM;
2053 bool isDiv = N.getOpcode() == ISD::SDIV || N.getOpcode() == ISD::UDIV;
2054 unsigned LoReg, HiReg, DivOpcode, MovOpcode, ClrOpcode, SExtOpcode;
2055 switch (N.getValueType()) {
2056 default: assert(0 && "Cannot sdiv this type!");
2057 case MVT::i8:
2058 DivOpcode = isSigned ? X86::IDIV8r : X86::DIV8r;
2059 LoReg = X86::AL;
2060 HiReg = X86::AH;
2061 MovOpcode = X86::MOV8rr;
2062 ClrOpcode = X86::MOV8ri;
2063 SExtOpcode = X86::CBW;
2064 break;
2065 case MVT::i16:
2066 DivOpcode = isSigned ? X86::IDIV16r : X86::DIV16r;
2067 LoReg = X86::AX;
2068 HiReg = X86::DX;
2069 MovOpcode = X86::MOV16rr;
2070 ClrOpcode = X86::MOV16ri;
2071 SExtOpcode = X86::CWD;
2072 break;
2073 case MVT::i32:
2074 DivOpcode = isSigned ? X86::IDIV32r : X86::DIV32r;
Chris Lattner3278ce82005-01-12 03:16:09 +00002075 LoReg = X86::EAX;
Chris Lattner88c8a232005-01-07 07:49:41 +00002076 HiReg = X86::EDX;
2077 MovOpcode = X86::MOV32rr;
2078 ClrOpcode = X86::MOV32ri;
2079 SExtOpcode = X86::CDQ;
2080 break;
Nate Begeman8a093362005-07-06 18:59:04 +00002081 case MVT::f32:
2082 BuildMI(BB, X86::DIVSSrr, 2, Result).addReg(Tmp1).addReg(Tmp2);
2083 return Result;
Chris Lattner88c8a232005-01-07 07:49:41 +00002084 case MVT::f64:
Nate Begeman8a093362005-07-06 18:59:04 +00002085 Opc = X86ScalarSSE ? X86::DIVSDrr : X86::FpDIV;
2086 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
Chris Lattner88c8a232005-01-07 07:49:41 +00002087 return Result;
2088 }
2089
2090 // Set up the low part.
2091 BuildMI(BB, MovOpcode, 1, LoReg).addReg(Tmp1);
2092
2093 if (isSigned) {
2094 // Sign extend the low part into the high part.
2095 BuildMI(BB, SExtOpcode, 0);
2096 } else {
2097 // Zero out the high part, effectively zero extending the input.
2098 BuildMI(BB, ClrOpcode, 1, HiReg).addImm(0);
2099 }
2100
2101 // Emit the DIV/IDIV instruction.
Misha Brukmanc88330a2005-04-21 23:38:14 +00002102 BuildMI(BB, DivOpcode, 1).addReg(Tmp2);
Chris Lattner88c8a232005-01-07 07:49:41 +00002103
2104 // Get the result of the divide or rem.
2105 BuildMI(BB, MovOpcode, 1, Result).addReg(isDiv ? LoReg : HiReg);
2106 return Result;
2107 }
2108
2109 case ISD::SHL:
Chris Lattner88c8a232005-01-07 07:49:41 +00002110 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
Chris Lattner62b22422005-01-11 21:19:59 +00002111 if (CN->getValue() == 1) { // X = SHL Y, 1 -> X = ADD Y, Y
2112 switch (N.getValueType()) {
2113 default: assert(0 && "Cannot shift this type!");
2114 case MVT::i8: Opc = X86::ADD8rr; break;
2115 case MVT::i16: Opc = X86::ADD16rr; break;
2116 case MVT::i32: Opc = X86::ADD32rr; break;
2117 }
2118 Tmp1 = SelectExpr(N.getOperand(0));
2119 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp1);
2120 return Result;
2121 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00002122
Chris Lattner88c8a232005-01-07 07:49:41 +00002123 switch (N.getValueType()) {
2124 default: assert(0 && "Cannot shift this type!");
2125 case MVT::i8: Opc = X86::SHL8ri; break;
2126 case MVT::i16: Opc = X86::SHL16ri; break;
2127 case MVT::i32: Opc = X86::SHL32ri; break;
2128 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002129 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00002130 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2131 return Result;
2132 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002133
2134 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2135 Tmp1 = SelectExpr(N.getOperand(0));
2136 Tmp2 = SelectExpr(N.getOperand(1));
2137 } else {
2138 Tmp2 = SelectExpr(N.getOperand(1));
2139 Tmp1 = SelectExpr(N.getOperand(0));
2140 }
2141
Chris Lattner88c8a232005-01-07 07:49:41 +00002142 switch (N.getValueType()) {
2143 default: assert(0 && "Cannot shift this type!");
2144 case MVT::i8 : Opc = X86::SHL8rCL; break;
2145 case MVT::i16: Opc = X86::SHL16rCL; break;
2146 case MVT::i32: Opc = X86::SHL32rCL; break;
2147 }
2148 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
Chris Lattner14569592005-08-19 00:16:17 +00002149 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00002150 return Result;
2151 case ISD::SRL:
Chris Lattner88c8a232005-01-07 07:49:41 +00002152 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2153 switch (N.getValueType()) {
2154 default: assert(0 && "Cannot shift this type!");
2155 case MVT::i8: Opc = X86::SHR8ri; break;
2156 case MVT::i16: Opc = X86::SHR16ri; break;
2157 case MVT::i32: Opc = X86::SHR32ri; break;
2158 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002159 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00002160 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2161 return Result;
2162 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002163
2164 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2165 Tmp1 = SelectExpr(N.getOperand(0));
2166 Tmp2 = SelectExpr(N.getOperand(1));
2167 } else {
2168 Tmp2 = SelectExpr(N.getOperand(1));
2169 Tmp1 = SelectExpr(N.getOperand(0));
2170 }
2171
Chris Lattner88c8a232005-01-07 07:49:41 +00002172 switch (N.getValueType()) {
2173 default: assert(0 && "Cannot shift this type!");
2174 case MVT::i8 : Opc = X86::SHR8rCL; break;
2175 case MVT::i16: Opc = X86::SHR16rCL; break;
2176 case MVT::i32: Opc = X86::SHR32rCL; break;
2177 }
2178 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
Chris Lattner14569592005-08-19 00:16:17 +00002179 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00002180 return Result;
2181 case ISD::SRA:
Chris Lattner88c8a232005-01-07 07:49:41 +00002182 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2183 switch (N.getValueType()) {
2184 default: assert(0 && "Cannot shift this type!");
2185 case MVT::i8: Opc = X86::SAR8ri; break;
2186 case MVT::i16: Opc = X86::SAR16ri; break;
2187 case MVT::i32: Opc = X86::SAR32ri; break;
2188 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002189 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00002190 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2191 return Result;
2192 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002193
2194 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2195 Tmp1 = SelectExpr(N.getOperand(0));
2196 Tmp2 = SelectExpr(N.getOperand(1));
2197 } else {
2198 Tmp2 = SelectExpr(N.getOperand(1));
2199 Tmp1 = SelectExpr(N.getOperand(0));
2200 }
2201
Chris Lattner88c8a232005-01-07 07:49:41 +00002202 switch (N.getValueType()) {
2203 default: assert(0 && "Cannot shift this type!");
2204 case MVT::i8 : Opc = X86::SAR8rCL; break;
2205 case MVT::i16: Opc = X86::SAR16rCL; break;
2206 case MVT::i32: Opc = X86::SAR32rCL; break;
2207 }
2208 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
Chris Lattnera9d68f12005-08-19 00:31:37 +00002209 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
Chris Lattner88c8a232005-01-07 07:49:41 +00002210 return Result;
2211
2212 case ISD::SETCC:
Chris Lattner3be6cd52005-01-17 01:34:14 +00002213 EmitCMP(N.getOperand(0), N.getOperand(1), Node->hasOneUse());
Chris Lattner6ec77452005-08-09 20:21:10 +00002214 EmitSetCC(BB, Result, cast<CondCodeSDNode>(N.getOperand(2))->get(),
Chris Lattner88c8a232005-01-07 07:49:41 +00002215 MVT::isFloatingPoint(N.getOperand(1).getValueType()));
2216 return Result;
Chris Lattnere18a4c42005-01-15 05:22:24 +00002217 case ISD::LOAD:
Chris Lattner88c8a232005-01-07 07:49:41 +00002218 // Make sure we generate both values.
Chris Lattner78d30282005-01-18 03:51:59 +00002219 if (Result != 1) { // Generate the token
2220 if (!ExprMap.insert(std::make_pair(N.getValue(1), 1)).second)
2221 assert(0 && "Load already emitted!?");
2222 } else
Chris Lattner88c8a232005-01-07 07:49:41 +00002223 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2224
Chris Lattnerb52e0412005-01-08 19:28:19 +00002225 switch (Node->getValueType(0)) {
Chris Lattner88c8a232005-01-07 07:49:41 +00002226 default: assert(0 && "Cannot load this type!");
2227 case MVT::i1:
2228 case MVT::i8: Opc = X86::MOV8rm; break;
2229 case MVT::i16: Opc = X86::MOV16rm; break;
2230 case MVT::i32: Opc = X86::MOV32rm; break;
Nate Begeman8a093362005-07-06 18:59:04 +00002231 case MVT::f32: Opc = X86::MOVSSrm; break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002232 case MVT::f64:
Nate Begeman8a093362005-07-06 18:59:04 +00002233 if (X86ScalarSSE) {
2234 Opc = X86::MOVSDrm;
2235 } else {
Chris Lattnerf431ad42005-12-21 07:47:04 +00002236 Opc = X86::FpLD64m;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002237 ContainsFPCode = true;
Nate Begeman8a093362005-07-06 18:59:04 +00002238 }
2239 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00002240 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002241
Chris Lattner88c8a232005-01-07 07:49:41 +00002242 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(1))){
Chris Lattnerc30405e2005-08-26 17:15:30 +00002243 unsigned CPIdx = BB->getParent()->getConstantPool()->
2244 getConstantPoolIndex(CP->get());
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002245 Select(N.getOperand(0));
Chris Lattnerc30405e2005-08-26 17:15:30 +00002246 addConstantPoolReference(BuildMI(BB, Opc, 4, Result), CPIdx);
Chris Lattner88c8a232005-01-07 07:49:41 +00002247 } else {
2248 X86AddressMode AM;
Chris Lattner3676cd62005-01-13 05:53:16 +00002249
2250 SDOperand Chain = N.getOperand(0);
2251 SDOperand Address = N.getOperand(1);
2252 if (getRegPressure(Chain) > getRegPressure(Address)) {
2253 Select(Chain);
2254 SelectAddress(Address, AM);
2255 } else {
2256 SelectAddress(Address, AM);
2257 Select(Chain);
2258 }
2259
Chris Lattner88c8a232005-01-07 07:49:41 +00002260 addFullAddress(BuildMI(BB, Opc, 4, Result), AM);
2261 }
2262 return Result;
Evan Cheng6305e502006-01-12 22:54:21 +00002263 case X86ISD::FILD:
Chris Lattnera36117b2005-05-14 06:52:07 +00002264 // Make sure we generate both values.
2265 assert(Result != 1 && N.getValueType() == MVT::f64);
2266 if (!ExprMap.insert(std::make_pair(N.getValue(1), 1)).second)
2267 assert(0 && "Load already emitted!?");
2268
2269 {
2270 X86AddressMode AM;
2271
2272 SDOperand Chain = N.getOperand(0);
2273 SDOperand Address = N.getOperand(1);
2274 if (getRegPressure(Chain) > getRegPressure(Address)) {
2275 Select(Chain);
2276 SelectAddress(Address, AM);
2277 } else {
2278 SelectAddress(Address, AM);
2279 Select(Chain);
2280 }
Chris Lattner67756e22005-07-29 00:40:01 +00002281
Chris Lattnerf431ad42005-12-21 07:47:04 +00002282 addFullAddress(BuildMI(BB, X86::FpILD64m, 4, Result), AM);
Chris Lattnera36117b2005-05-14 06:52:07 +00002283 }
2284 return Result;
Jeff Cohen546fd592005-07-30 18:33:25 +00002285
Chris Lattnere18a4c42005-01-15 05:22:24 +00002286 case ISD::EXTLOAD: // Arbitrarily codegen extloads as MOVZX*
2287 case ISD::ZEXTLOAD: {
2288 // Make sure we generate both values.
2289 if (Result != 1)
2290 ExprMap[N.getValue(1)] = 1; // Generate the token
2291 else
2292 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2293
Chris Lattnerb14a63a2005-01-16 07:34:08 +00002294 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(1)))
2295 if (Node->getValueType(0) == MVT::f64) {
Chris Lattner53676df2005-07-10 01:56:13 +00002296 assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::f32 &&
Chris Lattnerb14a63a2005-01-16 07:34:08 +00002297 "Bad EXTLOAD!");
Chris Lattnerc30405e2005-08-26 17:15:30 +00002298 unsigned CPIdx = BB->getParent()->getConstantPool()->
Chris Lattnerd0dc6f42005-08-26 17:18:44 +00002299 getConstantPoolIndex(CP->get());
Chris Lattnerc30405e2005-08-26 17:15:30 +00002300
Chris Lattnerf431ad42005-12-21 07:47:04 +00002301 addConstantPoolReference(BuildMI(BB, X86::FpLD32m, 4, Result), CPIdx);
Chris Lattnerb14a63a2005-01-16 07:34:08 +00002302 return Result;
2303 }
2304
Chris Lattnere18a4c42005-01-15 05:22:24 +00002305 X86AddressMode AM;
2306 if (getRegPressure(Node->getOperand(0)) >
2307 getRegPressure(Node->getOperand(1))) {
2308 Select(Node->getOperand(0)); // chain
2309 SelectAddress(Node->getOperand(1), AM);
2310 } else {
2311 SelectAddress(Node->getOperand(1), AM);
2312 Select(Node->getOperand(0)); // chain
2313 }
2314
2315 switch (Node->getValueType(0)) {
2316 default: assert(0 && "Unknown type to sign extend to.");
2317 case MVT::f64:
Chris Lattner53676df2005-07-10 01:56:13 +00002318 assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::f32 &&
Chris Lattnere18a4c42005-01-15 05:22:24 +00002319 "Bad EXTLOAD!");
Chris Lattnerf431ad42005-12-21 07:47:04 +00002320 addFullAddress(BuildMI(BB, X86::FpLD32m, 5, Result), AM);
Chris Lattnere18a4c42005-01-15 05:22:24 +00002321 break;
2322 case MVT::i32:
Chris Lattner53676df2005-07-10 01:56:13 +00002323 switch (cast<VTSDNode>(Node->getOperand(3))->getVT()) {
Chris Lattnere18a4c42005-01-15 05:22:24 +00002324 default:
2325 assert(0 && "Bad zero extend!");
2326 case MVT::i1:
2327 case MVT::i8:
2328 addFullAddress(BuildMI(BB, X86::MOVZX32rm8, 5, Result), AM);
2329 break;
2330 case MVT::i16:
2331 addFullAddress(BuildMI(BB, X86::MOVZX32rm16, 5, Result), AM);
2332 break;
2333 }
2334 break;
2335 case MVT::i16:
Chris Lattner53676df2005-07-10 01:56:13 +00002336 assert(cast<VTSDNode>(Node->getOperand(3))->getVT() <= MVT::i8 &&
Chris Lattnere18a4c42005-01-15 05:22:24 +00002337 "Bad zero extend!");
Evan Cheng023aef22005-12-14 22:28:18 +00002338 addFullAddress(BuildMI(BB, X86::MOVZX16rm8, 5, Result), AM);
Chris Lattnere18a4c42005-01-15 05:22:24 +00002339 break;
2340 case MVT::i8:
Chris Lattner53676df2005-07-10 01:56:13 +00002341 assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::i1 &&
Chris Lattnere18a4c42005-01-15 05:22:24 +00002342 "Bad zero extend!");
2343 addFullAddress(BuildMI(BB, X86::MOV8rm, 5, Result), AM);
2344 break;
2345 }
2346 return Result;
Chris Lattner88c8a232005-01-07 07:49:41 +00002347 }
Chris Lattnere18a4c42005-01-15 05:22:24 +00002348 case ISD::SEXTLOAD: {
2349 // Make sure we generate both values.
2350 if (Result != 1)
2351 ExprMap[N.getValue(1)] = 1; // Generate the token
2352 else
2353 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2354
2355 X86AddressMode AM;
2356 if (getRegPressure(Node->getOperand(0)) >
2357 getRegPressure(Node->getOperand(1))) {
2358 Select(Node->getOperand(0)); // chain
2359 SelectAddress(Node->getOperand(1), AM);
2360 } else {
2361 SelectAddress(Node->getOperand(1), AM);
2362 Select(Node->getOperand(0)); // chain
2363 }
2364
2365 switch (Node->getValueType(0)) {
2366 case MVT::i8: assert(0 && "Cannot sign extend from bool!");
2367 default: assert(0 && "Unknown type to sign extend to.");
2368 case MVT::i32:
Chris Lattner53676df2005-07-10 01:56:13 +00002369 switch (cast<VTSDNode>(Node->getOperand(3))->getVT()) {
Chris Lattnere18a4c42005-01-15 05:22:24 +00002370 default:
2371 case MVT::i1: assert(0 && "Cannot sign extend from bool!");
2372 case MVT::i8:
2373 addFullAddress(BuildMI(BB, X86::MOVSX32rm8, 5, Result), AM);
2374 break;
2375 case MVT::i16:
2376 addFullAddress(BuildMI(BB, X86::MOVSX32rm16, 5, Result), AM);
2377 break;
2378 }
2379 break;
2380 case MVT::i16:
Chris Lattner53676df2005-07-10 01:56:13 +00002381 assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::i8 &&
Chris Lattnere18a4c42005-01-15 05:22:24 +00002382 "Cannot sign extend from bool!");
2383 addFullAddress(BuildMI(BB, X86::MOVSX16rm8, 5, Result), AM);
2384 break;
2385 }
2386 return Result;
2387 }
2388
Chris Lattner1b3520c2005-05-14 08:48:15 +00002389 case X86ISD::TAILCALL:
2390 case X86ISD::CALL: {
Chris Lattnerb52e0412005-01-08 19:28:19 +00002391 // The chain for this call is now lowered.
Chris Lattner1b3520c2005-05-14 08:48:15 +00002392 ExprMap.insert(std::make_pair(N.getValue(0), 1));
Chris Lattnerb52e0412005-01-08 19:28:19 +00002393
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002394 bool isDirect = isa<GlobalAddressSDNode>(N.getOperand(1)) ||
2395 isa<ExternalSymbolSDNode>(N.getOperand(1));
2396 unsigned Callee = 0;
2397 if (isDirect) {
2398 Select(N.getOperand(0));
2399 } else {
2400 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2401 Select(N.getOperand(0));
2402 Callee = SelectExpr(N.getOperand(1));
2403 } else {
2404 Callee = SelectExpr(N.getOperand(1));
2405 Select(N.getOperand(0));
2406 }
2407 }
2408
2409 // If this call has values to pass in registers, do so now.
Chris Lattner1b3520c2005-05-14 08:48:15 +00002410 if (Node->getNumOperands() > 4) {
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002411 // The first value is passed in (a part of) EAX, the second in EDX.
Chris Lattner1b3520c2005-05-14 08:48:15 +00002412 unsigned RegOp1 = SelectExpr(N.getOperand(4));
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002413 unsigned RegOp2 =
Chris Lattner1b3520c2005-05-14 08:48:15 +00002414 Node->getNumOperands() > 5 ? SelectExpr(N.getOperand(5)) : 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002415
Chris Lattner1b3520c2005-05-14 08:48:15 +00002416 switch (N.getOperand(4).getValueType()) {
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002417 default: assert(0 && "Bad thing to pass in regs");
2418 case MVT::i1:
2419 case MVT::i8: BuildMI(BB, X86::MOV8rr , 1,X86::AL).addReg(RegOp1); break;
2420 case MVT::i16: BuildMI(BB, X86::MOV16rr, 1,X86::AX).addReg(RegOp1); break;
2421 case MVT::i32: BuildMI(BB, X86::MOV32rr, 1,X86::EAX).addReg(RegOp1);break;
2422 }
2423 if (RegOp2)
Chris Lattner1b3520c2005-05-14 08:48:15 +00002424 switch (N.getOperand(5).getValueType()) {
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002425 default: assert(0 && "Bad thing to pass in regs");
2426 case MVT::i1:
2427 case MVT::i8:
2428 BuildMI(BB, X86::MOV8rr , 1, X86::DL).addReg(RegOp2);
2429 break;
2430 case MVT::i16:
2431 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(RegOp2);
2432 break;
2433 case MVT::i32:
2434 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(RegOp2);
2435 break;
2436 }
2437 }
2438
Chris Lattner88c8a232005-01-07 07:49:41 +00002439 if (GlobalAddressSDNode *GASD =
2440 dyn_cast<GlobalAddressSDNode>(N.getOperand(1))) {
2441 BuildMI(BB, X86::CALLpcrel32, 1).addGlobalAddress(GASD->getGlobal(),true);
2442 } else if (ExternalSymbolSDNode *ESSDN =
2443 dyn_cast<ExternalSymbolSDNode>(N.getOperand(1))) {
2444 BuildMI(BB, X86::CALLpcrel32,
2445 1).addExternalSymbol(ESSDN->getSymbol(), true);
2446 } else {
Chris Lattner0d1f82a2005-01-11 03:11:44 +00002447 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2448 Select(N.getOperand(0));
2449 Tmp1 = SelectExpr(N.getOperand(1));
2450 } else {
2451 Tmp1 = SelectExpr(N.getOperand(1));
2452 Select(N.getOperand(0));
2453 }
2454
Chris Lattner88c8a232005-01-07 07:49:41 +00002455 BuildMI(BB, X86::CALL32r, 1).addReg(Tmp1);
2456 }
Chris Lattner1b3520c2005-05-14 08:48:15 +00002457
2458 // Get caller stack amount and amount the callee added to the stack pointer.
2459 Tmp1 = cast<ConstantSDNode>(N.getOperand(2))->getValue();
2460 Tmp2 = cast<ConstantSDNode>(N.getOperand(3))->getValue();
2461 BuildMI(BB, X86::ADJCALLSTACKUP, 2).addImm(Tmp1).addImm(Tmp2);
2462
2463 if (Node->getNumValues() != 1)
2464 switch (Node->getValueType(1)) {
2465 default: assert(0 && "Unknown value type for call result!");
2466 case MVT::Other: return 1;
2467 case MVT::i1:
2468 case MVT::i8:
2469 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
2470 break;
2471 case MVT::i16:
2472 BuildMI(BB, X86::MOV16rr, 1, Result).addReg(X86::AX);
2473 break;
2474 case MVT::i32:
2475 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(X86::EAX);
2476 if (Node->getNumValues() == 3 && Node->getValueType(2) == MVT::i32)
2477 BuildMI(BB, X86::MOV32rr, 1, Result+1).addReg(X86::EDX);
2478 break;
2479 case MVT::f64: // Floating-point return values live in %ST(0)
Nate Begeman8a093362005-07-06 18:59:04 +00002480 if (X86ScalarSSE) {
2481 ContainsFPCode = true;
2482 BuildMI(BB, X86::FpGETRESULT, 1, X86::FP0);
2483
2484 unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
2485 MachineFunction *F = BB->getParent();
2486 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
Chris Lattnerf431ad42005-12-21 07:47:04 +00002487 addFrameReference(BuildMI(BB, X86::FpST64m, 5), FrameIdx).addReg(X86::FP0);
Nate Begeman8a093362005-07-06 18:59:04 +00002488 addFrameReference(BuildMI(BB, X86::MOVSDrm, 4, Result), FrameIdx);
2489 break;
2490 } else {
2491 ContainsFPCode = true;
2492 BuildMI(BB, X86::FpGETRESULT, 1, Result);
2493 break;
2494 }
Chris Lattner1b3520c2005-05-14 08:48:15 +00002495 }
2496 return Result+N.ResNo-1;
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00002497 }
Chris Lattner70ea07c2005-05-09 21:17:38 +00002498 case ISD::READPORT:
2499 // First, determine that the size of the operand falls within the acceptable
2500 // range for this architecture.
2501 //
2502 if (Node->getOperand(1).getValueType() != MVT::i16) {
2503 std::cerr << "llvm.readport: Address size is not 16 bits\n";
2504 exit(1);
2505 }
2506
2507 // Make sure we generate both values.
2508 if (Result != 1) { // Generate the token
2509 if (!ExprMap.insert(std::make_pair(N.getValue(1), 1)).second)
2510 assert(0 && "readport already emitted!?");
2511 } else
2512 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002513
Chris Lattner70ea07c2005-05-09 21:17:38 +00002514 Select(Node->getOperand(0)); // Select the chain.
2515
2516 // If the port is a single-byte constant, use the immediate form.
2517 if (ConstantSDNode *Port = dyn_cast<ConstantSDNode>(Node->getOperand(1)))
2518 if ((Port->getValue() & 255) == Port->getValue()) {
2519 switch (Node->getValueType(0)) {
2520 case MVT::i8:
2521 BuildMI(BB, X86::IN8ri, 1).addImm(Port->getValue());
2522 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
2523 return Result;
2524 case MVT::i16:
2525 BuildMI(BB, X86::IN16ri, 1).addImm(Port->getValue());
2526 BuildMI(BB, X86::MOV16rr, 1, Result).addReg(X86::AX);
2527 return Result;
2528 case MVT::i32:
2529 BuildMI(BB, X86::IN32ri, 1).addImm(Port->getValue());
2530 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(X86::EAX);
2531 return Result;
2532 default: break;
2533 }
2534 }
2535
2536 // Now, move the I/O port address into the DX register and use the IN
2537 // instruction to get the input data.
2538 //
2539 Tmp1 = SelectExpr(Node->getOperand(1));
2540 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Tmp1);
2541 switch (Node->getValueType(0)) {
2542 case MVT::i8:
2543 BuildMI(BB, X86::IN8rr, 0);
2544 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
2545 return Result;
2546 case MVT::i16:
2547 BuildMI(BB, X86::IN16rr, 0);
2548 BuildMI(BB, X86::MOV16rr, 1, Result).addReg(X86::AX);
2549 return Result;
2550 case MVT::i32:
2551 BuildMI(BB, X86::IN32rr, 0);
2552 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(X86::EAX);
2553 return Result;
2554 default:
2555 std::cerr << "Cannot do input on this data type";
2556 exit(1);
2557 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002558
Chris Lattner88c8a232005-01-07 07:49:41 +00002559 }
2560
2561 return 0;
2562}
2563
Chris Lattner96113fd2005-01-17 19:25:26 +00002564/// TryToFoldLoadOpStore - Given a store node, try to fold together a
2565/// load/op/store instruction. If successful return true.
2566bool ISel::TryToFoldLoadOpStore(SDNode *Node) {
2567 assert(Node->getOpcode() == ISD::STORE && "Can only do this for stores!");
2568 SDOperand Chain = Node->getOperand(0);
2569 SDOperand StVal = Node->getOperand(1);
Chris Lattnere86c9332005-01-17 22:10:42 +00002570 SDOperand StPtr = Node->getOperand(2);
Chris Lattner96113fd2005-01-17 19:25:26 +00002571
2572 // The chain has to be a load, the stored value must be an integer binary
2573 // operation with one use.
Chris Lattnere86c9332005-01-17 22:10:42 +00002574 if (!StVal.Val->hasOneUse() || StVal.Val->getNumOperands() != 2 ||
Chris Lattner96113fd2005-01-17 19:25:26 +00002575 MVT::isFloatingPoint(StVal.getValueType()))
2576 return false;
2577
Chris Lattnere86c9332005-01-17 22:10:42 +00002578 // Token chain must either be a factor node or the load to fold.
2579 if (Chain.getOpcode() != ISD::LOAD && Chain.getOpcode() != ISD::TokenFactor)
2580 return false;
Chris Lattner96113fd2005-01-17 19:25:26 +00002581
Chris Lattnere86c9332005-01-17 22:10:42 +00002582 SDOperand TheLoad;
2583
2584 // Check to see if there is a load from the same pointer that we're storing
2585 // to in either operand of the binop.
2586 if (StVal.getOperand(0).getOpcode() == ISD::LOAD &&
2587 StVal.getOperand(0).getOperand(1) == StPtr)
2588 TheLoad = StVal.getOperand(0);
2589 else if (StVal.getOperand(1).getOpcode() == ISD::LOAD &&
2590 StVal.getOperand(1).getOperand(1) == StPtr)
2591 TheLoad = StVal.getOperand(1);
2592 else
2593 return false; // No matching load operand.
2594
2595 // We can only fold the load if there are no intervening side-effecting
2596 // operations. This means that the store uses the load as its token chain, or
2597 // there are only token factor nodes in between the store and load.
2598 if (Chain != TheLoad.getValue(1)) {
2599 // Okay, the other option is that we have a store referring to (possibly
2600 // nested) token factor nodes. For now, just try peeking through one level
2601 // of token factors to see if this is the case.
2602 bool ChainOk = false;
2603 if (Chain.getOpcode() == ISD::TokenFactor) {
2604 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
2605 if (Chain.getOperand(i) == TheLoad.getValue(1)) {
2606 ChainOk = true;
2607 break;
2608 }
2609 }
2610
2611 if (!ChainOk) return false;
2612 }
2613
2614 if (TheLoad.getOperand(1) != StPtr)
Chris Lattner96113fd2005-01-17 19:25:26 +00002615 return false;
2616
2617 // Make sure that one of the operands of the binop is the load, and that the
2618 // load folds into the binop.
2619 if (((StVal.getOperand(0) != TheLoad ||
2620 !isFoldableLoad(TheLoad, StVal.getOperand(1))) &&
2621 (StVal.getOperand(1) != TheLoad ||
2622 !isFoldableLoad(TheLoad, StVal.getOperand(0)))))
2623 return false;
2624
2625 // Finally, check to see if this is one of the ops we can handle!
2626 static const unsigned ADDTAB[] = {
2627 X86::ADD8mi, X86::ADD16mi, X86::ADD32mi,
2628 X86::ADD8mr, X86::ADD16mr, X86::ADD32mr,
2629 };
2630 static const unsigned SUBTAB[] = {
2631 X86::SUB8mi, X86::SUB16mi, X86::SUB32mi,
2632 X86::SUB8mr, X86::SUB16mr, X86::SUB32mr,
2633 };
2634 static const unsigned ANDTAB[] = {
2635 X86::AND8mi, X86::AND16mi, X86::AND32mi,
2636 X86::AND8mr, X86::AND16mr, X86::AND32mr,
2637 };
2638 static const unsigned ORTAB[] = {
2639 X86::OR8mi, X86::OR16mi, X86::OR32mi,
2640 X86::OR8mr, X86::OR16mr, X86::OR32mr,
2641 };
2642 static const unsigned XORTAB[] = {
2643 X86::XOR8mi, X86::XOR16mi, X86::XOR32mi,
2644 X86::XOR8mr, X86::XOR16mr, X86::XOR32mr,
2645 };
2646 static const unsigned SHLTAB[] = {
2647 X86::SHL8mi, X86::SHL16mi, X86::SHL32mi,
2648 /*Have to put the reg in CL*/0, 0, 0,
2649 };
2650 static const unsigned SARTAB[] = {
2651 X86::SAR8mi, X86::SAR16mi, X86::SAR32mi,
2652 /*Have to put the reg in CL*/0, 0, 0,
2653 };
2654 static const unsigned SHRTAB[] = {
2655 X86::SHR8mi, X86::SHR16mi, X86::SHR32mi,
2656 /*Have to put the reg in CL*/0, 0, 0,
2657 };
Misha Brukmanc88330a2005-04-21 23:38:14 +00002658
Chris Lattner96113fd2005-01-17 19:25:26 +00002659 const unsigned *TabPtr = 0;
2660 switch (StVal.getOpcode()) {
2661 default:
2662 std::cerr << "CANNOT [mem] op= val: ";
2663 StVal.Val->dump(); std::cerr << "\n";
Chris Lattner0815dcae2005-09-28 22:29:17 +00002664 case ISD::FMUL:
Chris Lattner96113fd2005-01-17 19:25:26 +00002665 case ISD::MUL:
Chris Lattner0815dcae2005-09-28 22:29:17 +00002666 case ISD::FDIV:
Chris Lattner96113fd2005-01-17 19:25:26 +00002667 case ISD::SDIV:
2668 case ISD::UDIV:
Chris Lattner0815dcae2005-09-28 22:29:17 +00002669 case ISD::FREM:
Chris Lattner96113fd2005-01-17 19:25:26 +00002670 case ISD::SREM:
2671 case ISD::UREM: return false;
Misha Brukmanc88330a2005-04-21 23:38:14 +00002672
Chris Lattner96113fd2005-01-17 19:25:26 +00002673 case ISD::ADD: TabPtr = ADDTAB; break;
2674 case ISD::SUB: TabPtr = SUBTAB; break;
2675 case ISD::AND: TabPtr = ANDTAB; break;
2676 case ISD:: OR: TabPtr = ORTAB; break;
2677 case ISD::XOR: TabPtr = XORTAB; break;
2678 case ISD::SHL: TabPtr = SHLTAB; break;
2679 case ISD::SRA: TabPtr = SARTAB; break;
2680 case ISD::SRL: TabPtr = SHRTAB; break;
2681 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00002682
Chris Lattner96113fd2005-01-17 19:25:26 +00002683 // Handle: [mem] op= CST
2684 SDOperand Op0 = StVal.getOperand(0);
2685 SDOperand Op1 = StVal.getOperand(1);
Chris Lattner0e1de102005-01-23 23:20:06 +00002686 unsigned Opc = 0;
Chris Lattner96113fd2005-01-17 19:25:26 +00002687 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
2688 switch (Op0.getValueType()) { // Use Op0's type because of shifts.
2689 default: break;
2690 case MVT::i1:
2691 case MVT::i8: Opc = TabPtr[0]; break;
2692 case MVT::i16: Opc = TabPtr[1]; break;
2693 case MVT::i32: Opc = TabPtr[2]; break;
2694 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00002695
Chris Lattner96113fd2005-01-17 19:25:26 +00002696 if (Opc) {
Chris Lattner78d30282005-01-18 03:51:59 +00002697 if (!ExprMap.insert(std::make_pair(TheLoad.getValue(1), 1)).second)
2698 assert(0 && "Already emitted?");
Chris Lattnere86c9332005-01-17 22:10:42 +00002699 Select(Chain);
2700
Chris Lattner96113fd2005-01-17 19:25:26 +00002701 X86AddressMode AM;
2702 if (getRegPressure(TheLoad.getOperand(0)) >
2703 getRegPressure(TheLoad.getOperand(1))) {
2704 Select(TheLoad.getOperand(0));
2705 SelectAddress(TheLoad.getOperand(1), AM);
2706 } else {
2707 SelectAddress(TheLoad.getOperand(1), AM);
2708 Select(TheLoad.getOperand(0));
Misha Brukmanc88330a2005-04-21 23:38:14 +00002709 }
Chris Lattnere86c9332005-01-17 22:10:42 +00002710
2711 if (StVal.getOpcode() == ISD::ADD) {
2712 if (CN->getValue() == 1) {
2713 switch (Op0.getValueType()) {
2714 default: break;
2715 case MVT::i8:
2716 addFullAddress(BuildMI(BB, X86::INC8m, 4), AM);
2717 return true;
2718 case MVT::i16: Opc = TabPtr[1];
2719 addFullAddress(BuildMI(BB, X86::INC16m, 4), AM);
2720 return true;
2721 case MVT::i32: Opc = TabPtr[2];
2722 addFullAddress(BuildMI(BB, X86::INC32m, 4), AM);
2723 return true;
2724 }
2725 } else if (CN->getValue()+1 == 0) { // [X] += -1 -> DEC [X]
2726 switch (Op0.getValueType()) {
2727 default: break;
2728 case MVT::i8:
2729 addFullAddress(BuildMI(BB, X86::DEC8m, 4), AM);
2730 return true;
2731 case MVT::i16: Opc = TabPtr[1];
2732 addFullAddress(BuildMI(BB, X86::DEC16m, 4), AM);
2733 return true;
2734 case MVT::i32: Opc = TabPtr[2];
2735 addFullAddress(BuildMI(BB, X86::DEC32m, 4), AM);
2736 return true;
2737 }
2738 }
2739 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00002740
Chris Lattner96113fd2005-01-17 19:25:26 +00002741 addFullAddress(BuildMI(BB, Opc, 4+1),AM).addImm(CN->getValue());
2742 return true;
2743 }
2744 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00002745
Chris Lattner96113fd2005-01-17 19:25:26 +00002746 // If we have [mem] = V op [mem], try to turn it into:
2747 // [mem] = [mem] op V.
Chris Lattner0815dcae2005-09-28 22:29:17 +00002748 if (Op1 == TheLoad &&
2749 StVal.getOpcode() != ISD::SUB && StVal.getOpcode() != ISD::FSUB &&
Chris Lattner96113fd2005-01-17 19:25:26 +00002750 StVal.getOpcode() != ISD::SHL && StVal.getOpcode() != ISD::SRA &&
2751 StVal.getOpcode() != ISD::SRL)
2752 std::swap(Op0, Op1);
Misha Brukmanc88330a2005-04-21 23:38:14 +00002753
Chris Lattner96113fd2005-01-17 19:25:26 +00002754 if (Op0 != TheLoad) return false;
2755
2756 switch (Op0.getValueType()) {
2757 default: return false;
2758 case MVT::i1:
2759 case MVT::i8: Opc = TabPtr[3]; break;
2760 case MVT::i16: Opc = TabPtr[4]; break;
2761 case MVT::i32: Opc = TabPtr[5]; break;
2762 }
Chris Lattnere86c9332005-01-17 22:10:42 +00002763
Chris Lattner479c7112005-01-18 17:35:28 +00002764 // Table entry doesn't exist?
2765 if (Opc == 0) return false;
2766
Chris Lattner78d30282005-01-18 03:51:59 +00002767 if (!ExprMap.insert(std::make_pair(TheLoad.getValue(1), 1)).second)
2768 assert(0 && "Already emitted?");
Chris Lattnere86c9332005-01-17 22:10:42 +00002769 Select(Chain);
Chris Lattner96113fd2005-01-17 19:25:26 +00002770 Select(TheLoad.getOperand(0));
Chris Lattnera7acdda2005-01-18 01:06:26 +00002771
Chris Lattner96113fd2005-01-17 19:25:26 +00002772 X86AddressMode AM;
2773 SelectAddress(TheLoad.getOperand(1), AM);
2774 unsigned Reg = SelectExpr(Op1);
Chris Lattnera7acdda2005-01-18 01:06:26 +00002775 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Reg);
Chris Lattner96113fd2005-01-17 19:25:26 +00002776 return true;
2777}
2778
Chris Lattnerdd66a412005-05-15 05:46:45 +00002779/// If node is a ret(tailcall) node, emit the specified tail call and return
2780/// true, otherwise return false.
2781///
2782/// FIXME: This whole thing should be a post-legalize optimization pass which
2783/// recognizes and transforms the dag. We don't want the selection phase doing
2784/// this stuff!!
2785///
2786bool ISel::EmitPotentialTailCall(SDNode *RetNode) {
2787 assert(RetNode->getOpcode() == ISD::RET && "Not a return");
2788
2789 SDOperand Chain = RetNode->getOperand(0);
2790
2791 // If this is a token factor node where one operand is a call, dig into it.
2792 SDOperand TokFactor;
2793 unsigned TokFactorOperand = 0;
2794 if (Chain.getOpcode() == ISD::TokenFactor) {
2795 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
2796 if (Chain.getOperand(i).getOpcode() == ISD::CALLSEQ_END ||
2797 Chain.getOperand(i).getOpcode() == X86ISD::TAILCALL) {
2798 TokFactorOperand = i;
2799 TokFactor = Chain;
2800 Chain = Chain.getOperand(i);
2801 break;
2802 }
2803 if (TokFactor.Val == 0) return false; // No call operand.
2804 }
2805
2806 // Skip the CALLSEQ_END node if present.
2807 if (Chain.getOpcode() == ISD::CALLSEQ_END)
2808 Chain = Chain.getOperand(0);
2809
2810 // Is a tailcall the last control operation that occurs before the return?
2811 if (Chain.getOpcode() != X86ISD::TAILCALL)
2812 return false;
2813
2814 // If we return a value, is it the value produced by the call?
2815 if (RetNode->getNumOperands() > 1) {
2816 // Not returning the ret val of the call?
2817 if (Chain.Val->getNumValues() == 1 ||
2818 RetNode->getOperand(1) != Chain.getValue(1))
2819 return false;
2820
2821 if (RetNode->getNumOperands() > 2) {
2822 if (Chain.Val->getNumValues() == 2 ||
2823 RetNode->getOperand(2) != Chain.getValue(2))
2824 return false;
2825 }
2826 assert(RetNode->getNumOperands() <= 3);
2827 }
2828
2829 // CalleeCallArgAmt - The total number of bytes used for the callee arg area.
2830 // For FastCC, this will always be > 0.
2831 unsigned CalleeCallArgAmt =
2832 cast<ConstantSDNode>(Chain.getOperand(2))->getValue();
2833
2834 // CalleeCallArgPopAmt - The number of bytes in the call area popped by the
2835 // callee. For FastCC this will always be > 0, for CCC this is always 0.
2836 unsigned CalleeCallArgPopAmt =
2837 cast<ConstantSDNode>(Chain.getOperand(3))->getValue();
2838
2839 // There are several cases we can handle here. First, if the caller and
2840 // callee are both CCC functions, we can tailcall if the callee takes <= the
2841 // number of argument bytes that the caller does.
2842 if (CalleeCallArgPopAmt == 0 && // Callee is C CallingConv?
2843 X86Lowering.getBytesToPopOnReturn() == 0) { // Caller is C CallingConv?
2844 // Check to see if caller arg area size >= callee arg area size.
2845 if (X86Lowering.getBytesCallerReserves() >= CalleeCallArgAmt) {
2846 //std::cerr << "CCC TAILCALL UNIMP!\n";
2847 // If TokFactor is non-null, emit all operands.
2848
2849 //EmitCCCToCCCTailCall(Chain.Val);
2850 //return true;
2851 }
2852 return false;
2853 }
2854
2855 // Second, if both are FastCC functions, we can always perform the tail call.
2856 if (CalleeCallArgPopAmt && X86Lowering.getBytesToPopOnReturn()) {
2857 // If TokFactor is non-null, emit all operands before the call.
2858 if (TokFactor.Val) {
2859 for (unsigned i = 0, e = TokFactor.getNumOperands(); i != e; ++i)
2860 if (i != TokFactorOperand)
2861 Select(TokFactor.getOperand(i));
2862 }
2863
2864 EmitFastCCToFastCCTailCall(Chain.Val);
2865 return true;
2866 }
2867
2868 // We don't support mixed calls, due to issues with alignment. We could in
2869 // theory handle some mixed calls from CCC -> FastCC if the stack is properly
2870 // aligned (which depends on the number of arguments to the callee). TODO.
2871 return false;
2872}
2873
2874static SDOperand GetAdjustedArgumentStores(SDOperand Chain, int Offset,
2875 SelectionDAG &DAG) {
2876 MVT::ValueType StoreVT;
2877 switch (Chain.getOpcode()) {
Chris Lattnerc1469402005-08-25 00:05:15 +00002878 default: assert(0 && "Unexpected node!");
Chris Lattnerdd66a412005-05-15 05:46:45 +00002879 case ISD::CALLSEQ_START:
Chris Lattner1a61fa42005-05-15 06:07:10 +00002880 // If we found the start of the call sequence, we're done. We actually
2881 // strip off the CALLSEQ_START node, to avoid generating the
2882 // ADJCALLSTACKDOWN marker for the tail call.
2883 return Chain.getOperand(0);
Chris Lattnerdd66a412005-05-15 05:46:45 +00002884 case ISD::TokenFactor: {
2885 std::vector<SDOperand> Ops;
2886 Ops.reserve(Chain.getNumOperands());
2887 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
2888 Ops.push_back(GetAdjustedArgumentStores(Chain.getOperand(i), Offset,DAG));
2889 return DAG.getNode(ISD::TokenFactor, MVT::Other, Ops);
2890 }
2891 case ISD::STORE: // Normal store
2892 StoreVT = Chain.getOperand(1).getValueType();
2893 break;
2894 case ISD::TRUNCSTORE: // FLOAT store
Chris Lattner36db1ed2005-07-10 00:29:18 +00002895 StoreVT = cast<VTSDNode>(Chain.getOperand(4))->getVT();
Chris Lattnerdd66a412005-05-15 05:46:45 +00002896 break;
2897 }
2898
2899 SDOperand OrigDest = Chain.getOperand(2);
2900 unsigned OrigOffset;
2901
2902 if (OrigDest.getOpcode() == ISD::CopyFromReg) {
2903 OrigOffset = 0;
Chris Lattner7c762782005-08-16 21:56:37 +00002904 assert(cast<RegisterSDNode>(OrigDest.getOperand(1))->getReg() == X86::ESP);
Chris Lattnerdd66a412005-05-15 05:46:45 +00002905 } else {
2906 // We expect only (ESP+C)
2907 assert(OrigDest.getOpcode() == ISD::ADD &&
2908 isa<ConstantSDNode>(OrigDest.getOperand(1)) &&
2909 OrigDest.getOperand(0).getOpcode() == ISD::CopyFromReg &&
Chris Lattner7c762782005-08-16 21:56:37 +00002910 cast<RegisterSDNode>(OrigDest.getOperand(0).getOperand(1))->getReg()
2911 == X86::ESP);
Chris Lattnerdd66a412005-05-15 05:46:45 +00002912 OrigOffset = cast<ConstantSDNode>(OrigDest.getOperand(1))->getValue();
2913 }
2914
2915 // Compute the new offset from the incoming ESP value we wish to use.
2916 unsigned NewOffset = OrigOffset + Offset;
2917
2918 unsigned OpSize = (MVT::getSizeInBits(StoreVT)+7)/8; // Bits -> Bytes
2919 MachineFunction &MF = DAG.getMachineFunction();
2920 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, NewOffset);
2921 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
2922
2923 SDOperand InChain = GetAdjustedArgumentStores(Chain.getOperand(0), Offset,
2924 DAG);
2925 if (Chain.getOpcode() == ISD::STORE)
2926 return DAG.getNode(ISD::STORE, MVT::Other, InChain, Chain.getOperand(1),
2927 FIN);
2928 assert(Chain.getOpcode() == ISD::TRUNCSTORE);
2929 return DAG.getNode(ISD::TRUNCSTORE, MVT::Other, InChain, Chain.getOperand(1),
Chris Lattner36db1ed2005-07-10 00:29:18 +00002930 FIN, DAG.getSrcValue(NULL), DAG.getValueType(StoreVT));
Chris Lattnerdd66a412005-05-15 05:46:45 +00002931}
2932
2933
2934/// EmitFastCCToFastCCTailCall - Given a tailcall in the tail position to a
2935/// fastcc function from a fastcc function, emit the code to emit a 'proper'
2936/// tail call.
2937void ISel::EmitFastCCToFastCCTailCall(SDNode *TailCallNode) {
2938 unsigned CalleeCallArgSize =
2939 cast<ConstantSDNode>(TailCallNode->getOperand(2))->getValue();
2940 unsigned CallerArgSize = X86Lowering.getBytesToPopOnReturn();
2941
2942 //std::cerr << "****\n*** EMITTING TAIL CALL!\n****\n";
2943
2944 // Adjust argument stores. Instead of storing to [ESP], f.e., store to frame
2945 // indexes that are relative to the incoming ESP. If the incoming and
2946 // outgoing arg sizes are the same we will store to [InESP] instead of
2947 // [CurESP] and the ESP referenced will be relative to the incoming function
2948 // ESP.
2949 int ESPOffset = CallerArgSize-CalleeCallArgSize;
2950 SDOperand AdjustedArgStores =
2951 GetAdjustedArgumentStores(TailCallNode->getOperand(0), ESPOffset, *TheDAG);
2952
2953 // Copy the return address of the caller into a virtual register so we don't
2954 // clobber it.
Chris Lattnerefbb8da2006-01-06 17:56:38 +00002955 SDOperand RetVal(0, 0);
Chris Lattnerdd66a412005-05-15 05:46:45 +00002956 if (ESPOffset) {
2957 SDOperand RetValAddr = X86Lowering.getReturnAddressFrameIndex(*TheDAG);
2958 RetVal = TheDAG->getLoad(MVT::i32, TheDAG->getEntryNode(),
2959 RetValAddr, TheDAG->getSrcValue(NULL));
2960 SelectExpr(RetVal);
2961 }
2962
2963 // Codegen all of the argument stores.
2964 Select(AdjustedArgStores);
2965
2966 if (RetVal.Val) {
2967 // Emit a store of the saved ret value to the new location.
2968 MachineFunction &MF = TheDAG->getMachineFunction();
2969 int ReturnAddrFI = MF.getFrameInfo()->CreateFixedObject(4, ESPOffset-4);
2970 SDOperand RetValAddr = TheDAG->getFrameIndex(ReturnAddrFI, MVT::i32);
2971 Select(TheDAG->getNode(ISD::STORE, MVT::Other, TheDAG->getEntryNode(),
2972 RetVal, RetValAddr));
2973 }
2974
2975 // Get the destination value.
2976 SDOperand Callee = TailCallNode->getOperand(1);
2977 bool isDirect = isa<GlobalAddressSDNode>(Callee) ||
2978 isa<ExternalSymbolSDNode>(Callee);
Chris Lattner459a9cb2005-06-17 13:23:32 +00002979 unsigned CalleeReg = 0;
Chris Lattner7e792922005-12-04 06:03:50 +00002980 if (!isDirect) {
2981 // If this is not a direct tail call, evaluate the callee's address.
2982 CalleeReg = SelectExpr(Callee);
2983 }
Chris Lattnerdd66a412005-05-15 05:46:45 +00002984
2985 unsigned RegOp1 = 0;
2986 unsigned RegOp2 = 0;
2987
2988 if (TailCallNode->getNumOperands() > 4) {
2989 // The first value is passed in (a part of) EAX, the second in EDX.
2990 RegOp1 = SelectExpr(TailCallNode->getOperand(4));
2991 if (TailCallNode->getNumOperands() > 5)
2992 RegOp2 = SelectExpr(TailCallNode->getOperand(5));
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002993
Chris Lattnerdd66a412005-05-15 05:46:45 +00002994 switch (TailCallNode->getOperand(4).getValueType()) {
2995 default: assert(0 && "Bad thing to pass in regs");
2996 case MVT::i1:
2997 case MVT::i8:
2998 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(RegOp1);
2999 RegOp1 = X86::AL;
3000 break;
3001 case MVT::i16:
3002 BuildMI(BB, X86::MOV16rr, 1,X86::AX).addReg(RegOp1);
3003 RegOp1 = X86::AX;
3004 break;
3005 case MVT::i32:
3006 BuildMI(BB, X86::MOV32rr, 1,X86::EAX).addReg(RegOp1);
3007 RegOp1 = X86::EAX;
3008 break;
3009 }
3010 if (RegOp2)
3011 switch (TailCallNode->getOperand(5).getValueType()) {
3012 default: assert(0 && "Bad thing to pass in regs");
3013 case MVT::i1:
3014 case MVT::i8:
3015 BuildMI(BB, X86::MOV8rr, 1, X86::DL).addReg(RegOp2);
3016 RegOp2 = X86::DL;
3017 break;
3018 case MVT::i16:
3019 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(RegOp2);
3020 RegOp2 = X86::DX;
3021 break;
3022 case MVT::i32:
3023 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(RegOp2);
3024 RegOp2 = X86::EDX;
3025 break;
3026 }
3027 }
Chris Lattner7e792922005-12-04 06:03:50 +00003028
3029 // If this is not a direct tail call, put the callee's address into ECX.
3030 // The address has to be evaluated into a non-callee save register that is
3031 // not used for arguments. This means either ECX, as EAX and EDX may be
3032 // used for argument passing. We do this here to make sure that the
3033 // expressions for arguments and callee are all evaluated before the copies
3034 // into physical registers.
3035 if (!isDirect)
3036 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CalleeReg);
Chris Lattnerdd66a412005-05-15 05:46:45 +00003037
3038 // Adjust ESP.
3039 if (ESPOffset)
3040 BuildMI(BB, X86::ADJSTACKPTRri, 2,
3041 X86::ESP).addReg(X86::ESP).addImm(ESPOffset);
3042
3043 // TODO: handle jmp [mem]
3044 if (!isDirect) {
Chris Lattner7e792922005-12-04 06:03:50 +00003045 BuildMI(BB, X86::TAILJMPr, 1).addReg(X86::ECX);
Chris Lattnerdd66a412005-05-15 05:46:45 +00003046 } else if (GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(Callee)){
Chris Lattner57279592005-05-19 05:54:33 +00003047 BuildMI(BB, X86::TAILJMPd, 1).addGlobalAddress(GASD->getGlobal(), true);
Chris Lattnerdd66a412005-05-15 05:46:45 +00003048 } else {
3049 ExternalSymbolSDNode *ESSDN = cast<ExternalSymbolSDNode>(Callee);
3050 BuildMI(BB, X86::TAILJMPd, 1).addExternalSymbol(ESSDN->getSymbol(), true);
3051 }
3052 // ADD IMPLICIT USE RegOp1/RegOp2's
3053}
3054
Chris Lattner96113fd2005-01-17 19:25:26 +00003055
Chris Lattner88c8a232005-01-07 07:49:41 +00003056void ISel::Select(SDOperand N) {
Chris Lattner9982da22005-10-02 16:29:36 +00003057 unsigned Tmp1 = 0, Tmp2 = 0, Opc = 0;
Chris Lattner88c8a232005-01-07 07:49:41 +00003058
Nate Begeman95210522005-03-24 04:39:54 +00003059 if (!ExprMap.insert(std::make_pair(N, 1)).second)
Chris Lattner88c8a232005-01-07 07:49:41 +00003060 return; // Already selected.
3061
Chris Lattner36f78482005-01-11 06:14:36 +00003062 SDNode *Node = N.Val;
3063
3064 switch (Node->getOpcode()) {
Chris Lattner88c8a232005-01-07 07:49:41 +00003065 default:
Chris Lattner36f78482005-01-11 06:14:36 +00003066 Node->dump(); std::cerr << "\n";
Chris Lattner88c8a232005-01-07 07:49:41 +00003067 assert(0 && "Node not handled yet!");
Andrew Lenharth0bf68ae2005-11-20 21:41:10 +00003068 case X86ISD::RDTSC_DAG:
3069 Select(Node->getOperand(0)); //Chain
3070 BuildMI(BB, X86::RDTSC, 0);
3071 return;
3072
Chris Lattner88c8a232005-01-07 07:49:41 +00003073 case ISD::EntryToken: return; // Noop
Chris Lattnerc251fb62005-01-13 18:01:36 +00003074 case ISD::TokenFactor:
Chris Lattner15bd19d2005-01-13 19:56:00 +00003075 if (Node->getNumOperands() == 2) {
Misha Brukmanc88330a2005-04-21 23:38:14 +00003076 bool OneFirst =
Chris Lattner15bd19d2005-01-13 19:56:00 +00003077 getRegPressure(Node->getOperand(1))>getRegPressure(Node->getOperand(0));
3078 Select(Node->getOperand(OneFirst));
3079 Select(Node->getOperand(!OneFirst));
3080 } else {
3081 std::vector<std::pair<unsigned, unsigned> > OpsP;
3082 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
3083 OpsP.push_back(std::make_pair(getRegPressure(Node->getOperand(i)), i));
3084 std::sort(OpsP.begin(), OpsP.end());
3085 std::reverse(OpsP.begin(), OpsP.end());
3086 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
3087 Select(Node->getOperand(OpsP[i].second));
3088 }
Chris Lattnerc251fb62005-01-13 18:01:36 +00003089 return;
Chris Lattner88c8a232005-01-07 07:49:41 +00003090 case ISD::CopyToReg:
Chris Lattner7c762782005-08-16 21:56:37 +00003091 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
Chris Lattner2cfce682005-01-12 02:02:48 +00003092 Select(N.getOperand(0));
Chris Lattner7c762782005-08-16 21:56:37 +00003093 Tmp1 = SelectExpr(N.getOperand(2));
Chris Lattner2cfce682005-01-12 02:02:48 +00003094 } else {
Chris Lattner7c762782005-08-16 21:56:37 +00003095 Tmp1 = SelectExpr(N.getOperand(2));
Chris Lattner2cfce682005-01-12 02:02:48 +00003096 Select(N.getOperand(0));
3097 }
Chris Lattner7c762782005-08-16 21:56:37 +00003098 Tmp2 = cast<RegisterSDNode>(N.getOperand(1))->getReg();
Misha Brukmanc88330a2005-04-21 23:38:14 +00003099
Chris Lattner88c8a232005-01-07 07:49:41 +00003100 if (Tmp1 != Tmp2) {
Chris Lattner7c762782005-08-16 21:56:37 +00003101 switch (N.getOperand(2).getValueType()) {
Chris Lattner88c8a232005-01-07 07:49:41 +00003102 default: assert(0 && "Invalid type for operation!");
3103 case MVT::i1:
3104 case MVT::i8: Opc = X86::MOV8rr; break;
3105 case MVT::i16: Opc = X86::MOV16rr; break;
3106 case MVT::i32: Opc = X86::MOV32rr; break;
Nate Begeman9d7008b2005-10-14 22:06:00 +00003107 case MVT::f32: Opc = X86::MOVSSrr; break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003108 case MVT::f64:
Nate Begeman8a093362005-07-06 18:59:04 +00003109 if (X86ScalarSSE) {
Nate Begeman9d7008b2005-10-14 22:06:00 +00003110 Opc = X86::MOVSDrr;
Nate Begeman8a093362005-07-06 18:59:04 +00003111 } else {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003112 Opc = X86::FpMOV;
3113 ContainsFPCode = true;
Nate Begeman8a093362005-07-06 18:59:04 +00003114 }
3115 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003116 }
3117 BuildMI(BB, Opc, 1, Tmp2).addReg(Tmp1);
3118 }
3119 return;
3120 case ISD::RET:
Chris Lattnerdd66a412005-05-15 05:46:45 +00003121 if (N.getOperand(0).getOpcode() == ISD::CALLSEQ_END ||
3122 N.getOperand(0).getOpcode() == X86ISD::TAILCALL ||
3123 N.getOperand(0).getOpcode() == ISD::TokenFactor)
3124 if (EmitPotentialTailCall(Node))
3125 return;
3126
Chris Lattner88c8a232005-01-07 07:49:41 +00003127 switch (N.getNumOperands()) {
3128 default:
3129 assert(0 && "Unknown return instruction!");
3130 case 3:
Chris Lattner88c8a232005-01-07 07:49:41 +00003131 assert(N.getOperand(1).getValueType() == MVT::i32 &&
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003132 N.getOperand(2).getValueType() == MVT::i32 &&
3133 "Unknown two-register value!");
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003134 if (getRegPressure(N.getOperand(1)) > getRegPressure(N.getOperand(2))) {
3135 Tmp1 = SelectExpr(N.getOperand(1));
3136 Tmp2 = SelectExpr(N.getOperand(2));
3137 } else {
3138 Tmp2 = SelectExpr(N.getOperand(2));
3139 Tmp1 = SelectExpr(N.getOperand(1));
3140 }
3141 Select(N.getOperand(0));
3142
Chris Lattner88c8a232005-01-07 07:49:41 +00003143 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
3144 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(Tmp2);
Chris Lattner88c8a232005-01-07 07:49:41 +00003145 break;
3146 case 2:
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003147 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
3148 Select(N.getOperand(0));
3149 Tmp1 = SelectExpr(N.getOperand(1));
3150 } else {
3151 Tmp1 = SelectExpr(N.getOperand(1));
3152 Select(N.getOperand(0));
3153 }
Chris Lattner88c8a232005-01-07 07:49:41 +00003154 switch (N.getOperand(1).getValueType()) {
3155 default: assert(0 && "All other types should have been promoted!!");
Nate Begeman8a093362005-07-06 18:59:04 +00003156 case MVT::f32:
3157 if (X86ScalarSSE) {
3158 // Spill the value to memory and reload it into top of stack.
3159 unsigned Size = MVT::getSizeInBits(MVT::f32)/8;
3160 MachineFunction *F = BB->getParent();
3161 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
3162 addFrameReference(BuildMI(BB, X86::MOVSSmr, 5), FrameIdx).addReg(Tmp1);
Chris Lattnerf431ad42005-12-21 07:47:04 +00003163 addFrameReference(BuildMI(BB, X86::FpLD32m, 4, X86::FP0), FrameIdx);
Nate Begeman8a093362005-07-06 18:59:04 +00003164 BuildMI(BB, X86::FpSETRESULT, 1).addReg(X86::FP0);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003165 ContainsFPCode = true;
Nate Begeman8a093362005-07-06 18:59:04 +00003166 } else {
3167 assert(0 && "MVT::f32 only legal with scalar sse fp");
3168 abort();
3169 }
3170 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003171 case MVT::f64:
Nate Begeman8a093362005-07-06 18:59:04 +00003172 if (X86ScalarSSE) {
3173 // Spill the value to memory and reload it into top of stack.
3174 unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
3175 MachineFunction *F = BB->getParent();
3176 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
3177 addFrameReference(BuildMI(BB, X86::MOVSDmr, 5), FrameIdx).addReg(Tmp1);
Chris Lattnerf431ad42005-12-21 07:47:04 +00003178 addFrameReference(BuildMI(BB, X86::FpLD64m, 4, X86::FP0), FrameIdx);
Nate Begeman8a093362005-07-06 18:59:04 +00003179 BuildMI(BB, X86::FpSETRESULT, 1).addReg(X86::FP0);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003180 ContainsFPCode = true;
Nate Begeman8a093362005-07-06 18:59:04 +00003181 } else {
3182 BuildMI(BB, X86::FpSETRESULT, 1).addReg(Tmp1);
3183 }
3184 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003185 case MVT::i32:
Nate Begeman8a093362005-07-06 18:59:04 +00003186 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
3187 break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003188 }
3189 break;
3190 case 1:
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003191 Select(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00003192 break;
3193 }
Chris Lattnerc0e369e2005-05-13 21:44:04 +00003194 if (X86Lowering.getBytesToPopOnReturn() == 0)
3195 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
3196 else
3197 BuildMI(BB, X86::RETI, 1).addImm(X86Lowering.getBytesToPopOnReturn());
Chris Lattner88c8a232005-01-07 07:49:41 +00003198 return;
3199 case ISD::BR: {
3200 Select(N.getOperand(0));
3201 MachineBasicBlock *Dest =
3202 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
3203 BuildMI(BB, X86::JMP, 1).addMBB(Dest);
3204 return;
3205 }
3206
3207 case ISD::BRCOND: {
Chris Lattner88c8a232005-01-07 07:49:41 +00003208 MachineBasicBlock *Dest =
3209 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003210
Chris Lattner88c8a232005-01-07 07:49:41 +00003211 // Try to fold a setcc into the branch. If this fails, emit a test/jne
3212 // pair.
Chris Lattner37ed2852005-01-11 04:06:27 +00003213 if (EmitBranchCC(Dest, N.getOperand(0), N.getOperand(1))) {
3214 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
3215 Select(N.getOperand(0));
3216 Tmp1 = SelectExpr(N.getOperand(1));
3217 } else {
3218 Tmp1 = SelectExpr(N.getOperand(1));
3219 Select(N.getOperand(0));
3220 }
Chris Lattner88c8a232005-01-07 07:49:41 +00003221 BuildMI(BB, X86::TEST8rr, 2).addReg(Tmp1).addReg(Tmp1);
3222 BuildMI(BB, X86::JNE, 1).addMBB(Dest);
3223 }
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003224
Chris Lattner88c8a232005-01-07 07:49:41 +00003225 return;
3226 }
Chris Lattnere18a4c42005-01-15 05:22:24 +00003227
Chris Lattnerc1f386c2005-01-17 00:00:33 +00003228 case ISD::LOAD:
3229 // If this load could be folded into the only using instruction, and if it
3230 // is safe to emit the instruction here, try to do so now.
3231 if (Node->hasNUsesOfValue(1, 0)) {
3232 SDOperand TheVal = N.getValue(0);
3233 SDNode *User = 0;
3234 for (SDNode::use_iterator UI = Node->use_begin(); ; ++UI) {
3235 assert(UI != Node->use_end() && "Didn't find use!");
3236 SDNode *UN = *UI;
3237 for (unsigned i = 0, e = UN->getNumOperands(); i != e; ++i)
3238 if (UN->getOperand(i) == TheVal) {
3239 User = UN;
3240 goto FoundIt;
3241 }
3242 }
3243 FoundIt:
3244 // Only handle unary operators right now.
3245 if (User->getNumOperands() == 1) {
Chris Lattner78d30282005-01-18 03:51:59 +00003246 ExprMap.erase(N);
Chris Lattnerc1f386c2005-01-17 00:00:33 +00003247 SelectExpr(SDOperand(User, 0));
3248 return;
3249 }
3250 }
Chris Lattner28a205e2005-01-18 04:00:54 +00003251 ExprMap.erase(N);
Chris Lattnerc1f386c2005-01-17 00:00:33 +00003252 SelectExpr(N);
3253 return;
Chris Lattner70ea07c2005-05-09 21:17:38 +00003254 case ISD::READPORT:
Chris Lattnere18a4c42005-01-15 05:22:24 +00003255 case ISD::EXTLOAD:
3256 case ISD::SEXTLOAD:
3257 case ISD::ZEXTLOAD:
Chris Lattner1b3520c2005-05-14 08:48:15 +00003258 case X86ISD::TAILCALL:
3259 case X86ISD::CALL:
Chris Lattner28a205e2005-01-18 04:00:54 +00003260 ExprMap.erase(N);
Chris Lattner88c8a232005-01-07 07:49:41 +00003261 SelectExpr(N);
3262 return;
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00003263 case ISD::CopyFromReg:
Evan Cheng6305e502006-01-12 22:54:21 +00003264 case X86ISD::FILD:
Chris Lattner7ce7a8f2005-05-12 23:06:28 +00003265 ExprMap.erase(N);
3266 SelectExpr(N.getValue(0));
3267 return;
Jeff Cohen546fd592005-07-30 18:33:25 +00003268
Chris Lattner4738d1b2005-07-30 00:05:54 +00003269 case X86ISD::FP_TO_INT16_IN_MEM:
3270 case X86ISD::FP_TO_INT32_IN_MEM:
Chris Lattner6dc60e82005-07-29 00:54:34 +00003271 case X86ISD::FP_TO_INT64_IN_MEM: {
Chris Lattner67756e22005-07-29 00:40:01 +00003272 assert(N.getOperand(1).getValueType() == MVT::f64);
3273 X86AddressMode AM;
3274 Select(N.getOperand(0)); // Select the token chain
3275
3276 unsigned ValReg;
3277 if (getRegPressure(N.getOperand(1)) > getRegPressure(N.getOperand(2))) {
3278 ValReg = SelectExpr(N.getOperand(1));
3279 SelectAddress(N.getOperand(2), AM);
3280 } else {
3281 SelectAddress(N.getOperand(2), AM);
3282 ValReg = SelectExpr(N.getOperand(1));
3283 }
Jeff Cohen546fd592005-07-30 18:33:25 +00003284
Chris Lattner6dc60e82005-07-29 00:54:34 +00003285 // Change the floating point control register to use "round towards zero"
3286 // mode when truncating to an integer value.
3287 //
3288 MachineFunction *F = BB->getParent();
3289 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
3290 addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx);
Jeff Cohen546fd592005-07-30 18:33:25 +00003291
Chris Lattner6dc60e82005-07-29 00:54:34 +00003292 // Load the old value of the high byte of the control word...
Chris Lattneraeef51b2005-07-30 00:17:52 +00003293 unsigned OldCW = MakeReg(MVT::i16);
3294 addFrameReference(BuildMI(BB, X86::MOV16rm, 4, OldCW), CWFrameIdx);
Jeff Cohen546fd592005-07-30 18:33:25 +00003295
Chris Lattner6dc60e82005-07-29 00:54:34 +00003296 // Set the high part to be round to zero...
Chris Lattner49134572005-07-30 00:43:00 +00003297 addFrameReference(BuildMI(BB, X86::MOV16mi, 5), CWFrameIdx).addImm(0xC7F);
Jeff Cohen546fd592005-07-30 18:33:25 +00003298
Chris Lattner6dc60e82005-07-29 00:54:34 +00003299 // Reload the modified control word now...
3300 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
Jeff Cohen546fd592005-07-30 18:33:25 +00003301
Chris Lattner6dc60e82005-07-29 00:54:34 +00003302 // Restore the memory image of control word to original value
Chris Lattneraeef51b2005-07-30 00:17:52 +00003303 addFrameReference(BuildMI(BB, X86::MOV16mr, 5), CWFrameIdx).addReg(OldCW);
Chris Lattner4738d1b2005-07-30 00:05:54 +00003304
3305 // Get the X86 opcode to use.
3306 switch (N.getOpcode()) {
Chris Lattnerf431ad42005-12-21 07:47:04 +00003307 case X86ISD::FP_TO_INT16_IN_MEM: Tmp1 = X86::FpIST16m; break;
3308 case X86ISD::FP_TO_INT32_IN_MEM: Tmp1 = X86::FpIST32m; break;
3309 case X86ISD::FP_TO_INT64_IN_MEM: Tmp1 = X86::FpIST64m; break;
Chris Lattner4738d1b2005-07-30 00:05:54 +00003310 }
Jeff Cohen546fd592005-07-30 18:33:25 +00003311
Chris Lattner4738d1b2005-07-30 00:05:54 +00003312 addFullAddress(BuildMI(BB, Tmp1, 5), AM).addReg(ValReg);
Jeff Cohen546fd592005-07-30 18:33:25 +00003313
Chris Lattner6dc60e82005-07-29 00:54:34 +00003314 // Reload the original control word now.
3315 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
Chris Lattner67756e22005-07-29 00:40:01 +00003316 return;
3317 }
Chris Lattnere18a4c42005-01-15 05:22:24 +00003318
Chris Lattner36db1ed2005-07-10 00:29:18 +00003319 case ISD::TRUNCSTORE: { // truncstore chain, val, ptr, SRCVALUE, storety
Chris Lattnere18a4c42005-01-15 05:22:24 +00003320 X86AddressMode AM;
Chris Lattner36db1ed2005-07-10 00:29:18 +00003321 MVT::ValueType StoredTy = cast<VTSDNode>(N.getOperand(4))->getVT();
Chris Lattnerb14a63a2005-01-16 07:34:08 +00003322 assert((StoredTy == MVT::i1 || StoredTy == MVT::f32 ||
3323 StoredTy == MVT::i16 /*FIXME: THIS IS JUST FOR TESTING!*/)
3324 && "Unsupported TRUNCSTORE for this target!");
3325
3326 if (StoredTy == MVT::i16) {
3327 // FIXME: This is here just to allow testing. X86 doesn't really have a
3328 // TRUNCSTORE i16 operation, but this is required for targets that do not
3329 // have 16-bit integer registers. We occasionally disable 16-bit integer
3330 // registers to test the promotion code.
3331 Select(N.getOperand(0));
3332 Tmp1 = SelectExpr(N.getOperand(1));
3333 SelectAddress(N.getOperand(2), AM);
3334
3335 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
3336 addFullAddress(BuildMI(BB, X86::MOV16mr, 5), AM).addReg(X86::AX);
3337 return;
3338 }
Chris Lattnere18a4c42005-01-15 05:22:24 +00003339
3340 // Store of constant bool?
3341 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
3342 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
3343 Select(N.getOperand(0));
3344 SelectAddress(N.getOperand(2), AM);
3345 } else {
3346 SelectAddress(N.getOperand(2), AM);
3347 Select(N.getOperand(0));
3348 }
3349 addFullAddress(BuildMI(BB, X86::MOV8mi, 5), AM).addImm(CN->getValue());
3350 return;
3351 }
3352
3353 switch (StoredTy) {
3354 default: assert(0 && "Cannot truncstore this type!");
3355 case MVT::i1: Opc = X86::MOV8mr; break;
Nate Begeman8a093362005-07-06 18:59:04 +00003356 case MVT::f32:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003357 assert(!X86ScalarSSE && "Cannot truncstore scalar SSE regs");
Chris Lattnerf431ad42005-12-21 07:47:04 +00003358 Opc = X86::FpST32m; break;
Chris Lattnere18a4c42005-01-15 05:22:24 +00003359 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00003360
Chris Lattnere18a4c42005-01-15 05:22:24 +00003361 std::vector<std::pair<unsigned, unsigned> > RP;
3362 RP.push_back(std::make_pair(getRegPressure(N.getOperand(0)), 0));
3363 RP.push_back(std::make_pair(getRegPressure(N.getOperand(1)), 1));
3364 RP.push_back(std::make_pair(getRegPressure(N.getOperand(2)), 2));
3365 std::sort(RP.begin(), RP.end());
3366
Chris Lattner80c5b972005-02-23 05:57:21 +00003367 Tmp1 = 0; // Silence a warning.
Chris Lattnere18a4c42005-01-15 05:22:24 +00003368 for (unsigned i = 0; i != 3; ++i)
3369 switch (RP[2-i].second) {
3370 default: assert(0 && "Unknown operand number!");
3371 case 0: Select(N.getOperand(0)); break;
3372 case 1: Tmp1 = SelectExpr(N.getOperand(1)); break;
3373 case 2: SelectAddress(N.getOperand(2), AM); break;
3374 }
3375
3376 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Tmp1);
3377 return;
3378 }
Chris Lattner88c8a232005-01-07 07:49:41 +00003379 case ISD::STORE: {
Chris Lattner88c8a232005-01-07 07:49:41 +00003380 X86AddressMode AM;
Chris Lattner88c8a232005-01-07 07:49:41 +00003381
3382 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
3383 Opc = 0;
3384 switch (CN->getValueType(0)) {
3385 default: assert(0 && "Invalid type for operation!");
3386 case MVT::i1:
3387 case MVT::i8: Opc = X86::MOV8mi; break;
3388 case MVT::i16: Opc = X86::MOV16mi; break;
3389 case MVT::i32: Opc = X86::MOV32mi; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003390 }
3391 if (Opc) {
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003392 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
3393 Select(N.getOperand(0));
3394 SelectAddress(N.getOperand(2), AM);
3395 } else {
3396 SelectAddress(N.getOperand(2), AM);
3397 Select(N.getOperand(0));
3398 }
Chris Lattner88c8a232005-01-07 07:49:41 +00003399 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addImm(CN->getValue());
3400 return;
3401 }
Chris Lattneradcfc172005-04-21 19:03:24 +00003402 } else if (GlobalAddressSDNode *GA =
3403 dyn_cast<GlobalAddressSDNode>(N.getOperand(1))) {
3404 assert(GA->getValueType(0) == MVT::i32 && "Bad pointer operand");
3405
3406 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
3407 Select(N.getOperand(0));
3408 SelectAddress(N.getOperand(2), AM);
3409 } else {
3410 SelectAddress(N.getOperand(2), AM);
3411 Select(N.getOperand(0));
3412 }
Nate Begemana0b5e032005-07-15 00:38:55 +00003413 GlobalValue *GV = GA->getGlobal();
3414 // For Darwin, external and weak symbols are indirect, so we want to load
3415 // the value at address GV, not the value of GV itself.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003416 if (Subtarget->getIndirectExternAndWeakGlobals() &&
Nate Begemana0b5e032005-07-15 00:38:55 +00003417 (GV->hasWeakLinkage() || GV->isExternal())) {
3418 Tmp1 = MakeReg(MVT::i32);
3419 BuildMI(BB, X86::MOV32rm, 4, Tmp1).addReg(0).addZImm(1).addReg(0)
3420 .addGlobalAddress(GV, false, 0);
3421 addFullAddress(BuildMI(BB, X86::MOV32mr, 4+1),AM).addReg(Tmp1);
3422 } else {
3423 addFullAddress(BuildMI(BB, X86::MOV32mi, 4+1),AM).addGlobalAddress(GV);
3424 }
Chris Lattneradcfc172005-04-21 19:03:24 +00003425 return;
Chris Lattner88c8a232005-01-07 07:49:41 +00003426 }
Chris Lattner75bac9f2005-01-11 23:21:30 +00003427
3428 // Check to see if this is a load/op/store combination.
Chris Lattner96113fd2005-01-17 19:25:26 +00003429 if (TryToFoldLoadOpStore(Node))
3430 return;
Chris Lattner75bac9f2005-01-11 23:21:30 +00003431
Chris Lattner88c8a232005-01-07 07:49:41 +00003432 switch (N.getOperand(1).getValueType()) {
3433 default: assert(0 && "Cannot store this type!");
3434 case MVT::i1:
3435 case MVT::i8: Opc = X86::MOV8mr; break;
3436 case MVT::i16: Opc = X86::MOV16mr; break;
3437 case MVT::i32: Opc = X86::MOV32mr; break;
Nate Begeman8a093362005-07-06 18:59:04 +00003438 case MVT::f32: Opc = X86::MOVSSmr; break;
Chris Lattnerf431ad42005-12-21 07:47:04 +00003439 case MVT::f64: Opc = X86ScalarSSE ? X86::MOVSDmr : X86::FpST64m; break;
Chris Lattner88c8a232005-01-07 07:49:41 +00003440 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00003441
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003442 std::vector<std::pair<unsigned, unsigned> > RP;
3443 RP.push_back(std::make_pair(getRegPressure(N.getOperand(0)), 0));
3444 RP.push_back(std::make_pair(getRegPressure(N.getOperand(1)), 1));
3445 RP.push_back(std::make_pair(getRegPressure(N.getOperand(2)), 2));
3446 std::sort(RP.begin(), RP.end());
3447
Chris Lattner80c5b972005-02-23 05:57:21 +00003448 Tmp1 = 0; // Silence a warning.
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003449 for (unsigned i = 0; i != 3; ++i)
3450 switch (RP[2-i].second) {
3451 default: assert(0 && "Unknown operand number!");
3452 case 0: Select(N.getOperand(0)); break;
3453 case 1: Tmp1 = SelectExpr(N.getOperand(1)); break;
Chris Lattner8fea42b2005-01-11 03:37:59 +00003454 case 2: SelectAddress(N.getOperand(2), AM); break;
Chris Lattner0d1f82a2005-01-11 03:11:44 +00003455 }
3456
Chris Lattner88c8a232005-01-07 07:49:41 +00003457 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Tmp1);
3458 return;
3459 }
Chris Lattner2dce7032005-05-12 23:24:06 +00003460 case ISD::CALLSEQ_START:
Chris Lattnerc0e369e2005-05-13 21:44:04 +00003461 Select(N.getOperand(0));
3462 // Stack amount
3463 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
3464 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addImm(Tmp1);
3465 return;
Chris Lattner2dce7032005-05-12 23:24:06 +00003466 case ISD::CALLSEQ_END:
Chris Lattner88c8a232005-01-07 07:49:41 +00003467 Select(N.getOperand(0));
Chris Lattner88c8a232005-01-07 07:49:41 +00003468 return;
Chris Lattner36f78482005-01-11 06:14:36 +00003469 case ISD::MEMSET: {
3470 Select(N.getOperand(0)); // Select the chain.
3471 unsigned Align =
3472 (unsigned)cast<ConstantSDNode>(Node->getOperand(4))->getValue();
3473 if (Align == 0) Align = 1;
3474
3475 // Turn the byte code into # iterations
3476 unsigned CountReg;
3477 unsigned Opcode;
3478 if (ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
3479 unsigned Val = ValC->getValue() & 255;
3480
3481 // If the value is a constant, then we can potentially use larger sets.
3482 switch (Align & 3) {
3483 case 2: // WORD aligned
3484 CountReg = MakeReg(MVT::i32);
3485 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3486 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/2);
3487 } else {
3488 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3489 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
3490 }
3491 BuildMI(BB, X86::MOV16ri, 1, X86::AX).addImm((Val << 8) | Val);
3492 Opcode = X86::REP_STOSW;
3493 break;
3494 case 0: // DWORD aligned
3495 CountReg = MakeReg(MVT::i32);
3496 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3497 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/4);
3498 } else {
3499 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3500 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
3501 }
3502 Val = (Val << 8) | Val;
3503 BuildMI(BB, X86::MOV32ri, 1, X86::EAX).addImm((Val << 16) | Val);
3504 Opcode = X86::REP_STOSD;
3505 break;
3506 default: // BYTE aligned
3507 CountReg = SelectExpr(Node->getOperand(3));
3508 BuildMI(BB, X86::MOV8ri, 1, X86::AL).addImm(Val);
3509 Opcode = X86::REP_STOSB;
3510 break;
3511 }
3512 } else {
3513 // If it's not a constant value we are storing, just fall back. We could
3514 // try to be clever to form 16 bit and 32 bit values, but we don't yet.
3515 unsigned ValReg = SelectExpr(Node->getOperand(2));
3516 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
3517 CountReg = SelectExpr(Node->getOperand(3));
3518 Opcode = X86::REP_STOSB;
3519 }
3520
Evan Chengae986f12006-01-11 22:15:48 +00003521 // No matter what the alignment is, we put the destination in EDI, and the
3522 // count in ECX.
Chris Lattner36f78482005-01-11 06:14:36 +00003523 unsigned TmpReg1 = SelectExpr(Node->getOperand(1));
3524 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
3525 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
3526 BuildMI(BB, Opcode, 0);
3527 return;
3528 }
Chris Lattner70ea07c2005-05-09 21:17:38 +00003529 case ISD::MEMCPY: {
Chris Lattnerc07164e2005-01-11 06:19:26 +00003530 Select(N.getOperand(0)); // Select the chain.
3531 unsigned Align =
3532 (unsigned)cast<ConstantSDNode>(Node->getOperand(4))->getValue();
3533 if (Align == 0) Align = 1;
3534
3535 // Turn the byte code into # iterations
3536 unsigned CountReg;
3537 unsigned Opcode;
3538 switch (Align & 3) {
3539 case 2: // WORD aligned
3540 CountReg = MakeReg(MVT::i32);
3541 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3542 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/2);
3543 } else {
3544 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3545 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
3546 }
3547 Opcode = X86::REP_MOVSW;
3548 break;
3549 case 0: // DWORD aligned
3550 CountReg = MakeReg(MVT::i32);
3551 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3552 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/4);
3553 } else {
3554 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3555 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
3556 }
3557 Opcode = X86::REP_MOVSD;
3558 break;
3559 default: // BYTE aligned
3560 CountReg = SelectExpr(Node->getOperand(3));
3561 Opcode = X86::REP_MOVSB;
3562 break;
3563 }
3564
3565 // No matter what the alignment is, we put the source in ESI, the
3566 // destination in EDI, and the count in ECX.
3567 unsigned TmpReg1 = SelectExpr(Node->getOperand(1));
3568 unsigned TmpReg2 = SelectExpr(Node->getOperand(2));
3569 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
3570 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
3571 BuildMI(BB, X86::MOV32rr, 1, X86::ESI).addReg(TmpReg2);
3572 BuildMI(BB, Opcode, 0);
3573 return;
Chris Lattner88c8a232005-01-07 07:49:41 +00003574 }
Chris Lattner70ea07c2005-05-09 21:17:38 +00003575 case ISD::WRITEPORT:
3576 if (Node->getOperand(2).getValueType() != MVT::i16) {
3577 std::cerr << "llvm.writeport: Address size is not 16 bits\n";
3578 exit(1);
3579 }
3580 Select(Node->getOperand(0)); // Emit the chain.
3581
3582 Tmp1 = SelectExpr(Node->getOperand(1));
3583 switch (Node->getOperand(1).getValueType()) {
3584 case MVT::i8:
3585 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(Tmp1);
3586 Tmp2 = X86::OUT8ir; Opc = X86::OUT8rr;
3587 break;
3588 case MVT::i16:
3589 BuildMI(BB, X86::MOV16rr, 1, X86::AX).addReg(Tmp1);
3590 Tmp2 = X86::OUT16ir; Opc = X86::OUT16rr;
3591 break;
3592 case MVT::i32:
3593 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
3594 Tmp2 = X86::OUT32ir; Opc = X86::OUT32rr;
3595 break;
3596 default:
3597 std::cerr << "llvm.writeport: invalid data type for X86 target";
3598 exit(1);
3599 }
3600
3601 // If the port is a single-byte constant, use the immediate form.
3602 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node->getOperand(2)))
3603 if ((CN->getValue() & 255) == CN->getValue()) {
3604 BuildMI(BB, Tmp2, 1).addImm(CN->getValue());
3605 return;
3606 }
3607
3608 // Otherwise, move the I/O port address into the DX register.
3609 unsigned Reg = SelectExpr(Node->getOperand(2));
3610 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Reg);
3611 BuildMI(BB, Opc, 0);
3612 return;
3613 }
Chris Lattner88c8a232005-01-07 07:49:41 +00003614 assert(0 && "Should not be reached!");
3615}
3616
3617
Chris Lattner76ac0682005-11-15 00:40:23 +00003618/// createX86ISelPattern - This pass converts an LLVM function
Chris Lattner88c8a232005-01-07 07:49:41 +00003619/// into a machine code representation using pattern matching and a machine
3620/// description file.
3621///
Chris Lattner76ac0682005-11-15 00:40:23 +00003622FunctionPass *llvm::createX86ISelPattern(TargetMachine &TM) {
Misha Brukmanc88330a2005-04-21 23:38:14 +00003623 return new ISel(TM);
Chris Lattner88c8a232005-01-07 07:49:41 +00003624}