2eb89b7997205bc53746985249f1693cb06515ee
[oota-llvm.git] / lib / Target / ARM / ARMISelDAGToDAG.cpp
1 //===-- ARMISelDAGToDAG.cpp - A dag to dag inst selector for ARM ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
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.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines an instruction selector for the ARM target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARM.h"
15 #include "ARMTargetMachine.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/Intrinsics.h"
20 #include "llvm/CodeGen/MachineFrameInfo.h"
21 #include "llvm/CodeGen/MachineFunction.h"
22 #include "llvm/CodeGen/MachineInstrBuilder.h"
23 #include "llvm/CodeGen/SelectionDAG.h"
24 #include "llvm/CodeGen/SelectionDAGISel.h"
25 #include "llvm/CodeGen/SSARegMap.h"
26 #include "llvm/Target/TargetLowering.h"
27 #include "llvm/Support/Debug.h"
28 #include <iostream>
29 #include <set>
30 using namespace llvm;
31
32 namespace {
33   class ARMTargetLowering : public TargetLowering {
34   public:
35     ARMTargetLowering(TargetMachine &TM);
36     virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
37     virtual const char *getTargetNodeName(unsigned Opcode) const;
38   };
39
40 }
41
42 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
43   : TargetLowering(TM) {
44   setOperationAction(ISD::RET, MVT::Other, Custom);
45 }
46
47 namespace llvm {
48   namespace ARMISD {
49     enum NodeType {
50       // Start the numbering where the builting ops and target ops leave off.
51       FIRST_NUMBER = ISD::BUILTIN_OP_END+ARM::INSTRUCTION_LIST_END,
52       /// CALL - A direct function call.
53       CALL
54     };
55   }
56 }
57
58 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
59   switch (Opcode) {
60   default: return 0;
61   case ARMISD::CALL:          return "ARMISD::CALL";
62   }
63 }
64
65 // This transforms a ISD::CALL node into a
66 // callseq_star <- ARMISD:CALL <- callseq_end
67 // chain
68 static SDOperand LowerCALL(SDOperand Op, SelectionDAG &DAG) {
69   SDOperand Chain    = Op.getOperand(0);
70   unsigned CallConv  = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
71   assert(CallConv == CallingConv::C && "unknown calling convention");
72   bool isVarArg      = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
73   assert(isVarArg == false && "VarArg not supported");
74   bool isTailCall    = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0;
75   assert(isTailCall == false && "tail call not supported");
76   SDOperand Callee   = Op.getOperand(4);
77   unsigned NumOps    = (Op.getNumOperands() - 5) / 2;
78   assert(NumOps == 0);
79
80   // Count how many bytes are to be pushed on the stack. Initially
81   // only the link register.
82   unsigned NumBytes = 4;
83
84   // Adjust the stack pointer for the new arguments...
85   // These operations are automatically eliminated by the prolog/epilog pass
86   Chain = DAG.getCALLSEQ_START(Chain,
87                                DAG.getConstant(NumBytes, MVT::i32));
88
89   std::vector<MVT::ValueType> NodeTys;
90   NodeTys.push_back(MVT::Other);   // Returns a chain
91   NodeTys.push_back(MVT::Flag);    // Returns a flag for retval copy to use.
92
93   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
94   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
95   // node so that legalize doesn't hack it.
96   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
97     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
98
99   // If this is a direct call, pass the chain and the callee.
100   assert (Callee.Val);
101   std::vector<SDOperand> Ops;
102   Ops.push_back(Chain);
103   Ops.push_back(Callee);
104
105   unsigned CallOpc = ARMISD::CALL;
106   Chain = DAG.getNode(CallOpc, NodeTys, Ops);
107
108   assert(Op.Val->getValueType(0) == MVT::Other);
109
110   Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
111                       DAG.getConstant(NumBytes, MVT::i32));
112
113   return Chain;
114 }
115
116 static SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG) {
117   SDOperand Copy;
118   SDOperand Chain = Op.getOperand(0);
119   switch(Op.getNumOperands()) {
120   default:
121     assert(0 && "Do not know how to return this many arguments!");
122     abort();
123   case 1: {
124     SDOperand LR = DAG.getRegister(ARM::R14, MVT::i32);
125     return DAG.getNode(ISD::BRIND, MVT::Other, Chain, LR);
126   }
127   case 3:
128     Copy = DAG.getCopyToReg(Chain, ARM::R0, Op.getOperand(1), SDOperand());
129     if (DAG.getMachineFunction().liveout_empty())
130       DAG.getMachineFunction().addLiveOut(ARM::R0);
131     break;
132   }
133
134   SDOperand LR = DAG.getRegister(ARM::R14, MVT::i32);
135
136   //bug: the copy and branch should be linked with a flag so that the
137   //scheduller can't move an instruction that destroys R0 in between them
138   //return DAG.getNode(ISD::BRIND, MVT::Other, Copy, LR, Copy.getValue(1));
139
140   return DAG.getNode(ISD::BRIND, MVT::Other, Copy, LR);
141 }
142
143 static SDOperand LowerFORMAL_ARGUMENT(SDOperand Op, SelectionDAG &DAG,
144                                       unsigned ArgNo) {
145   MachineFunction &MF = DAG.getMachineFunction();
146   MVT::ValueType ObjectVT = Op.getValue(ArgNo).getValueType();
147   assert (ObjectVT == MVT::i32);
148   SDOperand Root = Op.getOperand(0);
149   SSARegMap *RegMap = MF.getSSARegMap();
150
151   unsigned num_regs = 4;
152   static const unsigned REGS[] = {
153     ARM::R0, ARM::R1, ARM::R2, ARM::R3
154   };
155
156   if(ArgNo < num_regs) {
157     unsigned VReg = RegMap->createVirtualRegister(&ARM::IntRegsRegClass);
158     MF.addLiveIn(REGS[ArgNo], VReg);
159     return DAG.getCopyFromReg(Root, VReg, MVT::i32);
160   } else {
161     // If the argument is actually used, emit a load from the right stack
162       // slot.
163     if (!Op.Val->hasNUsesOfValue(0, ArgNo)) {
164       unsigned ArgOffset = (ArgNo - num_regs) * 4;
165
166       MachineFrameInfo *MFI = MF.getFrameInfo();
167       unsigned ObjSize = MVT::getSizeInBits(ObjectVT)/8;
168       int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
169       SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
170       return DAG.getLoad(ObjectVT, Root, FIN,
171                          DAG.getSrcValue(NULL));
172     } else {
173       // Don't emit a dead load.
174       return DAG.getNode(ISD::UNDEF, ObjectVT);
175     }
176   }
177 }
178
179 static SDOperand LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
180   std::vector<SDOperand> ArgValues;
181   SDOperand Root = Op.getOperand(0);
182
183   for (unsigned ArgNo = 0, e = Op.Val->getNumValues()-1; ArgNo != e; ++ArgNo) {
184     SDOperand ArgVal = LowerFORMAL_ARGUMENT(Op, DAG, ArgNo);
185
186     ArgValues.push_back(ArgVal);
187   }
188
189   bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
190   assert(!isVarArg);
191
192   ArgValues.push_back(Root);
193
194   // Return the new list of results.
195   std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
196                                     Op.Val->value_end());
197   return DAG.getNode(ISD::MERGE_VALUES, RetVT, ArgValues);
198 }
199
200 SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
201   switch (Op.getOpcode()) {
202   default:
203     assert(0 && "Should not custom lower this!");
204     abort();
205   case ISD::FORMAL_ARGUMENTS:
206     return LowerFORMAL_ARGUMENTS(Op, DAG);
207   case ISD::CALL:
208     return LowerCALL(Op, DAG);
209   case ISD::RET:
210     return LowerRET(Op, DAG);
211   }
212 }
213
214 //===----------------------------------------------------------------------===//
215 // Instruction Selector Implementation
216 //===----------------------------------------------------------------------===//
217
218 //===--------------------------------------------------------------------===//
219 /// ARMDAGToDAGISel - ARM specific code to select ARM machine
220 /// instructions for SelectionDAG operations.
221 ///
222 namespace {
223 class ARMDAGToDAGISel : public SelectionDAGISel {
224   ARMTargetLowering Lowering;
225
226 public:
227   ARMDAGToDAGISel(TargetMachine &TM)
228     : SelectionDAGISel(Lowering), Lowering(TM) {
229   }
230
231   void Select(SDOperand &Result, SDOperand Op);
232   virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
233   bool SelectAddrRegImm(SDOperand N, SDOperand &Offset, SDOperand &Base);
234
235   // Include the pieces autogenerated from the target description.
236 #include "ARMGenDAGISel.inc"
237 };
238
239 void ARMDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
240   DEBUG(BB->dump());
241
242   DAG.setRoot(SelectRoot(DAG.getRoot()));
243   assert(InFlightSet.empty() && "ISel InFlightSet has not been emptied!");
244   CodeGenMap.clear();
245   HandleMap.clear();
246   ReplaceMap.clear();
247   DAG.RemoveDeadNodes();
248
249   ScheduleAndEmitDAG(DAG);
250 }
251
252 //register plus/minus 12 bit offset
253 bool ARMDAGToDAGISel::SelectAddrRegImm(SDOperand N, SDOperand &Offset,
254                                     SDOperand &Base) {
255   Offset = CurDAG->getTargetConstant(0, MVT::i32);
256   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
257     Base = CurDAG->getTargetFrameIndex(FI->getIndex(), N.getValueType());
258   }
259   else
260     Base = N;
261   return true;      //any address fits in a register
262 }
263
264 void ARMDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
265   SDNode *N = Op.Val;
266
267   switch (N->getOpcode()) {
268   default:
269     SelectCode(Result, Op);
270     break;
271   }
272 }
273
274 }  // end anonymous namespace
275
276 /// createARMISelDag - This pass converts a legalized DAG into a
277 /// ARM-specific DAG, ready for instruction scheduling.
278 ///
279 FunctionPass *llvm::createARMISelDag(TargetMachine &TM) {
280   return new ARMDAGToDAGISel(TM);
281 }