blob: bf5aa565f248851952b52bed7f97a578cd264af5 [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],
205 getValueType(I->getType()));
Misha Brukman7847fca2005-04-22 17:54:37 +0000206 break;
207 case MVT::i1: // NOTE: as far as C abi stuff goes,
208 // bools are just boring old ints
209 case MVT::i8:
210 case MVT::i16:
211 case MVT::i32:
212 case MVT::i64:
213//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
214 MF.addLiveIn(args_int[count]); // mark this register as liveIn
215 argVreg[count] =
216 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
217 argPreg[count] = args_int[count];
218 argOpc[count] = IA64::MOV;
219 argt = newroot =
Chris Lattner707ebc52005-08-16 21:56:37 +0000220 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
Misha Brukman7847fca2005-04-22 17:54:37 +0000221 if ( getValueType(I->getType()) != MVT::i64)
222 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
223 newroot);
224 break;
225 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000226 } else { // more than 8 args go into the frame
Misha Brukman7847fca2005-04-22 17:54:37 +0000227 // Create the frame index object for this incoming parameter...
228 ArgOffset = 16 + 8 * (count - 8);
229 int FI = MFI->CreateFixedObject(8, ArgOffset);
Jeff Cohen00b168892005-07-27 06:12:32 +0000230
Misha Brukman7847fca2005-04-22 17:54:37 +0000231 // Create the SelectionDAG nodes corresponding to a load
232 //from this parameter
233 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
234 argt = newroot = DAG.getLoad(getValueType(I->getType()),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000235 DAG.getEntryNode(), FIN, DAG.getSrcValue(NULL));
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000236 }
237 ++count;
238 DAG.setRoot(newroot.getValue(1));
239 ArgValues.push_back(argt);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000240 }
Duraid Madinabeeaab22005-03-31 12:31:11 +0000241
Misha Brukman4633f1c2005-04-21 23:13:11 +0000242
Duraid Madinabeeaab22005-03-31 12:31:11 +0000243 // Create a vreg to hold the output of (what will become)
244 // the "alloc" instruction
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000245 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
246 BuildMI(&BB, IA64::PSEUDO_ALLOC, 0, VirtGPR);
247 // we create a PSEUDO_ALLOC (pseudo)instruction for now
248
249 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
250
251 // hmm:
252 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
253 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
254 // ..hmm.
255
256 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
257
258 // hmm:
259 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
260 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
261 // ..hmm.
262
Duraid Madinabeeaab22005-03-31 12:31:11 +0000263 unsigned tempOffset=0;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000264
Duraid Madinabeeaab22005-03-31 12:31:11 +0000265 // if this is a varargs function, we simply lower llvm.va_start by
266 // pointing to the first entry
267 if(F.isVarArg()) {
268 tempOffset=0;
269 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000270 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000271
Duraid Madinabeeaab22005-03-31 12:31:11 +0000272 // here we actually do the moving of args, and store them to the stack
273 // too if this is a varargs function:
274 for (int i = 0; i < count && i < 8; ++i) {
275 BuildMI(&BB, argOpc[i], 1, argVreg[i]).addReg(argPreg[i]);
276 if(F.isVarArg()) {
277 // if this is a varargs function, we copy the input registers to the stack
278 int FI = MFI->CreateFixedObject(8, tempOffset);
279 tempOffset+=8; //XXX: is it safe to use r22 like this?
280 BuildMI(&BB, IA64::MOV, 1, IA64::r22).addFrameIndex(FI);
281 // FIXME: we should use st8.spill here, one day
282 BuildMI(&BB, IA64::ST8, 1, IA64::r22).addReg(argPreg[i]);
283 }
284 }
285
Duraid Madinaca494fd2005-04-12 14:54:44 +0000286 // Finally, inform the code generator which regs we return values in.
287 // (see the ISD::RET: case down below)
288 switch (getValueType(F.getReturnType())) {
289 default: assert(0 && "i have no idea where to return this type!");
290 case MVT::isVoid: break;
291 case MVT::i1:
292 case MVT::i8:
293 case MVT::i16:
294 case MVT::i32:
295 case MVT::i64:
296 MF.addLiveOut(IA64::r8);
297 break;
298 case MVT::f32:
299 case MVT::f64:
300 MF.addLiveOut(IA64::F8);
301 break;
302 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000303
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000304 return ArgValues;
305}
Misha Brukman4633f1c2005-04-21 23:13:11 +0000306
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000307std::pair<SDOperand, SDOperand>
308IA64TargetLowering::LowerCallTo(SDOperand Chain,
Misha Brukman7847fca2005-04-22 17:54:37 +0000309 const Type *RetTy, bool isVarArg,
Chris Lattneradf6a962005-05-13 18:50:42 +0000310 unsigned CallingConv, bool isTailCall,
Jeff Cohen00b168892005-07-27 06:12:32 +0000311 SDOperand Callee, ArgListTy &Args,
Misha Brukman7847fca2005-04-22 17:54:37 +0000312 SelectionDAG &DAG) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000313
314 MachineFunction &MF = DAG.getMachineFunction();
315
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000316 unsigned NumBytes = 16;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000317 unsigned outRegsUsed = 0;
318
319 if (Args.size() > 8) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000320 NumBytes += (Args.size() - 8) * 8;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000321 outRegsUsed = 8;
322 } else {
323 outRegsUsed = Args.size();
324 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000325
Duraid Madinabeeaab22005-03-31 12:31:11 +0000326 // FIXME? this WILL fail if we ever try to pass around an arg that
327 // consumes more than a single output slot (a 'real' double, int128
328 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
329 // registers we use. Hopefully, the assembler will notice.
330 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
331 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000332
Chris Lattner16cd04d2005-05-12 23:24:06 +0000333 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000334 DAG.getConstant(NumBytes, getPointerTy()));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000335
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000336 std::vector<SDOperand> args_to_use;
337 for (unsigned i = 0, e = Args.size(); i != e; ++i)
338 {
339 switch (getValueType(Args[i].second)) {
340 default: assert(0 && "unexpected argument type!");
341 case MVT::i1:
342 case MVT::i8:
343 case MVT::i16:
344 case MVT::i32:
Misha Brukman7847fca2005-04-22 17:54:37 +0000345 //promote to 64-bits, sign/zero extending based on type
346 //of the argument
347 if(Args[i].second->isSigned())
348 Args[i].first = DAG.getNode(ISD::SIGN_EXTEND, MVT::i64,
349 Args[i].first);
350 else
351 Args[i].first = DAG.getNode(ISD::ZERO_EXTEND, MVT::i64,
352 Args[i].first);
353 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000354 case MVT::f32:
Misha Brukman7847fca2005-04-22 17:54:37 +0000355 //promote to 64-bits
356 Args[i].first = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Args[i].first);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000357 case MVT::f64:
358 case MVT::i64:
359 break;
360 }
361 args_to_use.push_back(Args[i].first);
362 }
363
364 std::vector<MVT::ValueType> RetVals;
365 MVT::ValueType RetTyVT = getValueType(RetTy);
366 if (RetTyVT != MVT::isVoid)
367 RetVals.push_back(RetTyVT);
368 RetVals.push_back(MVT::Other);
369
370 SDOperand TheCall = SDOperand(DAG.getCall(RetVals, Chain,
Misha Brukman7847fca2005-04-22 17:54:37 +0000371 Callee, args_to_use), 0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000372 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
Chris Lattner16cd04d2005-05-12 23:24:06 +0000373 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000374 DAG.getConstant(NumBytes, getPointerTy()));
375 return std::make_pair(TheCall, Chain);
376}
377
Chris Lattnere0fe2252005-07-05 19:58:54 +0000378SDOperand
379IA64TargetLowering::LowerVAStart(SDOperand Chain, SDOperand VAListP,
380 Value *VAListV, SelectionDAG &DAG) {
Andrew Lenharth558bc882005-06-18 18:34:52 +0000381 // vastart just stores the address of the VarArgsFrameIndex slot.
382 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
Chris Lattnere0fe2252005-07-05 19:58:54 +0000383 return DAG.getNode(ISD::STORE, MVT::Other, Chain, FR,
384 VAListP, DAG.getSrcValue(VAListV));
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000385}
386
387std::pair<SDOperand,SDOperand> IA64TargetLowering::
Chris Lattnere0fe2252005-07-05 19:58:54 +0000388LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
389 const Type *ArgTy, SelectionDAG &DAG) {
Duraid Madinabeeaab22005-03-31 12:31:11 +0000390
391 MVT::ValueType ArgVT = getValueType(ArgTy);
Chris Lattnere0fe2252005-07-05 19:58:54 +0000392 SDOperand Val = DAG.getLoad(MVT::i64, Chain,
393 VAListP, DAG.getSrcValue(VAListV));
394 SDOperand Result = DAG.getLoad(ArgVT, DAG.getEntryNode(), Val,
395 DAG.getSrcValue(NULL));
Andrew Lenharth558bc882005-06-18 18:34:52 +0000396 unsigned Amt;
397 if (ArgVT == MVT::i32 || ArgVT == MVT::f32)
398 Amt = 8;
399 else {
400 assert((ArgVT == MVT::i64 || ArgVT == MVT::f64) &&
401 "Other types should have been promoted for varargs!");
402 Amt = 8;
Duraid Madinabeeaab22005-03-31 12:31:11 +0000403 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000404 Val = DAG.getNode(ISD::ADD, Val.getValueType(), Val,
Andrew Lenharth558bc882005-06-18 18:34:52 +0000405 DAG.getConstant(Amt, Val.getValueType()));
406 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain,
Chris Lattnere0fe2252005-07-05 19:58:54 +0000407 Val, VAListP, DAG.getSrcValue(VAListV));
Duraid Madinabeeaab22005-03-31 12:31:11 +0000408 return std::make_pair(Result, Chain);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000409}
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000410
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000411namespace {
412
413 //===--------------------------------------------------------------------===//
414 /// ISel - IA64 specific code to select IA64 machine instructions for
415 /// SelectionDAG operations.
416 ///
417 class ISel : public SelectionDAGISel {
418 /// IA64Lowering - This object fully describes how to lower LLVM code to an
419 /// IA64-specific SelectionDAG.
420 IA64TargetLowering IA64Lowering;
Duraid Madinab2322562005-04-26 07:23:02 +0000421 SelectionDAG *ISelDAG; // Hack to support us having a dag->dag transform
422 // for sdiv and udiv until it is put into the future
423 // dag combiner
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000424
425 /// ExprMap - As shared expressions are codegen'd, we keep track of which
426 /// vreg the value is produced in, so we only emit one copy of each compiled
427 /// tree.
428 std::map<SDOperand, unsigned> ExprMap;
429 std::set<SDOperand> LoweredTokens;
430
431 public:
Duraid Madinab2322562005-04-26 07:23:02 +0000432 ISel(TargetMachine &TM) : SelectionDAGISel(IA64Lowering), IA64Lowering(TM),
433 ISelDAG(0) { }
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000434
435 /// InstructionSelectBasicBlock - This callback is invoked by
436 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
437 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
438
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000439 unsigned SelectExpr(SDOperand N);
440 void Select(SDOperand N);
Duraid Madinab2322562005-04-26 07:23:02 +0000441 // a dag->dag to transform mul-by-constant-int to shifts+adds/subs
442 SDOperand BuildConstmulSequence(SDOperand N);
443
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000444 };
445}
446
447/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
448/// when it has created a SelectionDAG for us to codegen.
449void ISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
450
451 // Codegen the basic block.
Duraid Madinab2322562005-04-26 07:23:02 +0000452 ISelDAG = &DAG;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000453 Select(DAG.getRoot());
454
455 // Clear state used for selection.
456 ExprMap.clear();
457 LoweredTokens.clear();
Duraid Madinab2322562005-04-26 07:23:02 +0000458 ISelDAG = 0;
459}
460
Duraid Madinab2322562005-04-26 07:23:02 +0000461// strip leading '0' characters from a string
462void munchLeadingZeros(std::string& inString) {
463 while(inString.c_str()[0]=='0') {
464 inString.erase(0, 1);
465 }
466}
467
468// strip trailing '0' characters from a string
469void munchTrailingZeros(std::string& inString) {
470 int curPos=inString.length()-1;
471
472 while(inString.c_str()[curPos]=='0') {
473 inString.erase(curPos, 1);
474 curPos--;
475 }
476}
477
478// return how many consecutive '0' characters are at the end of a string
479unsigned int countTrailingZeros(std::string& inString) {
480 int curPos=inString.length()-1;
481 unsigned int zeroCount=0;
482 // assert goes here
483 while(inString.c_str()[curPos--]=='0') {
484 zeroCount++;
485 }
486 return zeroCount;
487}
488
489// booth encode a string of '1' and '0' characters (returns string of 'P' (+1)
490// '0' and 'N' (-1) characters)
491void boothEncode(std::string inString, std::string& boothEncodedString) {
492
493 int curpos=0;
494 int replacements=0;
495 int lim=inString.size();
496
497 while(curpos<lim) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000498 if(inString[curpos]=='1') { // if we see a '1', look for a run of them
Duraid Madinab2322562005-04-26 07:23:02 +0000499 int runlength=0;
500 std::string replaceString="N";
Jeff Cohen00b168892005-07-27 06:12:32 +0000501
Duraid Madinab2322562005-04-26 07:23:02 +0000502 // find the run length
503 for(;inString[curpos+runlength]=='1';runlength++) ;
504
505 for(int i=0; i<runlength-1; i++)
Jeff Cohen00b168892005-07-27 06:12:32 +0000506 replaceString+="0";
Duraid Madinab2322562005-04-26 07:23:02 +0000507 replaceString+="1";
508
509 if(runlength>1) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000510 inString.replace(curpos, runlength+1, replaceString);
511 curpos+=runlength-1;
Duraid Madinab2322562005-04-26 07:23:02 +0000512 } else
Jeff Cohen00b168892005-07-27 06:12:32 +0000513 curpos++;
Duraid Madinab2322562005-04-26 07:23:02 +0000514 } else { // a zero, we just keep chugging along
515 curpos++;
516 }
517 }
518
519 // clean up (trim the string, reverse it and turn '1's into 'P's)
520 munchTrailingZeros(inString);
521 boothEncodedString="";
522
523 for(int i=inString.size()-1;i>=0;i--)
524 if(inString[i]=='1')
525 boothEncodedString+="P";
526 else
527 boothEncodedString+=inString[i];
528
529}
530
531struct shiftaddblob { // this encodes stuff like (x=) "A << B [+-] C << D"
532 unsigned firstVal; // A
Jeff Cohen00b168892005-07-27 06:12:32 +0000533 unsigned firstShift; // B
Duraid Madinab2322562005-04-26 07:23:02 +0000534 unsigned secondVal; // C
535 unsigned secondShift; // D
536 bool isSub;
537};
538
539/* this implements Lefevre's "pattern-based" constant multiplication,
540 * see "Multiplication by an Integer Constant", INRIA report 1999-06
541 *
542 * TODO: implement a method to try rewriting P0N<->0PP / N0P<->0NN
543 * to get better booth encodings - this does help in practice
544 * TODO: weight shifts appropriately (most architectures can't
545 * fuse a shift and an add for arbitrary shift amounts) */
546unsigned lefevre(const std::string inString,
547 std::vector<struct shiftaddblob> &ops) {
548 std::string retstring;
549 std::string s = inString;
550 munchTrailingZeros(s);
551
552 int length=s.length()-1;
553
554 if(length==0) {
555 return(0);
556 }
557
558 std::vector<int> p,n;
Jeff Cohen00b168892005-07-27 06:12:32 +0000559
Duraid Madinab2322562005-04-26 07:23:02 +0000560 for(int i=0; i<=length; i++) {
561 if (s.c_str()[length-i]=='P') {
562 p.push_back(i);
563 } else if (s.c_str()[length-i]=='N') {
564 n.push_back(i);
565 }
566 }
567
568 std::string t, u;
Duraid Madina4706c032005-04-26 09:42:50 +0000569 int c;
570 bool f;
Duraid Madinab2322562005-04-26 07:23:02 +0000571 std::map<const int, int> w;
572
Duraid Madina85d5f602005-04-27 11:57:39 +0000573 for(unsigned i=0; i<p.size(); i++) {
574 for(unsigned j=0; j<i; j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000575 w[p[i]-p[j]]++;
576 }
577 }
578
Duraid Madina85d5f602005-04-27 11:57:39 +0000579 for(unsigned i=1; i<n.size(); i++) {
580 for(unsigned j=0; j<i; j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000581 w[n[i]-n[j]]++;
582 }
583 }
584
Duraid Madina85d5f602005-04-27 11:57:39 +0000585 for(unsigned i=0; i<p.size(); i++) {
586 for(unsigned j=0; j<n.size(); j++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000587 w[-abs(p[i]-n[j])]++;
588 }
589 }
590
591 std::map<const int, int>::const_iterator ii;
592 std::vector<int> d;
593 std::multimap<int, int> sorted_by_value;
594
595 for(ii = w.begin(); ii!=w.end(); ii++)
596 sorted_by_value.insert(std::pair<int, int>((*ii).second,(*ii).first));
597
598 for (std::multimap<int, int>::iterator it = sorted_by_value.begin();
599 it != sorted_by_value.end(); ++it) {
600 d.push_back((*it).second);
601 }
602
603 int int_W=0;
604 int int_d;
605
606 while(d.size()>0 && (w[int_d=d.back()] > int_W)) {
607 d.pop_back();
608 retstring=s; // hmmm
609 int x=0;
610 int z=abs(int_d)-1;
611
612 if(int_d>0) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000613
Duraid Madina85d5f602005-04-27 11:57:39 +0000614 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000615 if( ((base+z+1) < retstring.size()) &&
616 retstring.c_str()[base]=='P' &&
617 retstring.c_str()[base+z+1]=='P')
618 {
619 // match
620 x++;
621 retstring.replace(base, 1, "0");
622 retstring.replace(base+z+1, 1, "p");
623 }
Duraid Madinab2322562005-04-26 07:23:02 +0000624 }
625
Duraid Madina85d5f602005-04-27 11:57:39 +0000626 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000627 if( ((base+z+1) < retstring.size()) &&
628 retstring.c_str()[base]=='N' &&
629 retstring.c_str()[base+z+1]=='N')
630 {
631 // match
632 x++;
633 retstring.replace(base, 1, "0");
634 retstring.replace(base+z+1, 1, "n");
635 }
Duraid Madinab2322562005-04-26 07:23:02 +0000636 }
637
638 } else {
Duraid Madina85d5f602005-04-27 11:57:39 +0000639 for(unsigned base=0; base<retstring.size(); base++) {
Jeff Cohen00b168892005-07-27 06:12:32 +0000640 if( ((base+z+1) < retstring.size()) &&
641 ((retstring.c_str()[base]=='P' &&
642 retstring.c_str()[base+z+1]=='N') ||
643 (retstring.c_str()[base]=='N' &&
644 retstring.c_str()[base+z+1]=='P')) ) {
645 // match
646 x++;
647
648 if(retstring.c_str()[base]=='P') {
649 retstring.replace(base, 1, "0");
650 retstring.replace(base+z+1, 1, "p");
651 } else { // retstring[base]=='N'
652 retstring.replace(base, 1, "0");
653 retstring.replace(base+z+1, 1, "n");
654 }
655 }
Duraid Madinab2322562005-04-26 07:23:02 +0000656 }
657 }
658
659 if(x>int_W) {
660 int_W = x;
661 t = retstring;
662 c = int_d; // tofix
663 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000664
Duraid Madinab2322562005-04-26 07:23:02 +0000665 } d.pop_back(); // hmm
666
667 u = t;
Jeff Cohen00b168892005-07-27 06:12:32 +0000668
Duraid Madina85d5f602005-04-27 11:57:39 +0000669 for(unsigned i=0; i<t.length(); i++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000670 if(t.c_str()[i]=='p' || t.c_str()[i]=='n')
671 t.replace(i, 1, "0");
672 }
673
Duraid Madina85d5f602005-04-27 11:57:39 +0000674 for(unsigned i=0; i<u.length(); i++) {
Duraid Madina8a3042c2005-05-09 13:18:34 +0000675 if(u[i]=='P' || u[i]=='N')
Duraid Madinab2322562005-04-26 07:23:02 +0000676 u.replace(i, 1, "0");
Duraid Madina8a3042c2005-05-09 13:18:34 +0000677 if(u[i]=='p')
Duraid Madinab2322562005-04-26 07:23:02 +0000678 u.replace(i, 1, "P");
Duraid Madina8a3042c2005-05-09 13:18:34 +0000679 if(u[i]=='n')
Duraid Madinab2322562005-04-26 07:23:02 +0000680 u.replace(i, 1, "N");
681 }
682
683 if( c<0 ) {
Duraid Madina4706c032005-04-26 09:42:50 +0000684 f=true;
Duraid Madinab2322562005-04-26 07:23:02 +0000685 c=-c;
686 } else
Duraid Madina4706c032005-04-26 09:42:50 +0000687 f=false;
Jeff Cohen00b168892005-07-27 06:12:32 +0000688
Duraid Madina8a3042c2005-05-09 13:18:34 +0000689 int pos=0;
690 while(u[pos]=='0')
691 pos++;
692
693 bool hit=(u[pos]=='N');
Duraid Madinab2322562005-04-26 07:23:02 +0000694
695 int g=0;
696 if(hit) {
697 g=1;
Duraid Madina85d5f602005-04-27 11:57:39 +0000698 for(unsigned p=0; p<u.length(); p++) {
Duraid Madina8a3042c2005-05-09 13:18:34 +0000699 bool isP=(u[p]=='P');
700 bool isN=(u[p]=='N');
Duraid Madinab2322562005-04-26 07:23:02 +0000701
702 if(isP)
Jeff Cohen00b168892005-07-27 06:12:32 +0000703 u.replace(p, 1, "N");
Duraid Madinab2322562005-04-26 07:23:02 +0000704 if(isN)
Jeff Cohen00b168892005-07-27 06:12:32 +0000705 u.replace(p, 1, "P");
Duraid Madinab2322562005-04-26 07:23:02 +0000706 }
707 }
708
709 munchLeadingZeros(u);
710
711 int i = lefevre(u, ops);
712
713 shiftaddblob blob;
Jeff Cohen00b168892005-07-27 06:12:32 +0000714
Duraid Madinab2322562005-04-26 07:23:02 +0000715 blob.firstVal=i; blob.firstShift=c;
716 blob.isSub=f;
717 blob.secondVal=i; blob.secondShift=0;
718
719 ops.push_back(blob);
720
721 i = ops.size();
722
723 munchLeadingZeros(t);
724
725 if(t.length()==0)
726 return i;
727
728 if(t.c_str()[0]!='P') {
729 g=2;
Duraid Madina85d5f602005-04-27 11:57:39 +0000730 for(unsigned p=0; p<t.length(); p++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000731 bool isP=(t.c_str()[p]=='P');
732 bool isN=(t.c_str()[p]=='N');
733
734 if(isP)
Jeff Cohen00b168892005-07-27 06:12:32 +0000735 t.replace(p, 1, "N");
Duraid Madinab2322562005-04-26 07:23:02 +0000736 if(isN)
Jeff Cohen00b168892005-07-27 06:12:32 +0000737 t.replace(p, 1, "P");
Duraid Madinab2322562005-04-26 07:23:02 +0000738 }
739 }
740
741 int j = lefevre(t, ops);
742
743 int trail=countTrailingZeros(u);
744 blob.secondVal=i; blob.secondShift=trail;
745
746 trail=countTrailingZeros(t);
747 blob.firstVal=j; blob.firstShift=trail;
748
749 switch(g) {
750 case 0:
751 blob.isSub=false; // first + second
752 break;
753 case 1:
754 blob.isSub=true; // first - second
755 break;
756 case 2:
757 blob.isSub=true; // second - first
758 int tmpval, tmpshift;
759 tmpval=blob.firstVal;
760 tmpshift=blob.firstShift;
761 blob.firstVal=blob.secondVal;
762 blob.firstShift=blob.secondShift;
763 blob.secondVal=tmpval;
764 blob.secondShift=tmpshift;
765 break;
766 //assert
767 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000768
Duraid Madinab2322562005-04-26 07:23:02 +0000769 ops.push_back(blob);
770 return ops.size();
771}
772
773SDOperand ISel::BuildConstmulSequence(SDOperand N) {
774 //FIXME: we should shortcut this stuff for multiplies by 2^n+1
775 // in particular, *3 is nicer as *2+1, not *4-1
776 int64_t constant=cast<ConstantSDNode>(N.getOperand(1))->getValue();
777
778 bool flippedSign;
779 unsigned preliminaryShift=0;
780
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000781 assert(constant != 0 && "erk, you're trying to multiply by constant zero\n");
Duraid Madinab2322562005-04-26 07:23:02 +0000782
783 // first, we make the constant to multiply by positive
784 if(constant<0) {
785 constant=-constant;
786 flippedSign=true;
787 } else {
788 flippedSign=false;
789 }
790
791 // next, we make it odd.
792 for(; (constant%2==0); preliminaryShift++)
793 constant>>=1;
794
795 //OK, we have a positive, odd number of 64 bits or less. Convert it
796 //to a binary string, constantString[0] is the LSB
797 char constantString[65];
798 for(int i=0; i<64; i++)
799 constantString[i]='0'+((constant>>i)&0x1);
800 constantString[64]=0;
801
802 // now, Booth encode it
803 std::string boothEncodedString;
804 boothEncode(constantString, boothEncodedString);
805
806 std::vector<struct shiftaddblob> ops;
807 // do the transformation, filling out 'ops'
808 lefevre(boothEncodedString, ops);
809
Duraid Madinae75a24a2005-05-15 14:44:13 +0000810 assert(ops.size() < 80 && "constmul code has gone haywire\n");
811 SDOperand results[80]; // temporary results (of adds/subs of shifts)
Jeff Cohen00b168892005-07-27 06:12:32 +0000812
Duraid Madinab2322562005-04-26 07:23:02 +0000813 // now turn 'ops' into DAG bits
Duraid Madina85d5f602005-04-27 11:57:39 +0000814 for(unsigned i=0; i<ops.size(); i++) {
Duraid Madinab2322562005-04-26 07:23:02 +0000815 SDOperand amt = ISelDAG->getConstant(ops[i].firstShift, MVT::i64);
816 SDOperand val = (ops[i].firstVal == 0) ? N.getOperand(0) :
817 results[ops[i].firstVal-1];
818 SDOperand left = ISelDAG->getNode(ISD::SHL, MVT::i64, val, amt);
819 amt = ISelDAG->getConstant(ops[i].secondShift, MVT::i64);
820 val = (ops[i].secondVal == 0) ? N.getOperand(0) :
821 results[ops[i].secondVal-1];
822 SDOperand right = ISelDAG->getNode(ISD::SHL, MVT::i64, val, amt);
823 if(ops[i].isSub)
824 results[i] = ISelDAG->getNode(ISD::SUB, MVT::i64, left, right);
825 else
826 results[i] = ISelDAG->getNode(ISD::ADD, MVT::i64, left, right);
827 }
828
829 // don't forget flippedSign and preliminaryShift!
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000830 SDOperand shiftedresult;
Duraid Madinab2322562005-04-26 07:23:02 +0000831 if(preliminaryShift) {
832 SDOperand finalshift = ISelDAG->getConstant(preliminaryShift, MVT::i64);
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000833 shiftedresult = ISelDAG->getNode(ISD::SHL, MVT::i64,
Jeff Cohen00b168892005-07-27 06:12:32 +0000834 results[ops.size()-1], finalshift);
Duraid Madinab2322562005-04-26 07:23:02 +0000835 } else { // there was no preliminary divide-by-power-of-2 required
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000836 shiftedresult = results[ops.size()-1];
Duraid Madinab2322562005-04-26 07:23:02 +0000837 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000838
Duraid Madina40c9e6b2005-05-02 07:27:14 +0000839 SDOperand finalresult;
840 if(flippedSign) { // if we were multiplying by a negative constant:
841 SDOperand zero = ISelDAG->getConstant(0, MVT::i64);
842 // subtract the result from 0 to flip its sign
843 finalresult = ISelDAG->getNode(ISD::SUB, MVT::i64, zero, shiftedresult);
844 } else { // there was no preliminary multiply by -1 required
845 finalresult = shiftedresult;
846 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000847
848 return finalresult;
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000849}
850
Duraid Madina4826a072005-04-06 09:55:17 +0000851/// ponderIntegerDivisionBy - When handling integer divides, if the divide
852/// is by a constant such that we can efficiently codegen it, this
853/// function says what to do. Currently, it returns 0 if the division must
854/// become a genuine divide, and 1 if the division can be turned into a
855/// right shift.
856static unsigned ponderIntegerDivisionBy(SDOperand N, bool isSigned,
857 unsigned& Imm) {
858 if (N.getOpcode() != ISD::Constant) return 0; // if not a divide by
859 // a constant, give up.
860
861 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
862
Chris Lattner0561b3f2005-08-02 19:26:06 +0000863 if (isPowerOf2_64(v)) { // if a division by a power of two, say so
864 Imm = Log2_64(v);
Duraid Madina4826a072005-04-06 09:55:17 +0000865 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000866 }
867
Duraid Madina4826a072005-04-06 09:55:17 +0000868 return 0; // fallthrough
869}
870
Duraid Madinac02780e2005-04-13 04:50:54 +0000871static unsigned ponderIntegerAndWith(SDOperand N, unsigned& Imm) {
872 if (N.getOpcode() != ISD::Constant) return 0; // if not ANDing with
873 // a constant, give up.
874
875 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
876
Chris Lattner0561b3f2005-08-02 19:26:06 +0000877 if (isMask_64(v)) { // if ANDing with ((2^n)-1) for some n
Jim Laskeyffb973d2005-08-20 11:05:23 +0000878 Imm = Log2_64(v) + 1;
Duraid Madinac02780e2005-04-13 04:50:54 +0000879 return 1; // say so
Misha Brukman4633f1c2005-04-21 23:13:11 +0000880 }
881
Duraid Madinac02780e2005-04-13 04:50:54 +0000882 return 0; // fallthrough
883}
884
Duraid Madinaf55e4032005-04-07 12:33:38 +0000885static unsigned ponderIntegerAdditionWith(SDOperand N, unsigned& Imm) {
886 if (N.getOpcode() != ISD::Constant) return 0; // if not adding a
887 // constant, give up.
888 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
889
890 if (v <= 8191 && v >= -8192) { // if this constants fits in 14 bits, say so
891 Imm = v & 0x3FFF; // 14 bits
892 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000893 }
Duraid Madinaf55e4032005-04-07 12:33:38 +0000894 return 0; // fallthrough
895}
896
897static unsigned ponderIntegerSubtractionFrom(SDOperand N, unsigned& Imm) {
898 if (N.getOpcode() != ISD::Constant) return 0; // if not subtracting a
899 // constant, give up.
900 int64_t v = (int64_t)cast<ConstantSDNode>(N)->getSignExtended();
901
902 if (v <= 127 && v >= -128) { // if this constants fits in 8 bits, say so
903 Imm = v & 0xFF; // 8 bits
904 return 1;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000905 }
Duraid Madinaf55e4032005-04-07 12:33:38 +0000906 return 0; // fallthrough
907}
908
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000909unsigned ISel::SelectExpr(SDOperand N) {
910 unsigned Result;
911 unsigned Tmp1, Tmp2, Tmp3;
912 unsigned Opc = 0;
913 MVT::ValueType DestType = N.getValueType();
914
915 unsigned opcode = N.getOpcode();
916
917 SDNode *Node = N.Val;
918 SDOperand Op0, Op1;
919
920 if (Node->getOpcode() == ISD::CopyFromReg)
921 // Just use the specified register as our input.
Chris Lattner707ebc52005-08-16 21:56:37 +0000922 return cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Misha Brukman4633f1c2005-04-21 23:13:11 +0000923
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000924 unsigned &Reg = ExprMap[N];
925 if (Reg) return Reg;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000926
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +0000927 if (N.getOpcode() != ISD::CALL && N.getOpcode() != ISD::TAILCALL)
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000928 Reg = Result = (N.getValueType() != MVT::Other) ?
929 MakeReg(N.getValueType()) : 1;
930 else {
931 // If this is a call instruction, make sure to prepare ALL of the result
932 // values as well as the chain.
933 if (Node->getNumValues() == 1)
934 Reg = Result = 1; // Void call, just a chain.
935 else {
936 Result = MakeReg(Node->getValueType(0));
937 ExprMap[N.getValue(0)] = Result;
938 for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
939 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
940 ExprMap[SDOperand(Node, Node->getNumValues()-1)] = 1;
941 }
942 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000943
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000944 switch (N.getOpcode()) {
945 default:
946 Node->dump();
947 assert(0 && "Node not handled!\n");
948
949 case ISD::FrameIndex: {
950 Tmp1 = cast<FrameIndexSDNode>(N)->getIndex();
951 BuildMI(BB, IA64::MOV, 1, Result).addFrameIndex(Tmp1);
952 return Result;
953 }
954
955 case ISD::ConstantPool: {
956 Tmp1 = cast<ConstantPoolSDNode>(N)->getIndex();
957 IA64Lowering.restoreGP(BB); // FIXME: do i really need this?
958 BuildMI(BB, IA64::ADD, 2, Result).addConstantPoolIndex(Tmp1)
959 .addReg(IA64::r1);
960 return Result;
961 }
962
963 case ISD::ConstantFP: {
964 Tmp1 = Result; // Intermediate Register
965 if (cast<ConstantFPSDNode>(N)->getValue() < 0.0 ||
966 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
967 Tmp1 = MakeReg(MVT::f64);
968
969 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0) ||
970 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
971 BuildMI(BB, IA64::FMOV, 1, Tmp1).addReg(IA64::F0); // load 0.0
972 else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0) ||
973 cast<ConstantFPSDNode>(N)->isExactlyValue(-1.0))
974 BuildMI(BB, IA64::FMOV, 1, Tmp1).addReg(IA64::F1); // load 1.0
975 else
976 assert(0 && "Unexpected FP constant!");
977 if (Tmp1 != Result)
978 // we multiply by +1.0, negate (this is FNMA), and then add 0.0
979 BuildMI(BB, IA64::FNMA, 3, Result).addReg(Tmp1).addReg(IA64::F1)
Misha Brukman7847fca2005-04-22 17:54:37 +0000980 .addReg(IA64::F0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +0000981 return Result;
982 }
983
984 case ISD::DYNAMIC_STACKALLOC: {
985 // Generate both result values.
986 if (Result != 1)
987 ExprMap[N.getValue(1)] = 1; // Generate the token
988 else
989 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
990
991 // FIXME: We are currently ignoring the requested alignment for handling
992 // greater than the stack alignment. This will need to be revisited at some
993 // point. Align = N.getOperand(2);
994
995 if (!isa<ConstantSDNode>(N.getOperand(2)) ||
996 cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
997 std::cerr << "Cannot allocate stack object with greater alignment than"
998 << " the stack alignment yet!";
999 abort();
1000 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001001
1002/*
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001003 Select(N.getOperand(0));
1004 if (ConstantSDNode* CN = dyn_cast<ConstantSDNode>(N.getOperand(1)))
1005 {
1006 if (CN->getValue() < 32000)
1007 {
1008 BuildMI(BB, IA64::ADDIMM22, 2, IA64::r12).addReg(IA64::r12)
Misha Brukman7847fca2005-04-22 17:54:37 +00001009 .addImm(-CN->getValue());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001010 } else {
1011 Tmp1 = SelectExpr(N.getOperand(1));
1012 // Subtract size from stack pointer, thereby allocating some space.
1013 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
1014 }
1015 } else {
1016 Tmp1 = SelectExpr(N.getOperand(1));
1017 // Subtract size from stack pointer, thereby allocating some space.
1018 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
1019 }
Duraid Madinabeeaab22005-03-31 12:31:11 +00001020*/
1021 Select(N.getOperand(0));
1022 Tmp1 = SelectExpr(N.getOperand(1));
1023 // Subtract size from stack pointer, thereby allocating some space.
1024 BuildMI(BB, IA64::SUB, 2, IA64::r12).addReg(IA64::r12).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001025 // Put a pointer to the space into the result register, by copying the
1026 // stack pointer.
1027 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r12);
1028 return Result;
1029 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001030
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001031 case ISD::SELECT: {
1032 Tmp1 = SelectExpr(N.getOperand(0)); //Cond
1033 Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1034 Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
1035
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001036 unsigned bogoResult;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001037
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001038 switch (N.getOperand(1).getValueType()) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001039 default: assert(0 &&
Duraid Madina4bd708d2005-05-02 06:41:13 +00001040 "ISD::SELECT: 'select'ing something other than i1, i64 or f64!\n");
1041 // for i1, we load the condition into an integer register, then
1042 // conditionally copy Tmp2 and Tmp3 to Tmp1 in parallel (only one
1043 // of them will go through, since the integer register will hold
1044 // either 0 or 1)
1045 case MVT::i1: {
1046 bogoResult=MakeReg(MVT::i1);
1047
1048 // load the condition into an integer register
1049 unsigned condReg=MakeReg(MVT::i64);
1050 unsigned dummy=MakeReg(MVT::i64);
1051 BuildMI(BB, IA64::MOV, 1, dummy).addReg(IA64::r0);
1052 BuildMI(BB, IA64::TPCADDIMM22, 2, condReg).addReg(dummy)
1053 .addImm(1).addReg(Tmp1);
1054
1055 // initialize Result (bool) to false (hence UNC) and if
1056 // the select condition (condReg) is false (0), copy Tmp3
1057 BuildMI(BB, IA64::PCMPEQUNC, 3, bogoResult)
1058 .addReg(condReg).addReg(IA64::r0).addReg(Tmp3);
1059
1060 // now, if the selection condition is true, write 1 to the
1061 // result if Tmp2 is 1
1062 BuildMI(BB, IA64::TPCMPNE, 3, Result).addReg(bogoResult)
1063 .addReg(condReg).addReg(IA64::r0).addReg(Tmp2);
1064 break;
1065 }
1066 // for i64/f64, we just copy Tmp3 and then conditionally overwrite it
1067 // with Tmp2 if Tmp1 is true
Misha Brukman7847fca2005-04-22 17:54:37 +00001068 case MVT::i64:
1069 bogoResult=MakeReg(MVT::i64);
Duraid Madina4bd708d2005-05-02 06:41:13 +00001070 BuildMI(BB, IA64::MOV, 1, bogoResult).addReg(Tmp3);
1071 BuildMI(BB, IA64::CMOV, 2, Result).addReg(bogoResult).addReg(Tmp2)
1072 .addReg(Tmp1);
Misha Brukman7847fca2005-04-22 17:54:37 +00001073 break;
1074 case MVT::f64:
1075 bogoResult=MakeReg(MVT::f64);
Duraid Madina4bd708d2005-05-02 06:41:13 +00001076 BuildMI(BB, IA64::FMOV, 1, bogoResult).addReg(Tmp3);
1077 BuildMI(BB, IA64::CFMOV, 2, Result).addReg(bogoResult).addReg(Tmp2)
1078 .addReg(Tmp1);
Misha Brukman7847fca2005-04-22 17:54:37 +00001079 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001080 }
Jeff Cohen00b168892005-07-27 06:12:32 +00001081
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001082 return Result;
1083 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001084
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001085 case ISD::Constant: {
1086 unsigned depositPos=0;
1087 unsigned depositLen=0;
1088 switch (N.getValueType()) {
1089 default: assert(0 && "Cannot use constants of this type!");
1090 case MVT::i1: { // if a bool, we don't 'load' so much as generate
Misha Brukman7847fca2005-04-22 17:54:37 +00001091 // the constant:
1092 if(cast<ConstantSDNode>(N)->getValue()) // true:
1093 BuildMI(BB, IA64::CMPEQ, 2, Result).addReg(IA64::r0).addReg(IA64::r0);
1094 else // false:
1095 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(IA64::r0).addReg(IA64::r0);
1096 return Result; // early exit
1097 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001098 case MVT::i64: break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001099 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001100
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001101 int64_t immediate = cast<ConstantSDNode>(N)->getValue();
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001102
1103 if(immediate==0) { // if the constant is just zero,
1104 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r0); // just copy r0
1105 return Result; // early exit
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001106 }
1107
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001108 if (immediate <= 8191 && immediate >= -8192) {
1109 // if this constants fits in 14 bits, we use a mov the assembler will
1110 // turn into: "adds rDest=imm,r0" (and _not_ "andl"...)
1111 BuildMI(BB, IA64::MOVSIMM14, 1, Result).addSImm(immediate);
1112 return Result; // early exit
Misha Brukman4633f1c2005-04-21 23:13:11 +00001113 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001114
1115 if (immediate <= 2097151 && immediate >= -2097152) {
1116 // if this constants fits in 22 bits, we use a mov the assembler will
1117 // turn into: "addl rDest=imm,r0"
1118 BuildMI(BB, IA64::MOVSIMM22, 1, Result).addSImm(immediate);
1119 return Result; // early exit
Misha Brukman4633f1c2005-04-21 23:13:11 +00001120 }
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001121
1122 /* otherwise, our immediate is big, so we use movl */
1123 uint64_t Imm = immediate;
Duraid Madina21478e52005-04-11 07:16:39 +00001124 BuildMI(BB, IA64::MOVLIMM64, 1, Result).addImm64(Imm);
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001125 return Result;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001126 }
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001127
1128 case ISD::UNDEF: {
1129 BuildMI(BB, IA64::IDEF, 0, Result);
1130 return Result;
1131 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001132
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001133 case ISD::GlobalAddress: {
1134 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
1135 unsigned Tmp1 = MakeReg(MVT::i64);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001136
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001137 BuildMI(BB, IA64::ADD, 2, Tmp1).addGlobalAddress(GV).addReg(IA64::r1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001138 BuildMI(BB, IA64::LD8, 1, Result).addReg(Tmp1);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001139
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001140 return Result;
1141 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001142
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001143 case ISD::ExternalSymbol: {
1144 const char *Sym = cast<ExternalSymbolSDNode>(N)->getSymbol();
Duraid Madinabeeaab22005-03-31 12:31:11 +00001145// assert(0 && "sorry, but what did you want an ExternalSymbol for again?");
1146 BuildMI(BB, IA64::MOV, 1, Result).addExternalSymbol(Sym); // XXX
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001147 return Result;
1148 }
1149
1150 case ISD::FP_EXTEND: {
1151 Tmp1 = SelectExpr(N.getOperand(0));
1152 BuildMI(BB, IA64::FMOV, 1, Result).addReg(Tmp1);
1153 return Result;
1154 }
1155
1156 case ISD::ZERO_EXTEND: {
1157 Tmp1 = SelectExpr(N.getOperand(0)); // value
Misha Brukman4633f1c2005-04-21 23:13:11 +00001158
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001159 switch (N.getOperand(0).getValueType()) {
1160 default: assert(0 && "Cannot zero-extend this type!");
1161 case MVT::i8: Opc = IA64::ZXT1; break;
1162 case MVT::i16: Opc = IA64::ZXT2; break;
1163 case MVT::i32: Opc = IA64::ZXT4; break;
1164
Misha Brukman4633f1c2005-04-21 23:13:11 +00001165 // we handle bools differently! :
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001166 case MVT::i1: { // if the predicate reg has 1, we want a '1' in our GR.
Misha Brukman7847fca2005-04-22 17:54:37 +00001167 unsigned dummy = MakeReg(MVT::i64);
1168 // first load zero:
1169 BuildMI(BB, IA64::MOV, 1, dummy).addReg(IA64::r0);
1170 // ...then conditionally (PR:Tmp1) add 1:
1171 BuildMI(BB, IA64::TPCADDIMM22, 2, Result).addReg(dummy)
1172 .addImm(1).addReg(Tmp1);
1173 return Result; // XXX early exit!
1174 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001175 }
1176
1177 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1178 return Result;
1179 }
1180
1181 case ISD::SIGN_EXTEND: { // we should only have to handle i1 -> i64 here!!!
1182
1183assert(0 && "hmm, ISD::SIGN_EXTEND: shouldn't ever be reached. bad luck!\n");
1184
1185 Tmp1 = SelectExpr(N.getOperand(0)); // value
Misha Brukman4633f1c2005-04-21 23:13:11 +00001186
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001187 switch (N.getOperand(0).getValueType()) {
1188 default: assert(0 && "Cannot sign-extend this type!");
1189 case MVT::i1: assert(0 && "trying to sign extend a bool? ow.\n");
Misha Brukman7847fca2005-04-22 17:54:37 +00001190 Opc = IA64::SXT1; break;
1191 // FIXME: for now, we treat bools the same as i8s
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001192 case MVT::i8: Opc = IA64::SXT1; break;
1193 case MVT::i16: Opc = IA64::SXT2; break;
1194 case MVT::i32: Opc = IA64::SXT4; break;
1195 }
1196
1197 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1198 return Result;
1199 }
1200
1201 case ISD::TRUNCATE: {
1202 // we use the funky dep.z (deposit (zero)) instruction to deposit bits
1203 // of R0 appropriately.
1204 switch (N.getOperand(0).getValueType()) {
1205 default: assert(0 && "Unknown truncate!");
1206 case MVT::i64: break;
1207 }
1208 Tmp1 = SelectExpr(N.getOperand(0));
1209 unsigned depositPos, depositLen;
1210
1211 switch (N.getValueType()) {
1212 default: assert(0 && "Unknown truncate!");
1213 case MVT::i1: {
1214 // if input (normal reg) is 0, 0!=0 -> false (0), if 1, 1!=0 ->true (1):
Misha Brukman7847fca2005-04-22 17:54:37 +00001215 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(Tmp1)
1216 .addReg(IA64::r0);
1217 return Result; // XXX early exit!
1218 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001219 case MVT::i8: depositPos=0; depositLen=8; break;
1220 case MVT::i16: depositPos=0; depositLen=16; break;
1221 case MVT::i32: depositPos=0; depositLen=32; break;
1222 }
Duraid Madinaa9110342005-08-19 13:25:50 +00001223 BuildMI(BB, IA64::DEPZ, 3, Result).addReg(Tmp1)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001224 .addImm(depositPos).addImm(depositLen);
1225 return Result;
1226 }
1227
Misha Brukman7847fca2005-04-22 17:54:37 +00001228/*
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001229 case ISD::FP_ROUND: {
1230 assert (DestType == MVT::f32 && N.getOperand(0).getValueType() == MVT::f64 &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001231 "error: trying to FP_ROUND something other than f64 -> f32!\n");
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001232 Tmp1 = SelectExpr(N.getOperand(0));
1233 BuildMI(BB, IA64::FADDS, 2, Result).addReg(Tmp1).addReg(IA64::F0);
1234 // we add 0.0 using a single precision add to do rounding
1235 return Result;
1236 }
1237*/
1238
1239// FIXME: the following 4 cases need cleaning
1240 case ISD::SINT_TO_FP: {
1241 Tmp1 = SelectExpr(N.getOperand(0));
1242 Tmp2 = MakeReg(MVT::f64);
1243 unsigned dummy = MakeReg(MVT::f64);
1244 BuildMI(BB, IA64::SETFSIG, 1, Tmp2).addReg(Tmp1);
1245 BuildMI(BB, IA64::FCVTXF, 1, dummy).addReg(Tmp2);
1246 BuildMI(BB, IA64::FNORMD, 1, Result).addReg(dummy);
1247 return Result;
1248 }
1249
1250 case ISD::UINT_TO_FP: {
1251 Tmp1 = SelectExpr(N.getOperand(0));
1252 Tmp2 = MakeReg(MVT::f64);
1253 unsigned dummy = MakeReg(MVT::f64);
1254 BuildMI(BB, IA64::SETFSIG, 1, Tmp2).addReg(Tmp1);
1255 BuildMI(BB, IA64::FCVTXUF, 1, dummy).addReg(Tmp2);
1256 BuildMI(BB, IA64::FNORMD, 1, Result).addReg(dummy);
1257 return Result;
1258 }
1259
1260 case ISD::FP_TO_SINT: {
1261 Tmp1 = SelectExpr(N.getOperand(0));
1262 Tmp2 = MakeReg(MVT::f64);
1263 BuildMI(BB, IA64::FCVTFXTRUNC, 1, Tmp2).addReg(Tmp1);
1264 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(Tmp2);
1265 return Result;
1266 }
1267
1268 case ISD::FP_TO_UINT: {
1269 Tmp1 = SelectExpr(N.getOperand(0));
1270 Tmp2 = MakeReg(MVT::f64);
1271 BuildMI(BB, IA64::FCVTFXUTRUNC, 1, Tmp2).addReg(Tmp1);
1272 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(Tmp2);
1273 return Result;
1274 }
1275
1276 case ISD::ADD: {
Duraid Madina4826a072005-04-06 09:55:17 +00001277 if(DestType == MVT::f64 && N.getOperand(0).getOpcode() == ISD::MUL &&
1278 N.getOperand(0).Val->hasOneUse()) { // if we can fold this add
1279 // into an fma, do so:
1280 // ++FusedFP; // Statistic
1281 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1282 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1283 Tmp3 = SelectExpr(N.getOperand(1));
1284 BuildMI(BB, IA64::FMA, 3, Result).addReg(Tmp1).addReg(Tmp2).addReg(Tmp3);
1285 return Result; // early exit
1286 }
Duraid Madinaed095022005-04-13 06:12:04 +00001287
1288 if(DestType != MVT::f64 && N.getOperand(0).getOpcode() == ISD::SHL &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001289 N.getOperand(0).Val->hasOneUse()) { // if we might be able to fold
Duraid Madinaed095022005-04-13 06:12:04 +00001290 // this add into a shladd, try:
1291 ConstantSDNode *CSD = NULL;
1292 if((CSD = dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) &&
Misha Brukman7847fca2005-04-22 17:54:37 +00001293 (CSD->getValue() >= 1) && (CSD->getValue() <= 4) ) { // we can:
Duraid Madinaed095022005-04-13 06:12:04 +00001294
Misha Brukman7847fca2005-04-22 17:54:37 +00001295 // ++FusedSHLADD; // Statistic
1296 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1297 int shl_amt = CSD->getValue();
1298 Tmp3 = SelectExpr(N.getOperand(1));
Jeff Cohen00b168892005-07-27 06:12:32 +00001299
Misha Brukman7847fca2005-04-22 17:54:37 +00001300 BuildMI(BB, IA64::SHLADD, 3, Result)
1301 .addReg(Tmp1).addImm(shl_amt).addReg(Tmp3);
1302 return Result; // early exit
Duraid Madinaed095022005-04-13 06:12:04 +00001303 }
1304 }
1305
1306 //else, fallthrough:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001307 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001308 if(DestType != MVT::f64) { // integer addition:
1309 switch (ponderIntegerAdditionWith(N.getOperand(1), Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001310 case 1: // adding a constant that's 14 bits
1311 BuildMI(BB, IA64::ADDIMM14, 2, Result).addReg(Tmp1).addSImm(Tmp3);
1312 return Result; // early exit
1313 } // fallthrough and emit a reg+reg ADD:
1314 Tmp2 = SelectExpr(N.getOperand(1));
1315 BuildMI(BB, IA64::ADD, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001316 } else { // this is a floating point addition
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001317 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001318 BuildMI(BB, IA64::FADD, 2, Result).addReg(Tmp1).addReg(Tmp2);
1319 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001320 return Result;
1321 }
1322
1323 case ISD::MUL: {
Duraid Madina4826a072005-04-06 09:55:17 +00001324
1325 if(DestType != MVT::f64) { // TODO: speed!
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001326/* FIXME if(N.getOperand(1).getOpcode() != ISD::Constant) { // if not a const mul
1327 */
Jeff Cohen00b168892005-07-27 06:12:32 +00001328 // boring old integer multiply with xma
1329 Tmp1 = SelectExpr(N.getOperand(0));
1330 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinab2322562005-04-26 07:23:02 +00001331
Jeff Cohen00b168892005-07-27 06:12:32 +00001332 unsigned TempFR1=MakeReg(MVT::f64);
1333 unsigned TempFR2=MakeReg(MVT::f64);
1334 unsigned TempFR3=MakeReg(MVT::f64);
1335 BuildMI(BB, IA64::SETFSIG, 1, TempFR1).addReg(Tmp1);
1336 BuildMI(BB, IA64::SETFSIG, 1, TempFR2).addReg(Tmp2);
1337 BuildMI(BB, IA64::XMAL, 1, TempFR3).addReg(TempFR1).addReg(TempFR2)
1338 .addReg(IA64::F0);
1339 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(TempFR3);
1340 return Result; // early exit
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001341 /* FIXME } else { // we are multiplying by an integer constant! yay
Jeff Cohen00b168892005-07-27 06:12:32 +00001342 return Reg = SelectExpr(BuildConstmulSequence(N)); // avert your eyes!
Duraid Madinad2ff5ef2005-08-10 12:38:57 +00001343 } */
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001344 }
Duraid Madinab2322562005-04-26 07:23:02 +00001345 else { // floating point multiply
1346 Tmp1 = SelectExpr(N.getOperand(0));
1347 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001348 BuildMI(BB, IA64::FMPY, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinab2322562005-04-26 07:23:02 +00001349 return Result;
1350 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001351 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001352
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001353 case ISD::SUB: {
Duraid Madina4826a072005-04-06 09:55:17 +00001354 if(DestType == MVT::f64 && N.getOperand(0).getOpcode() == ISD::MUL &&
1355 N.getOperand(0).Val->hasOneUse()) { // if we can fold this sub
1356 // into an fms, do so:
1357 // ++FusedFP; // Statistic
1358 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1359 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1360 Tmp3 = SelectExpr(N.getOperand(1));
1361 BuildMI(BB, IA64::FMS, 3, Result).addReg(Tmp1).addReg(Tmp2).addReg(Tmp3);
1362 return Result; // early exit
1363 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001364 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001365 if(DestType != MVT::f64) { // integer subtraction:
1366 switch (ponderIntegerSubtractionFrom(N.getOperand(0), Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001367 case 1: // subtracting *from* an 8 bit constant:
1368 BuildMI(BB, IA64::SUBIMM8, 2, Result).addSImm(Tmp3).addReg(Tmp2);
1369 return Result; // early exit
1370 } // fallthrough and emit a reg+reg SUB:
1371 Tmp1 = SelectExpr(N.getOperand(0));
1372 BuildMI(BB, IA64::SUB, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001373 } else { // this is a floating point subtraction
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001374 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001375 BuildMI(BB, IA64::FSUB, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madinaf55e4032005-04-07 12:33:38 +00001376 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001377 return Result;
1378 }
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001379
1380 case ISD::FABS: {
1381 Tmp1 = SelectExpr(N.getOperand(0));
1382 assert(DestType == MVT::f64 && "trying to fabs something other than f64?");
1383 BuildMI(BB, IA64::FABS, 1, Result).addReg(Tmp1);
1384 return Result;
1385 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001386
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001387 case ISD::FNEG: {
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001388 assert(DestType == MVT::f64 && "trying to fneg something other than f64?");
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001389
Misha Brukman4633f1c2005-04-21 23:13:11 +00001390 if (ISD::FABS == N.getOperand(0).getOpcode()) { // && hasOneUse()?
Duraid Madina75c9fcb2005-04-02 10:33:53 +00001391 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1392 BuildMI(BB, IA64::FNEGABS, 1, Result).addReg(Tmp1); // fold in abs
1393 } else {
1394 Tmp1 = SelectExpr(N.getOperand(0));
1395 BuildMI(BB, IA64::FNEG, 1, Result).addReg(Tmp1); // plain old fneg
1396 }
1397
Duraid Madinaa7ee8b82005-04-02 05:18:38 +00001398 return Result;
1399 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001400
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001401 case ISD::AND: {
1402 switch (N.getValueType()) {
1403 default: assert(0 && "Cannot AND this type!");
1404 case MVT::i1: { // if a bool, we emit a pseudocode AND
1405 unsigned pA = SelectExpr(N.getOperand(0));
1406 unsigned pB = SelectExpr(N.getOperand(1));
Misha Brukman4633f1c2005-04-21 23:13:11 +00001407
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001408/* our pseudocode for AND is:
1409 *
1410(pA) cmp.eq.unc pC,p0 = r0,r0 // pC = pA
1411 cmp.eq pTemp,p0 = r0,r0 // pTemp = NOT pB
1412 ;;
1413(pB) cmp.ne pTemp,p0 = r0,r0
1414 ;;
1415(pTemp)cmp.ne pC,p0 = r0,r0 // if (NOT pB) pC = 0
1416
1417*/
1418 unsigned pTemp = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001419
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001420 unsigned bogusTemp1 = MakeReg(MVT::i1);
1421 unsigned bogusTemp2 = MakeReg(MVT::i1);
1422 unsigned bogusTemp3 = MakeReg(MVT::i1);
1423 unsigned bogusTemp4 = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001424
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001425 BuildMI(BB, IA64::PCMPEQUNC, 3, bogusTemp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001426 .addReg(IA64::r0).addReg(IA64::r0).addReg(pA);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001427 BuildMI(BB, IA64::CMPEQ, 2, bogusTemp2)
Misha Brukman7847fca2005-04-22 17:54:37 +00001428 .addReg(IA64::r0).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001429 BuildMI(BB, IA64::TPCMPNE, 3, pTemp)
Misha Brukman7847fca2005-04-22 17:54:37 +00001430 .addReg(bogusTemp2).addReg(IA64::r0).addReg(IA64::r0).addReg(pB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001431 BuildMI(BB, IA64::TPCMPNE, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001432 .addReg(bogusTemp1).addReg(IA64::r0).addReg(IA64::r0).addReg(pTemp);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001433 break;
1434 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001435
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001436 // if not a bool, we just AND away:
1437 case MVT::i8:
1438 case MVT::i16:
1439 case MVT::i32:
1440 case MVT::i64: {
1441 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madina7340dd52005-08-21 15:43:53 +00001442 switch (ponderIntegerAndWith(N.getOperand(1), Tmp3)) {
Duraid Madinac02780e2005-04-13 04:50:54 +00001443 case 1: // ANDing a constant that is 2^n-1 for some n
Misha Brukman7847fca2005-04-22 17:54:37 +00001444 switch (Tmp3) {
1445 case 8: // if AND 0x00000000000000FF, be quaint and use zxt1
1446 BuildMI(BB, IA64::ZXT1, 1, Result).addReg(Tmp1);
1447 break;
1448 case 16: // if AND 0x000000000000FFFF, be quaint and use zxt2
1449 BuildMI(BB, IA64::ZXT2, 1, Result).addReg(Tmp1);
1450 break;
1451 case 32: // if AND 0x00000000FFFFFFFF, be quaint and use zxt4
1452 BuildMI(BB, IA64::ZXT4, 1, Result).addReg(Tmp1);
1453 break;
1454 default: // otherwise, use dep.z to paste zeros
Duraid Madina7340dd52005-08-21 15:43:53 +00001455 // FIXME: assert the dep.z is in bounds
1456 BuildMI(BB, IA64::DEPZ, 3, Result).addReg(Tmp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001457 .addImm(0).addImm(Tmp3);
1458 break;
Duraid Madina7340dd52005-08-21 15:43:53 +00001459 }
1460 return Result; // early exit
1461 } // fallthrough and emit a simple AND:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001462 Tmp2 = SelectExpr(N.getOperand(1));
1463 BuildMI(BB, IA64::AND, 2, Result).addReg(Tmp1).addReg(Tmp2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001464 }
1465 }
1466 return Result;
1467 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001468
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001469 case ISD::OR: {
1470 switch (N.getValueType()) {
1471 default: assert(0 && "Cannot OR this type!");
1472 case MVT::i1: { // if a bool, we emit a pseudocode OR
1473 unsigned pA = SelectExpr(N.getOperand(0));
1474 unsigned pB = SelectExpr(N.getOperand(1));
1475
1476 unsigned pTemp1 = MakeReg(MVT::i1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001477
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001478/* our pseudocode for OR is:
1479 *
1480
1481pC = pA OR pB
1482-------------
1483
Misha Brukman7847fca2005-04-22 17:54:37 +00001484(pA) cmp.eq.unc pC,p0 = r0,r0 // pC = pA
1485 ;;
1486(pB) cmp.eq pC,p0 = r0,r0 // if (pB) pC = 1
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001487
1488*/
1489 BuildMI(BB, IA64::PCMPEQUNC, 3, pTemp1)
Misha Brukman7847fca2005-04-22 17:54:37 +00001490 .addReg(IA64::r0).addReg(IA64::r0).addReg(pA);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001491 BuildMI(BB, IA64::TPCMPEQ, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001492 .addReg(pTemp1).addReg(IA64::r0).addReg(IA64::r0).addReg(pB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001493 break;
1494 }
1495 // if not a bool, we just OR away:
1496 case MVT::i8:
1497 case MVT::i16:
1498 case MVT::i32:
1499 case MVT::i64: {
1500 Tmp1 = SelectExpr(N.getOperand(0));
1501 Tmp2 = SelectExpr(N.getOperand(1));
1502 BuildMI(BB, IA64::OR, 2, Result).addReg(Tmp1).addReg(Tmp2);
1503 break;
1504 }
1505 }
1506 return Result;
1507 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001508
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001509 case ISD::XOR: {
1510 switch (N.getValueType()) {
1511 default: assert(0 && "Cannot XOR this type!");
1512 case MVT::i1: { // if a bool, we emit a pseudocode XOR
1513 unsigned pY = SelectExpr(N.getOperand(0));
1514 unsigned pZ = SelectExpr(N.getOperand(1));
1515
1516/* one possible routine for XOR is:
1517
1518 // Compute px = py ^ pz
1519 // using sum of products: px = (py & !pz) | (pz & !py)
1520 // Uses 5 instructions in 3 cycles.
1521 // cycle 1
1522(pz) cmp.eq.unc px = r0, r0 // px = pz
1523(py) cmp.eq.unc pt = r0, r0 // pt = py
1524 ;;
1525 // cycle 2
1526(pt) cmp.ne.and px = r0, r0 // px = px & !pt (px = pz & !pt)
1527(pz) cmp.ne.and pt = r0, r0 // pt = pt & !pz
1528 ;;
1529 } { .mmi
1530 // cycle 3
1531(pt) cmp.eq.or px = r0, r0 // px = px | pt
1532
1533*** Another, which we use here, requires one scratch GR. it is:
1534
1535 mov rt = 0 // initialize rt off critical path
1536 ;;
1537
1538 // cycle 1
1539(pz) cmp.eq.unc px = r0, r0 // px = pz
1540(pz) mov rt = 1 // rt = pz
1541 ;;
1542 // cycle 2
1543(py) cmp.ne px = 1, rt // if (py) px = !pz
1544
1545.. these routines kindly provided by Jim Hull
1546*/
1547 unsigned rt = MakeReg(MVT::i64);
1548
1549 // these two temporaries will never actually appear,
1550 // due to the two-address form of some of the instructions below
1551 unsigned bogoPR = MakeReg(MVT::i1); // becomes Result
1552 unsigned bogoGR = MakeReg(MVT::i64); // becomes rt
1553
1554 BuildMI(BB, IA64::MOV, 1, bogoGR).addReg(IA64::r0);
1555 BuildMI(BB, IA64::PCMPEQUNC, 3, bogoPR)
Misha Brukman7847fca2005-04-22 17:54:37 +00001556 .addReg(IA64::r0).addReg(IA64::r0).addReg(pZ);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001557 BuildMI(BB, IA64::TPCADDIMM22, 2, rt)
Misha Brukman7847fca2005-04-22 17:54:37 +00001558 .addReg(bogoGR).addImm(1).addReg(pZ);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001559 BuildMI(BB, IA64::TPCMPIMM8NE, 3, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001560 .addReg(bogoPR).addImm(1).addReg(rt).addReg(pY);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001561 break;
1562 }
1563 // if not a bool, we just XOR away:
1564 case MVT::i8:
1565 case MVT::i16:
1566 case MVT::i32:
1567 case MVT::i64: {
1568 Tmp1 = SelectExpr(N.getOperand(0));
1569 Tmp2 = SelectExpr(N.getOperand(1));
1570 BuildMI(BB, IA64::XOR, 2, Result).addReg(Tmp1).addReg(Tmp2);
1571 break;
1572 }
1573 }
1574 return Result;
1575 }
1576
Duraid Madina63bbed52005-05-11 05:16:09 +00001577 case ISD::CTPOP: {
1578 Tmp1 = SelectExpr(N.getOperand(0));
1579 BuildMI(BB, IA64::POPCNT, 1, Result).addReg(Tmp1);
1580 return Result;
1581 }
1582
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001583 case ISD::SHL: {
1584 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001585 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1586 Tmp2 = CN->getValue();
1587 BuildMI(BB, IA64::SHLI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1588 } else {
1589 Tmp2 = SelectExpr(N.getOperand(1));
1590 BuildMI(BB, IA64::SHL, 2, Result).addReg(Tmp1).addReg(Tmp2);
1591 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001592 return Result;
1593 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001594
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001595 case ISD::SRL: {
1596 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001597 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1598 Tmp2 = CN->getValue();
1599 BuildMI(BB, IA64::SHRUI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1600 } else {
1601 Tmp2 = SelectExpr(N.getOperand(1));
1602 BuildMI(BB, IA64::SHRU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1603 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001604 return Result;
1605 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001606
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001607 case ISD::SRA: {
1608 Tmp1 = SelectExpr(N.getOperand(0));
Duraid Madinaf55e4032005-04-07 12:33:38 +00001609 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1610 Tmp2 = CN->getValue();
1611 BuildMI(BB, IA64::SHRSI, 2, Result).addReg(Tmp1).addImm(Tmp2);
1612 } else {
1613 Tmp2 = SelectExpr(N.getOperand(1));
1614 BuildMI(BB, IA64::SHRS, 2, Result).addReg(Tmp1).addReg(Tmp2);
1615 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001616 return Result;
1617 }
1618
1619 case ISD::SDIV:
1620 case ISD::UDIV:
1621 case ISD::SREM:
1622 case ISD::UREM: {
1623
1624 Tmp1 = SelectExpr(N.getOperand(0));
1625 Tmp2 = SelectExpr(N.getOperand(1));
1626
1627 bool isFP=false;
1628
1629 if(DestType == MVT::f64) // XXX: we're not gonna be fed MVT::f32, are we?
1630 isFP=true;
1631
1632 bool isModulus=false; // is it a division or a modulus?
1633 bool isSigned=false;
1634
1635 switch(N.getOpcode()) {
1636 case ISD::SDIV: isModulus=false; isSigned=true; break;
1637 case ISD::UDIV: isModulus=false; isSigned=false; break;
1638 case ISD::SREM: isModulus=true; isSigned=true; break;
1639 case ISD::UREM: isModulus=true; isSigned=false; break;
1640 }
1641
Duraid Madina4826a072005-04-06 09:55:17 +00001642 if(!isModulus && !isFP) { // if this is an integer divide,
1643 switch (ponderIntegerDivisionBy(N.getOperand(1), isSigned, Tmp3)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001644 case 1: // division by a constant that's a power of 2
1645 Tmp1 = SelectExpr(N.getOperand(0));
1646 if(isSigned) { // argument could be negative, so emit some code:
1647 unsigned divAmt=Tmp3;
1648 unsigned tempGR1=MakeReg(MVT::i64);
1649 unsigned tempGR2=MakeReg(MVT::i64);
1650 unsigned tempGR3=MakeReg(MVT::i64);
1651 BuildMI(BB, IA64::SHRS, 2, tempGR1)
1652 .addReg(Tmp1).addImm(divAmt-1);
1653 BuildMI(BB, IA64::EXTRU, 3, tempGR2)
1654 .addReg(tempGR1).addImm(64-divAmt).addImm(divAmt);
1655 BuildMI(BB, IA64::ADD, 2, tempGR3)
1656 .addReg(Tmp1).addReg(tempGR2);
1657 BuildMI(BB, IA64::SHRS, 2, Result)
1658 .addReg(tempGR3).addImm(divAmt);
1659 }
1660 else // unsigned div-by-power-of-2 becomes a simple shift right:
1661 BuildMI(BB, IA64::SHRU, 2, Result).addReg(Tmp1).addImm(Tmp3);
1662 return Result; // early exit
Duraid Madina4826a072005-04-06 09:55:17 +00001663 }
1664 }
1665
Misha Brukman4633f1c2005-04-21 23:13:11 +00001666 unsigned TmpPR=MakeReg(MVT::i1); // we need two scratch
Duraid Madinabeeaab22005-03-31 12:31:11 +00001667 unsigned TmpPR2=MakeReg(MVT::i1); // predicate registers,
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001668 unsigned TmpF1=MakeReg(MVT::f64); // and one metric truckload of FP regs.
1669 unsigned TmpF2=MakeReg(MVT::f64); // lucky we have IA64?
1670 unsigned TmpF3=MakeReg(MVT::f64); // well, the real FIXME is to have
1671 unsigned TmpF4=MakeReg(MVT::f64); // isTwoAddress forms of these
1672 unsigned TmpF5=MakeReg(MVT::f64); // FP instructions so we can end up with
1673 unsigned TmpF6=MakeReg(MVT::f64); // stuff like setf.sig f10=f10 etc.
1674 unsigned TmpF7=MakeReg(MVT::f64);
1675 unsigned TmpF8=MakeReg(MVT::f64);
1676 unsigned TmpF9=MakeReg(MVT::f64);
1677 unsigned TmpF10=MakeReg(MVT::f64);
1678 unsigned TmpF11=MakeReg(MVT::f64);
1679 unsigned TmpF12=MakeReg(MVT::f64);
1680 unsigned TmpF13=MakeReg(MVT::f64);
1681 unsigned TmpF14=MakeReg(MVT::f64);
1682 unsigned TmpF15=MakeReg(MVT::f64);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001683
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001684 // OK, emit some code:
1685
1686 if(!isFP) {
1687 // first, load the inputs into FP regs.
1688 BuildMI(BB, IA64::SETFSIG, 1, TmpF1).addReg(Tmp1);
1689 BuildMI(BB, IA64::SETFSIG, 1, TmpF2).addReg(Tmp2);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001690
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001691 // next, convert the inputs to FP
1692 if(isSigned) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001693 BuildMI(BB, IA64::FCVTXF, 1, TmpF3).addReg(TmpF1);
1694 BuildMI(BB, IA64::FCVTXF, 1, TmpF4).addReg(TmpF2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001695 } else {
Misha Brukman7847fca2005-04-22 17:54:37 +00001696 BuildMI(BB, IA64::FCVTXUFS1, 1, TmpF3).addReg(TmpF1);
1697 BuildMI(BB, IA64::FCVTXUFS1, 1, TmpF4).addReg(TmpF2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001698 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001699
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001700 } else { // this is an FP divide/remainder, so we 'leak' some temp
1701 // regs and assign TmpF3=Tmp1, TmpF4=Tmp2
1702 TmpF3=Tmp1;
1703 TmpF4=Tmp2;
1704 }
1705
1706 // we start by computing an approximate reciprocal (good to 9 bits?)
Duraid Madina6dcceb52005-04-08 10:01:48 +00001707 // note, this instruction writes _both_ TmpF5 (answer) and TmpPR (predicate)
1708 BuildMI(BB, IA64::FRCPAS1, 4)
1709 .addReg(TmpF5, MachineOperand::Def)
1710 .addReg(TmpPR, MachineOperand::Def)
1711 .addReg(TmpF3).addReg(TmpF4);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001712
Duraid Madinabeeaab22005-03-31 12:31:11 +00001713 if(!isModulus) { // if this is a divide, we worry about div-by-zero
1714 unsigned bogusPR=MakeReg(MVT::i1); // won't appear, due to twoAddress
1715 // TPCMPNE below
1716 BuildMI(BB, IA64::CMPEQ, 2, bogusPR).addReg(IA64::r0).addReg(IA64::r0);
1717 BuildMI(BB, IA64::TPCMPNE, 3, TmpPR2).addReg(bogusPR)
Misha Brukman7847fca2005-04-22 17:54:37 +00001718 .addReg(IA64::r0).addReg(IA64::r0).addReg(TmpPR);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001719 }
1720
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001721 // now we apply newton's method, thrice! (FIXME: this is ~72 bits of
1722 // precision, don't need this much for f32/i32)
1723 BuildMI(BB, IA64::CFNMAS1, 4, TmpF6)
1724 .addReg(TmpF4).addReg(TmpF5).addReg(IA64::F1).addReg(TmpPR);
1725 BuildMI(BB, IA64::CFMAS1, 4, TmpF7)
1726 .addReg(TmpF3).addReg(TmpF5).addReg(IA64::F0).addReg(TmpPR);
1727 BuildMI(BB, IA64::CFMAS1, 4, TmpF8)
1728 .addReg(TmpF6).addReg(TmpF6).addReg(IA64::F0).addReg(TmpPR);
1729 BuildMI(BB, IA64::CFMAS1, 4, TmpF9)
1730 .addReg(TmpF6).addReg(TmpF7).addReg(TmpF7).addReg(TmpPR);
1731 BuildMI(BB, IA64::CFMAS1, 4,TmpF10)
1732 .addReg(TmpF6).addReg(TmpF5).addReg(TmpF5).addReg(TmpPR);
1733 BuildMI(BB, IA64::CFMAS1, 4,TmpF11)
1734 .addReg(TmpF8).addReg(TmpF9).addReg(TmpF9).addReg(TmpPR);
1735 BuildMI(BB, IA64::CFMAS1, 4,TmpF12)
1736 .addReg(TmpF8).addReg(TmpF10).addReg(TmpF10).addReg(TmpPR);
1737 BuildMI(BB, IA64::CFNMAS1, 4,TmpF13)
1738 .addReg(TmpF4).addReg(TmpF11).addReg(TmpF3).addReg(TmpPR);
Duraid Madina6e02e682005-04-04 05:05:52 +00001739
1740 // FIXME: this is unfortunate :(
1741 // the story is that the dest reg of the fnma above and the fma below
1742 // (and therefore possibly the src of the fcvt.fx[u] as well) cannot
1743 // be the same register, or this code breaks if the first argument is
1744 // zero. (e.g. without this hack, 0%8 yields -64, not 0.)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001745 BuildMI(BB, IA64::CFMAS1, 4,TmpF14)
1746 .addReg(TmpF13).addReg(TmpF12).addReg(TmpF11).addReg(TmpPR);
1747
Duraid Madina6e02e682005-04-04 05:05:52 +00001748 if(isModulus) { // XXX: fragile! fixes _only_ mod, *breaks* div! !
1749 BuildMI(BB, IA64::IUSE, 1).addReg(TmpF13); // hack :(
1750 }
1751
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001752 if(!isFP) {
1753 // round to an integer
1754 if(isSigned)
Misha Brukman7847fca2005-04-22 17:54:37 +00001755 BuildMI(BB, IA64::FCVTFXTRUNCS1, 1, TmpF15).addReg(TmpF14);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001756 else
Misha Brukman7847fca2005-04-22 17:54:37 +00001757 BuildMI(BB, IA64::FCVTFXUTRUNCS1, 1, TmpF15).addReg(TmpF14);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001758 } else {
1759 BuildMI(BB, IA64::FMOV, 1, TmpF15).addReg(TmpF14);
1760 // EXERCISE: can you see why TmpF15=TmpF14 does not work here, and
1761 // we really do need the above FMOV? ;)
1762 }
1763
1764 if(!isModulus) {
Duraid Madinabeeaab22005-03-31 12:31:11 +00001765 if(isFP) { // extra worrying about div-by-zero
1766 unsigned bogoResult=MakeReg(MVT::f64);
1767
1768 // we do a 'conditional fmov' (of the correct result, depending
1769 // on how the frcpa predicate turned out)
1770 BuildMI(BB, IA64::PFMOV, 2, bogoResult)
Misha Brukman7847fca2005-04-22 17:54:37 +00001771 .addReg(TmpF12).addReg(TmpPR2);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001772 BuildMI(BB, IA64::CFMOV, 2, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00001773 .addReg(bogoResult).addReg(TmpF15).addReg(TmpPR);
Duraid Madinabeeaab22005-03-31 12:31:11 +00001774 }
Duraid Madina6e02e682005-04-04 05:05:52 +00001775 else {
Misha Brukman7847fca2005-04-22 17:54:37 +00001776 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(TmpF15);
Duraid Madina6e02e682005-04-04 05:05:52 +00001777 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001778 } else { // this is a modulus
1779 if(!isFP) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001780 // answer = q * (-b) + a
1781 unsigned ModulusResult = MakeReg(MVT::f64);
1782 unsigned TmpF = MakeReg(MVT::f64);
1783 unsigned TmpI = MakeReg(MVT::i64);
Jeff Cohen00b168892005-07-27 06:12:32 +00001784
Misha Brukman7847fca2005-04-22 17:54:37 +00001785 BuildMI(BB, IA64::SUB, 2, TmpI).addReg(IA64::r0).addReg(Tmp2);
1786 BuildMI(BB, IA64::SETFSIG, 1, TmpF).addReg(TmpI);
1787 BuildMI(BB, IA64::XMAL, 3, ModulusResult)
1788 .addReg(TmpF15).addReg(TmpF).addReg(TmpF1);
1789 BuildMI(BB, IA64::GETFSIG, 1, Result).addReg(ModulusResult);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001790 } else { // FP modulus! The horror... the horror....
Misha Brukman7847fca2005-04-22 17:54:37 +00001791 assert(0 && "sorry, no FP modulus just yet!\n!\n");
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001792 }
1793 }
1794
1795 return Result;
1796 }
1797
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001798 case ISD::SIGN_EXTEND_INREG: {
1799 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001800 switch(cast<VTSDNode>(Node->getOperand(1))->getVT()) {
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001801 default:
1802 Node->dump();
1803 assert(0 && "don't know how to sign extend this type");
1804 break;
1805 case MVT::i8: Opc = IA64::SXT1; break;
1806 case MVT::i16: Opc = IA64::SXT2; break;
1807 case MVT::i32: Opc = IA64::SXT4; break;
1808 }
1809 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1810 return Result;
1811 }
1812
1813 case ISD::SETCC: {
1814 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner88ac32c2005-08-09 20:21:10 +00001815 ISD::CondCode CC = cast<CondCodeSDNode>(Node->getOperand(2))->get();
1816 if (MVT::isInteger(N.getOperand(0).getValueType())) {
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001817
Chris Lattner88ac32c2005-08-09 20:21:10 +00001818 if(ConstantSDNode *CSDN =
1819 dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1820 // if we are comparing against a constant zero
1821 if(CSDN->getValue()==0)
1822 Tmp2 = IA64::r0; // then we can just compare against r0
1823 else
1824 Tmp2 = SelectExpr(N.getOperand(1));
1825 } else // not comparing against a constant
1826 Tmp2 = SelectExpr(N.getOperand(1));
Duraid Madina5ef2ec92005-04-11 05:55:56 +00001827
Chris Lattner88ac32c2005-08-09 20:21:10 +00001828 switch (CC) {
1829 default: assert(0 && "Unknown integer comparison!");
1830 case ISD::SETEQ:
1831 BuildMI(BB, IA64::CMPEQ, 2, Result).addReg(Tmp1).addReg(Tmp2);
1832 break;
1833 case ISD::SETGT:
1834 BuildMI(BB, IA64::CMPGT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1835 break;
1836 case ISD::SETGE:
1837 BuildMI(BB, IA64::CMPGE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1838 break;
1839 case ISD::SETLT:
1840 BuildMI(BB, IA64::CMPLT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1841 break;
1842 case ISD::SETLE:
1843 BuildMI(BB, IA64::CMPLE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1844 break;
1845 case ISD::SETNE:
1846 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1847 break;
1848 case ISD::SETULT:
1849 BuildMI(BB, IA64::CMPLTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1850 break;
1851 case ISD::SETUGT:
1852 BuildMI(BB, IA64::CMPGTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1853 break;
1854 case ISD::SETULE:
1855 BuildMI(BB, IA64::CMPLEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1856 break;
1857 case ISD::SETUGE:
1858 BuildMI(BB, IA64::CMPGEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1859 break;
1860 }
1861 } else { // if not integer, should be FP.
1862 assert(N.getOperand(0).getValueType() != MVT::f32 &&
1863 "error: SETCC should have had incoming f32 promoted to f64!\n");
1864
1865 if(ConstantFPSDNode *CFPSDN =
1866 dyn_cast<ConstantFPSDNode>(N.getOperand(1))) {
1867
1868 // if we are comparing against a constant +0.0 or +1.0
1869 if(CFPSDN->isExactlyValue(+0.0))
1870 Tmp2 = IA64::F0; // then we can just compare against f0
1871 else if(CFPSDN->isExactlyValue(+1.0))
1872 Tmp2 = IA64::F1; // or f1
Misha Brukman7847fca2005-04-22 17:54:37 +00001873 else
1874 Tmp2 = SelectExpr(N.getOperand(1));
Chris Lattner88ac32c2005-08-09 20:21:10 +00001875 } else // not comparing against a constant
1876 Tmp2 = SelectExpr(N.getOperand(1));
Jeff Cohen00b168892005-07-27 06:12:32 +00001877
Chris Lattner88ac32c2005-08-09 20:21:10 +00001878 switch (CC) {
1879 default: assert(0 && "Unknown FP comparison!");
1880 case ISD::SETEQ:
1881 BuildMI(BB, IA64::FCMPEQ, 2, Result).addReg(Tmp1).addReg(Tmp2);
1882 break;
1883 case ISD::SETGT:
1884 BuildMI(BB, IA64::FCMPGT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1885 break;
1886 case ISD::SETGE:
1887 BuildMI(BB, IA64::FCMPGE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1888 break;
1889 case ISD::SETLT:
1890 BuildMI(BB, IA64::FCMPLT, 2, Result).addReg(Tmp1).addReg(Tmp2);
1891 break;
1892 case ISD::SETLE:
1893 BuildMI(BB, IA64::FCMPLE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1894 break;
1895 case ISD::SETNE:
1896 BuildMI(BB, IA64::FCMPNE, 2, Result).addReg(Tmp1).addReg(Tmp2);
1897 break;
1898 case ISD::SETULT:
1899 BuildMI(BB, IA64::FCMPLTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1900 break;
1901 case ISD::SETUGT:
1902 BuildMI(BB, IA64::FCMPGTU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1903 break;
1904 case ISD::SETULE:
1905 BuildMI(BB, IA64::FCMPLEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1906 break;
1907 case ISD::SETUGE:
1908 BuildMI(BB, IA64::FCMPGEU, 2, Result).addReg(Tmp1).addReg(Tmp2);
1909 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001910 }
1911 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001912 return Result;
1913 }
1914
1915 case ISD::EXTLOAD:
1916 case ISD::ZEXTLOAD:
1917 case ISD::LOAD: {
1918 // Make sure we generate both values.
1919 if (Result != 1)
1920 ExprMap[N.getValue(1)] = 1; // Generate the token
1921 else
1922 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
1923
1924 bool isBool=false;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001925
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001926 if(opcode == ISD::LOAD) { // this is a LOAD
1927 switch (Node->getValueType(0)) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001928 default: assert(0 && "Cannot load this type!");
1929 case MVT::i1: Opc = IA64::LD1; isBool=true; break;
1930 // FIXME: for now, we treat bool loads the same as i8 loads */
1931 case MVT::i8: Opc = IA64::LD1; break;
1932 case MVT::i16: Opc = IA64::LD2; break;
1933 case MVT::i32: Opc = IA64::LD4; break;
1934 case MVT::i64: Opc = IA64::LD8; break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001935
Misha Brukman7847fca2005-04-22 17:54:37 +00001936 case MVT::f32: Opc = IA64::LDF4; break;
1937 case MVT::f64: Opc = IA64::LDF8; break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001938 }
1939 } else { // this is an EXTLOAD or ZEXTLOAD
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001940 MVT::ValueType TypeBeingLoaded =
1941 cast<VTSDNode>(Node->getOperand(3))->getVT();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001942 switch (TypeBeingLoaded) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001943 default: assert(0 && "Cannot extload/zextload this type!");
1944 // FIXME: bools?
1945 case MVT::i8: Opc = IA64::LD1; break;
1946 case MVT::i16: Opc = IA64::LD2; break;
1947 case MVT::i32: Opc = IA64::LD4; break;
1948 case MVT::f32: Opc = IA64::LDF4; break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001949 }
1950 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001951
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001952 SDOperand Chain = N.getOperand(0);
1953 SDOperand Address = N.getOperand(1);
1954
1955 if(Address.getOpcode() == ISD::GlobalAddress) {
1956 Select(Chain);
1957 unsigned dummy = MakeReg(MVT::i64);
1958 unsigned dummy2 = MakeReg(MVT::i64);
1959 BuildMI(BB, IA64::ADD, 2, dummy)
Misha Brukman7847fca2005-04-22 17:54:37 +00001960 .addGlobalAddress(cast<GlobalAddressSDNode>(Address)->getGlobal())
1961 .addReg(IA64::r1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001962 BuildMI(BB, IA64::LD8, 1, dummy2).addReg(dummy);
1963 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00001964 BuildMI(BB, Opc, 1, Result).addReg(dummy2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001965 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00001966 // into a predicate register
1967 assert(Opc==IA64::LD1 && "problem loading a bool");
1968 unsigned dummy3 = MakeReg(MVT::i64);
1969 BuildMI(BB, Opc, 1, dummy3).addReg(dummy2);
1970 // we compare to 0. true? 0. false? 1.
1971 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001972 }
1973 } else if(ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Address)) {
1974 Select(Chain);
1975 IA64Lowering.restoreGP(BB);
1976 unsigned dummy = MakeReg(MVT::i64);
1977 BuildMI(BB, IA64::ADD, 2, dummy).addConstantPoolIndex(CP->getIndex())
Misha Brukman7847fca2005-04-22 17:54:37 +00001978 .addReg(IA64::r1); // CPI+GP
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001979 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00001980 BuildMI(BB, Opc, 1, Result).addReg(dummy);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001981 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00001982 // into a predicate register
1983 assert(Opc==IA64::LD1 && "problem loading a bool");
1984 unsigned dummy3 = MakeReg(MVT::i64);
1985 BuildMI(BB, Opc, 1, dummy3).addReg(dummy);
1986 // we compare to 0. true? 0. false? 1.
1987 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001988 }
1989 } else if(Address.getOpcode() == ISD::FrameIndex) {
1990 Select(Chain); // FIXME ? what about bools?
1991 unsigned dummy = MakeReg(MVT::i64);
1992 BuildMI(BB, IA64::MOV, 1, dummy)
Misha Brukman7847fca2005-04-22 17:54:37 +00001993 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001994 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00001995 BuildMI(BB, Opc, 1, Result).addReg(dummy);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00001996 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00001997 // into a predicate register
1998 assert(Opc==IA64::LD1 && "problem loading a bool");
1999 unsigned dummy3 = MakeReg(MVT::i64);
2000 BuildMI(BB, Opc, 1, dummy3).addReg(dummy);
2001 // we compare to 0. true? 0. false? 1.
2002 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy3).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002003 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002004 } else { // none of the above...
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002005 Select(Chain);
2006 Tmp2 = SelectExpr(Address);
2007 if(!isBool)
Misha Brukman7847fca2005-04-22 17:54:37 +00002008 BuildMI(BB, Opc, 1, Result).addReg(Tmp2);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002009 else { // emit a little pseudocode to load a bool (stored in one byte)
Misha Brukman7847fca2005-04-22 17:54:37 +00002010 // into a predicate register
2011 assert(Opc==IA64::LD1 && "problem loading a bool");
2012 unsigned dummy = MakeReg(MVT::i64);
2013 BuildMI(BB, Opc, 1, dummy).addReg(Tmp2);
2014 // we compare to 0. true? 0. false? 1.
2015 BuildMI(BB, IA64::CMPNE, 2, Result).addReg(dummy).addReg(IA64::r0);
Jeff Cohen00b168892005-07-27 06:12:32 +00002016 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002017 }
2018
2019 return Result;
2020 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002021
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002022 case ISD::CopyFromReg: {
2023 if (Result == 1)
Misha Brukman4633f1c2005-04-21 23:13:11 +00002024 Result = ExprMap[N.getValue(0)] =
Misha Brukman7847fca2005-04-22 17:54:37 +00002025 MakeReg(N.getValue(0).getValueType());
Misha Brukman4633f1c2005-04-21 23:13:11 +00002026
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002027 SDOperand Chain = N.getOperand(0);
2028
2029 Select(Chain);
Chris Lattner707ebc52005-08-16 21:56:37 +00002030 unsigned r = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002031
2032 if(N.getValueType() == MVT::i1) // if a bool, we use pseudocode
Misha Brukman7847fca2005-04-22 17:54:37 +00002033 BuildMI(BB, IA64::PCMPEQUNC, 3, Result)
2034 .addReg(IA64::r0).addReg(IA64::r0).addReg(r);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002035 // (r) Result =cmp.eq.unc(r0,r0)
2036 else
Misha Brukman7847fca2005-04-22 17:54:37 +00002037 BuildMI(BB, IA64::MOV, 1, Result).addReg(r); // otherwise MOV
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002038 return Result;
2039 }
2040
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +00002041 case ISD::TAILCALL:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002042 case ISD::CALL: {
2043 Select(N.getOperand(0));
2044
2045 // The chain for this call is now lowered.
2046 ExprMap.insert(std::make_pair(N.getValue(Node->getNumValues()-1), 1));
Misha Brukman4633f1c2005-04-21 23:13:11 +00002047
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002048 //grab the arguments
2049 std::vector<unsigned> argvregs;
2050
2051 for(int i = 2, e = Node->getNumOperands(); i < e; ++i)
Misha Brukman7847fca2005-04-22 17:54:37 +00002052 argvregs.push_back(SelectExpr(N.getOperand(i)));
Misha Brukman4633f1c2005-04-21 23:13:11 +00002053
2054 // see section 8.5.8 of "Itanium Software Conventions and
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002055 // Runtime Architecture Guide to see some examples of what's going
2056 // on here. (in short: int args get mapped 1:1 'slot-wise' to out0->out7,
2057 // while FP args get mapped to F8->F15 as needed)
2058
2059 unsigned used_FPArgs=0; // how many FP Args have been used so far?
Misha Brukman4633f1c2005-04-21 23:13:11 +00002060
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002061 // in reg args
2062 for(int i = 0, e = std::min(8, (int)argvregs.size()); i < e; ++i)
2063 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002064 unsigned intArgs[] = {IA64::out0, IA64::out1, IA64::out2, IA64::out3,
2065 IA64::out4, IA64::out5, IA64::out6, IA64::out7 };
2066 unsigned FPArgs[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
2067 IA64::F12, IA64::F13, IA64::F14, IA64::F15 };
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002068
Misha Brukman7847fca2005-04-22 17:54:37 +00002069 switch(N.getOperand(i+2).getValueType())
2070 {
2071 default: // XXX do we need to support MVT::i1 here?
2072 Node->dump();
2073 N.getOperand(i).Val->dump();
2074 std::cerr << "Type for " << i << " is: " <<
2075 N.getOperand(i+2).getValueType() << std::endl;
2076 assert(0 && "Unknown value type for call");
2077 case MVT::i64:
2078 BuildMI(BB, IA64::MOV, 1, intArgs[i]).addReg(argvregs[i]);
2079 break;
2080 case MVT::f64:
2081 BuildMI(BB, IA64::FMOV, 1, FPArgs[used_FPArgs++])
2082 .addReg(argvregs[i]);
2083 // FIXME: we don't need to do this _all_ the time:
2084 BuildMI(BB, IA64::GETFD, 1, intArgs[i]).addReg(argvregs[i]);
2085 break;
2086 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002087 }
2088
2089 //in mem args
2090 for (int i = 8, e = argvregs.size(); i < e; ++i)
2091 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002092 unsigned tempAddr = MakeReg(MVT::i64);
Jeff Cohen00b168892005-07-27 06:12:32 +00002093
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002094 switch(N.getOperand(i+2).getValueType()) {
Misha Brukman4633f1c2005-04-21 23:13:11 +00002095 default:
2096 Node->dump();
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002097 N.getOperand(i).Val->dump();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002098 std::cerr << "Type for " << i << " is: " <<
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002099 N.getOperand(i+2).getValueType() << "\n";
2100 assert(0 && "Unknown value type for call");
2101 case MVT::i1: // FIXME?
2102 case MVT::i8:
2103 case MVT::i16:
2104 case MVT::i32:
2105 case MVT::i64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002106 BuildMI(BB, IA64::ADDIMM22, 2, tempAddr)
2107 .addReg(IA64::r12).addImm(16 + (i - 8) * 8); // r12 is SP
2108 BuildMI(BB, IA64::ST8, 2).addReg(tempAddr).addReg(argvregs[i]);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002109 break;
2110 case MVT::f32:
2111 case MVT::f64:
2112 BuildMI(BB, IA64::ADDIMM22, 2, tempAddr)
Misha Brukman7847fca2005-04-22 17:54:37 +00002113 .addReg(IA64::r12).addImm(16 + (i - 8) * 8); // r12 is SP
2114 BuildMI(BB, IA64::STF8, 2).addReg(tempAddr).addReg(argvregs[i]);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002115 break;
2116 }
2117 }
Duraid Madinabeeaab22005-03-31 12:31:11 +00002118
Duraid Madina04aa46d2005-05-20 11:39:17 +00002119 // build the right kind of call. if we can branch directly, do so:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002120 if (GlobalAddressSDNode *GASD =
Misha Brukman4633f1c2005-04-21 23:13:11 +00002121 dyn_cast<GlobalAddressSDNode>(N.getOperand(1)))
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002122 {
Misha Brukman7847fca2005-04-22 17:54:37 +00002123 BuildMI(BB, IA64::BRCALL, 1).addGlobalAddress(GASD->getGlobal(),true);
2124 IA64Lowering.restoreGP_SP_RP(BB);
Duraid Madina04aa46d2005-05-20 11:39:17 +00002125 } else
Duraid Madinabeeaab22005-03-31 12:31:11 +00002126 if (ExternalSymbolSDNode *ESSDN =
Misha Brukman7847fca2005-04-22 17:54:37 +00002127 dyn_cast<ExternalSymbolSDNode>(N.getOperand(1)))
Duraid Madinabeeaab22005-03-31 12:31:11 +00002128 { // FIXME : currently need this case for correctness, to avoid
Misha Brukman7847fca2005-04-22 17:54:37 +00002129 // "non-pic code with imm relocation against dynamic symbol" errors
2130 BuildMI(BB, IA64::BRCALL, 1)
2131 .addExternalSymbol(ESSDN->getSymbol(), true);
2132 IA64Lowering.restoreGP_SP_RP(BB);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002133 }
Duraid Madina04aa46d2005-05-20 11:39:17 +00002134 else { // otherwise we need to get the function descriptor
2135 // load the branch target (function)'s entry point and
Jeff Cohen00b168892005-07-27 06:12:32 +00002136 // GP, then branch
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002137 Tmp1 = SelectExpr(N.getOperand(1));
Duraid Madinabeeaab22005-03-31 12:31:11 +00002138
2139 unsigned targetEntryPoint=MakeReg(MVT::i64);
2140 unsigned targetGPAddr=MakeReg(MVT::i64);
2141 unsigned currentGP=MakeReg(MVT::i64);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002142
Duraid Madinabeeaab22005-03-31 12:31:11 +00002143 // b6 is a scratch branch register, we load the target entry point
2144 // from the base of the function descriptor
2145 BuildMI(BB, IA64::LD8, 1, targetEntryPoint).addReg(Tmp1);
2146 BuildMI(BB, IA64::MOV, 1, IA64::B6).addReg(targetEntryPoint);
2147
2148 // save the current GP:
2149 BuildMI(BB, IA64::MOV, 1, currentGP).addReg(IA64::r1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002150
Duraid Madinabeeaab22005-03-31 12:31:11 +00002151 /* TODO: we need to make sure doing this never, ever loads a
2152 * bogus value into r1 (GP). */
2153 // load the target GP (which is at mem[functiondescriptor+8])
2154 BuildMI(BB, IA64::ADDIMM22, 2, targetGPAddr)
Misha Brukman7847fca2005-04-22 17:54:37 +00002155 .addReg(Tmp1).addImm(8); // FIXME: addimm22? why not postincrement ld
Duraid Madinabeeaab22005-03-31 12:31:11 +00002156 BuildMI(BB, IA64::LD8, 1, IA64::r1).addReg(targetGPAddr);
2157
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002158 // and then jump: (well, call)
2159 BuildMI(BB, IA64::BRCALL, 1).addReg(IA64::B6);
Duraid Madinabeeaab22005-03-31 12:31:11 +00002160 // and finally restore the old GP
2161 BuildMI(BB, IA64::MOV, 1, IA64::r1).addReg(currentGP);
2162 IA64Lowering.restoreSP_RP(BB);
2163 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002164
2165 switch (Node->getValueType(0)) {
2166 default: assert(0 && "Unknown value type for call result!");
2167 case MVT::Other: return 1;
2168 case MVT::i1:
2169 BuildMI(BB, IA64::CMPNE, 2, Result)
Misha Brukman7847fca2005-04-22 17:54:37 +00002170 .addReg(IA64::r8).addReg(IA64::r0);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002171 break;
2172 case MVT::i8:
2173 case MVT::i16:
2174 case MVT::i32:
2175 case MVT::i64:
2176 BuildMI(BB, IA64::MOV, 1, Result).addReg(IA64::r8);
2177 break;
2178 case MVT::f64:
2179 BuildMI(BB, IA64::FMOV, 1, Result).addReg(IA64::F8);
2180 break;
2181 }
2182 return Result+N.ResNo;
2183 }
2184
Misha Brukman4633f1c2005-04-21 23:13:11 +00002185 } // <- uhhh XXX
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002186 return 0;
2187}
2188
2189void ISel::Select(SDOperand N) {
2190 unsigned Tmp1, Tmp2, Opc;
2191 unsigned opcode = N.getOpcode();
2192
Nate Begeman85fdeb22005-03-24 04:39:54 +00002193 if (!LoweredTokens.insert(N).second)
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002194 return; // Already selected.
2195
2196 SDNode *Node = N.Val;
2197
2198 switch (Node->getOpcode()) {
2199 default:
2200 Node->dump(); std::cerr << "\n";
2201 assert(0 && "Node not handled yet!");
2202
2203 case ISD::EntryToken: return; // Noop
Misha Brukman4633f1c2005-04-21 23:13:11 +00002204
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002205 case ISD::TokenFactor: {
2206 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
2207 Select(Node->getOperand(i));
2208 return;
2209 }
2210
2211 case ISD::CopyToReg: {
2212 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00002213 Tmp1 = SelectExpr(N.getOperand(2));
2214 Tmp2 = cast<RegisterSDNode>(N.getOperand(1))->getReg();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002215
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002216 if (Tmp1 != Tmp2) {
Chris Lattner707ebc52005-08-16 21:56:37 +00002217 // if a bool, we use pseudocode
2218 if (N.getOperand(2).getValueType() == MVT::i1)
Misha Brukman7847fca2005-04-22 17:54:37 +00002219 BuildMI(BB, IA64::PCMPEQUNC, 3, Tmp2)
2220 .addReg(IA64::r0).addReg(IA64::r0).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002221 // (Tmp1) Tmp2 = cmp.eq.unc(r0,r0)
2222 else
Misha Brukman7847fca2005-04-22 17:54:37 +00002223 BuildMI(BB, IA64::MOV, 1, Tmp2).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002224 // XXX is this the right way 'round? ;)
Chris Lattner707ebc52005-08-16 21:56:37 +00002225 // FIXME: WHAT ABOUT FLOATING POINT?
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002226 }
2227 return;
2228 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002229
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002230 case ISD::RET: {
2231
2232 /* what the heck is going on here:
2233
2234<_sabre_> ret with two operands is obvious: chain and value
2235<camel_> yep
2236<_sabre_> ret with 3 values happens when 'expansion' occurs
2237<_sabre_> e.g. i64 gets split into 2x i32
2238<camel_> oh right
2239<_sabre_> you don't have this case on ia64
2240<camel_> yep
2241<_sabre_> so the two returned values go into EAX/EDX on ia32
2242<camel_> ahhh *memories*
2243<_sabre_> :)
2244<camel_> ok, thanks :)
2245<_sabre_> so yeah, everything that has a side effect takes a 'token chain'
2246<_sabre_> this is the first operand always
2247<_sabre_> these operand often define chains, they are the last operand
2248<_sabre_> they are printed as 'ch' if you do DAG.dump()
2249 */
Misha Brukman4633f1c2005-04-21 23:13:11 +00002250
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002251 switch (N.getNumOperands()) {
2252 default:
2253 assert(0 && "Unknown return instruction!");
2254 case 2:
2255 Select(N.getOperand(0));
2256 Tmp1 = SelectExpr(N.getOperand(1));
2257 switch (N.getOperand(1).getValueType()) {
2258 default: assert(0 && "All other types should have been promoted!!");
Misha Brukman7847fca2005-04-22 17:54:37 +00002259 // FIXME: do I need to add support for bools here?
2260 // (return '0' or '1' r8, basically...)
2261 //
2262 // FIXME: need to round floats - 80 bits is bad, the tester
2263 // told me so
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002264 case MVT::i64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002265 // we mark r8 as live on exit up above in LowerArguments()
2266 BuildMI(BB, IA64::MOV, 1, IA64::r8).addReg(Tmp1);
2267 break;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002268 case MVT::f64:
Misha Brukman7847fca2005-04-22 17:54:37 +00002269 // we mark F8 as live on exit up above in LowerArguments()
2270 BuildMI(BB, IA64::FMOV, 1, IA64::F8).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002271 }
2272 break;
2273 case 1:
2274 Select(N.getOperand(0));
2275 break;
2276 }
2277 // before returning, restore the ar.pfs register (set by the 'alloc' up top)
2278 BuildMI(BB, IA64::MOV, 1).addReg(IA64::AR_PFS).addReg(IA64Lowering.VirtGPR);
2279 BuildMI(BB, IA64::RET, 0); // and then just emit a 'ret' instruction
2280 return;
2281 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002282
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002283 case ISD::BR: {
2284 Select(N.getOperand(0));
2285 MachineBasicBlock *Dest =
2286 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
2287 BuildMI(BB, IA64::BRLCOND_NOTCALL, 1).addReg(IA64::p0).addMBB(Dest);
2288 // XXX HACK! we do _not_ need long branches all the time
2289 return;
2290 }
2291
2292 case ISD::ImplicitDef: {
2293 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00002294 BuildMI(BB, IA64::IDEF, 0,
2295 cast<RegisterSDNode>(N.getOperand(1))->getReg());
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002296 return;
2297 }
2298
2299 case ISD::BRCOND: {
2300 MachineBasicBlock *Dest =
2301 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
2302
2303 Select(N.getOperand(0));
2304 Tmp1 = SelectExpr(N.getOperand(1));
2305 BuildMI(BB, IA64::BRLCOND_NOTCALL, 1).addReg(Tmp1).addMBB(Dest);
2306 // XXX HACK! we do _not_ need long branches all the time
2307 return;
2308 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002309
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002310 case ISD::EXTLOAD:
2311 case ISD::ZEXTLOAD:
2312 case ISD::SEXTLOAD:
2313 case ISD::LOAD:
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +00002314 case ISD::TAILCALL:
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002315 case ISD::CALL:
2316 case ISD::CopyFromReg:
2317 case ISD::DYNAMIC_STACKALLOC:
2318 SelectExpr(N);
2319 return;
2320
2321 case ISD::TRUNCSTORE:
2322 case ISD::STORE: {
2323 Select(N.getOperand(0));
2324 Tmp1 = SelectExpr(N.getOperand(1)); // value
2325
2326 bool isBool=false;
Misha Brukman4633f1c2005-04-21 23:13:11 +00002327
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002328 if(opcode == ISD::STORE) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002329 switch (N.getOperand(1).getValueType()) {
2330 default: assert(0 && "Cannot store this type!");
2331 case MVT::i1: Opc = IA64::ST1; isBool=true; break;
2332 // FIXME?: for now, we treat bool loads the same as i8 stores */
2333 case MVT::i8: Opc = IA64::ST1; break;
2334 case MVT::i16: Opc = IA64::ST2; break;
2335 case MVT::i32: Opc = IA64::ST4; break;
2336 case MVT::i64: Opc = IA64::ST8; break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002337
Misha Brukman7847fca2005-04-22 17:54:37 +00002338 case MVT::f32: Opc = IA64::STF4; break;
2339 case MVT::f64: Opc = IA64::STF8; break;
2340 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002341 } else { // truncstore
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002342 switch(cast<VTSDNode>(Node->getOperand(4))->getVT()) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002343 default: assert(0 && "unknown type in truncstore");
2344 case MVT::i1: Opc = IA64::ST1; isBool=true; break;
2345 //FIXME: DAG does not promote this load?
2346 case MVT::i8: Opc = IA64::ST1; break;
2347 case MVT::i16: Opc = IA64::ST2; break;
2348 case MVT::i32: Opc = IA64::ST4; break;
2349 case MVT::f32: Opc = IA64::STF4; break;
2350 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002351 }
2352
2353 if(N.getOperand(2).getOpcode() == ISD::GlobalAddress) {
Misha Brukman7847fca2005-04-22 17:54:37 +00002354 unsigned dummy = MakeReg(MVT::i64);
2355 unsigned dummy2 = MakeReg(MVT::i64);
2356 BuildMI(BB, IA64::ADD, 2, dummy)
2357 .addGlobalAddress(cast<GlobalAddressSDNode>
2358 (N.getOperand(2))->getGlobal()).addReg(IA64::r1);
2359 BuildMI(BB, IA64::LD8, 1, dummy2).addReg(dummy);
Misha Brukman4633f1c2005-04-21 23:13:11 +00002360
Misha Brukman7847fca2005-04-22 17:54:37 +00002361 if(!isBool)
2362 BuildMI(BB, Opc, 2).addReg(dummy2).addReg(Tmp1);
2363 else { // we are storing a bool, so emit a little pseudocode
2364 // to store a predicate register as one byte
2365 assert(Opc==IA64::ST1);
2366 unsigned dummy3 = MakeReg(MVT::i64);
2367 unsigned dummy4 = MakeReg(MVT::i64);
2368 BuildMI(BB, IA64::MOV, 1, dummy3).addReg(IA64::r0);
2369 BuildMI(BB, IA64::TPCADDIMM22, 2, dummy4)
2370 .addReg(dummy3).addImm(1).addReg(Tmp1); // if(Tmp1) dummy=0+1;
2371 BuildMI(BB, Opc, 2).addReg(dummy2).addReg(dummy4);
2372 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002373 } else if(N.getOperand(2).getOpcode() == ISD::FrameIndex) {
2374
Misha Brukman7847fca2005-04-22 17:54:37 +00002375 // FIXME? (what about bools?)
Jeff Cohen00b168892005-07-27 06:12:32 +00002376
Misha Brukman7847fca2005-04-22 17:54:37 +00002377 unsigned dummy = MakeReg(MVT::i64);
2378 BuildMI(BB, IA64::MOV, 1, dummy)
2379 .addFrameIndex(cast<FrameIndexSDNode>(N.getOperand(2))->getIndex());
2380 BuildMI(BB, Opc, 2).addReg(dummy).addReg(Tmp1);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002381 } else { // otherwise
Misha Brukman7847fca2005-04-22 17:54:37 +00002382 Tmp2 = SelectExpr(N.getOperand(2)); //address
2383 if(!isBool)
2384 BuildMI(BB, Opc, 2).addReg(Tmp2).addReg(Tmp1);
2385 else { // we are storing a bool, so emit a little pseudocode
2386 // to store a predicate register as one byte
2387 assert(Opc==IA64::ST1);
2388 unsigned dummy3 = MakeReg(MVT::i64);
2389 unsigned dummy4 = MakeReg(MVT::i64);
2390 BuildMI(BB, IA64::MOV, 1, dummy3).addReg(IA64::r0);
2391 BuildMI(BB, IA64::TPCADDIMM22, 2, dummy4)
2392 .addReg(dummy3).addImm(1).addReg(Tmp1); // if(Tmp1) dummy=0+1;
2393 BuildMI(BB, Opc, 2).addReg(Tmp2).addReg(dummy4);
2394 }
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002395 }
2396 return;
2397 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00002398
Chris Lattner16cd04d2005-05-12 23:24:06 +00002399 case ISD::CALLSEQ_START:
2400 case ISD::CALLSEQ_END: {
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002401 Select(N.getOperand(0));
2402 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
Misha Brukman4633f1c2005-04-21 23:13:11 +00002403
Chris Lattner16cd04d2005-05-12 23:24:06 +00002404 Opc = N.getOpcode() == ISD::CALLSEQ_START ? IA64::ADJUSTCALLSTACKDOWN :
2405 IA64::ADJUSTCALLSTACKUP;
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002406 BuildMI(BB, Opc, 1).addImm(Tmp1);
2407 return;
2408 }
2409
2410 return;
2411 }
2412 assert(0 && "GAME OVER. INSERT COIN?");
2413}
2414
2415
2416/// createIA64PatternInstructionSelector - This pass converts an LLVM function
2417/// into a machine code representation using pattern matching and a machine
2418/// description file.
2419///
2420FunctionPass *llvm::createIA64PatternInstructionSelector(TargetMachine &TM) {
Misha Brukman4633f1c2005-04-21 23:13:11 +00002421 return new ISel(TM);
Duraid Madina9b9d45f2005-03-17 18:17:03 +00002422}
2423
2424