blob: 88965a5775f3f7225f66970703666e92a47989dd [file] [log] [blame]
Tony Linthicumb4b54152011-12-12 21:14:40 +00001//===-- HexagonISelLowering.cpp - Hexagon DAG Lowering Implementation -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the interfaces that Hexagon uses to lower LLVM code
11// into a selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#include "HexagonISelLowering.h"
16#include "HexagonTargetMachine.h"
17#include "HexagonMachineFunctionInfo.h"
18#include "HexagonTargetObjectFile.h"
19#include "HexagonSubtarget.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Function.h"
22#include "llvm/InlineAsm.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/GlobalAlias.h"
25#include "llvm/Intrinsics.h"
26#include "llvm/CallingConv.h"
27#include "llvm/CodeGen/CallingConvLower.h"
28#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineInstrBuilder.h"
Craig Topper79aa3412012-03-17 18:46:09 +000031#include "llvm/CodeGen/MachineJumpTableInfo.h"
Tony Linthicumb4b54152011-12-12 21:14:40 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
33#include "llvm/CodeGen/SelectionDAGISel.h"
34#include "llvm/CodeGen/ValueTypes.h"
NAKAMURA Takumid2f16a22012-04-21 15:31:36 +000035#include "llvm/Support/CommandLine.h"
Tony Linthicumb4b54152011-12-12 21:14:40 +000036#include "llvm/Support/Debug.h"
37#include "llvm/Support/ErrorHandling.h"
NAKAMURA Takumi89593932012-04-21 15:31:45 +000038#include "llvm/Support/raw_ostream.h"
NAKAMURA Takumid2f16a22012-04-21 15:31:36 +000039
Craig Topper79aa3412012-03-17 18:46:09 +000040using namespace llvm;
Tony Linthicumb4b54152011-12-12 21:14:40 +000041
42const unsigned Hexagon_MAX_RET_SIZE = 64;
Tony Linthicumb4b54152011-12-12 21:14:40 +000043
44static cl::opt<bool>
45EmitJumpTables("hexagon-emit-jump-tables", cl::init(true), cl::Hidden,
46 cl::desc("Control jump table emission on Hexagon target"));
47
48int NumNamedVarArgParams = -1;
49
50// Implement calling convention for Hexagon.
51static bool
52CC_Hexagon(unsigned ValNo, MVT ValVT,
53 MVT LocVT, CCValAssign::LocInfo LocInfo,
54 ISD::ArgFlagsTy ArgFlags, CCState &State);
55
56static bool
57CC_Hexagon32(unsigned ValNo, MVT ValVT,
58 MVT LocVT, CCValAssign::LocInfo LocInfo,
59 ISD::ArgFlagsTy ArgFlags, CCState &State);
60
61static bool
62CC_Hexagon64(unsigned ValNo, MVT ValVT,
63 MVT LocVT, CCValAssign::LocInfo LocInfo,
64 ISD::ArgFlagsTy ArgFlags, CCState &State);
65
66static bool
67RetCC_Hexagon(unsigned ValNo, MVT ValVT,
68 MVT LocVT, CCValAssign::LocInfo LocInfo,
69 ISD::ArgFlagsTy ArgFlags, CCState &State);
70
71static bool
72RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
73 MVT LocVT, CCValAssign::LocInfo LocInfo,
74 ISD::ArgFlagsTy ArgFlags, CCState &State);
75
76static bool
77RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
78 MVT LocVT, CCValAssign::LocInfo LocInfo,
79 ISD::ArgFlagsTy ArgFlags, CCState &State);
80
81static bool
82CC_Hexagon_VarArg (unsigned ValNo, MVT ValVT,
83 MVT LocVT, CCValAssign::LocInfo LocInfo,
84 ISD::ArgFlagsTy ArgFlags, CCState &State) {
85
86 // NumNamedVarArgParams can not be zero for a VarArg function.
87 assert ( (NumNamedVarArgParams > 0) &&
88 "NumNamedVarArgParams is not bigger than zero.");
89
90 if ( (int)ValNo < NumNamedVarArgParams ) {
91 // Deal with named arguments.
92 return CC_Hexagon(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State);
93 }
94
95 // Deal with un-named arguments.
96 unsigned ofst;
97 if (ArgFlags.isByVal()) {
98 // If pass-by-value, the size allocated on stack is decided
99 // by ArgFlags.getByValSize(), not by the size of LocVT.
100 assert ((ArgFlags.getByValSize() > 8) &&
101 "ByValSize must be bigger than 8 bytes");
102 ofst = State.AllocateStack(ArgFlags.getByValSize(), 4);
103 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
104 return false;
105 }
Chandler Carruth37097622012-04-18 21:31:19 +0000106 if (LocVT == MVT::i32) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000107 ofst = State.AllocateStack(4, 4);
108 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
109 return false;
110 }
Chandler Carruth37097622012-04-18 21:31:19 +0000111 if (LocVT == MVT::i64) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000112 ofst = State.AllocateStack(8, 8);
113 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
114 return false;
115 }
116 llvm_unreachable(0);
Tony Linthicumb4b54152011-12-12 21:14:40 +0000117}
118
119
120static bool
121CC_Hexagon (unsigned ValNo, MVT ValVT,
122 MVT LocVT, CCValAssign::LocInfo LocInfo,
123 ISD::ArgFlagsTy ArgFlags, CCState &State) {
124
125 if (ArgFlags.isByVal()) {
126 // Passed on stack.
127 assert ((ArgFlags.getByValSize() > 8) &&
128 "ByValSize must be bigger than 8 bytes");
129 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(), 4);
130 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
131 return false;
132 }
133
134 if (LocVT == MVT::i1 || LocVT == MVT::i8 || LocVT == MVT::i16) {
135 LocVT = MVT::i32;
136 ValVT = MVT::i32;
137 if (ArgFlags.isSExt())
138 LocInfo = CCValAssign::SExt;
139 else if (ArgFlags.isZExt())
140 LocInfo = CCValAssign::ZExt;
141 else
142 LocInfo = CCValAssign::AExt;
143 }
144
Chandler Carruth37097622012-04-18 21:31:19 +0000145 if (LocVT == MVT::i32) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000146 if (!CC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
147 return false;
148 }
149
Chandler Carruth37097622012-04-18 21:31:19 +0000150 if (LocVT == MVT::i64) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000151 if (!CC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
152 return false;
153 }
154
155 return true; // CC didn't match.
156}
157
158
159static bool CC_Hexagon32(unsigned ValNo, MVT ValVT,
160 MVT LocVT, CCValAssign::LocInfo LocInfo,
161 ISD::ArgFlagsTy ArgFlags, CCState &State) {
162
Craig Topperc5eaae42012-03-11 07:57:25 +0000163 static const uint16_t RegList[] = {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000164 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
165 Hexagon::R5
166 };
167 if (unsigned Reg = State.AllocateReg(RegList, 6)) {
168 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
169 return false;
170 }
171
172 unsigned Offset = State.AllocateStack(4, 4);
173 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
174 return false;
175}
176
177static bool CC_Hexagon64(unsigned ValNo, MVT ValVT,
178 MVT LocVT, CCValAssign::LocInfo LocInfo,
179 ISD::ArgFlagsTy ArgFlags, CCState &State) {
180
181 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
182 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
183 return false;
184 }
185
Craig Topperc5eaae42012-03-11 07:57:25 +0000186 static const uint16_t RegList1[] = {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000187 Hexagon::D1, Hexagon::D2
188 };
Craig Topperc5eaae42012-03-11 07:57:25 +0000189 static const uint16_t RegList2[] = {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000190 Hexagon::R1, Hexagon::R3
191 };
192 if (unsigned Reg = State.AllocateReg(RegList1, RegList2, 2)) {
193 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
194 return false;
195 }
196
197 unsigned Offset = State.AllocateStack(8, 8, Hexagon::D2);
198 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
199 return false;
200}
201
202static bool RetCC_Hexagon(unsigned ValNo, MVT ValVT,
203 MVT LocVT, CCValAssign::LocInfo LocInfo,
204 ISD::ArgFlagsTy ArgFlags, CCState &State) {
205
206
207 if (LocVT == MVT::i1 ||
208 LocVT == MVT::i8 ||
209 LocVT == MVT::i16) {
210 LocVT = MVT::i32;
211 ValVT = MVT::i32;
212 if (ArgFlags.isSExt())
213 LocInfo = CCValAssign::SExt;
214 else if (ArgFlags.isZExt())
215 LocInfo = CCValAssign::ZExt;
216 else
217 LocInfo = CCValAssign::AExt;
218 }
219
Chandler Carruth37097622012-04-18 21:31:19 +0000220 if (LocVT == MVT::i32) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000221 if (!RetCC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
222 return false;
223 }
224
Chandler Carruth37097622012-04-18 21:31:19 +0000225 if (LocVT == MVT::i64) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000226 if (!RetCC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
227 return false;
228 }
229
230 return true; // CC didn't match.
231}
232
233static bool RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
234 MVT LocVT, CCValAssign::LocInfo LocInfo,
235 ISD::ArgFlagsTy ArgFlags, CCState &State) {
236
Chandler Carruth37097622012-04-18 21:31:19 +0000237 if (LocVT == MVT::i32) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000238 if (unsigned Reg = State.AllocateReg(Hexagon::R0)) {
239 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
240 return false;
241 }
242 }
243
244 unsigned Offset = State.AllocateStack(4, 4);
245 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
246 return false;
247}
248
249static bool RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
250 MVT LocVT, CCValAssign::LocInfo LocInfo,
251 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Chandler Carruth37097622012-04-18 21:31:19 +0000252 if (LocVT == MVT::i64) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000253 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
254 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
255 return false;
256 }
257 }
258
259 unsigned Offset = State.AllocateStack(8, 8);
260 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
261 return false;
262}
263
264SDValue
265HexagonTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG)
266const {
267 return SDValue();
268}
269
270/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
271/// by "Src" to address "Dst" of size "Size". Alignment information is
272/// specified by the specific parameter attribute. The copy will be passed as
273/// a byval function parameter. Sometimes what we are copying is the end of a
274/// larger object, the part that does not fit in registers.
275static SDValue
276CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
277 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
278 DebugLoc dl) {
279
280 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
281 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
282 /*isVolatile=*/false, /*AlwaysInline=*/false,
283 MachinePointerInfo(), MachinePointerInfo());
284}
285
286
287// LowerReturn - Lower ISD::RET. If a struct is larger than 8 bytes and is
288// passed by value, the function prototype is modified to return void and
289// the value is stored in memory pointed by a pointer passed by caller.
290SDValue
291HexagonTargetLowering::LowerReturn(SDValue Chain,
292 CallingConv::ID CallConv, bool isVarArg,
293 const SmallVectorImpl<ISD::OutputArg> &Outs,
294 const SmallVectorImpl<SDValue> &OutVals,
295 DebugLoc dl, SelectionDAG &DAG) const {
296
297 // CCValAssign - represent the assignment of the return value to locations.
298 SmallVector<CCValAssign, 16> RVLocs;
299
300 // CCState - Info about the registers and stack slot.
301 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
302 getTargetMachine(), RVLocs, *DAG.getContext());
303
304 // Analyze return values of ISD::RET
305 CCInfo.AnalyzeReturn(Outs, RetCC_Hexagon);
306
Tony Linthicumb4b54152011-12-12 21:14:40 +0000307 // If this is the first return lowered for this function, add the regs to the
308 // liveout set for the function.
309 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
310 for (unsigned i = 0; i != RVLocs.size(); ++i)
311 if (RVLocs[i].isRegLoc())
312 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
313 }
314
315 SDValue Flag;
316 // Copy the result values into the output registers.
317 for (unsigned i = 0; i != RVLocs.size(); ++i) {
318 CCValAssign &VA = RVLocs[i];
Tony Linthicumb4b54152011-12-12 21:14:40 +0000319
320 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
321
322 // Guarantee that all emitted copies are stuck together with flags.
323 Flag = Chain.getValue(1);
324 }
325
326 if (Flag.getNode())
327 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
328
329 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, Chain);
330}
331
332
333
334
335/// LowerCallResult - Lower the result values of an ISD::CALL into the
336/// appropriate copies out of appropriate physical registers. This assumes that
337/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
338/// being lowered. Returns a SDNode with the same number of values as the
339/// ISD::CALL.
340SDValue
341HexagonTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
342 CallingConv::ID CallConv, bool isVarArg,
343 const
344 SmallVectorImpl<ISD::InputArg> &Ins,
345 DebugLoc dl, SelectionDAG &DAG,
346 SmallVectorImpl<SDValue> &InVals,
347 const SmallVectorImpl<SDValue> &OutVals,
348 SDValue Callee) const {
349
350 // Assign locations to each value returned by this call.
351 SmallVector<CCValAssign, 16> RVLocs;
352
353 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
354 getTargetMachine(), RVLocs, *DAG.getContext());
355
356 CCInfo.AnalyzeCallResult(Ins, RetCC_Hexagon);
357
358 // Copy all of the result registers out of their specified physreg.
359 for (unsigned i = 0; i != RVLocs.size(); ++i) {
360 Chain = DAG.getCopyFromReg(Chain, dl,
361 RVLocs[i].getLocReg(),
362 RVLocs[i].getValVT(), InFlag).getValue(1);
363 InFlag = Chain.getValue(2);
364 InVals.push_back(Chain.getValue(0));
365 }
366
367 return Chain;
368}
369
370/// LowerCall - Functions arguments are copied from virtual regs to
371/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
372SDValue
373HexagonTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
374 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +0000375 bool doesNotRet, bool &isTailCall,
Tony Linthicumb4b54152011-12-12 21:14:40 +0000376 const SmallVectorImpl<ISD::OutputArg> &Outs,
377 const SmallVectorImpl<SDValue> &OutVals,
378 const SmallVectorImpl<ISD::InputArg> &Ins,
379 DebugLoc dl, SelectionDAG &DAG,
380 SmallVectorImpl<SDValue> &InVals) const {
381
382 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
383
384 // Analyze operands of the call, assigning locations to each operand.
385 SmallVector<CCValAssign, 16> ArgLocs;
386 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
387 getTargetMachine(), ArgLocs, *DAG.getContext());
388
389 // Check for varargs.
390 NumNamedVarArgParams = -1;
391 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Callee))
392 {
393 const Function* CalleeFn = NULL;
394 Callee = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, MVT::i32);
395 if ((CalleeFn = dyn_cast<Function>(GA->getGlobal())))
396 {
397 // If a function has zero args and is a vararg function, that's
398 // disallowed so it must be an undeclared function. Do not assume
399 // varargs if the callee is undefined.
400 if (CalleeFn->isVarArg() &&
401 CalleeFn->getFunctionType()->getNumParams() != 0) {
402 NumNamedVarArgParams = CalleeFn->getFunctionType()->getNumParams();
403 }
404 }
405 }
406
407 if (NumNamedVarArgParams > 0)
408 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon_VarArg);
409 else
410 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon);
411
412
413 if(isTailCall) {
414 bool StructAttrFlag =
415 DAG.getMachineFunction().getFunction()->hasStructRetAttr();
416 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
417 isVarArg, IsStructRet,
418 StructAttrFlag,
419 Outs, OutVals, Ins, DAG);
420 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i){
421 CCValAssign &VA = ArgLocs[i];
422 if (VA.isMemLoc()) {
423 isTailCall = false;
424 break;
425 }
426 }
427 if (isTailCall) {
428 DEBUG(dbgs () << "Eligible for Tail Call\n");
429 } else {
430 DEBUG(dbgs () <<
431 "Argument must be passed on stack. Not eligible for Tail Call\n");
432 }
433 }
434 // Get a count of how many bytes are to be pushed on the stack.
435 unsigned NumBytes = CCInfo.getNextStackOffset();
436 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
437 SmallVector<SDValue, 8> MemOpChains;
438
439 SDValue StackPtr =
440 DAG.getCopyFromReg(Chain, dl, TM.getRegisterInfo()->getStackRegister(),
441 getPointerTy());
442
443 // Walk the register/memloc assignments, inserting copies/loads.
444 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
445 CCValAssign &VA = ArgLocs[i];
446 SDValue Arg = OutVals[i];
447 ISD::ArgFlagsTy Flags = Outs[i].Flags;
448
449 // Promote the value if needed.
450 switch (VA.getLocInfo()) {
451 default:
452 // Loc info must be one of Full, SExt, ZExt, or AExt.
Craig Topperbc219812012-02-07 02:50:20 +0000453 llvm_unreachable("Unknown loc info!");
Tony Linthicumb4b54152011-12-12 21:14:40 +0000454 case CCValAssign::Full:
455 break;
456 case CCValAssign::SExt:
457 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
458 break;
459 case CCValAssign::ZExt:
460 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
461 break;
462 case CCValAssign::AExt:
463 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
464 break;
465 }
466
467 if (VA.isMemLoc()) {
468 unsigned LocMemOffset = VA.getLocMemOffset();
469 SDValue PtrOff = DAG.getConstant(LocMemOffset, StackPtr.getValueType());
470 PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
471
472 if (Flags.isByVal()) {
473 // The argument is a struct passed by value. According to LLVM, "Arg"
474 // is is pointer.
475 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, PtrOff, Chain,
476 Flags, DAG, dl));
477 } else {
478 // The argument is not passed by value. "Arg" is a buildin type. It is
479 // not a pointer.
480 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
481 MachinePointerInfo(),false, false,
482 0));
483 }
484 continue;
485 }
486
487 // Arguments that can be passed on register must be kept at RegsToPass
488 // vector.
489 if (VA.isRegLoc()) {
490 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
491 }
492 }
493
494 // Transform all store nodes into one single node because all store
495 // nodes are independent of each other.
496 if (!MemOpChains.empty()) {
497 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &MemOpChains[0],
498 MemOpChains.size());
499 }
500
501 if (!isTailCall)
502 Chain = DAG.getCALLSEQ_START(Chain, DAG.getConstant(NumBytes,
503 getPointerTy(), true));
504
505 // Build a sequence of copy-to-reg nodes chained together with token
506 // chain and flag operands which copy the outgoing args into registers.
507 // The InFlag in necessary since all emited instructions must be
508 // stuck together.
509 SDValue InFlag;
510 if (!isTailCall) {
511 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
512 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
513 RegsToPass[i].second, InFlag);
514 InFlag = Chain.getValue(1);
515 }
516 }
517
518 // For tail calls lower the arguments to the 'real' stack slot.
519 if (isTailCall) {
520 // Force all the incoming stack arguments to be loaded from the stack
521 // before any new outgoing arguments are stored to the stack, because the
522 // outgoing stack slots may alias the incoming argument stack slots, and
523 // the alias isn't otherwise explicit. This is slightly more conservative
524 // than necessary, because it means that each store effectively depends
525 // on every argument instead of just those arguments it would clobber.
526 //
527 // Do not flag preceeding copytoreg stuff together with the following stuff.
528 InFlag = SDValue();
529 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
530 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
531 RegsToPass[i].second, InFlag);
532 InFlag = Chain.getValue(1);
533 }
534 InFlag =SDValue();
535 }
536
537 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
538 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
539 // node so that legalize doesn't hack it.
540 if (flag_aligned_memcpy) {
541 const char *MemcpyName =
542 "__hexagon_memcpy_likely_aligned_min32bytes_mult8bytes";
543 Callee =
544 DAG.getTargetExternalSymbol(MemcpyName, getPointerTy());
545 flag_aligned_memcpy = false;
546 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
547 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, getPointerTy());
548 } else if (ExternalSymbolSDNode *S =
549 dyn_cast<ExternalSymbolSDNode>(Callee)) {
550 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
551 }
552
553 // Returns a chain & a flag for retval copy to use.
554 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
555 SmallVector<SDValue, 8> Ops;
556 Ops.push_back(Chain);
557 Ops.push_back(Callee);
558
559 // Add argument registers to the end of the list so that they are
560 // known live into the call.
561 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
562 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
563 RegsToPass[i].second.getValueType()));
564 }
565
566 if (InFlag.getNode()) {
567 Ops.push_back(InFlag);
568 }
569
570 if (isTailCall)
571 return DAG.getNode(HexagonISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
572
573 Chain = DAG.getNode(HexagonISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
574 InFlag = Chain.getValue(1);
575
576 // Create the CALLSEQ_END node.
577 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
578 DAG.getIntPtrConstant(0, true), InFlag);
579 InFlag = Chain.getValue(1);
580
581 // Handle result values, copying them out of physregs into vregs that we
582 // return.
583 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
584 InVals, OutVals, Callee);
585}
586
587static bool getIndexedAddressParts(SDNode *Ptr, EVT VT,
588 bool isSEXTLoad, SDValue &Base,
589 SDValue &Offset, bool &isInc,
590 SelectionDAG &DAG) {
591 if (Ptr->getOpcode() != ISD::ADD)
592 return false;
593
594 if (VT == MVT::i64 || VT == MVT::i32 || VT == MVT::i16 || VT == MVT::i8) {
595 isInc = (Ptr->getOpcode() == ISD::ADD);
596 Base = Ptr->getOperand(0);
597 Offset = Ptr->getOperand(1);
598 // Ensure that Offset is a constant.
599 return (isa<ConstantSDNode>(Offset));
600 }
601
602 return false;
603}
604
605// TODO: Put this function along with the other isS* functions in
606// HexagonISelDAGToDAG.cpp into a common file. Or better still, use the
607// functions defined in HexagonImmediates.td.
608static bool Is_PostInc_S4_Offset(SDNode * S, int ShiftAmount) {
609 ConstantSDNode *N = cast<ConstantSDNode>(S);
610
611 // immS4 predicate - True if the immediate fits in a 4-bit sign extended.
612 // field.
613 int64_t v = (int64_t)N->getSExtValue();
614 int64_t m = 0;
615 if (ShiftAmount > 0) {
616 m = v % ShiftAmount;
617 v = v >> ShiftAmount;
618 }
619 return (v <= 7) && (v >= -8) && (m == 0);
620}
621
622/// getPostIndexedAddressParts - returns true by value, base pointer and
623/// offset pointer and addressing mode by reference if this node can be
624/// combined with a load / store to form a post-indexed load / store.
625bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
626 SDValue &Base,
627 SDValue &Offset,
628 ISD::MemIndexedMode &AM,
629 SelectionDAG &DAG) const
630{
631 EVT VT;
632 SDValue Ptr;
633 bool isSEXTLoad = false;
634
635 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
636 VT = LD->getMemoryVT();
637 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
638 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
639 VT = ST->getMemoryVT();
640 if (ST->getValue().getValueType() == MVT::i64 && ST->isTruncatingStore()) {
641 return false;
642 }
643 } else {
644 return false;
645 }
646
Chad Rosier6da0ef92012-01-06 20:11:59 +0000647 bool isInc = false;
Tony Linthicumb4b54152011-12-12 21:14:40 +0000648 bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
649 isInc, DAG);
650 // ShiftAmount = number of left-shifted bits in the Hexagon instruction.
651 int ShiftAmount = VT.getSizeInBits() / 16;
652 if (isLegal && Is_PostInc_S4_Offset(Offset.getNode(), ShiftAmount)) {
653 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
654 return true;
655 }
656
657 return false;
658}
659
660SDValue HexagonTargetLowering::LowerINLINEASM(SDValue Op,
661 SelectionDAG &DAG) const {
662 SDNode *Node = Op.getNode();
663 MachineFunction &MF = DAG.getMachineFunction();
664 HexagonMachineFunctionInfo *FuncInfo =
665 MF.getInfo<HexagonMachineFunctionInfo>();
666 switch (Node->getOpcode()) {
667 case ISD::INLINEASM: {
668 unsigned NumOps = Node->getNumOperands();
669 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
670 --NumOps; // Ignore the flag operand.
671
672 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
673 if (FuncInfo->hasClobberLR())
674 break;
675 unsigned Flags =
676 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
677 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
678 ++i; // Skip the ID value.
679
680 switch (InlineAsm::getKind(Flags)) {
681 default: llvm_unreachable("Bad flags!");
682 case InlineAsm::Kind_RegDef:
683 case InlineAsm::Kind_RegUse:
684 case InlineAsm::Kind_Imm:
685 case InlineAsm::Kind_Clobber:
686 case InlineAsm::Kind_Mem: {
687 for (; NumVals; --NumVals, ++i) {}
688 break;
689 }
690 case InlineAsm::Kind_RegDefEarlyClobber: {
691 for (; NumVals; --NumVals, ++i) {
692 unsigned Reg =
693 cast<RegisterSDNode>(Node->getOperand(i))->getReg();
694
695 // Check it to be lr
696 if (Reg == TM.getRegisterInfo()->getRARegister()) {
697 FuncInfo->setHasClobberLR(true);
698 break;
699 }
700 }
701 break;
702 }
703 }
704 }
705 }
706 } // Node->getOpcode
707 return Op;
708}
709
710
711//
712// Taken from the XCore backend.
713//
714SDValue HexagonTargetLowering::
715LowerBR_JT(SDValue Op, SelectionDAG &DAG) const
716{
717 SDValue Chain = Op.getOperand(0);
718 SDValue Table = Op.getOperand(1);
719 SDValue Index = Op.getOperand(2);
720 DebugLoc dl = Op.getDebugLoc();
721 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
722 unsigned JTI = JT->getIndex();
723 MachineFunction &MF = DAG.getMachineFunction();
724 const MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
725 SDValue TargetJT = DAG.getTargetJumpTable(JT->getIndex(), MVT::i32);
726
727 // Mark all jump table targets as address taken.
728 const std::vector<MachineJumpTableEntry> &JTE = MJTI->getJumpTables();
729 const std::vector<MachineBasicBlock*> &JTBBs = JTE[JTI].MBBs;
730 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
731 MachineBasicBlock *MBB = JTBBs[i];
732 MBB->setHasAddressTaken();
733 // This line is needed to set the hasAddressTaken flag on the BasicBlock
734 // object.
735 BlockAddress::get(const_cast<BasicBlock *>(MBB->getBasicBlock()));
736 }
737
738 SDValue JumpTableBase = DAG.getNode(HexagonISD::WrapperJT, dl,
739 getPointerTy(), TargetJT);
740 SDValue ShiftIndex = DAG.getNode(ISD::SHL, dl, MVT::i32, Index,
741 DAG.getConstant(2, MVT::i32));
742 SDValue JTAddress = DAG.getNode(ISD::ADD, dl, MVT::i32, JumpTableBase,
743 ShiftIndex);
744 SDValue LoadTarget = DAG.getLoad(MVT::i32, dl, Chain, JTAddress,
745 MachinePointerInfo(), false, false, false,
746 0);
747 return DAG.getNode(HexagonISD::BR_JT, dl, MVT::Other, Chain, LoadTarget);
748}
749
750
751SDValue
752HexagonTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
753 SelectionDAG &DAG) const {
754 SDValue Chain = Op.getOperand(0);
755 SDValue Size = Op.getOperand(1);
756 DebugLoc dl = Op.getDebugLoc();
757
758 unsigned SPReg = getStackPointerRegisterToSaveRestore();
759
760 // Get a reference to the stack pointer.
761 SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, SPReg, MVT::i32);
762
763 // Subtract the dynamic size from the actual stack size to
764 // obtain the new stack size.
765 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
766
767 //
768 // For Hexagon, the outgoing memory arguments area should be on top of the
769 // alloca area on the stack i.e., the outgoing memory arguments should be
770 // at a lower address than the alloca area. Move the alloca area down the
771 // stack by adding back the space reserved for outgoing arguments to SP
772 // here.
773 //
774 // We do not know what the size of the outgoing args is at this point.
775 // So, we add a pseudo instruction ADJDYNALLOC that will adjust the
776 // stack pointer. We patch this instruction with the correct, known
777 // offset in emitPrologue().
778 //
779 // Use a placeholder immediate (zero) for now. This will be patched up
780 // by emitPrologue().
781 SDValue ArgAdjust = DAG.getNode(HexagonISD::ADJDYNALLOC, dl,
782 MVT::i32,
783 Sub,
784 DAG.getConstant(0, MVT::i32));
785
786 // The Sub result contains the new stack start address, so it
787 // must be placed in the stack pointer register.
788 SDValue CopyChain = DAG.getCopyToReg(Chain, dl,
789 TM.getRegisterInfo()->getStackRegister(),
790 Sub);
791
792 SDValue Ops[2] = { ArgAdjust, CopyChain };
793 return DAG.getMergeValues(Ops, 2, dl);
794}
795
796SDValue
797HexagonTargetLowering::LowerFormalArguments(SDValue Chain,
798 CallingConv::ID CallConv,
799 bool isVarArg,
800 const
801 SmallVectorImpl<ISD::InputArg> &Ins,
802 DebugLoc dl, SelectionDAG &DAG,
803 SmallVectorImpl<SDValue> &InVals)
804const {
805
806 MachineFunction &MF = DAG.getMachineFunction();
807 MachineFrameInfo *MFI = MF.getFrameInfo();
808 MachineRegisterInfo &RegInfo = MF.getRegInfo();
809 HexagonMachineFunctionInfo *FuncInfo =
810 MF.getInfo<HexagonMachineFunctionInfo>();
811
812
813 // Assign locations to all of the incoming arguments.
814 SmallVector<CCValAssign, 16> ArgLocs;
815 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
816 getTargetMachine(), ArgLocs, *DAG.getContext());
817
818 CCInfo.AnalyzeFormalArguments(Ins, CC_Hexagon);
819
820 // For LLVM, in the case when returning a struct by value (>8byte),
821 // the first argument is a pointer that points to the location on caller's
822 // stack where the return value will be stored. For Hexagon, the location on
823 // caller's stack is passed only when the struct size is smaller than (and
824 // equal to) 8 bytes. If not, no address will be passed into callee and
825 // callee return the result direclty through R0/R1.
826
827 SmallVector<SDValue, 4> MemOps;
828
829 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
830 CCValAssign &VA = ArgLocs[i];
831 ISD::ArgFlagsTy Flags = Ins[i].Flags;
832 unsigned ObjSize;
833 unsigned StackLocation;
834 int FI;
835
836 if ( (VA.isRegLoc() && !Flags.isByVal())
837 || (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() > 8)) {
838 // Arguments passed in registers
839 // 1. int, long long, ptr args that get allocated in register.
840 // 2. Large struct that gets an register to put its address in.
841 EVT RegVT = VA.getLocVT();
Chandler Carruth37097622012-04-18 21:31:19 +0000842 if (RegVT == MVT::i8 || RegVT == MVT::i16 || RegVT == MVT::i32) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000843 unsigned VReg =
Craig Topper420761a2012-04-20 07:30:17 +0000844 RegInfo.createVirtualRegister(&Hexagon::IntRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +0000845 RegInfo.addLiveIn(VA.getLocReg(), VReg);
846 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Chandler Carruth37097622012-04-18 21:31:19 +0000847 } else if (RegVT == MVT::i64) {
Tony Linthicumb4b54152011-12-12 21:14:40 +0000848 unsigned VReg =
Craig Topper420761a2012-04-20 07:30:17 +0000849 RegInfo.createVirtualRegister(&Hexagon::DoubleRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +0000850 RegInfo.addLiveIn(VA.getLocReg(), VReg);
851 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
852 } else {
853 assert (0);
854 }
855 } else if (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() <= 8) {
856 assert (0 && "ByValSize must be bigger than 8 bytes");
857 } else {
858 // Sanity check.
859 assert(VA.isMemLoc());
860
861 if (Flags.isByVal()) {
862 // If it's a byval parameter, then we need to compute the
863 // "real" size, not the size of the pointer.
864 ObjSize = Flags.getByValSize();
865 } else {
866 ObjSize = VA.getLocVT().getStoreSizeInBits() >> 3;
867 }
868
869 StackLocation = HEXAGON_LRFP_SIZE + VA.getLocMemOffset();
870 // Create the frame index object for this incoming parameter...
871 FI = MFI->CreateFixedObject(ObjSize, StackLocation, true);
872
873 // Create the SelectionDAG nodes cordl, responding to a load
874 // from this parameter.
875 SDValue FIN = DAG.getFrameIndex(FI, MVT::i32);
876
877 if (Flags.isByVal()) {
878 // If it's a pass-by-value aggregate, then do not dereference the stack
879 // location. Instead, we should generate a reference to the stack
880 // location.
881 InVals.push_back(FIN);
882 } else {
883 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
884 MachinePointerInfo(), false, false,
885 false, 0));
886 }
887 }
888 }
889
890 if (!MemOps.empty())
891 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &MemOps[0],
892 MemOps.size());
893
894 if (isVarArg) {
895 // This will point to the next argument passed via stack.
896 int FrameIndex = MFI->CreateFixedObject(Hexagon_PointerSize,
897 HEXAGON_LRFP_SIZE +
898 CCInfo.getNextStackOffset(),
899 true);
900 FuncInfo->setVarArgsFrameIndex(FrameIndex);
901 }
902
903 return Chain;
904}
905
906SDValue
907HexagonTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
908 // VASTART stores the address of the VarArgsFrameIndex slot into the
909 // memory location argument.
910 MachineFunction &MF = DAG.getMachineFunction();
911 HexagonMachineFunctionInfo *QFI = MF.getInfo<HexagonMachineFunctionInfo>();
912 SDValue Addr = DAG.getFrameIndex(QFI->getVarArgsFrameIndex(), MVT::i32);
913 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
914 return DAG.getStore(Op.getOperand(0), Op.getDebugLoc(), Addr,
915 Op.getOperand(1), MachinePointerInfo(SV), false,
916 false, 0);
917}
918
919SDValue
920HexagonTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
921 SDNode* OpNode = Op.getNode();
922
Chandler Carruth37097622012-04-18 21:31:19 +0000923 SDValue Cond = DAG.getNode(ISD::SETCC, Op.getDebugLoc(), MVT::i1,
924 Op.getOperand(2), Op.getOperand(3),
925 Op.getOperand(4));
926 return DAG.getNode(ISD::SELECT, Op.getDebugLoc(), OpNode->getValueType(0),
927 Cond, Op.getOperand(0),
928 Op.getOperand(1));
Tony Linthicumb4b54152011-12-12 21:14:40 +0000929}
930
931SDValue
932HexagonTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const {
933 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
934 MachineFunction &MF = DAG.getMachineFunction();
935 MachineFrameInfo *MFI = MF.getFrameInfo();
936 MFI->setReturnAddressIsTaken(true);
937
938 EVT VT = Op.getValueType();
939 DebugLoc dl = Op.getDebugLoc();
940 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
941 if (Depth) {
942 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
943 SDValue Offset = DAG.getConstant(4, MVT::i32);
944 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
945 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
946 MachinePointerInfo(), false, false, false, 0);
947 }
948
949 // Return LR, which contains the return address. Mark it an implicit live-in.
950 unsigned Reg = MF.addLiveIn(TRI->getRARegister(), getRegClassFor(MVT::i32));
951 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
952}
953
954SDValue
955HexagonTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
956 const HexagonRegisterInfo *TRI = TM.getRegisterInfo();
957 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
958 MFI->setFrameAddressIsTaken(true);
959
960 EVT VT = Op.getValueType();
961 DebugLoc dl = Op.getDebugLoc();
962 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
963 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
964 TRI->getFrameRegister(), VT);
965 while (Depth--)
966 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
967 MachinePointerInfo(),
968 false, false, false, 0);
969 return FrameAddr;
970}
971
972
973SDValue HexagonTargetLowering::LowerMEMBARRIER(SDValue Op,
974 SelectionDAG& DAG) const {
975 DebugLoc dl = Op.getDebugLoc();
976 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
977}
978
979
980SDValue HexagonTargetLowering::LowerATOMIC_FENCE(SDValue Op,
981 SelectionDAG& DAG) const {
982 DebugLoc dl = Op.getDebugLoc();
983 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
984}
985
986
987SDValue HexagonTargetLowering::LowerGLOBALADDRESS(SDValue Op,
988 SelectionDAG &DAG) const {
989 SDValue Result;
990 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
991 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
992 DebugLoc dl = Op.getDebugLoc();
993 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
994
995 HexagonTargetObjectFile &TLOF =
996 (HexagonTargetObjectFile&)getObjFileLowering();
997 if (TLOF.IsGlobalInSmallSection(GV, getTargetMachine())) {
998 return DAG.getNode(HexagonISD::CONST32_GP, dl, getPointerTy(), Result);
999 }
1000
1001 return DAG.getNode(HexagonISD::CONST32, dl, getPointerTy(), Result);
1002}
1003
1004//===----------------------------------------------------------------------===//
1005// TargetLowering Implementation
1006//===----------------------------------------------------------------------===//
1007
1008HexagonTargetLowering::HexagonTargetLowering(HexagonTargetMachine
1009 &targetmachine)
1010 : TargetLowering(targetmachine, new HexagonTargetObjectFile()),
1011 TM(targetmachine) {
1012
1013 // Set up the register classes.
Craig Topper420761a2012-04-20 07:30:17 +00001014 addRegisterClass(MVT::i32, &Hexagon::IntRegsRegClass);
1015 addRegisterClass(MVT::i64, &Hexagon::DoubleRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001016
Craig Topper420761a2012-04-20 07:30:17 +00001017 addRegisterClass(MVT::i1, &Hexagon::PredRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001018
1019 computeRegisterProperties();
1020
1021 // Align loop entry
1022 setPrefLoopAlignment(4);
1023
1024 // Limits for inline expansion of memcpy/memmove
1025 maxStoresPerMemcpy = 6;
1026 maxStoresPerMemmove = 6;
1027
1028 //
1029 // Library calls for unsupported operations
1030 //
Chandler Carruth37097622012-04-18 21:31:19 +00001031 setLibcallName(RTLIB::OGT_F64, "__hexagon_gtdf2");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001032
Chandler Carruth37097622012-04-18 21:31:19 +00001033 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__hexagon_floatdidf");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001034 setLibcallName(RTLIB::SINTTOFP_I128_F64, "__hexagon_floattidf");
1035 setLibcallName(RTLIB::SINTTOFP_I128_F32, "__hexagon_floattisf");
Chandler Carruth37097622012-04-18 21:31:19 +00001036 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__hexagon_floatunsisf");
1037 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__hexagon_floatundisf");
1038 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__hexagon_floatdisf");
1039 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__hexagon_floatundidf");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001040
Chandler Carruth37097622012-04-18 21:31:19 +00001041 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__hexagon_fixunssfsi");
1042 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__hexagon_fixunssfdi");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001043 setLibcallName(RTLIB::FPTOUINT_F32_I128, "__hexagon_fixunssfti");
Chandler Carruth37097622012-04-18 21:31:19 +00001044
1045 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__hexagon_fixunsdfsi");
1046 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__hexagon_fixunsdfdi");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001047 setLibcallName(RTLIB::FPTOUINT_F64_I128, "__hexagon_fixunsdfti");
1048
Chandler Carruth37097622012-04-18 21:31:19 +00001049 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__hexagon_floatunsidf");
1050 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__hexagon_fixsfdi");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001051 setLibcallName(RTLIB::FPTOSINT_F32_I128, "__hexagon_fixsfti");
Chandler Carruth37097622012-04-18 21:31:19 +00001052 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__hexagon_fixdfdi");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001053 setLibcallName(RTLIB::FPTOSINT_F64_I128, "__hexagon_fixdfti");
1054
Chandler Carruth37097622012-04-18 21:31:19 +00001055 setLibcallName(RTLIB::OGT_F64, "__hexagon_gtdf2");
1056
Tony Linthicumb4b54152011-12-12 21:14:40 +00001057 setLibcallName(RTLIB::SDIV_I32, "__hexagon_divsi3");
1058 setOperationAction(ISD::SDIV, MVT::i32, Expand);
1059 setLibcallName(RTLIB::SREM_I32, "__hexagon_umodsi3");
1060 setOperationAction(ISD::SREM, MVT::i32, Expand);
1061
1062 setLibcallName(RTLIB::SDIV_I64, "__hexagon_divdi3");
1063 setOperationAction(ISD::SDIV, MVT::i64, Expand);
1064 setLibcallName(RTLIB::SREM_I64, "__hexagon_moddi3");
1065 setOperationAction(ISD::SREM, MVT::i64, Expand);
1066
1067 setLibcallName(RTLIB::UDIV_I32, "__hexagon_udivsi3");
1068 setOperationAction(ISD::UDIV, MVT::i32, Expand);
1069
1070 setLibcallName(RTLIB::UDIV_I64, "__hexagon_udivdi3");
1071 setOperationAction(ISD::UDIV, MVT::i64, Expand);
1072
1073 setLibcallName(RTLIB::UREM_I32, "__hexagon_umodsi3");
1074 setOperationAction(ISD::UREM, MVT::i32, Expand);
1075
1076 setLibcallName(RTLIB::UREM_I64, "__hexagon_umoddi3");
1077 setOperationAction(ISD::UREM, MVT::i64, Expand);
1078
1079 setLibcallName(RTLIB::DIV_F32, "__hexagon_divsf3");
1080 setOperationAction(ISD::FDIV, MVT::f32, Expand);
1081
1082 setLibcallName(RTLIB::DIV_F64, "__hexagon_divdf3");
1083 setOperationAction(ISD::FDIV, MVT::f64, Expand);
1084
Chandler Carruth37097622012-04-18 21:31:19 +00001085 setLibcallName(RTLIB::FPEXT_F32_F64, "__hexagon_extendsfdf2");
1086 setOperationAction(ISD::FP_EXTEND, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001087
Chandler Carruth37097622012-04-18 21:31:19 +00001088 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__hexagon_floatsisf");
1089 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001090
Chandler Carruth37097622012-04-18 21:31:19 +00001091 setLibcallName(RTLIB::ADD_F64, "__hexagon_adddf3");
1092 setOperationAction(ISD::FADD, MVT::f64, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001093
Chandler Carruth37097622012-04-18 21:31:19 +00001094 setLibcallName(RTLIB::ADD_F32, "__hexagon_addsf3");
1095 setOperationAction(ISD::FADD, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001096
Chandler Carruth37097622012-04-18 21:31:19 +00001097 setLibcallName(RTLIB::ADD_F32, "__hexagon_addsf3");
1098 setOperationAction(ISD::FADD, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001099
Chandler Carruth37097622012-04-18 21:31:19 +00001100 setLibcallName(RTLIB::OEQ_F32, "__hexagon_eqsf2");
1101 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001102
Chandler Carruth37097622012-04-18 21:31:19 +00001103 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__hexagon_fixdfsi");
1104 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001105
Chandler Carruth37097622012-04-18 21:31:19 +00001106 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__hexagon_fixsfsi");
1107 setOperationAction(ISD::FP_TO_SINT, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001108
Chandler Carruth37097622012-04-18 21:31:19 +00001109 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__hexagon_floatsidf");
1110 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001111
Chandler Carruth37097622012-04-18 21:31:19 +00001112 setLibcallName(RTLIB::OGE_F64, "__hexagon_gedf2");
1113 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001114
Chandler Carruth37097622012-04-18 21:31:19 +00001115 setLibcallName(RTLIB::OGE_F32, "__hexagon_gesf2");
1116 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001117
Chandler Carruth37097622012-04-18 21:31:19 +00001118 setLibcallName(RTLIB::OGT_F32, "__hexagon_gtsf2");
1119 setCondCodeAction(ISD::SETOGT, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001120
Chandler Carruth37097622012-04-18 21:31:19 +00001121 setLibcallName(RTLIB::OLE_F64, "__hexagon_ledf2");
1122 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001123
Chandler Carruth37097622012-04-18 21:31:19 +00001124 setLibcallName(RTLIB::OLE_F32, "__hexagon_lesf2");
1125 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001126
Chandler Carruth37097622012-04-18 21:31:19 +00001127 setLibcallName(RTLIB::OLT_F64, "__hexagon_ltdf2");
1128 setCondCodeAction(ISD::SETOLT, MVT::f64, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001129
Chandler Carruth37097622012-04-18 21:31:19 +00001130 setLibcallName(RTLIB::OLT_F32, "__hexagon_ltsf2");
1131 setCondCodeAction(ISD::SETOLT, MVT::f32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001132
1133 setLibcallName(RTLIB::SREM_I32, "__hexagon_modsi3");
1134 setOperationAction(ISD::SREM, MVT::i32, Expand);
1135
Chandler Carruth37097622012-04-18 21:31:19 +00001136 setLibcallName(RTLIB::MUL_F64, "__hexagon_muldf3");
1137 setOperationAction(ISD::FMUL, MVT::f64, Expand);
1138
1139 setLibcallName(RTLIB::MUL_F32, "__hexagon_mulsf3");
1140 setOperationAction(ISD::MUL, MVT::f32, Expand);
1141
1142 setLibcallName(RTLIB::UNE_F64, "__hexagon_nedf2");
1143 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
1144
1145 setLibcallName(RTLIB::UNE_F32, "__hexagon_nesf2");
1146
1147
1148 setLibcallName(RTLIB::SUB_F64, "__hexagon_subdf3");
1149 setOperationAction(ISD::SUB, MVT::f64, Expand);
1150
1151 setLibcallName(RTLIB::SUB_F32, "__hexagon_subsf3");
1152 setOperationAction(ISD::SUB, MVT::f32, Expand);
1153
1154 setLibcallName(RTLIB::FPROUND_F64_F32, "__hexagon_truncdfsf2");
1155 setOperationAction(ISD::FP_ROUND, MVT::f64, Expand);
1156
1157 setLibcallName(RTLIB::UO_F64, "__hexagon_unorddf2");
1158 setCondCodeAction(ISD::SETUO, MVT::f64, Expand);
1159
1160 setLibcallName(RTLIB::O_F64, "__hexagon_unorddf2");
1161 setCondCodeAction(ISD::SETO, MVT::f64, Expand);
1162
1163 setLibcallName(RTLIB::OEQ_F64, "__hexagon_eqdf2");
1164 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
1165
1166 setLibcallName(RTLIB::O_F32, "__hexagon_unordsf2");
1167 setCondCodeAction(ISD::SETO, MVT::f32, Expand);
1168
1169 setLibcallName(RTLIB::UO_F32, "__hexagon_unordsf2");
1170 setCondCodeAction(ISD::SETUO, MVT::f32, Expand);
1171
Tony Linthicumb4b54152011-12-12 21:14:40 +00001172 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
1173 setIndexedLoadAction(ISD::POST_INC, MVT::i16, Legal);
1174 setIndexedLoadAction(ISD::POST_INC, MVT::i32, Legal);
1175 setIndexedLoadAction(ISD::POST_INC, MVT::i64, Legal);
1176
1177 setIndexedStoreAction(ISD::POST_INC, MVT::i8, Legal);
1178 setIndexedStoreAction(ISD::POST_INC, MVT::i16, Legal);
1179 setIndexedStoreAction(ISD::POST_INC, MVT::i32, Legal);
1180 setIndexedStoreAction(ISD::POST_INC, MVT::i64, Legal);
1181
1182 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
1183
1184 // Turn FP extload into load/fextend.
1185 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
1186 // Hexagon has a i1 sign extending load.
1187 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Expand);
1188 // Turn FP truncstore into trunc + store.
1189 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1190
1191 // Custom legalize GlobalAddress nodes into CONST32.
1192 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
1193 setOperationAction(ISD::GlobalAddress, MVT::i8, Custom);
1194 // Truncate action?
1195 setOperationAction(ISD::TRUNCATE, MVT::i64, Expand);
1196
1197 // Hexagon doesn't have sext_inreg, replace them with shl/sra.
1198 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
1199
1200 // Hexagon has no REM or DIVREM operations.
1201 setOperationAction(ISD::UREM, MVT::i32, Expand);
1202 setOperationAction(ISD::SREM, MVT::i32, Expand);
1203 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
1204 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
1205 setOperationAction(ISD::SREM, MVT::i64, Expand);
1206 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
1207 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
1208
1209 setOperationAction(ISD::BSWAP, MVT::i64, Expand);
1210
Chandler Carruth37097622012-04-18 21:31:19 +00001211 // Expand fp<->uint.
1212 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
1213 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
1214
1215 // Hexagon has no select or setcc: expand to SELECT_CC.
1216 setOperationAction(ISD::SELECT, MVT::f32, Expand);
1217 setOperationAction(ISD::SELECT, MVT::f64, Expand);
1218
Tony Linthicumb4b54152011-12-12 21:14:40 +00001219 // Lower SELECT_CC to SETCC and SELECT.
1220 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
1221 setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
Chandler Carruth37097622012-04-18 21:31:19 +00001222 // This is a workaround documented in DAGCombiner.cpp:2892 We don't
1223 // support SELECT_CC on every type.
1224 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001225
1226 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
1227 setOperationAction(ISD::BRIND, MVT::Other, Expand);
1228 if (EmitJumpTables) {
1229 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
1230 } else {
1231 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
1232 }
1233
1234 setOperationAction(ISD::BR_CC, MVT::i32, Expand);
1235
1236 setOperationAction(ISD::MEMBARRIER, MVT::Other, Custom);
1237 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
1238
1239 setOperationAction(ISD::FSIN , MVT::f64, Expand);
1240 setOperationAction(ISD::FCOS , MVT::f64, Expand);
1241 setOperationAction(ISD::FREM , MVT::f64, Expand);
1242 setOperationAction(ISD::FSIN , MVT::f32, Expand);
1243 setOperationAction(ISD::FCOS , MVT::f32, Expand);
1244 setOperationAction(ISD::FREM , MVT::f32, Expand);
1245 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
1246 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +00001247 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001248 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +00001249 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001250 setOperationAction(ISD::ROTL , MVT::i32, Expand);
1251 setOperationAction(ISD::ROTR , MVT::i32, Expand);
1252 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
1253 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
1254 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
1255 setOperationAction(ISD::FPOW , MVT::f64, Expand);
1256 setOperationAction(ISD::FPOW , MVT::f32, Expand);
1257
1258 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
1259 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
1260 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
1261
1262 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
1263 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
1264
1265 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
1266 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
1267
1268 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
1269 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
1270 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
1271 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
1272
1273 setOperationAction(ISD::EH_RETURN, MVT::Other, Expand);
1274
1275 if (TM.getSubtargetImpl()->isSubtargetV2()) {
1276 setExceptionPointerRegister(Hexagon::R20);
1277 setExceptionSelectorRegister(Hexagon::R21);
1278 } else {
1279 setExceptionPointerRegister(Hexagon::R0);
1280 setExceptionSelectorRegister(Hexagon::R1);
1281 }
1282
1283 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
1284 setOperationAction(ISD::VASTART , MVT::Other, Custom);
1285
1286 // Use the default implementation.
1287 setOperationAction(ISD::VAARG , MVT::Other, Expand);
1288 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
1289 setOperationAction(ISD::VAEND , MVT::Other, Expand);
1290 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
1291 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
1292
1293
1294 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
1295 setOperationAction(ISD::INLINEASM , MVT::Other, Custom);
1296
1297 setMinFunctionAlignment(2);
1298
1299 // Needed for DYNAMIC_STACKALLOC expansion.
1300 unsigned StackRegister = TM.getRegisterInfo()->getStackRegister();
1301 setStackPointerRegisterToSaveRestore(StackRegister);
Andrew Trickee498d32012-02-01 22:13:57 +00001302 setSchedulingPreference(Sched::VLIW);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001303}
1304
1305
1306const char*
1307HexagonTargetLowering::getTargetNodeName(unsigned Opcode) const {
1308 switch (Opcode) {
1309 default: return 0;
Chandler Carruth37097622012-04-18 21:31:19 +00001310 case HexagonISD::CONST32: return "HexagonISD::CONST32";
Tony Linthicumb4b54152011-12-12 21:14:40 +00001311 case HexagonISD::ADJDYNALLOC: return "HexagonISD::ADJDYNALLOC";
Chandler Carruth37097622012-04-18 21:31:19 +00001312 case HexagonISD::CMPICC: return "HexagonISD::CMPICC";
1313 case HexagonISD::CMPFCC: return "HexagonISD::CMPFCC";
1314 case HexagonISD::BRICC: return "HexagonISD::BRICC";
1315 case HexagonISD::BRFCC: return "HexagonISD::BRFCC";
1316 case HexagonISD::SELECT_ICC: return "HexagonISD::SELECT_ICC";
1317 case HexagonISD::SELECT_FCC: return "HexagonISD::SELECT_FCC";
1318 case HexagonISD::Hi: return "HexagonISD::Hi";
1319 case HexagonISD::Lo: return "HexagonISD::Lo";
1320 case HexagonISD::FTOI: return "HexagonISD::FTOI";
1321 case HexagonISD::ITOF: return "HexagonISD::ITOF";
1322 case HexagonISD::CALL: return "HexagonISD::CALL";
1323 case HexagonISD::RET_FLAG: return "HexagonISD::RET_FLAG";
1324 case HexagonISD::BR_JT: return "HexagonISD::BR_JT";
1325 case HexagonISD::TC_RETURN: return "HexagonISD::TC_RETURN";
Tony Linthicumb4b54152011-12-12 21:14:40 +00001326 }
1327}
1328
1329bool
1330HexagonTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
1331 EVT MTy1 = EVT::getEVT(Ty1);
1332 EVT MTy2 = EVT::getEVT(Ty2);
1333 if (!MTy1.isSimple() || !MTy2.isSimple()) {
1334 return false;
1335 }
1336 return ((MTy1.getSimpleVT() == MVT::i64) && (MTy2.getSimpleVT() == MVT::i32));
1337}
1338
1339bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
1340 if (!VT1.isSimple() || !VT2.isSimple()) {
1341 return false;
1342 }
1343 return ((VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32));
1344}
1345
1346SDValue
1347HexagonTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
1348 switch (Op.getOpcode()) {
Craig Topperbc219812012-02-07 02:50:20 +00001349 default: llvm_unreachable("Should not custom lower this!");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001350 // Frame & Return address. Currently unimplemented.
Chandler Carruth37097622012-04-18 21:31:19 +00001351 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
1352 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001353 case ISD::GlobalTLSAddress:
Craig Topperbc219812012-02-07 02:50:20 +00001354 llvm_unreachable("TLS not implemented for Hexagon.");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001355 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, DAG);
1356 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG);
1357 case ISD::GlobalAddress: return LowerGLOBALADDRESS(Op, DAG);
1358 case ISD::VASTART: return LowerVASTART(Op, DAG);
1359 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
1360
1361 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Chandler Carruth37097622012-04-18 21:31:19 +00001362 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001363 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Chandler Carruth37097622012-04-18 21:31:19 +00001364 case ISD::INLINEASM: return LowerINLINEASM(Op, DAG);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001365
1366 }
1367}
1368
1369
1370
1371//===----------------------------------------------------------------------===//
1372// Hexagon Scheduler Hooks
1373//===----------------------------------------------------------------------===//
1374MachineBasicBlock *
1375HexagonTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
1376 MachineBasicBlock *BB)
1377const {
1378 switch (MI->getOpcode()) {
1379 case Hexagon::ADJDYNALLOC: {
1380 MachineFunction *MF = BB->getParent();
1381 HexagonMachineFunctionInfo *FuncInfo =
1382 MF->getInfo<HexagonMachineFunctionInfo>();
1383 FuncInfo->addAllocaAdjustInst(MI);
1384 return BB;
1385 }
Craig Topperbc219812012-02-07 02:50:20 +00001386 default: llvm_unreachable("Unexpected instr type to insert");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001387 } // switch
Tony Linthicumb4b54152011-12-12 21:14:40 +00001388}
1389
1390//===----------------------------------------------------------------------===//
1391// Inline Assembly Support
1392//===----------------------------------------------------------------------===//
1393
1394std::pair<unsigned, const TargetRegisterClass*>
1395HexagonTargetLowering::getRegForInlineAsmConstraint(const
1396 std::string &Constraint,
1397 EVT VT) const {
1398 if (Constraint.size() == 1) {
1399 switch (Constraint[0]) {
1400 case 'r': // R0-R31
1401 switch (VT.getSimpleVT().SimpleTy) {
1402 default:
Craig Topperbc219812012-02-07 02:50:20 +00001403 llvm_unreachable("getRegForInlineAsmConstraint Unhandled data type");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001404 case MVT::i32:
1405 case MVT::i16:
1406 case MVT::i8:
Craig Topper420761a2012-04-20 07:30:17 +00001407 return std::make_pair(0U, &Hexagon::IntRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001408 case MVT::i64:
Craig Topper420761a2012-04-20 07:30:17 +00001409 return std::make_pair(0U, &Hexagon::DoubleRegsRegClass);
Tony Linthicumb4b54152011-12-12 21:14:40 +00001410 }
1411 default:
Craig Topperbc219812012-02-07 02:50:20 +00001412 llvm_unreachable("Unknown asm register class");
Tony Linthicumb4b54152011-12-12 21:14:40 +00001413 }
1414 }
1415
1416 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1417}
1418
Tony Linthicumb4b54152011-12-12 21:14:40 +00001419/// isLegalAddressingMode - Return true if the addressing mode represented by
1420/// AM is legal for this target, for a load/store of the specified type.
1421bool HexagonTargetLowering::isLegalAddressingMode(const AddrMode &AM,
1422 Type *Ty) const {
1423 // Allows a signed-extended 11-bit immediate field.
1424 if (AM.BaseOffs <= -(1LL << 13) || AM.BaseOffs >= (1LL << 13)-1) {
1425 return false;
1426 }
1427
1428 // No global is ever allowed as a base.
1429 if (AM.BaseGV) {
1430 return false;
1431 }
1432
1433 int Scale = AM.Scale;
1434 if (Scale < 0) Scale = -Scale;
1435 switch (Scale) {
1436 case 0: // No scale reg, "r+i", "r", or just "i".
1437 break;
1438 default: // No scaled addressing mode.
1439 return false;
1440 }
1441 return true;
1442}
1443
1444/// isLegalICmpImmediate - Return true if the specified immediate is legal
1445/// icmp immediate, that is the target has icmp instructions which can compare
1446/// a register against the immediate without having to materialize the
1447/// immediate into a register.
1448bool HexagonTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
1449 return Imm >= -512 && Imm <= 511;
1450}
1451
1452/// IsEligibleForTailCallOptimization - Check whether the call is eligible
1453/// for tail call optimization. Targets which want to do tail call
1454/// optimization should implement this function.
1455bool HexagonTargetLowering::IsEligibleForTailCallOptimization(
1456 SDValue Callee,
1457 CallingConv::ID CalleeCC,
1458 bool isVarArg,
1459 bool isCalleeStructRet,
1460 bool isCallerStructRet,
1461 const SmallVectorImpl<ISD::OutputArg> &Outs,
1462 const SmallVectorImpl<SDValue> &OutVals,
1463 const SmallVectorImpl<ISD::InputArg> &Ins,
1464 SelectionDAG& DAG) const {
1465 const Function *CallerF = DAG.getMachineFunction().getFunction();
1466 CallingConv::ID CallerCC = CallerF->getCallingConv();
1467 bool CCMatch = CallerCC == CalleeCC;
1468
1469 // ***************************************************************************
1470 // Look for obvious safe cases to perform tail call optimization that do not
1471 // require ABI changes.
1472 // ***************************************************************************
1473
1474 // If this is a tail call via a function pointer, then don't do it!
1475 if (!(dyn_cast<GlobalAddressSDNode>(Callee))
1476 && !(dyn_cast<ExternalSymbolSDNode>(Callee))) {
1477 return false;
1478 }
1479
1480 // Do not optimize if the calling conventions do not match.
1481 if (!CCMatch)
1482 return false;
1483
1484 // Do not tail call optimize vararg calls.
1485 if (isVarArg)
1486 return false;
1487
1488 // Also avoid tail call optimization if either caller or callee uses struct
1489 // return semantics.
1490 if (isCalleeStructRet || isCallerStructRet)
1491 return false;
1492
1493 // In addition to the cases above, we also disable Tail Call Optimization if
1494 // the calling convention code that at least one outgoing argument needs to
1495 // go on the stack. We cannot check that here because at this point that
1496 // information is not available.
1497 return true;
1498}