blob: 0d3bc1512fc58ae25ce897cbd8814d73e4bc307f [file] [log] [blame]
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001//===-- IA64ISelPattern.cpp - A pattern matching inst selector for IA64 ---===//
Misha Brukman4633f1c2005-04-21 23:13:11 +00002//
Duraid Madina9b9d45f2005-03-17 18:17:03 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by Duraid Madina and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman4633f1c2005-04-21 23:13:11 +00007//
Duraid Madina9b9d45f2005-03-17 18:17:03 +00008//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for IA64.
11//
12//===----------------------------------------------------------------------===//
13
14#include "IA64.h"
15#include "IA64InstrBuilder.h"
16#include "IA64RegisterInfo.h"
17#include "IA64MachineFunctionInfo.h"
18#include "llvm/Constants.h" // FIXME: REMOVE
19#include "llvm/Function.h"
20#include "llvm/CodeGen/MachineConstantPool.h" // FIXME: REMOVE
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/SelectionDAG.h"
24#include "llvm/CodeGen/SelectionDAGISel.h"
25#include "llvm/CodeGen/SSARegMap.h"
26#include "llvm/Target/TargetData.h"
27#include "llvm/Target/TargetLowering.h"
28#include "llvm/Support/MathExtras.h"
29#include "llvm/ADT/Statistic.h"
30#include <set>
Duraid Madinab2322562005-04-26 07:23:02 +000031#include <map>
Duraid Madina9b9d45f2005-03-17 18:17:03 +000032#include <algorithm>
33using namespace llvm;
34
35//===----------------------------------------------------------------------===//
36// IA64TargetLowering - IA64 Implementation of the TargetLowering interface
37namespace {
38 class IA64TargetLowering : public TargetLowering {
39 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
Misha Brukman4633f1c2005-04-21 23:13:11 +000040
Duraid Madina9b9d45f2005-03-17 18:17:03 +000041 //int ReturnAddrIndex; // FrameIndex for return slot.
42 unsigned GP, SP, RP; // FIXME - clean this mess up
43 public:
44
45 unsigned VirtGPR; // this is public so it can be accessed in the selector
46 // for ISD::RET down below. add an accessor instead? FIXME
47
48 IA64TargetLowering(TargetMachine &TM) : TargetLowering(TM) {
Misha Brukman4633f1c2005-04-21 23:13:11 +000049
Duraid Madina9b9d45f2005-03-17 18:17:03 +000050 // register class for general registers
51 addRegisterClass(MVT::i64, IA64::GRRegisterClass);
52
53 // register class for FP registers
54 addRegisterClass(MVT::f64, IA64::FPRegisterClass);
Misha Brukman4633f1c2005-04-21 23:13:11 +000055
56 // register class for predicate registers
Duraid Madina9b9d45f2005-03-17 18:17:03 +000057 addRegisterClass(MVT::i1, IA64::PRRegisterClass);
Misha Brukman4633f1c2005-04-21 23:13:11 +000058
Chris Lattnerda4d4692005-04-09 03:22:37 +000059 setOperationAction(ISD::BRCONDTWOWAY , MVT::Other, Expand);
Nate Begeman7cbd5252005-08-16 19:49:35 +000060 setOperationAction(ISD::BRTWOWAY_CC , MVT::Other, Expand);
Duraid Madina9b9d45f2005-03-17 18:17:03 +000061 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
62
Misha Brukman4633f1c2005-04-21 23:13:11 +000063 setSetCCResultType(MVT::i1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +000064 setShiftAmountType(MVT::i64);
65
66 setOperationAction(ISD::EXTLOAD , MVT::i1 , Promote);
Duraid Madina9b9d45f2005-03-17 18:17:03 +000067
68 setOperationAction(ISD::ZEXTLOAD , MVT::i1 , Expand);
Duraid Madina9b9d45f2005-03-17 18:17:03 +000069
70 setOperationAction(ISD::SEXTLOAD , MVT::i1 , Expand);
71 setOperationAction(ISD::SEXTLOAD , MVT::i8 , Expand);
72 setOperationAction(ISD::SEXTLOAD , MVT::i16 , Expand);
Duraid Madinac4ccc2d2005-04-14 08:37:32 +000073 setOperationAction(ISD::SEXTLOAD , MVT::i32 , Expand);
Duraid Madina9b9d45f2005-03-17 18:17:03 +000074
75 setOperationAction(ISD::SREM , MVT::f32 , Expand);
76 setOperationAction(ISD::SREM , MVT::f64 , Expand);
77
78 setOperationAction(ISD::UREM , MVT::f32 , Expand);
79 setOperationAction(ISD::UREM , MVT::f64 , Expand);
Misha Brukman4633f1c2005-04-21 23:13:11 +000080
Duraid Madina9b9d45f2005-03-17 18:17:03 +000081 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
82 setOperationAction(ISD::MEMSET , MVT::Other, Expand);
83 setOperationAction(ISD::MEMCPY , MVT::Other, Expand);
84
Chris Lattner17234b72005-04-30 04:26:06 +000085 // We don't support sin/cos/sqrt
86 setOperationAction(ISD::FSIN , MVT::f64, Expand);
87 setOperationAction(ISD::FCOS , MVT::f64, Expand);
88 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
89 setOperationAction(ISD::FSIN , MVT::f32, Expand);
90 setOperationAction(ISD::FCOS , MVT::f32, Expand);
91 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
92
Andrew Lenharthb5884d32005-05-04 19:25:37 +000093 //IA64 has these, but they are not implemented
Chris Lattner1f38e5c2005-05-11 05:03:56 +000094 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
95 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Andrew Lenharthb5884d32005-05-04 19:25:37 +000096
Duraid Madina9b9d45f2005-03-17 18:17:03 +000097 computeRegisterProperties();
98
99 addLegalFPImmediate(+0.0);
100 addLegalFPImmediate(+1.0);
101 addLegalFPImmediate(-0.0);
102 addLegalFPImmediate(-1.0);
103 }
104
105 /// LowerArguments - This hook must be implemented to indicate how we should
106 /// lower the arguments for the specified function, into the specified DAG.
107 virtual std::vector<SDOperand>
108 LowerArguments(Function &F, SelectionDAG &DAG);
109
110 /// LowerCallTo - This hook lowers an abstract call to a function into an
111 /// actual call.
112 virtual std::pair<SDOperand, SDOperand>
Chris Lattnerc57f6822005-05-12 19:56:45 +0000113 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
Chris Lattneradf6a962005-05-13 18:50:42 +0000114 bool isTailCall, SDOperand Callee, ArgListTy &Args,
115 SelectionDAG &DAG);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000116
Chris Lattnere0fe2252005-07-05 19:58:54 +0000117 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
118 Value *VAListV, SelectionDAG &DAG);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000119 virtual std::pair<SDOperand,SDOperand>
Chris Lattnere0fe2252005-07-05 19:58:54 +0000120 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
121 const Type *ArgTy, SelectionDAG &DAG);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000122
123 void restoreGP_SP_RP(MachineBasicBlock* BB)
124 {
125 BuildMI(BB, IA64::MOV, 1, IA64::r1).addReg(GP);
126 BuildMI(BB, IA64::MOV, 1, IA64::r12).addReg(SP);
127 BuildMI(BB, IA64::MOV, 1, IA64::rp).addReg(RP);
128 }
129
Duraid Madinabeeaab22005-03-31 12:31:11 +0000130 void restoreSP_RP(MachineBasicBlock* BB)
131 {
132 BuildMI(BB, IA64::MOV, 1, IA64::r12).addReg(SP);
133 BuildMI(BB, IA64::MOV, 1, IA64::rp).addReg(RP);
134 }
135
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000136 void restoreRP(MachineBasicBlock* BB)
137 {
138 BuildMI(BB, IA64::MOV, 1, IA64::rp).addReg(RP);
139 }
140
141 void restoreGP(MachineBasicBlock* BB)
142 {
143 BuildMI(BB, IA64::MOV, 1, IA64::r1).addReg(GP);
144 }
145
146 };
147}
148
149
150std::vector<SDOperand>
151IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
152 std::vector<SDOperand> ArgValues;
153
154 //
155 // add beautiful description of IA64 stack frame format
156 // here (from intel 24535803.pdf most likely)
157 //
158 MachineFunction &MF = DAG.getMachineFunction();
159 MachineFrameInfo *MFI = MF.getFrameInfo();
160
161 GP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
162 SP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
163 RP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
164
165 MachineBasicBlock& BB = MF.front();
166
Misha Brukman4633f1c2005-04-21 23:13:11 +0000167 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000168 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
Misha Brukman4633f1c2005-04-21 23:13:11 +0000169
170 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000171 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
Misha Brukman4633f1c2005-04-21 23:13:11 +0000172
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000173 unsigned argVreg[8];
174 unsigned argPreg[8];
175 unsigned argOpc[8];
176
Duraid Madinabeeaab22005-03-31 12:31:11 +0000177 unsigned used_FPArgs = 0; // how many FP args have been used so far?
Misha Brukman4633f1c2005-04-21 23:13:11 +0000178
Duraid Madinabeeaab22005-03-31 12:31:11 +0000179 unsigned ArgOffset = 0;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000180 int count = 0;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000181
Alkis Evlogimenos12cf3852005-03-19 09:22:17 +0000182 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000183 {
184 SDOperand newroot, argt;
185 if(count < 8) { // need to fix this logic? maybe.
Misha Brukman7847fca2005-04-22 17:54:37 +0000186
187 switch (getValueType(I->getType())) {
188 default:
189 std::cerr << "ERROR in LowerArgs: unknown type "
190 << getValueType(I->getType()) << "\n";
191 abort();
192 case MVT::f32:
193 // fixme? (well, will need to for weird FP structy stuff,
194 // see intel ABI docs)
195 case MVT::f64:
196//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
197 MF.addLiveIn(args_FP[used_FPArgs]); // mark this reg as liveIn
198 // floating point args go into f8..f15 as-needed, the increment
199 argVreg[count] = // is below..:
200 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::f64));
201 // FP args go into f8..f15 as needed: (hence the ++)
202 argPreg[count] = args_FP[used_FPArgs++];
203 argOpc[count] = IA64::FMOV;
Chris Lattner707ebc52005-08-16 21:56:37 +0000204 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
Chris Lattner0a00bec2005-08-22 21:33:11 +0000205 MVT::f64);
206 if (I->getType() == Type::FloatTy)
207 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt);
Misha Brukman7847fca2005-04-22 17:54:37 +0000208 break;
209 case MVT::i1: // NOTE: as far as C abi stuff goes,
210 // bools are just boring old ints
211 case MVT::i8:
212 case MVT::i16:
213 case MVT::i32:
214 case MVT::i64:
215//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
216 MF.addLiveIn(args_int[count]); // mark this register as liveIn
217 argVreg[count] =
218 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
219 argPreg[count] = args_int[count];
220 argOpc[count] = IA64::MOV;
221 argt = newroot =
Chris Lattner707ebc52005-08-16 21:56:37 +0000222 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
Misha Brukman7847fca2005-04-22 17:54:37 +0000223 if ( getValueType(I->getType()) != MVT::i64)
224 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
225 newroot);
226 break;
227 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000228 } else { // more than 8 args go into the frame
Misha Brukman7847fca2005-04-22 17:54:37 +0000229 // Create the frame index object for this incoming parameter...
230 ArgOffset = 16 + 8 * (count - 8);
231 int FI = MFI->CreateFixedObject(8, ArgOffset);
Jeff Cohen00b168892005-07-27 06:12:32 +0000232
Misha Brukman7847fca2005-04-22 17:54:37 +0000233 // Create the SelectionDAG nodes corresponding to a load
234 //from this parameter
235 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
236 argt = newroot = DAG.getLoad(getValueType(I->getType()),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000237 DAG.getEntryNode(), FIN, DAG.getSrcValue(NULL));
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000238 }
239 ++count;
240 DAG.setRoot(newroot.getValue(1));
241 ArgValues.push_back(argt);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000242 }
Duraid Madinabeeaab22005-03-31 12:31:11 +0000243
Misha Brukman4633f1c2005-04-21 23:13:11 +0000244
Duraid Madinabeeaab22005-03-31 12:31:11 +0000245 // Create a vreg to hold the output of (what will become)
246 // the "alloc" instruction
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000247 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
248 BuildMI(&BB, IA64::PSEUDO_ALLOC, 0, VirtGPR);
249 // we create a PSEUDO_ALLOC (pseudo)instruction for now
250
251 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
252
253 // hmm:
254 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
255 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
256 // ..hmm.
257
258 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
259
260 // hmm:
261 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
262 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
263 // ..hmm.
264
Duraid Madinabeeaab22005-03-31 12:31:11 +0000265 unsigned tempOffset=0;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000266
Duraid Madinabeeaab22005-03-31 12:31:11 +0000267 // if this is a varargs function, we simply lower llvm.va_start by
268 // pointing to the first entry
269 if(F.isVarArg()) {
270 tempOffset=0;
271 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000272 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000273
Duraid Madinabeeaab22005-03-31 12:31:11 +0000274 // here we actually do the moving of args, and store them to the stack
275 // too if this is a varargs function:
276 for (int i = 0; i < count && i < 8; ++i) {
277 BuildMI(&BB, argOpc[i], 1, argVreg[i]).addReg(argPreg[i]);
278 if(F.isVarArg()) {
279 // if this is a varargs function, we copy the input registers to the stack
280 int FI = MFI->CreateFixedObject(8, tempOffset);
281 tempOffset+=8; //XXX: is it safe to use r22 like this?
282 BuildMI(&BB, IA64::MOV, 1, IA64::r22).addFrameIndex(FI);
283 // FIXME: we should use st8.spill here, one day
284 BuildMI(&BB, IA64::ST8, 1, IA64::r22).addReg(argPreg[i]);
285 }
286 }
287
Duraid Madinaca494fd2005-04-12 14:54:44 +0000288 // Finally, inform the code generator which regs we return values in.
289 // (see the ISD::RET: case down below)
290 switch (getValueType(F.getReturnType())) {
291 default: assert(0 && "i have no idea where to return this type!");
292 case MVT::isVoid: break;
293 case MVT::i1:
294 case MVT::i8:
295 case MVT::i16:
296 case MVT::i32:
297 case MVT::i64:
298 MF.addLiveOut(IA64::r8);
299 break;
300 case MVT::f32:
301 case MVT::f64:
302 MF.addLiveOut(IA64::F8);
303 break;
304 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000305
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000306 return ArgValues;
307}
Misha Brukman4633f1c2005-04-21 23:13:11 +0000308
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000309std::pair<SDOperand, SDOperand>
310IA64TargetLowering::LowerCallTo(SDOperand Chain,
Misha Brukman7847fca2005-04-22 17:54:37 +0000311 const Type *RetTy, bool isVarArg,
Chris Lattneradf6a962005-05-13 18:50:42 +0000312 unsigned CallingConv, bool isTailCall,
Jeff Cohen00b168892005-07-27 06:12:32 +0000313 SDOperand Callee, ArgListTy &Args,
Misha Brukman7847fca2005-04-22 17:54:37 +0000314 SelectionDAG &DAG) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000315
316 MachineFunction &MF = DAG.getMachineFunction();
317
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000318 unsigned NumBytes = 16;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000319 unsigned outRegsUsed = 0;
320
321 if (Args.size() > 8) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000322 NumBytes += (Args.size() - 8) * 8;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000323 outRegsUsed = 8;
324 } else {
325 outRegsUsed = Args.size();
326 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000327
Duraid Madinabeeaab22005-03-31 12:31:11 +0000328 // FIXME? this WILL fail if we ever try to pass around an arg that
329 // consumes more than a single output slot (a 'real' double, int128
330 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
331 // registers we use. Hopefully, the assembler will notice.
332 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
333 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000334
Chris Lattner16cd04d2005-05-12 23:24:06 +0000335 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000336 DAG.getConstant(NumBytes, getPointerTy()));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000337
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000338 std::vector<SDOperand> args_to_use;
339 for (unsigned i = 0, e = Args.size(); i != e; ++i)
340 {
341 switch (getValueType(Args[i].second)) {
342 default: assert(0 && "unexpected argument type!");
343 case MVT::i1:
344 case MVT::i8:
345 case MVT::i16:
346 case MVT::i32:
Misha Brukman7847fca2005-04-22 17:54:37 +0000347 //promote to 64-bits, sign/zero extending based on type
348 //of the argument
349 if(Args[i].second->isSigned())
350 Args[i].first = DAG.getNode(ISD::SIGN_EXTEND, MVT::i64,
351 Args[i].first);
352 else
353 Args[i].first = DAG.getNode(ISD::ZERO_EXTEND, MVT::i64,
354 Args[i].first);
355 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000356 case MVT::f32:
Misha Brukman7847fca2005-04-22 17:54:37 +0000357 //promote to 64-bits
358 Args[i].first = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Args[i].first);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000359 case MVT::f64:
360 case MVT::i64:
361 break;
362 }
363 args_to_use.push_back(Args[i].first);
364 }
365
366 std::vector<MVT::ValueType> RetVals;
367 MVT::ValueType RetTyVT = getValueType(RetTy);
368 if (RetTyVT != MVT::isVoid)
369 RetVals.push_back(RetTyVT);
370 RetVals.push_back(MVT::Other);
371
372 SDOperand TheCall = SDOperand(DAG.getCall(RetVals, Chain,
Misha Brukman7847fca2005-04-22 17:54:37 +0000373 Callee, args_to_use), 0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000374 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
Chris Lattner16cd04d2005-05-12 23:24:06 +0000375 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000376 DAG.getConstant(NumBytes, getPointerTy()));
377 return std::make_pair(TheCall, Chain);
378}
379
Chris Lattnere0fe2252005-07-05 19:58:54 +0000380SDOperand
381IA64TargetLowering::LowerVAStart(SDOperand Chain, SDOperand VAListP,
382 Value *VAListV, SelectionDAG &DAG) {
Andrew Lenharth558bc882005-06-18 18:34:52 +0000383 // vastart just stores the address of the VarArgsFrameIndex slot.
384 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
Chris Lattnere0fe2252005-07-05 19:58:54 +0000385 return DAG.getNode(ISD::STORE, MVT::Other, Chain, FR,
386 VAListP, DAG.getSrcValue(VAListV));
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000387}
388
389std::pair<SDOperand,SDOperand> IA64TargetLowering::
Chris Lattnere0fe2252005-07-05 19:58:54 +0000390LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
391 const Type *ArgTy, SelectionDAG &DAG) {
Duraid Madinabeeaab22005-03-31 12:31:11 +0000392
393 MVT::ValueType ArgVT = getValueType(ArgTy);
Chris Lattnere0fe2252005-07-05 19:58:54 +0000394 SDOperand Val = DAG.getLoad(MVT::i64, Chain,
395 VAListP, DAG.getSrcValue(VAListV));
396 SDOperand Result = DAG.getLoad(ArgVT, DAG.getEntryNode(), Val,
397 DAG.getSrcValue(NULL));
Andrew Lenharth558bc882005-06-18 18:34:52 +0000398 unsigned Amt;
399 if (ArgVT == MVT::i32 || ArgVT == MVT::f32)
400 Amt = 8;
401 else {
402 assert((ArgVT == MVT::i64 || ArgVT == MVT::f64) &&
403 "Other types should have been promoted for varargs!");
404 Amt = 8;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000405 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000406 Val = DAG.getNode(ISD::ADD, Val.getValueType(), Val,
Andrew Lenharth558bc882005-06-18 18:34:52 +0000407 DAG.getConstant(Amt, Val.getValueType()));
408 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain,
Chris Lattnere0fe2252005-07-05 19:58:54 +0000409 Val, VAListP, DAG.getSrcValue(VAListV));
Duraid Madinabeeaab22005-03-31 12:31:11 +0000410 return std::make_pair(Result, Chain);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000411}
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000412
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000413namespace {
414
415 //===--------------------------------------------------------------------===//
416 /// ISel - IA64 specific code to select IA64 machine instructions for
417 /// SelectionDAG operations.
418 ///
419 class ISel : public SelectionDAGISel {
420 /// IA64Lowering - This object fully describes how to lower LLVM code to an
421 /// IA64-specific SelectionDAG.
422 IA64TargetLowering IA64Lowering;
Duraid Madinab2322562005-04-26 07:23:02 +0000423 SelectionDAG *ISelDAG; // Hack to support us having a dag->dag transform
424 // for sdiv and udiv until it is put into the future
425 // dag combiner
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000426
427 /// ExprMap - As shared expressions are codegen'd, we keep track of which
428 /// vreg the value is produced in, so we only emit one copy of each compiled
429 /// tree.
430 std::map<SDOperand, unsigned> ExprMap;
431 std::set<SDOperand> LoweredTokens;
432
433 public:
Duraid Madinab2322562005-04-26 07:23:02 +0000434 ISel(TargetMachine &TM) : SelectionDAGISel(IA64Lowering), IA64Lowering(TM),
435 ISelDAG(0) { }
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000436
437 /// InstructionSelectBasicBlock - This callback is invoked by
438 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
439 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
440
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000441 unsigned SelectExpr(SDOperand N);
442 void Select(SDOperand N);
Duraid Madinab2322562005-04-26 07:23:02 +0000443 // a dag->dag to transform mul-by-constant-int to shifts+adds/subs
444 SDOperand BuildConstmulSequence(SDOperand N);
445
Chris Lattner47c08892005-08-22 18:28:09 +0000446 const char *getPassName() const { return "IA64 Instruction Selector"; }
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000447 };
448}
449
450/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
451/// when it has created a SelectionDAG for us to codegen.
452void ISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
453
454 // Codegen the basic block.
Duraid Madinab2322562005-04-26 07:23:02 +0000455 ISelDAG = &DAG;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000456 Select(DAG.getRoot());
457
458 // Clear state used for selection.
459 ExprMap.clear();
460 LoweredTokens.clear();
Duraid Madinab2322562005-04-26 07:23:02 +0000461 ISelDAG = 0;
462}
463
Duraid Madinab2322562005-04-26 07:23:02 +0000464// strip leading '0' characters from a string
465void munchLeadingZeros(std::string& inString) {
466 while(inString.c_str()[0]=='0') {
467 inString.erase(0, 1);
468 }
469}
470
471// strip trailing '0' characters from a string
472void munchTrailingZeros(std::string& inString) {
473 int curPos=inString.length()-1;
474
475 while(inString.c_str()[curPos]=='0') {
476 inString.erase(curPos, 1);
477 curPos--;
478 }
479}
480
481// return how many consecutive '0' characters are at the end of a string
482unsigned int countTrailingZeros(std::string& inString) {
483 int curPos=inString.length()-1;
484 unsigned int zeroCount=0;
485 // assert goes here
486 while(inString.c_str()[curPos--]=='0') {
487 zeroCount++;
488 }
489 return zeroCount;
490}
491
492// booth encode a string of '1' and '0' characters (returns string of 'P' (+1)
493// '0' and 'N' (-1) characters)
494void boothEncode(std::string inString, std::string& boothEncodedString) {
495
496 int curpos=0;
497 int replacements=0;
498 int lim=inString.size();
499
500 while(curpos<lim) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000501 if(inString[curpos]=='1') { // if we see a '1', look for a run of them
Duraid Madinab2322562005-04-26 07:23:02 +0000502 int runlength=0;
503 std::string replaceString="N";
Jeff Cohen00b168892005-07-27 06:12:32 +0000504
Duraid Madinab2322562005-04-26 07:23:02 +0000505 // find the run length
506 for(;inString[curpos+runlength]=='1';runlength++) ;
507
508 for(int i=0; i<runlength-1; i++)
Jeff Cohen00b168892005-07-27 06:12:32 +0000509 replaceString+="0";
Duraid Madinab2322562005-04-26 07:23:02 +0000510 replaceString+="1";
511
512 if(runlength>1) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000513 inString.replace(curpos, runlength+1, replaceString);
514 curpos+=runlength-1;
Duraid Madinab2322562005-04-26 07:23:02 +0000515 } else
Jeff Cohen00b168892005-07-27 06:12:32 +0000516 curpos++;
Duraid Madinab2322562005-04-26 07:23:02 +0000517 } else { // a zero, we just keep chugging along
518 curpos++;
519 }
520 }
521
522 // clean up (trim the string, reverse it and turn '1's into 'P's)
523 munchTrailingZeros(inString);
524 boothEncodedString="";
525
526 for(int i=inString.size()-1;i>=0;i--)
527 if(inString[i]=='1')
528 boothEncodedString+="P";
529 else
530 boothEncodedString+=inString[i];
531
532}
533
534struct shiftaddblob { // this encodes stuff like (x=) "A << B [+-] C << D"
535 unsigned firstVal; // A
Jeff Cohen00b168892005-07-27 06:12:32 +0000536 unsigned firstShift; // B
Duraid Madinab2322562005-04-26 07:23:02 +0000537 unsigned secondVal; // C
538 unsigned secondShift; // D
539 bool isSub;
540};
541
542/* this implements Lefevre's "pattern-based" constant multiplication,
543 * see "Multiplication by an Integer Constant", INRIA report 1999-06
544 *
545 * TODO: implement a method to try rewriting P0N<->0PP / N0P<->0NN
546 * to get better booth encodings - this does help in practice
547 * TODO: weight shifts appropriately (most architectures can't
548 * fuse a shift and an add for arbitrary shift amounts) */
549unsigned lefevre(const std::string inString,
550 std::vector<struct shiftaddblob> &ops) {
551 std::string retstring;
552 std::string s = inString;
553 munchTrailingZeros(s);
554
555 int length=s.length()-1;
556
557 if(length==0) {
558 return(0);
559 }
560
561 std::vector<int> p,n;
Jeff Cohen00b168892005-07-27 06:12:32 +0000562
Duraid Madinab2322562005-04-26 07:23:02 +0000563 for(int i=0; i<=length; i++) {
564 if (s.c_str()[length-i]=='P') {
565 p.push_back(i);
566 } else if (s.c_str()[length-i]=='N') {
567 n.push_back(i);
568 }
569 }
570
571 std::string t, u;
Chris Lattner4a209972005-08-25 00:03:21 +0000572 int c = 0;
Duraid Madina4706c032005-04-26 09:42:50 +0000573 bool f;
Duraid Madinab2322562005-04-26 07:23:02 +0000574 std::map<const int, int> w;
575
Duraid Madina85d5f602005-04-27 11:57:39 +0000576 for(unsigned i=0; i<p.size(); i++) {
577 for(unsigned j=0; j<i; j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000578 w[p[i]-p[j]]++;
579 }
580 }
581
Duraid Madina85d5f602005-04-27 11:57:39 +0000582 for(unsigned i=1; i<n.size(); i++) {
583 for(unsigned j=0; j<i; j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000584 w[n[i]-n[j]]++;
585 }
586 }
587
Duraid Madina85d5f602005-04-27 11:57:39 +0000588 for(unsigned i=0; i<p.size(); i++) {
589 for(unsigned j=0; j<n.size(); j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000590 w[-abs(p[i]-n[j])]++;
591 }
592 }
593
594 std::map<const int, int>::const_iterator ii;
595 std::vector<int> d;
596 std::multimap<int, int> sorted_by_value;
597
598 for(ii = w.begin(); ii!=w.end(); ii++)
599 sorted_by_value.insert(std::pair<int, int>((*ii).second,(*ii).first));
600
601 for (std::multimap<int, int>::iterator it = sorted_by_value.begin();
602 it != sorted_by_value.end(); ++it) {
603 d.push_back((*it).second);
604 }
605
606 int int_W=0;
607 int int_d;
608
609 while(d.size()>0 && (w[int_d=d.back()] > int_W)) {
610 d.pop_back();
611 retstring=s; // hmmm
612 int x=0;
613 int z=abs(int_d)-1;
614
615 if(int_d>0) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000616
Duraid Madina85d5f602005-04-27 11:57:39 +0000617 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000618 if( ((base+z+1) < retstring.size()) &&
619 retstring.c_str()[base]=='P' &&
620 retstring.c_str()[base+z+1]=='P')
621 {
622 // match
623 x++;
624 retstring.replace(base, 1, "0");
625 retstring.replace(base+z+1, 1, "p");
626 }
Duraid Madinab2322562005-04-26 07:23:02 +0000627 }
628
Duraid Madina85d5f602005-04-27 11:57:39 +0000629 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000630 if( ((base+z+1) < retstring.size()) &&
631 retstring.c_str()[base]=='N' &&
632 retstring.c_str()[base+z+1]=='N')
633 {
634 // match
635 x++;
636 retstring.replace(base, 1, "0");
637 retstring.replace(base+z+1, 1, "n");
638 }
Duraid Madinab2322562005-04-26 07:23:02 +0000639 }
640
641 } else {
Duraid Madina85d5f602005-04-27 11:57:39 +0000642 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000643 if( ((base+z+1) < retstring.size()) &&
644 ((retstring.c_str()[base]=='P' &&
645 retstring.c_str()[base+z+1]=='N') ||
646 (retstring.c_str()[base]=='N' &&
647 retstring.c_str()[base+z+1]=='P')) ) {
648 // match
649 x++;
650
651 if(retstring.c_str()[base]=='P') {
652 retstring.replace(base, 1, "0");
653 retstring.replace(base+z+1, 1, "p");
654 } else { // retstring[base]=='N'
655 retstring.replace(base, 1, "0");
656 retstring.replace(base+z+1, 1, "n");
657 }
658 }
Duraid Madinab2322562005-04-26 07:23:02 +0000659 }
660 }
661
662 if(x>int_W) {
663 int_W = x;
664 t = retstring;
665 c = int_d; // tofix
666 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000667
Duraid Madinab2322562005-04-26 07:23:02 +0000668 } d.pop_back(); // hmm
669
670 u = t;
Jeff Cohen00b168892005-07-27 06:12:32 +0000671
Duraid Madina85d5f602005-04-27 11:57:39 +0000672 for(unsigned i=0; i<t.length(); i++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000673 if(t.c_str()[i]=='p' || t.c_str()[i]=='n')
674 t.replace(i, 1, "0");
675 }
676
Duraid Madina85d5f602005-04-27 11:57:39 +0000677 for(unsigned i=0; i<u.length(); i++) {
Duraid Madina8a3042c2005-05-09 13:18:34 +0000678 if(u[i]=='P' || u[i]=='N')
Duraid Madinab2322562005-04-26 07:23:02 +0000679 u.replace(i, 1, "0");
Duraid Madina8a3042c2005-05-09 13:18:34 +0000680 if(u[i]=='p')
Duraid Madinab2322562005-04-26 07:23:02 +0000681 u.replace(i, 1, "P");
Duraid Madina8a3042c2005-05-09 13:18:34 +0000682 if(u[i]=='n')
Duraid Madinab2322562005-04-26 07:23:02 +0000683 u.replace(i, 1, "N");
684 }
685
686 if( c<0 ) {
Duraid Madina4706c032005-04-26 09:42:50 +0000687 f=true;
Duraid Madinab2322562005-04-26 07:23:02 +0000688 c=-c;
689 } else
Duraid Madina4706c032005-04-26 09:42:50 +0000690 f=false;
Jeff Cohen00b168892005-07-27 06:12:32 +0000691
Duraid Madina8a3042c2005-05-09 13:18:34 +0000692 int pos=0;
693 while(u[pos]=='0')
694 pos++;
695
696 bool hit=(u[pos]=='N');
Duraid Madinab2322562005-04-26 07:23:02 +0000697
698 int g=0;
699 if(hit) {
700 g=1;
Duraid Madina85d5f602005-04-27 11:57:39 +0000701 for(unsigned p=0; p<u.length(); p++) {
Duraid Madina8a3042c2005-05-09 13:18:34 +0000702 bool isP=(u[p]=='P');
703 bool isN=(u[p]=='N');
Duraid Madinab2322562005-04-26 07:23:02 +0000704
705 if(isP)
Jeff Cohen00b168892005-07-27 06:12:32 +0000706 u.replace(p, 1, "N");
Duraid Madinab2322562005-04-26 07:23:02 +0000707 if(isN)
Jeff Cohen00b168892005-07-27 06:12:32 +0000708 u.replace(p, 1, "P");
Duraid Madinab2322562005-04-26 07:23:02 +0000709 }
710 }
711
712 munchLeadingZeros(u);
713
714 int i = lefevre(u, ops);
715
716 shiftaddblob blob;
Jeff Cohen00b168892005-07-27 06:12:32 +0000717
Duraid Madinab2322562005-04-26 07:23:02 +0000718 blob.firstVal=i; blob.firstShift=c;
719 blob.isSub=f;
720 blob.secondVal=i; blob.secondShift=0;
721
722 ops.push_back(blob);
723
724 i = ops.size();
725
726 munchLeadingZeros(t);
727
728 if(t.length()==0)
729 return i;
730
731 if(t.c_str()[0]!='P') {
732 g=2;
Duraid Madina85d5f602005-04-27 11:57:39 +0000733 for(unsigned p=0; p<t.length(); p++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000734 bool isP=(t.c_str()[p]=='P');
735 bool isN=(t.c_str()[p]=='N');
736
737 if(isP)
Jeff Cohen00b168892005-07-27 06:12:32 +0000738 t.replace(p, 1, "N");
Duraid Madinab2322562005-04-26 07:23:02 +0000739 if(isN)
Jeff Cohen00b168892005-07-27 06:12:32 +0000740 t.replace(p, 1, "P");
Duraid Madinab2322562005-04-26 07:23:02 +0000741 }
742 }
743
744 int j = lefevre(t, ops);
745
746 int trail=countTrailingZeros(u);
747 blob.secondVal=i; blob.secondShift=trail;
748
749 trail=countTrailingZeros(t);
750 blob.firstVal=j; blob.firstShift=trail;
751
752 switch(g) {
753 case 0:
754 blob.isSub=false; // first + second
755 break;
756 case 1:
757 blob.isSub=true; // first - second
758 break;
759 case 2:
760 blob.isSub=true; // second - first
761 int tmpval, tmpshift;
762 tmpval=blob.firstVal;
763 tmpshift=blob.firstShift;
764 blob.firstVal=blob.secondVal;
765 blob.firstShift=blob.secondShift;
766 blob.secondVal=tmpval;
767 blob.secondShift=tmpshift;
768 break;
769 //assert
770 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000771
Duraid Madinab2322562005-04-26 07:23:02 +0000772 ops.push_back(blob);
773 return ops.size();
774}
775
776SDOperand ISel::BuildConstmulSequence(SDOperand N) {
777 //FIXME: we should shortcut this stuff for multiplies by 2^n+1
778 // in particular, *3 is nicer as *2+1, not *4-1
779 int64_t constant=cast<ConstantSDNode>(N.getOperand(1))->getValue();
780
781 bool flippedSign;
782 unsigned preliminaryShift=0;
783
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000784 assert(constant != 0 && "erk, you're trying to multiply by constant zero\n");
Duraid Madinab2322562005-04-26 07:23:02 +0000785
786 // first, we make the constant to multiply by positive
787 if(constant<0) {
788 constant=-constant;
789 flippedSign=true;
790 } else {
791 flippedSign=false;
792 }
793
794 // next, we make it odd.
795 for(; (constant%2==0); preliminaryShift++)
796 constant>>=1;
797
798 //OK, we have a positive, odd number of 64 bits or less. Convert it
799 //to a binary string, constantString[0] is the LSB
800 char constantString[65];
801 for(int i=0; i<64; i++)
802 constantString[i]='0'+((constant>>i)&0x1);
803 constantString[64]=0;
804
805 // now, Booth encode it
806 std::string boothEncodedString;
807 boothEncode(constantString, boothEncodedString);
808
809 std::vector<struct shiftaddblob> ops;
810 // do the transformation, filling out 'ops'
811 lefevre(boothEncodedString, ops);
812
Duraid Madinae75a24a2005-05-15 14:44:13 +0000813 assert(ops.size() < 80 && "constmul code has gone haywire\n");
814 SDOperand results[80]; // temporary results (of adds/subs of shifts)
Jeff Cohen00b168892005-07-27 06:12:32 +0000815
Duraid Madinab2322562005-04-26 07:23:02 +0000816 // now turn 'ops' into DAG bits
Duraid Madina85d5f602005-04-27 11:57:39 +0000817 for(unsigned i=0; i<ops.size(); i++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000818 SDOperand amt = ISelDAG->getConstant(ops[i].firstShift, MVT::i64);
819 SDOperand val = (ops[i].firstVal == 0) ? N.getOperand(0) :
820 results[ops[i].firstVal-1];
821 SDOperand left = ISelDAG->getNode(ISD::SHL, MVT::i64, val, amt);
822 amt = ISelDAG->getConstant(ops[i].secondShift, MVT::i64);
823 val = (ops[i].secondVal == 0) ? N.getOperand(0) :
824 results[ops[i].secondVal-1];
825 SDOperand right = ISelDAG->getNode(ISD::SHL, MVT::i64, val, amt);
826 if(ops[i].isSub)
827 results[i] = ISelDAG->getNode(ISD::SUB, MVT::i64, left, right);
828 else
829 results[i] = ISelDAG->getNode(ISD::ADD, MVT::i64, left, right);
830 }
831
832 // don't forget flippedSign and preliminaryShift!
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000833 SDOperand shiftedresult;
Duraid Madinab2322562005-04-26 07:23:02 +0000834 if(preliminaryShift) {
835 SDOperand finalshift = ISelDAG->getConstant(preliminaryShift, MVT::i64);
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000836 shiftedresult = ISelDAG->getNode(ISD::SHL, MVT::i64,
Jeff Cohen00b168892005-07-27 06:12:32 +0000837 results[ops.size()-1], finalshift);
Duraid Madinab2322562005-04-26 07:23:02 +0000838 } else { // there was no preliminary divide-by-power-of-2 required
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000839 shiftedresult = results[ops.size()-1];
Duraid Madinab2322562005-04-26 07:23:02 +0000840 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000841
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000842 SDOperand finalresult;
843 if(flippedSign) { // if we were multiplying by a negative constant:
844 SDOperand zero = ISelDAG->getConstant(0, MVT::i64);
845 // subtract the result from 0 to flip its sign
846 finalresult = ISelDAG->getNode(ISD::SUB, MVT::i64, zero, shiftedresult);
847 } else { // there was no preliminary multiply by -1 required
848 finalresult = shiftedresult;
849 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000850
851 return finalresult;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000852}
853
Duraid Madina4826a072005-04-06 09:55:17 +0000854/// ponderIntegerDivisionBy - When handling integer divides, if the divide
855/// is by a constant such that we can efficiently codegen it, this
856/// function says what to do. Currently, it returns 0 if the division must
857/// become a genuine divide, and 1 if the division can be turned into a
858/// right shift.
859static unsigned ponderIntegerDivisionBy(SDOperand N, bool isSigned,
860 unsigned& Imm) {
861 if (N.getOpcode() != ISD::Constant) return 0; // if not a divide by
862 // a constant, give up.
863
864 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
865
Chris Lattner0561b3f2005-08-02 19:26:06 +0000866 if (isPowerOf2_64(v)) { // if a division by a power of two, say so
867 Imm = Log2_64(v);
Duraid Madina4826a072005-04-06 09:55:17 +0000868 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000869 }
870
Duraid Madina4826a072005-04-06 09:55:17 +0000871 return 0; // fallthrough
872}
873
Duraid Madinac02780e2005-04-13 04:50:54 +0000874static unsigned ponderIntegerAndWith(SDOperand N, unsigned& Imm) {
875 if (N.getOpcode() != ISD::Constant) return 0; // if not ANDing with
876 // a constant, give up.
877
878 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
879
Chris Lattner0561b3f2005-08-02 19:26:06 +0000880 if (isMask_64(v)) { // if ANDing with ((2^n)-1) for some n
Jim Laskeyffb973d2005-08-20 11:05:23 +0000881 Imm = Log2_64(v) + 1;
Duraid Madinac02780e2005-04-13 04:50:54 +0000882 return 1; // say so
Misha Brukman4633f1c2005-04-21 23:13:11 +0000883 }
884
Duraid Madinac02780e2005-04-13 04:50:54 +0000885 return 0; // fallthrough
886}
887
Duraid Madinaf55e4032005-04-07 12:33:38 +0000888static unsigned ponderIntegerAdditionWith(SDOperand N, unsigned& Imm) {
889 if (N.getOpcode() != ISD::Constant) return 0; // if not adding a
890 // constant, give up.
891 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
892
893 if (v <= 8191 && v >= -8192) { // if this constants fits in 14 bits, say so
894 Imm = v & 0x3FFF; // 14 bits
895 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000896 }
Duraid Madinaf55e4032005-04-07 12:33:38 +0000897 return 0; // fallthrough
898}
899
900static unsigned ponderIntegerSubtractionFrom(SDOperand N, unsigned& Imm) {
901 if (N.getOpcode() != ISD::Constant) return 0; // if not subtracting a
902 // constant, give up.
903 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
904
905 if (v <= 127 && v >= -128) { // if this constants fits in 8 bits, say so
906 Imm = v & 0xFF; // 8 bits
907 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000908 }
Duraid Madinaf55e4032005-04-07 12:33:38 +0000909 return 0; // fallthrough
910}
911
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000912unsigned ISel::SelectExpr(SDOperand N) {
913 unsigned Result;
914 unsigned Tmp1, Tmp2, Tmp3;
915 unsigned Opc = 0;
916 MVT::ValueType DestType = N.getValueType();
917
918 unsigned opcode = N.getOpcode();
919
920 SDNode *Node = N.Val;
921 SDOperand Op0, Op1;
922
923 if (Node->getOpcode() == ISD::CopyFromReg)
924 // Just use the specified register as our input.
Chris Lattner707ebc52005-08-16 21:56:37 +0000925 return cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Misha Brukman4633f1c2005-04-21 23:13:11 +0000926
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000927 unsigned &Reg = ExprMap[N];
928 if (Reg) return Reg;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000929
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +0000930 if (N.getOpcode() != ISD::CALL && N.getOpcode() != ISD::TAILCALL)
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000931 Reg = Result = (N.getValueType() != MVT::Other) ?
932 MakeReg(N.getValueType()) : 1;
933 else {
934 // If this is a call instruction, make sure to prepare ALL of the result
935 // values as well as the chain.
936 if (Node->getNumValues() == 1)
937 Reg = Result = 1; // Void call, just a chain.
938 else {
939 Result = MakeReg(Node->getValueType(0));
940 ExprMap[N.getValue(0)] = Result;
941 for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
942 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
943 ExprMap[SDOperand(Node, Node->getNumValues()-1)] = 1;
944 }
945 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000946
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000947 switch (N.getOpcode()) {
948 default:
949 Node->dump();
950 assert(0 && "Node not handled!\n");
951
952 case ISD::FrameIndex: {
953 Tmp1 = cast<FrameIndexSDNode>(N)->getIndex();
954 BuildMI(BB, IA64::MOV, 1, Result).addFrameIndex(Tmp1);
955 return Result;
956 }
957
958 case ISD::ConstantPool: {
Chris Lattner5839bf22005-08-26 17:15:30 +0000959 Tmp1 = BB->getParent()->getConstantPool()->
960 getConstantPoolIndex(cast<ConstantPoolSDNode>(N)->get());
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000961 IA64Lowering.restoreGP(BB); // FIXME: do i really need this?
962 BuildMI(BB, IA64::ADD, 2, Result).addConstantPoolIndex(Tmp1)
963 .addReg(IA64::r1);
964 return Result;
965 }
966
967 case ISD::ConstantFP: {
968 Tmp1 = Result; // Intermediate Register
969 if (cast<ConstantFPSDNode>(N)->getValue() < 0.0 ||
970 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
971 Tmp1 = MakeReg(MVT::f64);
972
973 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0) ||
974 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
975 BuildMI(BB, IA64::FMOV, 1, Tmp1).addReg(IA64::F0); // load 0.0
976 else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0) ||
977 cast<ConstantFPSDNode>(N)->isExactlyValue(-1.0))
978 BuildMI(BB, IA64::FMOV, 1, Tmp1).addReg(IA64::F1); // load 1.0
979 else
980 assert(0 && "Unexpected FP constant!");
981 if (Tmp1 != Result)
982 // we multiply by +1.0, negate (this is FNMA), and then add 0.0
983 BuildMI(BB, IA64::FNMA, 3, Result).addReg(Tmp1).addReg(IA64::F1)
Misha Brukman7847fca2005-04-22 17:54:37 +0000984 .addReg(IA64::F0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000985 return Result;
986 }
987
988 case ISD::DYNAMIC_STACKALLOC: {
989 // Generate both result values.
990 if (Result != 1)
991 ExprMap[N.getValue(1)] = 1; // Generate the token
992 else
993 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
994
995 // FIXME: We are currently ignoring the requested alignment for handling
996 // greater than the stack alignment. This will need to be revisited at some
997 // point. Align = N.getOperand(2);
998
999 if (!isa<ConstantSDNode>(N.getOperand(2)) ||
1000 cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
1001 std::cerr << "Cannot allocate stack object with greater alignment than"
1002 << " the stack alignment yet!";
1003 abort();
1004 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001005
1006/*
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001007 Select(N.getOperand(0));
1008 if (ConstantSDNode* CN = dyn_cast<ConstantSDNode>(N.getOperand(1)))
1009 {
1010 if (CN->getValue() < 32000)
1011 {
1012 BuildMI(BB, IA64::ADDIMM22, 2, IA64::r12).addReg(IA64::r12)
Misha Brukman7847fca2005-04-22 17:54:37 +00001013 .addImm(-CN->getValue());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001014 } else {
1015 Tmp1 = SelectExpr(N.getOperand(1));
1016 // Subtract size from stack pointer, thereby allocating some space.
1017 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
1018 }
1019 } else {
1020 Tmp1 = SelectExpr(N.getOperand(1));
1021 // Subtract size from stack pointer, thereby allocating some space.
1022 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
1023 }
Duraid Madinabeeaab22005-03-31 12:31:11 +00001024*/
1025 Select(N.getOperand(0));
1026 Tmp1 = SelectExpr(N.getOperand(1));
1027 // Subtract size from stack pointer, thereby allocating some space.
1028 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001029 // Put a pointer to the space into the result register, by copying the
1030 // stack pointer.
1031 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r12);
1032 return Result;
1033 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001034
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001035 case ISD::SELECT: {
1036 Tmp1 = SelectExpr(N.getOperand(0)); //Cond
1037 Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1038 Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
1039
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001040 unsigned bogoResult;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001041
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001042 switch (N.getOperand(1).getValueType()) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001043 default: assert(0 &&
Duraid Madina4bd708d2005-05-02 06:41:13 +00001044 "ISD::SELECT: 'select'ing something other than i1, i64 or f64!\n");
1045 // for i1, we load the condition into an integer register, then
1046 // conditionally copy Tmp2 and Tmp3 to Tmp1 in parallel (only one
1047 // of them will go through, since the integer register will hold
1048 // either 0 or 1)
1049 case MVT::i1: {
1050 bogoResult=MakeReg(MVT::i1);
1051
1052 // load the condition into an integer register
1053 unsigned condReg=MakeReg(MVT::i64);
1054 unsigned dummy=MakeReg(MVT::i64);
1055 BuildMI(BB, IA64::MOV, 1, dummy).addReg(IA64::r0);
1056 BuildMI(BB, IA64::TPCADDIMM22, 2, condReg).addReg(dummy)
1057 .addImm(1).addReg(Tmp1);
1058
1059 // initialize Result (bool) to false (hence UNC) and if
1060 // the select condition (condReg) is false (0), copy Tmp3
1061 BuildMI(BB, IA64::PCMPEQUNC, 3, bogoResult)
1062 .addReg(condReg).addReg(IA64::r0).addReg(Tmp3);
1063
1064 // now, if the selection condition is true, write 1 to the
1065 // result if Tmp2 is 1
1066 BuildMI(BB, IA64::TPCMPNE, 3, Result).addReg(bogoResult)
1067 .addReg(condReg).addReg(IA64::r0).addReg(Tmp2);
1068 break;
1069 }
1070 // for i64/f64, we just copy Tmp3 and then conditionally overwrite it
1071 // with Tmp2 if Tmp1 is true
Misha Brukman7847fca2005-04-22 17:54:37 +00001072 case MVT::i64:
1073 bogoResult=MakeReg(MVT::i64);
Duraid Madina4bd708d2005-05-02 06:41:13 +00001074 BuildMI(BB, IA64::MOV, 1, bogoResult).addReg(Tmp3);
1075 BuildMI(BB, IA64::CMOV, 2, Result).addReg(bogoResult).addReg(Tmp2)
1076 .addReg(Tmp1);
Misha Brukman7847fca2005-04-22 17:54:37 +00001077 break;
1078 case MVT::f64:
1079 bogoResult=MakeReg(MVT::f64);
Duraid Madina4bd708d2005-05-02 06:41:13 +00001080 BuildMI(BB, IA64::FMOV, 1, bogoResult).addReg(Tmp3);
1081 BuildMI(BB, IA64::CFMOV, 2, Result).addReg(bogoResult).addReg(Tmp2)
1082 .addReg(Tmp1);
Misha Brukman7847fca2005-04-22 17:54:37 +00001083 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001084 }
Jeff Cohen00b168892005-07-27 06:12:32 +00001085
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001086 return Result;
1087 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001088
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001089 case ISD::Constant: {
1090 unsigned depositPos=0;
1091 unsigned depositLen=0;
1092 switch (N.getValueType()) {
1093 default: assert(0 && "Cannot use constants of this type!");
1094 case MVT::i1: { // if a bool, we don't 'load' so much as generate
Misha Brukman7847fca2005-04-22 17:54:37 +00001095 // the constant:
1096 if(cast<ConstantSDNode>(N)->getValue()) // true:
1097 BuildMI(BB, IA64::CMPEQ, 2, Result).addReg(IA64::r0).addReg(IA64::r0);
1098 else // false:
1099 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(IA64::r0).addReg(IA64::r0);
1100 return Result; // early exit
1101 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001102 case MVT::i64: break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001103 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001104
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001105 int64_t immediate = cast<ConstantSDNode>(N)->getValue();
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001106
1107 if(immediate==0) { // if the constant is just zero,
1108 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r0); // just copy r0
1109 return Result; // early exit
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001110 }
1111
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001112 if (immediate <= 8191 && immediate >= -8192) {
1113 // if this constants fits in 14 bits, we use a mov the assembler will
1114 // turn into: "adds rDest=imm,r0" (and _not_ "andl"...)
1115 BuildMI(BB, IA64::MOVSIMM14, 1, Result).addSImm(immediate);
1116 return Result; // early exit
Misha Brukman4633f1c2005-04-21 23:13:11 +00001117 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001118
1119 if (immediate <= 2097151 && immediate >= -2097152) {
1120 // if this constants fits in 22 bits, we use a mov the assembler will
1121 // turn into: "addl rDest=imm,r0"
1122 BuildMI(BB, IA64::MOVSIMM22, 1, Result).addSImm(immediate);
1123 return Result; // early exit
Misha Brukman4633f1c2005-04-21 23:13:11 +00001124 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001125
1126 /* otherwise, our immediate is big, so we use movl */
1127 uint64_t Imm = immediate;
Duraid Madina21478e52005-04-11 07:16:39 +00001128 BuildMI(BB, IA64::MOVLIMM64, 1, Result).addImm64(Imm);
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001129 return Result;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001130 }
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001131
1132 case ISD::UNDEF: {
1133 BuildMI(BB, IA64::IDEF, 0, Result);
1134 return Result;
1135 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001136
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001137 case ISD::GlobalAddress: {
1138 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
1139 unsigned Tmp1 = MakeReg(MVT::i64);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001140
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001141 BuildMI(BB, IA64::ADD, 2, Tmp1).addGlobalAddress(GV).addReg(IA64::r1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001142 BuildMI(BB, IA64::LD8, 1, Result).addReg(Tmp1);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001143
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001144 return Result;
1145 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001146
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001147 case ISD::ExternalSymbol: {
1148 const char *Sym = cast<ExternalSymbolSDNode>(N)->getSymbol();
Duraid Madinabeeaab22005-03-31 12:31:11 +00001149// assert(0 && "sorry, but what did you want an ExternalSymbol for again?");
1150 BuildMI(BB, IA64::MOV, 1, Result).addExternalSymbol(Sym); // XXX
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001151 return Result;
1152 }
1153
1154 case ISD::FP_EXTEND: {
1155 Tmp1 = SelectExpr(N.getOperand(0));
1156 BuildMI(BB, IA64::FMOV, 1, Result).addReg(Tmp1);
1157 return Result;
1158 }
1159
1160 case ISD::ZERO_EXTEND: {
1161 Tmp1 = SelectExpr(N.getOperand(0)); // value
Misha Brukman4633f1c2005-04-21 23:13:11 +00001162
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001163 switch (N.getOperand(0).getValueType()) {
1164 default: assert(0 && "Cannot zero-extend this type!");
1165 case MVT::i8: Opc = IA64::ZXT1; break;
1166 case MVT::i16: Opc = IA64::ZXT2; break;
1167 case MVT::i32: Opc = IA64::ZXT4; break;
1168
Misha Brukman4633f1c2005-04-21 23:13:11 +00001169 // we handle bools differently! :
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001170 case MVT::i1: { // if the predicate reg has 1, we want a '1' in our GR.
Misha Brukman7847fca2005-04-22 17:54:37 +00001171 unsigned dummy = MakeReg(MVT::i64);
1172 // first load zero:
1173 BuildMI(BB, IA64::MOV, 1, dummy).addReg(IA64::r0);
1174 // ...then conditionally (PR:Tmp1) add 1:
1175 BuildMI(BB, IA64::TPCADDIMM22, 2, Result).addReg(dummy)
1176 .addImm(1).addReg(Tmp1);
1177 return Result; // XXX early exit!
1178 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001179 }
1180
1181 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1182 return Result;
1183 }
1184
1185 case ISD::SIGN_EXTEND: { // we should only have to handle i1 -> i64 here!!!
1186
1187assert(0 && "hmm, ISD::SIGN_EXTEND: shouldn't ever be reached. bad luck!\n");
1188
1189 Tmp1 = SelectExpr(N.getOperand(0)); // value
Misha Brukman4633f1c2005-04-21 23:13:11 +00001190
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001191 switch (N.getOperand(0).getValueType()) {
1192 default: assert(0 && "Cannot sign-extend this type!");
1193 case MVT::i1: assert(0 && "trying to sign extend a bool? ow.\n");
Misha Brukman7847fca2005-04-22 17:54:37 +00001194 Opc = IA64::SXT1; break;
1195 // FIXME: for now, we treat bools the same as i8s
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001196 case MVT::i8: Opc = IA64::SXT1; break;
1197 case MVT::i16: Opc = IA64::SXT2; break;
1198 case MVT::i32: Opc = IA64::SXT4; break;
1199 }
1200
1201 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1202 return Result;
1203 }
1204
1205 case ISD::TRUNCATE: {
1206 // we use the funky dep.z (deposit (zero)) instruction to deposit bits
1207 // of R0 appropriately.
1208 switch (N.getOperand(0).getValueType()) {
1209 default: assert(0 && "Unknown truncate!");
1210 case MVT::i64: break;
1211 }
1212 Tmp1 = SelectExpr(N.getOperand(0));
1213 unsigned depositPos, depositLen;
1214
1215 switch (N.getValueType()) {
1216 default: assert(0 && "Unknown truncate!");
1217 case MVT::i1: {
1218 // if input (normal reg) is 0, 0!=0 -> false (0), if 1, 1!=0 ->true (1):
Misha Brukman7847fca2005-04-22 17:54:37 +00001219 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(Tmp1)
1220 .addReg(IA64::r0);
1221 return Result; // XXX early exit!
1222 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001223 case MVT::i8: depositPos=0; depositLen=8; break;
1224 case MVT::i16: depositPos=0; depositLen=16; break;
1225 case MVT::i32: depositPos=0; depositLen=32; break;
1226 }
Duraid Madinaa9110342005-08-19 13:25:50 +00001227 BuildMI(BB, IA64::DEPZ, 3, Result).addReg(Tmp1)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001228 .addImm(depositPos).addImm(depositLen);
1229 return Result;
1230 }
1231
Misha Brukman7847fca2005-04-22 17:54:37 +00001232/*
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001233 case ISD::FP_ROUND: {
1234 assert (DestType == MVT::f32 && N.getOperand(0).getValueType() == MVT::f64 &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001235 "error: trying to FP_ROUND something other than f64 -> f32!\n");
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001236 Tmp1 = SelectExpr(N.getOperand(0));
1237 BuildMI(BB, IA64::FADDS, 2, Result).addReg(Tmp1).addReg(IA64::F0);
1238 // we add 0.0 using a single precision add to do rounding
1239 return Result;
1240 }
1241*/
1242
1243// FIXME: the following 4 cases need cleaning
1244 case ISD::SINT_TO_FP: {
1245 Tmp1 = SelectExpr(N.getOperand(0));
1246 Tmp2 = MakeReg(MVT::f64);
1247 unsigned dummy = MakeReg(MVT::f64);
1248 BuildMI(BB, IA64::SETFSIG, 1, Tmp2).addReg(Tmp1);
1249 BuildMI(BB, IA64::FCVTXF, 1, dummy).addReg(Tmp2);
1250 BuildMI(BB, IA64::FNORMD, 1, Result).addReg(dummy);
1251 return Result;
1252 }
1253
1254 case ISD::UINT_TO_FP: {
1255 Tmp1 = SelectExpr(N.getOperand(0));
1256 Tmp2 = MakeReg(MVT::f64);
1257 unsigned dummy = MakeReg(MVT::f64);
1258 BuildMI(BB, IA64::SETFSIG, 1, Tmp2).addReg(Tmp1);
1259 BuildMI(BB, IA64::FCVTXUF, 1, dummy).addReg(Tmp2);
1260 BuildMI(BB, IA64::FNORMD, 1, Result).addReg(dummy);
1261 return Result;
1262 }
1263
1264 case ISD::FP_TO_SINT: {
1265 Tmp1 = SelectExpr(N.getOperand(0));
1266 Tmp2 = MakeReg(MVT::f64);
1267 BuildMI(BB, IA64::FCVTFXTRUNC, 1, Tmp2).addReg(Tmp1);
1268 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(Tmp2);
1269 return Result;
1270 }
1271
1272 case ISD::FP_TO_UINT: {
1273 Tmp1 = SelectExpr(N.getOperand(0));
1274 Tmp2 = MakeReg(MVT::f64);
1275 BuildMI(BB, IA64::FCVTFXUTRUNC, 1, Tmp2).addReg(Tmp1);
1276 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(Tmp2);
1277 return Result;
1278 }
1279
1280 case ISD::ADD: {
Duraid Madina4826a072005-04-06 09:55:17 +00001281 if(DestType == MVT::f64 && N.getOperand(0).getOpcode() == ISD::MUL &&
1282 N.getOperand(0).Val->hasOneUse()) { // if we can fold this add
1283 // into an fma, do so:
1284 // ++FusedFP; // Statistic
1285 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1286 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1287 Tmp3 = SelectExpr(N.getOperand(1));
1288 BuildMI(BB, IA64::FMA, 3, Result).addReg(Tmp1).addReg(Tmp2).addReg(Tmp3);
1289 return Result; // early exit
1290 }
Duraid Madinaed095022005-04-13 06:12:04 +00001291
1292 if(DestType != MVT::f64 && N.getOperand(0).getOpcode() == ISD::SHL &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001293 N.getOperand(0).Val->hasOneUse()) { // if we might be able to fold
Duraid Madinaed095022005-04-13 06:12:04 +00001294 // this add into a shladd, try:
1295 ConstantSDNode *CSD = NULL;
1296 if((CSD = dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001297 (CSD->getValue() >= 1) && (CSD->getValue() <= 4) ) { // we can:
Duraid Madinaed095022005-04-13 06:12:04 +00001298
Misha Brukman7847fca2005-04-22 17:54:37 +00001299 // ++FusedSHLADD; // Statistic
1300 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1301 int shl_amt = CSD->getValue();
1302 Tmp3 = SelectExpr(N.getOperand(1));
Jeff Cohen00b168892005-07-27 06:12:32 +00001303
Misha Brukman7847fca2005-04-22 17:54:37 +00001304 BuildMI(BB, IA64::SHLADD, 3, Result)
1305 .addReg(Tmp1).addImm(shl_amt).addReg(Tmp3);
1306 return Result; // early exit
Duraid Madinaed095022005-04-13 06:12:04 +00001307 }
1308 }
1309
1310 //else, fallthrough:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001311 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001312 if(DestType != MVT::f64) { // integer addition:
1313 switch (ponderIntegerAdditionWith(N.getOperand(1), Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001314 case 1: // adding a constant that's 14 bits
1315 BuildMI(BB, IA64::ADDIMM14, 2, Result).addReg(Tmp1).addSImm(Tmp3);
1316 return Result; // early exit
1317 } // fallthrough and emit a reg+reg ADD:
1318 Tmp2 = SelectExpr(N.getOperand(1));
1319 BuildMI(BB, IA64::ADD, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001320 } else { // this is a floating point addition
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001321 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001322 BuildMI(BB, IA64::FADD, 2, Result).addReg(Tmp1).addReg(Tmp2);
1323 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001324 return Result;
1325 }
1326
1327 case ISD::MUL: {
Duraid Madina4826a072005-04-06 09:55:17 +00001328
1329 if(DestType != MVT::f64) { // TODO: speed!
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001330/* FIXME if(N.getOperand(1).getOpcode() != ISD::Constant) { // if not a const mul
1331 */
Jeff Cohen00b168892005-07-27 06:12:32 +00001332 // boring old integer multiply with xma
1333 Tmp1 = SelectExpr(N.getOperand(0));
1334 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinab2322562005-04-26 07:23:02 +00001335
Jeff Cohen00b168892005-07-27 06:12:32 +00001336 unsigned TempFR1=MakeReg(MVT::f64);
1337 unsigned TempFR2=MakeReg(MVT::f64);
1338 unsigned TempFR3=MakeReg(MVT::f64);
1339 BuildMI(BB, IA64::SETFSIG, 1, TempFR1).addReg(Tmp1);
1340 BuildMI(BB, IA64::SETFSIG, 1, TempFR2).addReg(Tmp2);
1341 BuildMI(BB, IA64::XMAL, 1, TempFR3).addReg(TempFR1).addReg(TempFR2)
1342 .addReg(IA64::F0);
1343 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(TempFR3);
1344 return Result; // early exit
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001345 /* FIXME } else { // we are multiplying by an integer constant! yay
Jeff Cohen00b168892005-07-27 06:12:32 +00001346 return Reg = SelectExpr(BuildConstmulSequence(N)); // avert your eyes!
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001347 } */
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001348 }
Duraid Madinab2322562005-04-26 07:23:02 +00001349 else { // floating point multiply
1350 Tmp1 = SelectExpr(N.getOperand(0));
1351 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001352 BuildMI(BB, IA64::FMPY, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinab2322562005-04-26 07:23:02 +00001353 return Result;
1354 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001355 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001356
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001357 case ISD::SUB: {
Duraid Madina4826a072005-04-06 09:55:17 +00001358 if(DestType == MVT::f64 && N.getOperand(0).getOpcode() == ISD::MUL &&
1359 N.getOperand(0).Val->hasOneUse()) { // if we can fold this sub
1360 // into an fms, do so:
1361 // ++FusedFP; // Statistic
1362 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1363 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1364 Tmp3 = SelectExpr(N.getOperand(1));
1365 BuildMI(BB, IA64::FMS, 3, Result).addReg(Tmp1).addReg(Tmp2).addReg(Tmp3);
1366 return Result; // early exit
1367 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001368 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001369 if(DestType != MVT::f64) { // integer subtraction:
1370 switch (ponderIntegerSubtractionFrom(N.getOperand(0), Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001371 case 1: // subtracting *from* an 8 bit constant:
1372 BuildMI(BB, IA64::SUBIMM8, 2, Result).addSImm(Tmp3).addReg(Tmp2);
1373 return Result; // early exit
1374 } // fallthrough and emit a reg+reg SUB:
1375 Tmp1 = SelectExpr(N.getOperand(0));
1376 BuildMI(BB, IA64::SUB, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001377 } else { // this is a floating point subtraction
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001378 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001379 BuildMI(BB, IA64::FSUB, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001380 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001381 return Result;
1382 }
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001383
1384 case ISD::FABS: {
1385 Tmp1 = SelectExpr(N.getOperand(0));
1386 assert(DestType == MVT::f64 && "trying to fabs something other than f64?");
1387 BuildMI(BB, IA64::FABS, 1, Result).addReg(Tmp1);
1388 return Result;
1389 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001390
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001391 case ISD::FNEG: {
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001392 assert(DestType == MVT::f64 && "trying to fneg something other than f64?");
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001393
Misha Brukman4633f1c2005-04-21 23:13:11 +00001394 if (ISD::FABS == N.getOperand(0).getOpcode()) { // && hasOneUse()?
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001395 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1396 BuildMI(BB, IA64::FNEGABS, 1, Result).addReg(Tmp1); // fold in abs
1397 } else {
1398 Tmp1 = SelectExpr(N.getOperand(0));
1399 BuildMI(BB, IA64::FNEG, 1, Result).addReg(Tmp1); // plain old fneg
1400 }
1401
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001402 return Result;
1403 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001404
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001405 case ISD::AND: {
1406 switch (N.getValueType()) {
1407 default: assert(0 && "Cannot AND this type!");
1408 case MVT::i1: { // if a bool, we emit a pseudocode AND
1409 unsigned pA = SelectExpr(N.getOperand(0));
1410 unsigned pB = SelectExpr(N.getOperand(1));
Misha Brukman4633f1c2005-04-21 23:13:11 +00001411
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001412/* our pseudocode for AND is:
1413 *
1414(pA) cmp.eq.unc pC,p0 = r0,r0 // pC = pA
1415 cmp.eq pTemp,p0 = r0,r0 // pTemp = NOT pB
1416 ;;
1417(pB) cmp.ne pTemp,p0 = r0,r0
1418 ;;
1419(pTemp)cmp.ne pC,p0 = r0,r0 // if (NOT pB) pC = 0
1420
1421*/
1422 unsigned pTemp = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001423
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001424 unsigned bogusTemp1 = MakeReg(MVT::i1);
1425 unsigned bogusTemp2 = MakeReg(MVT::i1);
1426 unsigned bogusTemp3 = MakeReg(MVT::i1);
1427 unsigned bogusTemp4 = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001428
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001429 BuildMI(BB, IA64::PCMPEQUNC, 3, bogusTemp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001430 .addReg(IA64::r0).addReg(IA64::r0).addReg(pA);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001431 BuildMI(BB, IA64::CMPEQ, 2, bogusTemp2)
Misha Brukman7847fca2005-04-22 17:54:37 +00001432 .addReg(IA64::r0).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001433 BuildMI(BB, IA64::TPCMPNE, 3, pTemp)
Misha Brukman7847fca2005-04-22 17:54:37 +00001434 .addReg(bogusTemp2).addReg(IA64::r0).addReg(IA64::r0).addReg(pB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001435 BuildMI(BB, IA64::TPCMPNE, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001436 .addReg(bogusTemp1).addReg(IA64::r0).addReg(IA64::r0).addReg(pTemp);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001437 break;
1438 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001439
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001440 // if not a bool, we just AND away:
1441 case MVT::i8:
1442 case MVT::i16:
1443 case MVT::i32:
1444 case MVT::i64: {
1445 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madina7340dd52005-08-21 15:43:53 +00001446 switch (ponderIntegerAndWith(N.getOperand(1), Tmp3)) {
Duraid Madinac02780e2005-04-13 04:50:54 +00001447 case 1: // ANDing a constant that is 2^n-1 for some n
Misha Brukman7847fca2005-04-22 17:54:37 +00001448 switch (Tmp3) {
1449 case 8: // if AND 0x00000000000000FF, be quaint and use zxt1
1450 BuildMI(BB, IA64::ZXT1, 1, Result).addReg(Tmp1);
1451 break;
1452 case 16: // if AND 0x000000000000FFFF, be quaint and use zxt2
1453 BuildMI(BB, IA64::ZXT2, 1, Result).addReg(Tmp1);
1454 break;
1455 case 32: // if AND 0x00000000FFFFFFFF, be quaint and use zxt4
1456 BuildMI(BB, IA64::ZXT4, 1, Result).addReg(Tmp1);
1457 break;
1458 default: // otherwise, use dep.z to paste zeros
Duraid Madina7340dd52005-08-21 15:43:53 +00001459 // FIXME: assert the dep.z is in bounds
1460 BuildMI(BB, IA64::DEPZ, 3, Result).addReg(Tmp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001461 .addImm(0).addImm(Tmp3);
1462 break;
Duraid Madina7340dd52005-08-21 15:43:53 +00001463 }
1464 return Result; // early exit
1465 } // fallthrough and emit a simple AND:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001466 Tmp2 = SelectExpr(N.getOperand(1));
1467 BuildMI(BB, IA64::AND, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001468 }
1469 }
1470 return Result;
1471 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001472
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001473 case ISD::OR: {
1474 switch (N.getValueType()) {
1475 default: assert(0 && "Cannot OR this type!");
1476 case MVT::i1: { // if a bool, we emit a pseudocode OR
1477 unsigned pA = SelectExpr(N.getOperand(0));
1478 unsigned pB = SelectExpr(N.getOperand(1));
1479
1480 unsigned pTemp1 = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001481
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001482/* our pseudocode for OR is:
1483 *
1484
1485pC = pA OR pB
1486-------------
1487
Misha Brukman7847fca2005-04-22 17:54:37 +00001488(pA) cmp.eq.unc pC,p0 = r0,r0 // pC = pA
1489 ;;
1490(pB) cmp.eq pC,p0 = r0,r0 // if (pB) pC = 1
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001491
1492*/
1493 BuildMI(BB, IA64::PCMPEQUNC, 3, pTemp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001494 .addReg(IA64::r0).addReg(IA64::r0).addReg(pA);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001495 BuildMI(BB, IA64::TPCMPEQ, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001496 .addReg(pTemp1).addReg(IA64::r0).addReg(IA64::r0).addReg(pB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001497 break;
1498 }
1499 // if not a bool, we just OR away:
1500 case MVT::i8:
1501 case MVT::i16:
1502 case MVT::i32:
1503 case MVT::i64: {
1504 Tmp1 = SelectExpr(N.getOperand(0));
1505 Tmp2 = SelectExpr(N.getOperand(1));
1506 BuildMI(BB, IA64::OR, 2, Result).addReg(Tmp1).addReg(Tmp2);
1507 break;
1508 }
1509 }
1510 return Result;
1511 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001512
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001513 case ISD::XOR: {
1514 switch (N.getValueType()) {
1515 default: assert(0 && "Cannot XOR this type!");
1516 case MVT::i1: { // if a bool, we emit a pseudocode XOR
1517 unsigned pY = SelectExpr(N.getOperand(0));
1518 unsigned pZ = SelectExpr(N.getOperand(1));
1519
1520/* one possible routine for XOR is:
1521
1522 // Compute px = py ^ pz
1523 // using sum of products: px = (py & !pz) | (pz & !py)
1524 // Uses 5 instructions in 3 cycles.
1525 // cycle 1
1526(pz) cmp.eq.unc px = r0, r0 // px = pz
1527(py) cmp.eq.unc pt = r0, r0 // pt = py
1528 ;;
1529 // cycle 2
1530(pt) cmp.ne.and px = r0, r0 // px = px & !pt (px = pz & !pt)
1531(pz) cmp.ne.and pt = r0, r0 // pt = pt & !pz
1532 ;;
1533 } { .mmi
1534 // cycle 3
1535(pt) cmp.eq.or px = r0, r0 // px = px | pt
1536
1537*** Another, which we use here, requires one scratch GR. it is:
1538
1539 mov rt = 0 // initialize rt off critical path
1540 ;;
1541
1542 // cycle 1
1543(pz) cmp.eq.unc px = r0, r0 // px = pz
1544(pz) mov rt = 1 // rt = pz
1545 ;;
1546 // cycle 2
1547(py) cmp.ne px = 1, rt // if (py) px = !pz
1548
1549.. these routines kindly provided by Jim Hull
1550*/
1551 unsigned rt = MakeReg(MVT::i64);
1552
1553 // these two temporaries will never actually appear,
1554 // due to the two-address form of some of the instructions below
1555 unsigned bogoPR = MakeReg(MVT::i1); // becomes Result
1556 unsigned bogoGR = MakeReg(MVT::i64); // becomes rt
1557
1558 BuildMI(BB, IA64::MOV, 1, bogoGR).addReg(IA64::r0);
1559 BuildMI(BB, IA64::PCMPEQUNC, 3, bogoPR)
Misha Brukman7847fca2005-04-22 17:54:37 +00001560 .addReg(IA64::r0).addReg(IA64::r0).addReg(pZ);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001561 BuildMI(BB, IA64::TPCADDIMM22, 2, rt)
Misha Brukman7847fca2005-04-22 17:54:37 +00001562 .addReg(bogoGR).addImm(1).addReg(pZ);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001563 BuildMI(BB, IA64::TPCMPIMM8NE, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001564 .addReg(bogoPR).addImm(1).addReg(rt).addReg(pY);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001565 break;
1566 }
1567 // if not a bool, we just XOR away:
1568 case MVT::i8:
1569 case MVT::i16:
1570 case MVT::i32:
1571 case MVT::i64: {
1572 Tmp1 = SelectExpr(N.getOperand(0));
1573 Tmp2 = SelectExpr(N.getOperand(1));
1574 BuildMI(BB, IA64::XOR, 2, Result).addReg(Tmp1).addReg(Tmp2);
1575 break;
1576 }
1577 }
1578 return Result;
1579 }
1580
Duraid Madina63bbed52005-05-11 05:16:09 +00001581 case ISD::CTPOP: {
1582 Tmp1 = SelectExpr(N.getOperand(0));
1583 BuildMI(BB, IA64::POPCNT, 1, Result).addReg(Tmp1);
1584 return Result;
1585 }
1586
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001587 case ISD::SHL: {
1588 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001589 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1590 Tmp2 = CN->getValue();
1591 BuildMI(BB, IA64::SHLI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1592 } else {
1593 Tmp2 = SelectExpr(N.getOperand(1));
1594 BuildMI(BB, IA64::SHL, 2, Result).addReg(Tmp1).addReg(Tmp2);
1595 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001596 return Result;
1597 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001598
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001599 case ISD::SRL: {
1600 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001601 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1602 Tmp2 = CN->getValue();
1603 BuildMI(BB, IA64::SHRUI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1604 } else {
1605 Tmp2 = SelectExpr(N.getOperand(1));
1606 BuildMI(BB, IA64::SHRU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1607 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001608 return Result;
1609 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001610
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001611 case ISD::SRA: {
1612 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001613 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1614 Tmp2 = CN->getValue();
1615 BuildMI(BB, IA64::SHRSI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1616 } else {
1617 Tmp2 = SelectExpr(N.getOperand(1));
1618 BuildMI(BB, IA64::SHRS, 2, Result).addReg(Tmp1).addReg(Tmp2);
1619 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001620 return Result;
1621 }
1622
1623 case ISD::SDIV:
1624 case ISD::UDIV:
1625 case ISD::SREM:
1626 case ISD::UREM: {
1627
1628 Tmp1 = SelectExpr(N.getOperand(0));
1629 Tmp2 = SelectExpr(N.getOperand(1));
1630
1631 bool isFP=false;
1632
1633 if(DestType == MVT::f64) // XXX: we're not gonna be fed MVT::f32, are we?
1634 isFP=true;
1635
1636 bool isModulus=false; // is it a division or a modulus?
1637 bool isSigned=false;
1638
1639 switch(N.getOpcode()) {
1640 case ISD::SDIV: isModulus=false; isSigned=true; break;
1641 case ISD::UDIV: isModulus=false; isSigned=false; break;
1642 case ISD::SREM: isModulus=true; isSigned=true; break;
1643 case ISD::UREM: isModulus=true; isSigned=false; break;
1644 }
1645
Duraid Madina4826a072005-04-06 09:55:17 +00001646 if(!isModulus && !isFP) { // if this is an integer divide,
1647 switch (ponderIntegerDivisionBy(N.getOperand(1), isSigned, Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001648 case 1: // division by a constant that's a power of 2
1649 Tmp1 = SelectExpr(N.getOperand(0));
1650 if(isSigned) { // argument could be negative, so emit some code:
1651 unsigned divAmt=Tmp3;
1652 unsigned tempGR1=MakeReg(MVT::i64);
1653 unsigned tempGR2=MakeReg(MVT::i64);
1654 unsigned tempGR3=MakeReg(MVT::i64);
1655 BuildMI(BB, IA64::SHRS, 2, tempGR1)
1656 .addReg(Tmp1).addImm(divAmt-1);
1657 BuildMI(BB, IA64::EXTRU, 3, tempGR2)
1658 .addReg(tempGR1).addImm(64-divAmt).addImm(divAmt);
1659 BuildMI(BB, IA64::ADD, 2, tempGR3)
1660 .addReg(Tmp1).addReg(tempGR2);
1661 BuildMI(BB, IA64::SHRS, 2, Result)
1662 .addReg(tempGR3).addImm(divAmt);
1663 }
1664 else // unsigned div-by-power-of-2 becomes a simple shift right:
1665 BuildMI(BB, IA64::SHRU, 2, Result).addReg(Tmp1).addImm(Tmp3);
1666 return Result; // early exit
Duraid Madina4826a072005-04-06 09:55:17 +00001667 }
1668 }
1669
Misha Brukman4633f1c2005-04-21 23:13:11 +00001670 unsigned TmpPR=MakeReg(MVT::i1); // we need two scratch
Duraid Madinabeeaab22005-03-31 12:31:11 +00001671 unsigned TmpPR2=MakeReg(MVT::i1); // predicate registers,
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001672 unsigned TmpF1=MakeReg(MVT::f64); // and one metric truckload of FP regs.
1673 unsigned TmpF2=MakeReg(MVT::f64); // lucky we have IA64?
1674 unsigned TmpF3=MakeReg(MVT::f64); // well, the real FIXME is to have
1675 unsigned TmpF4=MakeReg(MVT::f64); // isTwoAddress forms of these
1676 unsigned TmpF5=MakeReg(MVT::f64); // FP instructions so we can end up with
1677 unsigned TmpF6=MakeReg(MVT::f64); // stuff like setf.sig f10=f10 etc.
1678 unsigned TmpF7=MakeReg(MVT::f64);
1679 unsigned TmpF8=MakeReg(MVT::f64);
1680 unsigned TmpF9=MakeReg(MVT::f64);
1681 unsigned TmpF10=MakeReg(MVT::f64);
1682 unsigned TmpF11=MakeReg(MVT::f64);
1683 unsigned TmpF12=MakeReg(MVT::f64);
1684 unsigned TmpF13=MakeReg(MVT::f64);
1685 unsigned TmpF14=MakeReg(MVT::f64);
1686 unsigned TmpF15=MakeReg(MVT::f64);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001687
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001688 // OK, emit some code:
1689
1690 if(!isFP) {
1691 // first, load the inputs into FP regs.
1692 BuildMI(BB, IA64::SETFSIG, 1, TmpF1).addReg(Tmp1);
1693 BuildMI(BB, IA64::SETFSIG, 1, TmpF2).addReg(Tmp2);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001694
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001695 // next, convert the inputs to FP
1696 if(isSigned) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001697 BuildMI(BB, IA64::FCVTXF, 1, TmpF3).addReg(TmpF1);
1698 BuildMI(BB, IA64::FCVTXF, 1, TmpF4).addReg(TmpF2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001699 } else {
Misha Brukman7847fca2005-04-22 17:54:37 +00001700 BuildMI(BB, IA64::FCVTXUFS1, 1, TmpF3).addReg(TmpF1);
1701 BuildMI(BB, IA64::FCVTXUFS1, 1, TmpF4).addReg(TmpF2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001702 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001703
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001704 } else { // this is an FP divide/remainder, so we 'leak' some temp
1705 // regs and assign TmpF3=Tmp1, TmpF4=Tmp2
1706 TmpF3=Tmp1;
1707 TmpF4=Tmp2;
1708 }
1709
1710 // we start by computing an approximate reciprocal (good to 9 bits?)
Duraid Madina6dcceb52005-04-08 10:01:48 +00001711 // note, this instruction writes _both_ TmpF5 (answer) and TmpPR (predicate)
1712 BuildMI(BB, IA64::FRCPAS1, 4)
1713 .addReg(TmpF5, MachineOperand::Def)
1714 .addReg(TmpPR, MachineOperand::Def)
1715 .addReg(TmpF3).addReg(TmpF4);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001716
Duraid Madinabeeaab22005-03-31 12:31:11 +00001717 if(!isModulus) { // if this is a divide, we worry about div-by-zero
1718 unsigned bogusPR=MakeReg(MVT::i1); // won't appear, due to twoAddress
1719 // TPCMPNE below
1720 BuildMI(BB, IA64::CMPEQ, 2, bogusPR).addReg(IA64::r0).addReg(IA64::r0);
1721 BuildMI(BB, IA64::TPCMPNE, 3, TmpPR2).addReg(bogusPR)
Misha Brukman7847fca2005-04-22 17:54:37 +00001722 .addReg(IA64::r0).addReg(IA64::r0).addReg(TmpPR);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001723 }
1724
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001725 // now we apply newton's method, thrice! (FIXME: this is ~72 bits of
1726 // precision, don't need this much for f32/i32)
1727 BuildMI(BB, IA64::CFNMAS1, 4, TmpF6)
1728 .addReg(TmpF4).addReg(TmpF5).addReg(IA64::F1).addReg(TmpPR);
1729 BuildMI(BB, IA64::CFMAS1, 4, TmpF7)
1730 .addReg(TmpF3).addReg(TmpF5).addReg(IA64::F0).addReg(TmpPR);
1731 BuildMI(BB, IA64::CFMAS1, 4, TmpF8)
1732 .addReg(TmpF6).addReg(TmpF6).addReg(IA64::F0).addReg(TmpPR);
1733 BuildMI(BB, IA64::CFMAS1, 4, TmpF9)
1734 .addReg(TmpF6).addReg(TmpF7).addReg(TmpF7).addReg(TmpPR);
1735 BuildMI(BB, IA64::CFMAS1, 4,TmpF10)
1736 .addReg(TmpF6).addReg(TmpF5).addReg(TmpF5).addReg(TmpPR);
1737 BuildMI(BB, IA64::CFMAS1, 4,TmpF11)
1738 .addReg(TmpF8).addReg(TmpF9).addReg(TmpF9).addReg(TmpPR);
1739 BuildMI(BB, IA64::CFMAS1, 4,TmpF12)
1740 .addReg(TmpF8).addReg(TmpF10).addReg(TmpF10).addReg(TmpPR);
1741 BuildMI(BB, IA64::CFNMAS1, 4,TmpF13)
1742 .addReg(TmpF4).addReg(TmpF11).addReg(TmpF3).addReg(TmpPR);
Duraid Madina6e02e682005-04-04 05:05:52 +00001743
1744 // FIXME: this is unfortunate :(
1745 // the story is that the dest reg of the fnma above and the fma below
1746 // (and therefore possibly the src of the fcvt.fx[u] as well) cannot
1747 // be the same register, or this code breaks if the first argument is
1748 // zero. (e.g. without this hack, 0%8 yields -64, not 0.)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001749 BuildMI(BB, IA64::CFMAS1, 4,TmpF14)
1750 .addReg(TmpF13).addReg(TmpF12).addReg(TmpF11).addReg(TmpPR);
1751
Duraid Madina6e02e682005-04-04 05:05:52 +00001752 if(isModulus) { // XXX: fragile! fixes _only_ mod, *breaks* div! !
1753 BuildMI(BB, IA64::IUSE, 1).addReg(TmpF13); // hack :(
1754 }
1755
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001756 if(!isFP) {
1757 // round to an integer
1758 if(isSigned)
Misha Brukman7847fca2005-04-22 17:54:37 +00001759 BuildMI(BB, IA64::FCVTFXTRUNCS1, 1, TmpF15).addReg(TmpF14);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001760 else
Misha Brukman7847fca2005-04-22 17:54:37 +00001761 BuildMI(BB, IA64::FCVTFXUTRUNCS1, 1, TmpF15).addReg(TmpF14);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001762 } else {
1763 BuildMI(BB, IA64::FMOV, 1, TmpF15).addReg(TmpF14);
1764 // EXERCISE: can you see why TmpF15=TmpF14 does not work here, and
1765 // we really do need the above FMOV? ;)
1766 }
1767
1768 if(!isModulus) {
Duraid Madinabeeaab22005-03-31 12:31:11 +00001769 if(isFP) { // extra worrying about div-by-zero
1770 unsigned bogoResult=MakeReg(MVT::f64);
1771
1772 // we do a 'conditional fmov' (of the correct result, depending
1773 // on how the frcpa predicate turned out)
1774 BuildMI(BB, IA64::PFMOV, 2, bogoResult)
Misha Brukman7847fca2005-04-22 17:54:37 +00001775 .addReg(TmpF12).addReg(TmpPR2);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001776 BuildMI(BB, IA64::CFMOV, 2, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001777 .addReg(bogoResult).addReg(TmpF15).addReg(TmpPR);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001778 }
Duraid Madina6e02e682005-04-04 05:05:52 +00001779 else {
Misha Brukman7847fca2005-04-22 17:54:37 +00001780 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(TmpF15);
Duraid Madina6e02e682005-04-04 05:05:52 +00001781 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001782 } else { // this is a modulus
1783 if(!isFP) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001784 // answer = q * (-b) + a
1785 unsigned ModulusResult = MakeReg(MVT::f64);
1786 unsigned TmpF = MakeReg(MVT::f64);
1787 unsigned TmpI = MakeReg(MVT::i64);
Jeff Cohen00b168892005-07-27 06:12:32 +00001788
Misha Brukman7847fca2005-04-22 17:54:37 +00001789 BuildMI(BB, IA64::SUB, 2, TmpI).addReg(IA64::r0).addReg(Tmp2);
1790 BuildMI(BB, IA64::SETFSIG, 1, TmpF).addReg(TmpI);
1791 BuildMI(BB, IA64::XMAL, 3, ModulusResult)
1792 .addReg(TmpF15).addReg(TmpF).addReg(TmpF1);
1793 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(ModulusResult);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001794 } else { // FP modulus! The horror... the horror....
Misha Brukman7847fca2005-04-22 17:54:37 +00001795 assert(0 && "sorry, no FP modulus just yet!\n!\n");
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001796 }
1797 }
1798
1799 return Result;
1800 }
1801
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001802 case ISD::SIGN_EXTEND_INREG: {
1803 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001804 switch(cast<VTSDNode>(Node->getOperand(1))->getVT()) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001805 default:
1806 Node->dump();
1807 assert(0 && "don't know how to sign extend this type");
1808 break;
1809 case MVT::i8: Opc = IA64::SXT1; break;
1810 case MVT::i16: Opc = IA64::SXT2; break;
1811 case MVT::i32: Opc = IA64::SXT4; break;
1812 }
1813 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1814 return Result;
1815 }
1816
1817 case ISD::SETCC: {
1818 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88ac32c2005-08-09 20:21:10 +00001819 ISD::CondCode CC = cast<CondCodeSDNode>(Node->getOperand(2))->get();
1820 if (MVT::isInteger(N.getOperand(0).getValueType())) {
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001821
Chris Lattner88ac32c2005-08-09 20:21:10 +00001822 if(ConstantSDNode *CSDN =
1823 dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1824 // if we are comparing against a constant zero
1825 if(CSDN->getValue()==0)
1826 Tmp2 = IA64::r0; // then we can just compare against r0
1827 else
1828 Tmp2 = SelectExpr(N.getOperand(1));
1829 } else // not comparing against a constant
1830 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001831
Chris Lattner88ac32c2005-08-09 20:21:10 +00001832 switch (CC) {
1833 default: assert(0 && "Unknown integer comparison!");
1834 case ISD::SETEQ:
1835 BuildMI(BB, IA64::CMPEQ, 2, Result).addReg(Tmp1).addReg(Tmp2);
1836 break;
1837 case ISD::SETGT:
1838 BuildMI(BB, IA64::CMPGT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1839 break;
1840 case ISD::SETGE:
1841 BuildMI(BB, IA64::CMPGE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1842 break;
1843 case ISD::SETLT:
1844 BuildMI(BB, IA64::CMPLT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1845 break;
1846 case ISD::SETLE:
1847 BuildMI(BB, IA64::CMPLE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1848 break;
1849 case ISD::SETNE:
1850 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1851 break;
1852 case ISD::SETULT:
1853 BuildMI(BB, IA64::CMPLTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1854 break;
1855 case ISD::SETUGT:
1856 BuildMI(BB, IA64::CMPGTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1857 break;
1858 case ISD::SETULE:
1859 BuildMI(BB, IA64::CMPLEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1860 break;
1861 case ISD::SETUGE:
1862 BuildMI(BB, IA64::CMPGEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1863 break;
1864 }
1865 } else { // if not integer, should be FP.
1866 assert(N.getOperand(0).getValueType() != MVT::f32 &&
1867 "error: SETCC should have had incoming f32 promoted to f64!\n");
1868
1869 if(ConstantFPSDNode *CFPSDN =
1870 dyn_cast<ConstantFPSDNode>(N.getOperand(1))) {
1871
1872 // if we are comparing against a constant +0.0 or +1.0
1873 if(CFPSDN->isExactlyValue(+0.0))
1874 Tmp2 = IA64::F0; // then we can just compare against f0
1875 else if(CFPSDN->isExactlyValue(+1.0))
1876 Tmp2 = IA64::F1; // or f1
Misha Brukman7847fca2005-04-22 17:54:37 +00001877 else
1878 Tmp2 = SelectExpr(N.getOperand(1));
Chris Lattner88ac32c2005-08-09 20:21:10 +00001879 } else // not comparing against a constant
1880 Tmp2 = SelectExpr(N.getOperand(1));
Jeff Cohen00b168892005-07-27 06:12:32 +00001881
Chris Lattner88ac32c2005-08-09 20:21:10 +00001882 switch (CC) {
1883 default: assert(0 && "Unknown FP comparison!");
1884 case ISD::SETEQ:
1885 BuildMI(BB, IA64::FCMPEQ, 2, Result).addReg(Tmp1).addReg(Tmp2);
1886 break;
1887 case ISD::SETGT:
1888 BuildMI(BB, IA64::FCMPGT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1889 break;
1890 case ISD::SETGE:
1891 BuildMI(BB, IA64::FCMPGE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1892 break;
1893 case ISD::SETLT:
1894 BuildMI(BB, IA64::FCMPLT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1895 break;
1896 case ISD::SETLE:
1897 BuildMI(BB, IA64::FCMPLE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1898 break;
1899 case ISD::SETNE:
1900 BuildMI(BB, IA64::FCMPNE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1901 break;
1902 case ISD::SETULT:
1903 BuildMI(BB, IA64::FCMPLTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1904 break;
1905 case ISD::SETUGT:
1906 BuildMI(BB, IA64::FCMPGTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1907 break;
1908 case ISD::SETULE:
1909 BuildMI(BB, IA64::FCMPLEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1910 break;
1911 case ISD::SETUGE:
1912 BuildMI(BB, IA64::FCMPGEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1913 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001914 }
1915 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001916 return Result;
1917 }
1918
1919 case ISD::EXTLOAD:
1920 case ISD::ZEXTLOAD:
1921 case ISD::LOAD: {
1922 // Make sure we generate both values.
1923 if (Result != 1)
1924 ExprMap[N.getValue(1)] = 1; // Generate the token
1925 else
1926 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
1927
1928 bool isBool=false;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001929
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001930 if(opcode == ISD::LOAD) { // this is a LOAD
1931 switch (Node->getValueType(0)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001932 default: assert(0 && "Cannot load this type!");
1933 case MVT::i1: Opc = IA64::LD1; isBool=true; break;
1934 // FIXME: for now, we treat bool loads the same as i8 loads */
1935 case MVT::i8: Opc = IA64::LD1; break;
1936 case MVT::i16: Opc = IA64::LD2; break;
1937 case MVT::i32: Opc = IA64::LD4; break;
1938 case MVT::i64: Opc = IA64::LD8; break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001939
Misha Brukman7847fca2005-04-22 17:54:37 +00001940 case MVT::f32: Opc = IA64::LDF4; break;
1941 case MVT::f64: Opc = IA64::LDF8; break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001942 }
1943 } else { // this is an EXTLOAD or ZEXTLOAD
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001944 MVT::ValueType TypeBeingLoaded =
1945 cast<VTSDNode>(Node->getOperand(3))->getVT();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001946 switch (TypeBeingLoaded) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001947 default: assert(0 && "Cannot extload/zextload this type!");
1948 // FIXME: bools?
1949 case MVT::i8: Opc = IA64::LD1; break;
1950 case MVT::i16: Opc = IA64::LD2; break;
1951 case MVT::i32: Opc = IA64::LD4; break;
1952 case MVT::f32: Opc = IA64::LDF4; break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001953 }
1954 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001955
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001956 SDOperand Chain = N.getOperand(0);
1957 SDOperand Address = N.getOperand(1);
1958
1959 if(Address.getOpcode() == ISD::GlobalAddress) {
1960 Select(Chain);
1961 unsigned dummy = MakeReg(MVT::i64);
1962 unsigned dummy2 = MakeReg(MVT::i64);
1963 BuildMI(BB, IA64::ADD, 2, dummy)
Misha Brukman7847fca2005-04-22 17:54:37 +00001964 .addGlobalAddress(cast<GlobalAddressSDNode>(Address)->getGlobal())
1965 .addReg(IA64::r1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001966 BuildMI(BB, IA64::LD8, 1, dummy2).addReg(dummy);
1967 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00001968 BuildMI(BB, Opc, 1, Result).addReg(dummy2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001969 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00001970 // into a predicate register
1971 assert(Opc==IA64::LD1 && "problem loading a bool");
1972 unsigned dummy3 = MakeReg(MVT::i64);
1973 BuildMI(BB, Opc, 1, dummy3).addReg(dummy2);
1974 // we compare to 0. true? 0. false? 1.
1975 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001976 }
1977 } else if(ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Address)) {
Chris Lattner5839bf22005-08-26 17:15:30 +00001978 unsigned CPIdx = BB->getParent()->getConstantPool()->
Chris Lattner143b6752005-08-26 17:18:44 +00001979 getConstantPoolIndex(CP->get());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001980 Select(Chain);
1981 IA64Lowering.restoreGP(BB);
1982 unsigned dummy = MakeReg(MVT::i64);
Chris Lattner5839bf22005-08-26 17:15:30 +00001983 BuildMI(BB, IA64::ADD, 2, dummy).addConstantPoolIndex(CPIdx)
Misha Brukman7847fca2005-04-22 17:54:37 +00001984 .addReg(IA64::r1); // CPI+GP
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001985 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00001986 BuildMI(BB, Opc, 1, Result).addReg(dummy);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001987 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00001988 // into a predicate register
1989 assert(Opc==IA64::LD1 && "problem loading a bool");
1990 unsigned dummy3 = MakeReg(MVT::i64);
1991 BuildMI(BB, Opc, 1, dummy3).addReg(dummy);
1992 // we compare to 0. true? 0. false? 1.
1993 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001994 }
1995 } else if(Address.getOpcode() == ISD::FrameIndex) {
1996 Select(Chain); // FIXME ? what about bools?
1997 unsigned dummy = MakeReg(MVT::i64);
1998 BuildMI(BB, IA64::MOV, 1, dummy)
Misha Brukman7847fca2005-04-22 17:54:37 +00001999 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002000 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00002001 BuildMI(BB, Opc, 1, Result).addReg(dummy);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002002 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00002003 // into a predicate register
2004 assert(Opc==IA64::LD1 && "problem loading a bool");
2005 unsigned dummy3 = MakeReg(MVT::i64);
2006 BuildMI(BB, Opc, 1, dummy3).addReg(dummy);
2007 // we compare to 0. true? 0. false? 1.
2008 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002009 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002010 } else { // none of the above...
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002011 Select(Chain);
2012 Tmp2 = SelectExpr(Address);
2013 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00002014 BuildMI(BB, Opc, 1, Result).addReg(Tmp2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002015 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00002016 // into a predicate register
2017 assert(Opc==IA64::LD1 && "problem loading a bool");
2018 unsigned dummy = MakeReg(MVT::i64);
2019 BuildMI(BB, Opc, 1, dummy).addReg(Tmp2);
2020 // we compare to 0. true? 0. false? 1.
2021 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy).addReg(IA64::r0);
Jeff Cohen00b168892005-07-27 06:12:32 +00002022 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002023 }
2024
2025 return Result;
2026 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002027
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002028 case ISD::CopyFromReg: {
2029 if (Result == 1)
Misha Brukman4633f1c2005-04-21 23:13:11 +00002030 Result = ExprMap[N.getValue(0)] =
Misha Brukman7847fca2005-04-22 17:54:37 +00002031 MakeReg(N.getValue(0).getValueType());
Misha Brukman4633f1c2005-04-21 23:13:11 +00002032
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002033 SDOperand Chain = N.getOperand(0);
2034
2035 Select(Chain);
Chris Lattner707ebc52005-08-16 21:56:37 +00002036 unsigned r = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002037
2038 if(N.getValueType() == MVT::i1) // if a bool, we use pseudocode
Misha Brukman7847fca2005-04-22 17:54:37 +00002039 BuildMI(BB, IA64::PCMPEQUNC, 3, Result)
2040 .addReg(IA64::r0).addReg(IA64::r0).addReg(r);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002041 // (r) Result =cmp.eq.unc(r0,r0)
2042 else
Misha Brukman7847fca2005-04-22 17:54:37 +00002043 BuildMI(BB, IA64::MOV, 1, Result).addReg(r); // otherwise MOV
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002044 return Result;
2045 }
2046
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +00002047 case ISD::TAILCALL:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002048 case ISD::CALL: {
2049 Select(N.getOperand(0));
2050
2051 // The chain for this call is now lowered.
2052 ExprMap.insert(std::make_pair(N.getValue(Node->getNumValues()-1), 1));
Misha Brukman4633f1c2005-04-21 23:13:11 +00002053
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002054 //grab the arguments
2055 std::vector<unsigned> argvregs;
2056
2057 for(int i = 2, e = Node->getNumOperands(); i < e; ++i)
Misha Brukman7847fca2005-04-22 17:54:37 +00002058 argvregs.push_back(SelectExpr(N.getOperand(i)));
Misha Brukman4633f1c2005-04-21 23:13:11 +00002059
2060 // see section 8.5.8 of "Itanium Software Conventions and
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002061 // Runtime Architecture Guide to see some examples of what's going
2062 // on here. (in short: int args get mapped 1:1 'slot-wise' to out0->out7,
2063 // while FP args get mapped to F8->F15 as needed)
2064
2065 unsigned used_FPArgs=0; // how many FP Args have been used so far?
Misha Brukman4633f1c2005-04-21 23:13:11 +00002066
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002067 // in reg args
2068 for(int i = 0, e = std::min(8, (int)argvregs.size()); i < e; ++i)
2069 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002070 unsigned intArgs[] = {IA64::out0, IA64::out1, IA64::out2, IA64::out3,
2071 IA64::out4, IA64::out5, IA64::out6, IA64::out7 };
2072 unsigned FPArgs[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
2073 IA64::F12, IA64::F13, IA64::F14, IA64::F15 };
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002074
Misha Brukman7847fca2005-04-22 17:54:37 +00002075 switch(N.getOperand(i+2).getValueType())
2076 {
2077 default: // XXX do we need to support MVT::i1 here?
2078 Node->dump();
2079 N.getOperand(i).Val->dump();
2080 std::cerr << "Type for " << i << " is: " <<
2081 N.getOperand(i+2).getValueType() << std::endl;
2082 assert(0 && "Unknown value type for call");
2083 case MVT::i64:
2084 BuildMI(BB, IA64::MOV, 1, intArgs[i]).addReg(argvregs[i]);
2085 break;
2086 case MVT::f64:
2087 BuildMI(BB, IA64::FMOV, 1, FPArgs[used_FPArgs++])
2088 .addReg(argvregs[i]);
2089 // FIXME: we don't need to do this _all_ the time:
2090 BuildMI(BB, IA64::GETFD, 1, intArgs[i]).addReg(argvregs[i]);
2091 break;
2092 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002093 }
2094
2095 //in mem args
2096 for (int i = 8, e = argvregs.size(); i < e; ++i)
2097 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002098 unsigned tempAddr = MakeReg(MVT::i64);
Jeff Cohen00b168892005-07-27 06:12:32 +00002099
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002100 switch(N.getOperand(i+2).getValueType()) {
Misha Brukman4633f1c2005-04-21 23:13:11 +00002101 default:
2102 Node->dump();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002103 N.getOperand(i).Val->dump();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002104 std::cerr << "Type for " << i << " is: " <<
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002105 N.getOperand(i+2).getValueType() << "\n";
2106 assert(0 && "Unknown value type for call");
2107 case MVT::i1: // FIXME?
2108 case MVT::i8:
2109 case MVT::i16:
2110 case MVT::i32:
2111 case MVT::i64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002112 BuildMI(BB, IA64::ADDIMM22, 2, tempAddr)
2113 .addReg(IA64::r12).addImm(16 + (i - 8) * 8); // r12 is SP
2114 BuildMI(BB, IA64::ST8, 2).addReg(tempAddr).addReg(argvregs[i]);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002115 break;
2116 case MVT::f32:
2117 case MVT::f64:
2118 BuildMI(BB, IA64::ADDIMM22, 2, tempAddr)
Misha Brukman7847fca2005-04-22 17:54:37 +00002119 .addReg(IA64::r12).addImm(16 + (i - 8) * 8); // r12 is SP
2120 BuildMI(BB, IA64::STF8, 2).addReg(tempAddr).addReg(argvregs[i]);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002121 break;
2122 }
2123 }
Duraid Madinabeeaab22005-03-31 12:31:11 +00002124
Duraid Madina04aa46d2005-05-20 11:39:17 +00002125 // build the right kind of call. if we can branch directly, do so:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002126 if (GlobalAddressSDNode *GASD =
Misha Brukman4633f1c2005-04-21 23:13:11 +00002127 dyn_cast<GlobalAddressSDNode>(N.getOperand(1)))
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002128 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002129 BuildMI(BB, IA64::BRCALL, 1).addGlobalAddress(GASD->getGlobal(),true);
2130 IA64Lowering.restoreGP_SP_RP(BB);
Duraid Madina04aa46d2005-05-20 11:39:17 +00002131 } else
Duraid Madinabeeaab22005-03-31 12:31:11 +00002132 if (ExternalSymbolSDNode *ESSDN =
Misha Brukman7847fca2005-04-22 17:54:37 +00002133 dyn_cast<ExternalSymbolSDNode>(N.getOperand(1)))
Duraid Madinabeeaab22005-03-31 12:31:11 +00002134 { // FIXME : currently need this case for correctness, to avoid
Misha Brukman7847fca2005-04-22 17:54:37 +00002135 // "non-pic code with imm relocation against dynamic symbol" errors
2136 BuildMI(BB, IA64::BRCALL, 1)
2137 .addExternalSymbol(ESSDN->getSymbol(), true);
2138 IA64Lowering.restoreGP_SP_RP(BB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002139 }
Duraid Madina04aa46d2005-05-20 11:39:17 +00002140 else { // otherwise we need to get the function descriptor
2141 // load the branch target (function)'s entry point and
Jeff Cohen00b168892005-07-27 06:12:32 +00002142 // GP, then branch
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002143 Tmp1 = SelectExpr(N.getOperand(1));
Duraid Madinabeeaab22005-03-31 12:31:11 +00002144
2145 unsigned targetEntryPoint=MakeReg(MVT::i64);
2146 unsigned targetGPAddr=MakeReg(MVT::i64);
2147 unsigned currentGP=MakeReg(MVT::i64);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002148
Duraid Madinabeeaab22005-03-31 12:31:11 +00002149 // b6 is a scratch branch register, we load the target entry point
2150 // from the base of the function descriptor
2151 BuildMI(BB, IA64::LD8, 1, targetEntryPoint).addReg(Tmp1);
2152 BuildMI(BB, IA64::MOV, 1, IA64::B6).addReg(targetEntryPoint);
2153
2154 // save the current GP:
2155 BuildMI(BB, IA64::MOV, 1, currentGP).addReg(IA64::r1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002156
Duraid Madinabeeaab22005-03-31 12:31:11 +00002157 /* TODO: we need to make sure doing this never, ever loads a
2158 * bogus value into r1 (GP). */
2159 // load the target GP (which is at mem[functiondescriptor+8])
2160 BuildMI(BB, IA64::ADDIMM22, 2, targetGPAddr)
Misha Brukman7847fca2005-04-22 17:54:37 +00002161 .addReg(Tmp1).addImm(8); // FIXME: addimm22? why not postincrement ld
Duraid Madinabeeaab22005-03-31 12:31:11 +00002162 BuildMI(BB, IA64::LD8, 1, IA64::r1).addReg(targetGPAddr);
2163
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002164 // and then jump: (well, call)
2165 BuildMI(BB, IA64::BRCALL, 1).addReg(IA64::B6);
Duraid Madinabeeaab22005-03-31 12:31:11 +00002166 // and finally restore the old GP
2167 BuildMI(BB, IA64::MOV, 1, IA64::r1).addReg(currentGP);
2168 IA64Lowering.restoreSP_RP(BB);
2169 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002170
2171 switch (Node->getValueType(0)) {
2172 default: assert(0 && "Unknown value type for call result!");
2173 case MVT::Other: return 1;
2174 case MVT::i1:
2175 BuildMI(BB, IA64::CMPNE, 2, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00002176 .addReg(IA64::r8).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002177 break;
2178 case MVT::i8:
2179 case MVT::i16:
2180 case MVT::i32:
2181 case MVT::i64:
2182 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r8);
2183 break;
2184 case MVT::f64:
2185 BuildMI(BB, IA64::FMOV, 1, Result).addReg(IA64::F8);
2186 break;
2187 }
2188 return Result+N.ResNo;
2189 }
2190
Misha Brukman4633f1c2005-04-21 23:13:11 +00002191 } // <- uhhh XXX
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002192 return 0;
2193}
2194
2195void ISel::Select(SDOperand N) {
2196 unsigned Tmp1, Tmp2, Opc;
2197 unsigned opcode = N.getOpcode();
2198
Nate Begeman85fdeb22005-03-24 04:39:54 +00002199 if (!LoweredTokens.insert(N).second)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002200 return; // Already selected.
2201
2202 SDNode *Node = N.Val;
2203
2204 switch (Node->getOpcode()) {
2205 default:
2206 Node->dump(); std::cerr << "\n";
2207 assert(0 && "Node not handled yet!");
2208
2209 case ISD::EntryToken: return; // Noop
Misha Brukman4633f1c2005-04-21 23:13:11 +00002210
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002211 case ISD::TokenFactor: {
2212 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
2213 Select(Node->getOperand(i));
2214 return;
2215 }
2216
2217 case ISD::CopyToReg: {
2218 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00002219 Tmp1 = SelectExpr(N.getOperand(2));
2220 Tmp2 = cast<RegisterSDNode>(N.getOperand(1))->getReg();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002221
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002222 if (Tmp1 != Tmp2) {
Chris Lattner707ebc52005-08-16 21:56:37 +00002223 // if a bool, we use pseudocode
2224 if (N.getOperand(2).getValueType() == MVT::i1)
Misha Brukman7847fca2005-04-22 17:54:37 +00002225 BuildMI(BB, IA64::PCMPEQUNC, 3, Tmp2)
2226 .addReg(IA64::r0).addReg(IA64::r0).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002227 // (Tmp1) Tmp2 = cmp.eq.unc(r0,r0)
2228 else
Misha Brukman7847fca2005-04-22 17:54:37 +00002229 BuildMI(BB, IA64::MOV, 1, Tmp2).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002230 // XXX is this the right way 'round? ;)
Chris Lattner707ebc52005-08-16 21:56:37 +00002231 // FIXME: WHAT ABOUT FLOATING POINT?
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002232 }
2233 return;
2234 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002235
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002236 case ISD::RET: {
2237
2238 /* what the heck is going on here:
2239
2240<_sabre_> ret with two operands is obvious: chain and value
2241<camel_> yep
2242<_sabre_> ret with 3 values happens when 'expansion' occurs
2243<_sabre_> e.g. i64 gets split into 2x i32
2244<camel_> oh right
2245<_sabre_> you don't have this case on ia64
2246<camel_> yep
2247<_sabre_> so the two returned values go into EAX/EDX on ia32
2248<camel_> ahhh *memories*
2249<_sabre_> :)
2250<camel_> ok, thanks :)
2251<_sabre_> so yeah, everything that has a side effect takes a 'token chain'
2252<_sabre_> this is the first operand always
2253<_sabre_> these operand often define chains, they are the last operand
2254<_sabre_> they are printed as 'ch' if you do DAG.dump()
2255 */
Misha Brukman4633f1c2005-04-21 23:13:11 +00002256
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002257 switch (N.getNumOperands()) {
2258 default:
2259 assert(0 && "Unknown return instruction!");
2260 case 2:
2261 Select(N.getOperand(0));
2262 Tmp1 = SelectExpr(N.getOperand(1));
2263 switch (N.getOperand(1).getValueType()) {
2264 default: assert(0 && "All other types should have been promoted!!");
Misha Brukman7847fca2005-04-22 17:54:37 +00002265 // FIXME: do I need to add support for bools here?
2266 // (return '0' or '1' r8, basically...)
2267 //
2268 // FIXME: need to round floats - 80 bits is bad, the tester
2269 // told me so
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002270 case MVT::i64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002271 // we mark r8 as live on exit up above in LowerArguments()
2272 BuildMI(BB, IA64::MOV, 1, IA64::r8).addReg(Tmp1);
2273 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002274 case MVT::f64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002275 // we mark F8 as live on exit up above in LowerArguments()
2276 BuildMI(BB, IA64::FMOV, 1, IA64::F8).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002277 }
2278 break;
2279 case 1:
2280 Select(N.getOperand(0));
2281 break;
2282 }
2283 // before returning, restore the ar.pfs register (set by the 'alloc' up top)
2284 BuildMI(BB, IA64::MOV, 1).addReg(IA64::AR_PFS).addReg(IA64Lowering.VirtGPR);
2285 BuildMI(BB, IA64::RET, 0); // and then just emit a 'ret' instruction
2286 return;
2287 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002288
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002289 case ISD::BR: {
2290 Select(N.getOperand(0));
2291 MachineBasicBlock *Dest =
2292 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
2293 BuildMI(BB, IA64::BRLCOND_NOTCALL, 1).addReg(IA64::p0).addMBB(Dest);
2294 // XXX HACK! we do _not_ need long branches all the time
2295 return;
2296 }
2297
2298 case ISD::ImplicitDef: {
2299 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00002300 BuildMI(BB, IA64::IDEF, 0,
2301 cast<RegisterSDNode>(N.getOperand(1))->getReg());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002302 return;
2303 }
2304
2305 case ISD::BRCOND: {
2306 MachineBasicBlock *Dest =
2307 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
2308
2309 Select(N.getOperand(0));
2310 Tmp1 = SelectExpr(N.getOperand(1));
2311 BuildMI(BB, IA64::BRLCOND_NOTCALL, 1).addReg(Tmp1).addMBB(Dest);
2312 // XXX HACK! we do _not_ need long branches all the time
2313 return;
2314 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002315
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002316 case ISD::EXTLOAD:
2317 case ISD::ZEXTLOAD:
2318 case ISD::SEXTLOAD:
2319 case ISD::LOAD:
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +00002320 case ISD::TAILCALL:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002321 case ISD::CALL:
2322 case ISD::CopyFromReg:
2323 case ISD::DYNAMIC_STACKALLOC:
2324 SelectExpr(N);
2325 return;
2326
2327 case ISD::TRUNCSTORE:
2328 case ISD::STORE: {
2329 Select(N.getOperand(0));
2330 Tmp1 = SelectExpr(N.getOperand(1)); // value
2331
2332 bool isBool=false;
Misha Brukman4633f1c2005-04-21 23:13:11 +00002333
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002334 if(opcode == ISD::STORE) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002335 switch (N.getOperand(1).getValueType()) {
2336 default: assert(0 && "Cannot store this type!");
2337 case MVT::i1: Opc = IA64::ST1; isBool=true; break;
2338 // FIXME?: for now, we treat bool loads the same as i8 stores */
2339 case MVT::i8: Opc = IA64::ST1; break;
2340 case MVT::i16: Opc = IA64::ST2; break;
2341 case MVT::i32: Opc = IA64::ST4; break;
2342 case MVT::i64: Opc = IA64::ST8; break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002343
Misha Brukman7847fca2005-04-22 17:54:37 +00002344 case MVT::f32: Opc = IA64::STF4; break;
2345 case MVT::f64: Opc = IA64::STF8; break;
2346 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002347 } else { // truncstore
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002348 switch(cast<VTSDNode>(Node->getOperand(4))->getVT()) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002349 default: assert(0 && "unknown type in truncstore");
2350 case MVT::i1: Opc = IA64::ST1; isBool=true; break;
2351 //FIXME: DAG does not promote this load?
2352 case MVT::i8: Opc = IA64::ST1; break;
2353 case MVT::i16: Opc = IA64::ST2; break;
2354 case MVT::i32: Opc = IA64::ST4; break;
2355 case MVT::f32: Opc = IA64::STF4; break;
2356 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002357 }
2358
2359 if(N.getOperand(2).getOpcode() == ISD::GlobalAddress) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002360 unsigned dummy = MakeReg(MVT::i64);
2361 unsigned dummy2 = MakeReg(MVT::i64);
2362 BuildMI(BB, IA64::ADD, 2, dummy)
2363 .addGlobalAddress(cast<GlobalAddressSDNode>
2364 (N.getOperand(2))->getGlobal()).addReg(IA64::r1);
2365 BuildMI(BB, IA64::LD8, 1, dummy2).addReg(dummy);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002366
Misha Brukman7847fca2005-04-22 17:54:37 +00002367 if(!isBool)
2368 BuildMI(BB, Opc, 2).addReg(dummy2).addReg(Tmp1);
2369 else { // we are storing a bool, so emit a little pseudocode
2370 // to store a predicate register as one byte
2371 assert(Opc==IA64::ST1);
2372 unsigned dummy3 = MakeReg(MVT::i64);
2373 unsigned dummy4 = MakeReg(MVT::i64);
2374 BuildMI(BB, IA64::MOV, 1, dummy3).addReg(IA64::r0);
2375 BuildMI(BB, IA64::TPCADDIMM22, 2, dummy4)
2376 .addReg(dummy3).addImm(1).addReg(Tmp1); // if(Tmp1) dummy=0+1;
2377 BuildMI(BB, Opc, 2).addReg(dummy2).addReg(dummy4);
2378 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002379 } else if(N.getOperand(2).getOpcode() == ISD::FrameIndex) {
2380
Misha Brukman7847fca2005-04-22 17:54:37 +00002381 // FIXME? (what about bools?)
Jeff Cohen00b168892005-07-27 06:12:32 +00002382
Misha Brukman7847fca2005-04-22 17:54:37 +00002383 unsigned dummy = MakeReg(MVT::i64);
2384 BuildMI(BB, IA64::MOV, 1, dummy)
2385 .addFrameIndex(cast<FrameIndexSDNode>(N.getOperand(2))->getIndex());
2386 BuildMI(BB, Opc, 2).addReg(dummy).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002387 } else { // otherwise
Misha Brukman7847fca2005-04-22 17:54:37 +00002388 Tmp2 = SelectExpr(N.getOperand(2)); //address
2389 if(!isBool)
2390 BuildMI(BB, Opc, 2).addReg(Tmp2).addReg(Tmp1);
2391 else { // we are storing a bool, so emit a little pseudocode
2392 // to store a predicate register as one byte
2393 assert(Opc==IA64::ST1);
2394 unsigned dummy3 = MakeReg(MVT::i64);
2395 unsigned dummy4 = MakeReg(MVT::i64);
2396 BuildMI(BB, IA64::MOV, 1, dummy3).addReg(IA64::r0);
2397 BuildMI(BB, IA64::TPCADDIMM22, 2, dummy4)
2398 .addReg(dummy3).addImm(1).addReg(Tmp1); // if(Tmp1) dummy=0+1;
2399 BuildMI(BB, Opc, 2).addReg(Tmp2).addReg(dummy4);
2400 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002401 }
2402 return;
2403 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002404
Chris Lattner16cd04d2005-05-12 23:24:06 +00002405 case ISD::CALLSEQ_START:
2406 case ISD::CALLSEQ_END: {
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002407 Select(N.getOperand(0));
2408 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002409
Chris Lattner16cd04d2005-05-12 23:24:06 +00002410 Opc = N.getOpcode() == ISD::CALLSEQ_START ? IA64::ADJUSTCALLSTACKDOWN :
2411 IA64::ADJUSTCALLSTACKUP;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002412 BuildMI(BB, Opc, 1).addImm(Tmp1);
2413 return;
2414 }
2415
2416 return;
2417 }
2418 assert(0 && "GAME OVER. INSERT COIN?");
2419}
2420
2421
2422/// createIA64PatternInstructionSelector - This pass converts an LLVM function
2423/// into a machine code representation using pattern matching and a machine
2424/// description file.
2425///
2426FunctionPass *llvm::createIA64PatternInstructionSelector(TargetMachine &TM) {
Misha Brukman4633f1c2005-04-21 23:13:11 +00002427 return new ISel(TM);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002428}
2429
2430