1 //===-- ARMISelDAGToDAG.cpp - A dag to dag inst selector for ARM ----------===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by Chris Lattner and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines an instruction selector for the ARM target.
12 //===----------------------------------------------------------------------===//
15 #include "ARMTargetMachine.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/Constants.h"
20 #include "llvm/Intrinsics.h"
21 #include "llvm/CodeGen/MachineFrameInfo.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineInstrBuilder.h"
24 #include "llvm/CodeGen/SelectionDAG.h"
25 #include "llvm/CodeGen/SelectionDAGISel.h"
26 #include "llvm/CodeGen/SSARegMap.h"
27 #include "llvm/Target/TargetLowering.h"
28 #include "llvm/Support/Debug.h"
34 class ARMTargetLowering : public TargetLowering {
35 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
37 ARMTargetLowering(TargetMachine &TM);
38 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
39 virtual const char *getTargetNodeName(unsigned Opcode) const;
44 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
45 : TargetLowering(TM) {
46 addRegisterClass(MVT::i32, ARM::IntRegsRegisterClass);
47 addRegisterClass(MVT::f32, ARM::FPRegsRegisterClass);
48 addRegisterClass(MVT::f64, ARM::DFPRegsRegisterClass);
50 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
52 setOperationAction(ISD::RET, MVT::Other, Custom);
53 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
54 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
56 setOperationAction(ISD::SETCC, MVT::i32, Expand);
57 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
58 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
60 setOperationAction(ISD::VASTART, MVT::Other, Custom);
61 setOperationAction(ISD::VAEND, MVT::Other, Expand);
63 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
64 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
66 setSchedulingPreference(SchedulingForRegPressure);
67 computeRegisterProperties();
73 // Start the numbering where the builting ops and target ops leave off.
74 FIRST_NUMBER = ISD::BUILTIN_OP_END+ARM::INSTRUCTION_LIST_END,
75 /// CALL - A direct function call.
78 /// Return with a flag operand.
98 /// DAGCCToARMCC - Convert a DAG integer condition code to an ARM CC
99 static ARMCC::CondCodes DAGCCToARMCC(ISD::CondCode CC) {
102 std::cerr << "CC = " << CC << "\n";
103 assert(0 && "Unknown condition code!");
104 case ISD::SETUGT: return ARMCC::HI;
105 case ISD::SETULE: return ARMCC::LS;
106 case ISD::SETLE: return ARMCC::LE;
107 case ISD::SETLT: return ARMCC::LT;
108 case ISD::SETGT: return ARMCC::GT;
109 case ISD::SETNE: return ARMCC::NE;
110 case ISD::SETEQ: return ARMCC::EQ;
111 case ISD::SETGE: return ARMCC::GE;
112 case ISD::SETUGE: return ARMCC::CS;
113 case ISD::SETULT: return ARMCC::CC;
117 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
120 case ARMISD::CALL: return "ARMISD::CALL";
121 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
122 case ARMISD::SELECT: return "ARMISD::SELECT";
123 case ARMISD::CMP: return "ARMISD::CMP";
124 case ARMISD::BR: return "ARMISD::BR";
125 case ARMISD::FSITOS: return "ARMISD::FSITOS";
126 case ARMISD::FSITOD: return "ARMISD::FSITOD";
127 case ARMISD::FMRRD: return "ARMISD::FMRRD";
128 case ARMISD::FMDRR: return "ARMISD::FMDRR";
132 class ArgumentLayout {
133 std::vector<bool> is_reg;
134 std::vector<unsigned> pos;
135 std::vector<MVT::ValueType> types;
137 ArgumentLayout(std::vector<MVT::ValueType> Types) {
141 unsigned StackOffset = 0;
142 for(std::vector<MVT::ValueType>::iterator I = Types.begin();
145 MVT::ValueType VT = *I;
146 assert(VT == MVT::i32 || VT == MVT::f32 || VT == MVT::f64);
147 unsigned size = MVT::getSizeInBits(VT)/32;
149 RegNum = ((RegNum + size - 1) / size) * size;
151 pos.push_back(RegNum);
152 is_reg.push_back(true);
155 unsigned bytes = size * 32/8;
156 StackOffset = ((StackOffset + bytes - 1) / bytes) * bytes;
157 pos.push_back(StackOffset);
158 is_reg.push_back(false);
159 StackOffset += bytes;
163 unsigned getRegisterNum(unsigned argNum) {
164 assert(isRegister(argNum));
167 unsigned getOffset(unsigned argNum) {
168 assert(isOffset(argNum));
171 unsigned isRegister(unsigned argNum) {
172 assert(argNum < is_reg.size());
173 return is_reg[argNum];
175 unsigned isOffset(unsigned argNum) {
176 return !isRegister(argNum);
178 MVT::ValueType getType(unsigned argNum) {
179 assert(argNum < types.size());
180 return types[argNum];
182 unsigned getStackSize(void) {
183 int last = is_reg.size() - 1;
184 if (isRegister(last))
186 return getOffset(last) + MVT::getSizeInBits(getType(last))/8;
188 int lastRegArg(void) {
189 int size = is_reg.size();
191 while(last < size && isRegister(last))
196 unsigned lastRegNum(void) {
197 int l = lastRegArg();
200 unsigned r = getRegisterNum(l);
201 MVT::ValueType t = getType(l);
202 assert(t == MVT::i32 || t == MVT::f32 || t == MVT::f64);
209 // This transforms a ISD::CALL node into a
210 // callseq_star <- ARMISD:CALL <- callseq_end
212 static SDOperand LowerCALL(SDOperand Op, SelectionDAG &DAG) {
213 SDOperand Chain = Op.getOperand(0);
214 unsigned CallConv = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
215 assert(CallConv == CallingConv::C && "unknown calling convention");
216 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
217 bool isTailCall = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0;
218 assert(isTailCall == false && "tail call not supported");
219 SDOperand Callee = Op.getOperand(4);
220 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
221 SDOperand StackPtr = DAG.getRegister(ARM::R13, MVT::i32);
222 static const unsigned regs[] = {
223 ARM::R0, ARM::R1, ARM::R2, ARM::R3
226 std::vector<MVT::ValueType> Types;
227 for (unsigned i = 0; i < NumOps; ++i) {
228 MVT::ValueType VT = Op.getOperand(5+2*i).getValueType();
231 ArgumentLayout Layout(Types);
233 unsigned NumBytes = Layout.getStackSize();
235 Chain = DAG.getCALLSEQ_START(Chain,
236 DAG.getConstant(NumBytes, MVT::i32));
238 //Build a sequence of stores
239 std::vector<SDOperand> MemOpChains;
240 for (unsigned i = Layout.lastRegArg() + 1; i < NumOps; ++i) {
241 SDOperand Arg = Op.getOperand(5+2*i);
242 unsigned ArgOffset = Layout.getOffset(i);
243 SDOperand PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
244 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
245 MemOpChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
246 Arg, PtrOff, DAG.getSrcValue(NULL)));
248 if (!MemOpChains.empty())
249 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
250 &MemOpChains[0], MemOpChains.size());
252 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
253 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
254 // node so that legalize doesn't hack it.
255 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
256 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
258 // If this is a direct call, pass the chain and the callee.
260 std::vector<SDOperand> Ops;
261 Ops.push_back(Chain);
262 Ops.push_back(Callee);
264 // Build a sequence of copy-to-reg nodes chained together with token chain
265 // and flag operands which copy the outgoing args into the appropriate regs.
267 for (unsigned i = 0, e = Layout.lastRegArg(); i <= e; ++i) {
268 SDOperand Arg = Op.getOperand(5+2*i);
269 unsigned Reg = regs[Layout.getRegisterNum(i)];
270 assert(Layout.getType(i) == Arg.getValueType());
271 assert(Layout.getType(i) == MVT::i32);
272 Chain = DAG.getCopyToReg(Chain, Reg, Arg, InFlag);
273 InFlag = Chain.getValue(1);
275 // Add argument register to the end of the list so that it is known live
277 Ops.push_back(DAG.getRegister(Reg, Arg.getValueType()));
280 std::vector<MVT::ValueType> NodeTys;
281 NodeTys.push_back(MVT::Other); // Returns a chain
282 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
284 unsigned CallOpc = ARMISD::CALL;
286 Ops.push_back(InFlag);
287 Chain = DAG.getNode(CallOpc, NodeTys, &Ops[0], Ops.size());
288 InFlag = Chain.getValue(1);
290 std::vector<SDOperand> ResultVals;
293 // If the call has results, copy the values out of the ret val registers.
294 switch (Op.Val->getValueType(0)) {
295 default: assert(0 && "Unexpected ret value!");
299 Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
300 ResultVals.push_back(Chain.getValue(0));
301 NodeTys.push_back(MVT::i32);
304 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
305 DAG.getConstant(NumBytes, MVT::i32));
306 NodeTys.push_back(MVT::Other);
308 if (ResultVals.empty())
311 ResultVals.push_back(Chain);
312 SDOperand Res = DAG.getNode(ISD::MERGE_VALUES, NodeTys, &ResultVals[0],
314 return Res.getValue(Op.ResNo);
317 static SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG) {
319 SDOperand Chain = Op.getOperand(0);
320 SDOperand R0 = DAG.getRegister(ARM::R0, MVT::i32);
321 SDOperand R1 = DAG.getRegister(ARM::R1, MVT::i32);
323 switch(Op.getNumOperands()) {
325 assert(0 && "Do not know how to return this many arguments!");
328 SDOperand LR = DAG.getRegister(ARM::R14, MVT::i32);
329 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Chain);
332 SDOperand Val = Op.getOperand(1);
333 assert(Val.getValueType() == MVT::i32 ||
334 Val.getValueType() == MVT::f32 ||
335 Val.getValueType() == MVT::f64);
337 if (Val.getValueType() == MVT::f64) {
338 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Flag);
339 SDOperand Ops[] = {Chain, R0, R1, Val};
340 Copy = DAG.getNode(ARMISD::FMRRD, VTs, Ops, 4);
342 if (Val.getValueType() == MVT::f32)
343 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
344 Copy = DAG.getCopyToReg(Chain, R0, Val, SDOperand());
347 if (DAG.getMachineFunction().liveout_empty()) {
348 DAG.getMachineFunction().addLiveOut(ARM::R0);
349 if (Val.getValueType() == MVT::f64)
350 DAG.getMachineFunction().addLiveOut(ARM::R1);
355 Copy = DAG.getCopyToReg(Chain, ARM::R1, Op.getOperand(3), SDOperand());
356 Copy = DAG.getCopyToReg(Copy, ARM::R0, Op.getOperand(1), Copy.getValue(1));
357 // If we haven't noted the R0+R1 are live out, do so now.
358 if (DAG.getMachineFunction().liveout_empty()) {
359 DAG.getMachineFunction().addLiveOut(ARM::R0);
360 DAG.getMachineFunction().addLiveOut(ARM::R1);
365 //We must use RET_FLAG instead of BRIND because BRIND doesn't have a flag
366 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
369 static SDOperand LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
370 MVT::ValueType PtrVT = Op.getValueType();
371 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
372 Constant *C = CP->getConstVal();
373 SDOperand CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment());
378 static SDOperand LowerGlobalAddress(SDOperand Op,
380 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
382 SDOperand CPAddr = DAG.getConstantPool(GV, MVT::i32, alignment);
383 return DAG.getLoad(MVT::i32, DAG.getEntryNode(), CPAddr,
384 DAG.getSrcValue(NULL));
387 static SDOperand LowerVASTART(SDOperand Op, SelectionDAG &DAG,
388 unsigned VarArgsFrameIndex) {
389 // vastart just stores the address of the VarArgsFrameIndex slot into the
390 // memory location argument.
391 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
392 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
393 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), FR,
394 Op.getOperand(1), Op.getOperand(2));
397 static SDOperand LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG,
398 int &VarArgsFrameIndex) {
399 MachineFunction &MF = DAG.getMachineFunction();
400 MachineFrameInfo *MFI = MF.getFrameInfo();
401 SSARegMap *RegMap = MF.getSSARegMap();
402 unsigned NumArgs = Op.Val->getNumValues()-1;
403 SDOperand Root = Op.getOperand(0);
404 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
405 static const unsigned REGS[] = {
406 ARM::R0, ARM::R1, ARM::R2, ARM::R3
409 std::vector<MVT::ValueType> Types(Op.Val->value_begin(), Op.Val->value_end() - 1);
410 ArgumentLayout Layout(Types);
412 std::vector<SDOperand> ArgValues;
413 for (unsigned ArgNo = 0; ArgNo < NumArgs; ++ArgNo) {
414 MVT::ValueType VT = Types[ArgNo];
417 if (Layout.isRegister(ArgNo)) {
418 assert(VT == MVT::i32 || VT == MVT::f32 || VT == MVT::f64);
419 unsigned RegNum = Layout.getRegisterNum(ArgNo);
420 unsigned Reg1 = REGS[RegNum];
421 unsigned VReg1 = RegMap->createVirtualRegister(&ARM::IntRegsRegClass);
422 SDOperand Value1 = DAG.getCopyFromReg(Root, VReg1, MVT::i32);
423 MF.addLiveIn(Reg1, VReg1);
424 if (VT == MVT::f64) {
425 unsigned Reg2 = REGS[RegNum + 1];
426 unsigned VReg2 = RegMap->createVirtualRegister(&ARM::IntRegsRegClass);
427 SDOperand Value2 = DAG.getCopyFromReg(Root, VReg2, MVT::i32);
428 MF.addLiveIn(Reg2, VReg2);
429 Value = DAG.getNode(ARMISD::FMDRR, MVT::f64, Value1, Value2);
433 Value = DAG.getNode(ISD::BIT_CONVERT, VT, Value);
436 // If the argument is actually used, emit a load from the right stack
438 if (!Op.Val->hasNUsesOfValue(0, ArgNo)) {
439 unsigned Offset = Layout.getOffset(ArgNo);
440 unsigned Size = MVT::getSizeInBits(VT)/8;
441 int FI = MFI->CreateFixedObject(Size, Offset);
442 SDOperand FIN = DAG.getFrameIndex(FI, VT);
443 Value = DAG.getLoad(VT, Root, FIN, DAG.getSrcValue(NULL));
445 Value = DAG.getNode(ISD::UNDEF, VT);
448 ArgValues.push_back(Value);
451 unsigned NextRegNum = Layout.lastRegNum() + 1;
454 //If this function is vararg we must store the remaing
455 //registers so that they can be acessed with va_start
456 VarArgsFrameIndex = MFI->CreateFixedObject(MVT::getSizeInBits(MVT::i32)/8,
457 -16 + NextRegNum * 4);
459 SmallVector<SDOperand, 4> MemOps;
460 for (unsigned RegNo = NextRegNum; RegNo < 4; ++RegNo) {
461 int RegOffset = - (4 - RegNo) * 4;
462 int FI = MFI->CreateFixedObject(MVT::getSizeInBits(MVT::i32)/8,
464 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
466 unsigned VReg = RegMap->createVirtualRegister(&ARM::IntRegsRegClass);
467 MF.addLiveIn(REGS[RegNo], VReg);
469 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i32);
470 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, Val.getValue(1),
471 Val, FIN, DAG.getSrcValue(NULL));
472 MemOps.push_back(Store);
474 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,&MemOps[0],MemOps.size());
477 ArgValues.push_back(Root);
479 // Return the new list of results.
480 std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
481 Op.Val->value_end());
482 return DAG.getNode(ISD::MERGE_VALUES, RetVT, &ArgValues[0], ArgValues.size());
485 static SDOperand LowerSELECT_CC(SDOperand Op, SelectionDAG &DAG) {
486 SDOperand LHS = Op.getOperand(0);
487 SDOperand RHS = Op.getOperand(1);
488 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
489 SDOperand TrueVal = Op.getOperand(2);
490 SDOperand FalseVal = Op.getOperand(3);
491 SDOperand ARMCC = DAG.getConstant(DAGCCToARMCC(CC), MVT::i32);
493 SDOperand Cmp = DAG.getNode(ARMISD::CMP, MVT::Flag, LHS, RHS);
494 return DAG.getNode(ARMISD::SELECT, MVT::i32, TrueVal, FalseVal, ARMCC, Cmp);
497 static SDOperand LowerBR_CC(SDOperand Op, SelectionDAG &DAG) {
498 SDOperand Chain = Op.getOperand(0);
499 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
500 SDOperand LHS = Op.getOperand(2);
501 SDOperand RHS = Op.getOperand(3);
502 SDOperand Dest = Op.getOperand(4);
503 SDOperand ARMCC = DAG.getConstant(DAGCCToARMCC(CC), MVT::i32);
505 SDOperand Cmp = DAG.getNode(ARMISD::CMP, MVT::Flag, LHS, RHS);
506 return DAG.getNode(ARMISD::BR, MVT::Other, Chain, Dest, ARMCC, Cmp);
509 static SDOperand LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
510 SDOperand IntVal = Op.getOperand(0);
511 assert(IntVal.getValueType() == MVT::i32);
512 MVT::ValueType vt = Op.getValueType();
513 assert(vt == MVT::f32 ||
516 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, IntVal);
517 ARMISD::NodeType op = vt == MVT::f32 ? ARMISD::FSITOS : ARMISD::FSITOD;
518 return DAG.getNode(op, vt, Tmp);
521 SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
522 switch (Op.getOpcode()) {
524 assert(0 && "Should not custom lower this!");
526 case ISD::ConstantPool:
527 return LowerConstantPool(Op, DAG);
528 case ISD::GlobalAddress:
529 return LowerGlobalAddress(Op, DAG);
530 case ISD::SINT_TO_FP:
531 return LowerSINT_TO_FP(Op, DAG);
532 case ISD::FORMAL_ARGUMENTS:
533 return LowerFORMAL_ARGUMENTS(Op, DAG, VarArgsFrameIndex);
535 return LowerCALL(Op, DAG);
537 return LowerRET(Op, DAG);
539 return LowerSELECT_CC(Op, DAG);
541 return LowerBR_CC(Op, DAG);
543 return LowerVASTART(Op, DAG, VarArgsFrameIndex);
547 //===----------------------------------------------------------------------===//
548 // Instruction Selector Implementation
549 //===----------------------------------------------------------------------===//
551 //===--------------------------------------------------------------------===//
552 /// ARMDAGToDAGISel - ARM specific code to select ARM machine
553 /// instructions for SelectionDAG operations.
556 class ARMDAGToDAGISel : public SelectionDAGISel {
557 ARMTargetLowering Lowering;
560 ARMDAGToDAGISel(TargetMachine &TM)
561 : SelectionDAGISel(Lowering), Lowering(TM) {
564 SDNode *Select(SDOperand Op);
565 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
566 bool SelectAddrRegImm(SDOperand N, SDOperand &Offset, SDOperand &Base);
567 bool SelectAddrMode1(SDOperand N, SDOperand &Arg, SDOperand &Shift,
568 SDOperand &ShiftType);
570 // Include the pieces autogenerated from the target description.
571 #include "ARMGenDAGISel.inc"
574 void ARMDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
577 DAG.setRoot(SelectRoot(DAG.getRoot()));
578 DAG.RemoveDeadNodes();
580 ScheduleAndEmitDAG(DAG);
583 static bool isInt12Immediate(SDNode *N, short &Imm) {
584 if (N->getOpcode() != ISD::Constant)
587 int32_t t = cast<ConstantSDNode>(N)->getValue();
590 if (t > min && t < max) {
598 static bool isInt12Immediate(SDOperand Op, short &Imm) {
599 return isInt12Immediate(Op.Val, Imm);
602 static uint32_t rotateL(uint32_t x) {
603 uint32_t bit31 = (x & (1 << 31)) >> 31;
608 static bool isUInt8Immediate(uint32_t x) {
612 static bool isRotInt8Immediate(uint32_t x) {
614 for (r = 0; r < 16; r++) {
615 if (isUInt8Immediate(x))
617 x = rotateL(rotateL(x));
622 bool ARMDAGToDAGISel::SelectAddrMode1(SDOperand N,
625 SDOperand &ShiftType) {
626 switch(N.getOpcode()) {
627 case ISD::Constant: {
628 uint32_t val = cast<ConstantSDNode>(N)->getValue();
629 if(!isRotInt8Immediate(val)) {
630 const Type *t = MVT::getTypeForValueType(MVT::i32);
631 Constant *C = ConstantUInt::get(t, val);
633 SDOperand Addr = CurDAG->getTargetConstantPool(C, MVT::i32, alignment);
634 SDOperand Z = CurDAG->getTargetConstant(0, MVT::i32);
635 SDNode *n = CurDAG->getTargetNode(ARM::ldr, MVT::i32, Z, Addr);
636 Arg = SDOperand(n, 0);
638 Arg = CurDAG->getTargetConstant(val, MVT::i32);
640 Shift = CurDAG->getTargetConstant(0, MVT::i32);
641 ShiftType = CurDAG->getTargetConstant(ARMShift::LSL, MVT::i32);
645 Arg = N.getOperand(0);
646 Shift = N.getOperand(1);
647 ShiftType = CurDAG->getTargetConstant(ARMShift::ASR, MVT::i32);
650 Arg = N.getOperand(0);
651 Shift = N.getOperand(1);
652 ShiftType = CurDAG->getTargetConstant(ARMShift::LSR, MVT::i32);
655 Arg = N.getOperand(0);
656 Shift = N.getOperand(1);
657 ShiftType = CurDAG->getTargetConstant(ARMShift::LSL, MVT::i32);
662 Shift = CurDAG->getTargetConstant(0, MVT::i32);
663 ShiftType = CurDAG->getTargetConstant(ARMShift::LSL, MVT::i32);
667 //register plus/minus 12 bit offset
668 bool ARMDAGToDAGISel::SelectAddrRegImm(SDOperand N, SDOperand &Offset,
670 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N)) {
671 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
672 Offset = CurDAG->getTargetConstant(0, MVT::i32);
675 if (N.getOpcode() == ISD::ADD) {
677 if (isInt12Immediate(N.getOperand(1), imm)) {
678 Offset = CurDAG->getTargetConstant(imm, MVT::i32);
679 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
680 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), N.getValueType());
682 Base = N.getOperand(0);
684 return true; // [r+i]
688 Offset = CurDAG->getTargetConstant(0, MVT::i32);
689 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
690 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), N.getValueType());
694 return true; //any address fits in a register
697 SDNode *ARMDAGToDAGISel::Select(SDOperand Op) {
700 switch (N->getOpcode()) {
702 return SelectCode(Op);
708 } // end anonymous namespace
710 /// createARMISelDag - This pass converts a legalized DAG into a
711 /// ARM-specific DAG, ready for instruction scheduling.
713 FunctionPass *llvm::createARMISelDag(TargetMachine &TM) {
714 return new ARMDAGToDAGISel(TM);