blob: 453edd68f1dcbaf958d052d8ae47a6f729559794 [file] [log] [blame]
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001//
2// The LLVM Compiler Infrastructure
3//
4// This file is distributed under the University of Illinois Open Source
5// License. See LICENSE.TXT for details.
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the interfaces that PIC16 uses to lower LLVM code into a
10// selection DAG.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "pic16-lower"
15
16#include "PIC16ISelLowering.h"
17#include "PIC16TargetMachine.h"
18#include "llvm/DerivedTypes.h"
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000019#include "llvm/GlobalValue.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000020#include "llvm/Function.h"
Sanjiv Gupta1b046942009-01-13 19:18:47 +000021#include "llvm/CallingConv.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
Sanjiv Gupta1b046942009-01-13 19:18:47 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
Duncan Sandsc6dbe7f2008-11-28 10:20:03 +000026#include <cstdio>
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000027
28
Sanjiv Gupta0e687712008-05-13 09:02:57 +000029using namespace llvm;
30
Sanjiv Gupta0e687712008-05-13 09:02:57 +000031
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000032// PIC16TargetLowering Constructor.
33PIC16TargetLowering::PIC16TargetLowering(PIC16TargetMachine &TM)
34 : TargetLowering(TM) {
Sanjiv Gupta0e687712008-05-13 09:02:57 +000035
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000036 Subtarget = &TM.getSubtarget<PIC16Subtarget>();
Sanjiv Gupta0e687712008-05-13 09:02:57 +000037
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000038 addRegisterClass(MVT::i8, PIC16::GPRRegisterClass);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000039
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000040 setShiftAmountType(MVT::i8);
41 setShiftAmountFlavor(Extend);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000042
Sanjiv Gupta1b046942009-01-13 19:18:47 +000043 // SRA library call names
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000044 setPIC16LibcallName(PIC16ISD::SRA_I8, "__intrinsics.sra.i8");
45 setLibcallName(RTLIB::SRA_I16, "__intrinsics.sra.i16");
46 setLibcallName(RTLIB::SRA_I32, "__intrinsics.sra.i32");
Sanjiv Gupta1b046942009-01-13 19:18:47 +000047
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000048 // SHL library call names
49 setPIC16LibcallName(PIC16ISD::SLL_I8, "__intrinsics.sll.i8");
50 setLibcallName(RTLIB::SHL_I16, "__intrinsics.sll.i16");
51 setLibcallName(RTLIB::SHL_I32, "__intrinsics.sll.i32");
Sanjiv Gupta1b046942009-01-13 19:18:47 +000052
53 // SRL library call names
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000054 setPIC16LibcallName(PIC16ISD::SRL_I8, "__intrinsics.srl.i8");
55 setLibcallName(RTLIB::SRL_I16, "__intrinsics.srl.i16");
56 setLibcallName(RTLIB::SRL_I32, "__intrinsics.srl.i32");
57
58 // MUL Library call names
59 setPIC16LibcallName(PIC16ISD::MUL_I8, "__intrinsics.mul.i8");
60 setLibcallName(RTLIB::MUL_I16, "__intrinsics.mul.i16");
61 setLibcallName(RTLIB::MUL_I32, "__intrinsics.mul.i32");
Sanjiv Gupta0e687712008-05-13 09:02:57 +000062
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000063 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000064 setOperationAction(ISD::ExternalSymbol, MVT::i16, Custom);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000065
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000066 setOperationAction(ISD::LOAD, MVT::i8, Legal);
67 setOperationAction(ISD::LOAD, MVT::i16, Custom);
68 setOperationAction(ISD::LOAD, MVT::i32, Custom);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000069
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000070 setOperationAction(ISD::STORE, MVT::i8, Legal);
71 setOperationAction(ISD::STORE, MVT::i16, Custom);
72 setOperationAction(ISD::STORE, MVT::i32, Custom);
Sanjiv Gupta0e687712008-05-13 09:02:57 +000073
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000074 setOperationAction(ISD::ADDE, MVT::i8, Custom);
75 setOperationAction(ISD::ADDC, MVT::i8, Custom);
76 setOperationAction(ISD::SUBE, MVT::i8, Custom);
77 setOperationAction(ISD::SUBC, MVT::i8, Custom);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000078 setOperationAction(ISD::ADD, MVT::i8, Custom);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000079 setOperationAction(ISD::ADD, MVT::i16, Custom);
80
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +000081 setOperationAction(ISD::OR, MVT::i8, Custom);
82 setOperationAction(ISD::AND, MVT::i8, Custom);
83 setOperationAction(ISD::XOR, MVT::i8, Custom);
84
Sanjiv Gupta1b046942009-01-13 19:18:47 +000085 setOperationAction(ISD::FrameIndex, MVT::i16, Custom);
86 setOperationAction(ISD::CALL, MVT::i16, Custom);
87 setOperationAction(ISD::RET, MVT::Other, Custom);
88
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000089 setOperationAction(ISD::MUL, MVT::i8, Custom);
90 setOperationAction(ISD::MUL, MVT::i16, Expand);
91 setOperationAction(ISD::MUL, MVT::i32, Expand);
Sanjiv Gupta1b046942009-01-13 19:18:47 +000092
Sanjiv Gupta08b9b052009-01-21 05:44:05 +000093 setOperationAction(ISD::SMUL_LOHI, MVT::i8, Expand);
94 setOperationAction(ISD::SMUL_LOHI, MVT::i16, Expand);
95 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
96 setOperationAction(ISD::UMUL_LOHI, MVT::i8, Expand);
97 setOperationAction(ISD::UMUL_LOHI, MVT::i16, Expand);
98 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
99 setOperationAction(ISD::MULHU, MVT::i8, Expand);
100 setOperationAction(ISD::MULHU, MVT::i16, Expand);
101 setOperationAction(ISD::MULHU, MVT::i32, Expand);
102 setOperationAction(ISD::MULHS, MVT::i8, Expand);
103 setOperationAction(ISD::MULHS, MVT::i16, Expand);
104 setOperationAction(ISD::MULHS, MVT::i32, Expand);
105
106 setOperationAction(ISD::SRA, MVT::i8, Custom);
107 setOperationAction(ISD::SRA, MVT::i16, Expand);
108 setOperationAction(ISD::SRA, MVT::i32, Expand);
109 setOperationAction(ISD::SHL, MVT::i8, Custom);
110 setOperationAction(ISD::SHL, MVT::i16, Expand);
111 setOperationAction(ISD::SHL, MVT::i32, Expand);
112 setOperationAction(ISD::SRL, MVT::i8, Custom);
113 setOperationAction(ISD::SRL, MVT::i16, Expand);
114 setOperationAction(ISD::SRL, MVT::i32, Expand);
115
116 // PIC16 does not support shift parts
117 setOperationAction(ISD::SRA_PARTS, MVT::i8, Expand);
118 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
119 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
120 setOperationAction(ISD::SHL_PARTS, MVT::i8, Expand);
121 setOperationAction(ISD::SHL_PARTS, MVT::i16, Expand);
122 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
123 setOperationAction(ISD::SRL_PARTS, MVT::i8, Expand);
124 setOperationAction(ISD::SRL_PARTS, MVT::i16, Expand);
125 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
126
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000127
128 // PIC16 does not have a SETCC, expand it to SELECT_CC.
129 setOperationAction(ISD::SETCC, MVT::i8, Expand);
130 setOperationAction(ISD::SELECT, MVT::i8, Expand);
131 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
132 setOperationAction(ISD::BRIND, MVT::Other, Expand);
133
134 setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
135 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000136
137 //setOperationAction(ISD::TRUNCATE, MVT::i16, Custom);
138 setTruncStoreAction(MVT::i16, MVT::i8, Custom);
139
140 // Now deduce the information based on the above mentioned
141 // actions
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000142 computeRegisterProperties();
143}
144
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000145static void PopulateResults(SDValue N, SmallVectorImpl<SDValue>&Results) {
146 if (N.getOpcode() == ISD::MERGE_VALUES) {
147 int NumResults = N.getNumOperands();
148 for( int i = 0; i < NumResults; i++)
149 Results.push_back(N.getOperand(i));
150 }
151 else
152 Results.push_back(N);
153}
154
155MVT PIC16TargetLowering::getSetCCResultType(MVT ValType) const {
156 return MVT::i8;
157}
158
159
160void
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000161PIC16TargetLowering::setPIC16LibcallName(PIC16ISD::PIC16Libcall Call,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000162 const char *Name) {
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000163 PIC16LibcallNames[Call] = Name;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000164}
165
166const char *
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000167PIC16TargetLowering::getPIC16LibcallName(PIC16ISD::PIC16Libcall Call) {
168 return PIC16LibcallNames[Call];
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000169}
170
171SDValue
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000172PIC16TargetLowering::MakePIC16Libcall(PIC16ISD::PIC16Libcall Call,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000173 MVT RetVT, const SDValue *Ops,
174 unsigned NumOps, bool isSigned,
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000175 SelectionDAG &DAG, DebugLoc dl) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000176
177 TargetLowering::ArgListTy Args;
178 Args.reserve(NumOps);
179
180 TargetLowering::ArgListEntry Entry;
181 for (unsigned i = 0; i != NumOps; ++i) {
182 Entry.Node = Ops[i];
183 Entry.Ty = Entry.Node.getValueType().getTypeForMVT();
184 Entry.isSExt = isSigned;
185 Entry.isZExt = !isSigned;
186 Args.push_back(Entry);
187 }
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000188 SDValue Callee = DAG.getExternalSymbol(getPIC16LibcallName(Call), MVT::i8);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000189
190 const Type *RetTy = RetVT.getTypeForMVT();
191 std::pair<SDValue,SDValue> CallInfo =
192 LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000193 false, CallingConv::C, false, Callee, Args, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000194
195 return CallInfo.first;
196}
197
198SDValue
199PIC16TargetLowering::getCurrentFrame(SelectionDAG &DAG) {
200 MachineFunction &MF = DAG.getMachineFunction();
201 const Function *Func = MF.getFunction();
202 const std::string FuncName = Func->getName();
203
204 // this is causing memory waste
205 // because for every call new memory will be allocated
206 char *tmpName = new char [strlen(FuncName.c_str()) + 6];
207 sprintf(tmpName, "%s.tmp", FuncName.c_str());
208
209 // if the external symbol of the same name already exists then
210 // it will not create the new one.
211 return DAG.getTargetExternalSymbol(tmpName, MVT::i8);
212}
213
214void
215PIC16TargetLowering::getCurrentFrameIndex(SelectionDAG &DAG, SDValue &ES,
216 unsigned SlotSize, int &FromFI) {
217 MachineFunction &MF = DAG.getMachineFunction();
218 const Function *Func = MF.getFunction();
219 const std::string FuncName = Func->getName();
220
221 // this is causing memory waste
222 // because for every call new memory will be allocated
223 char *tmpName = new char [strlen(FuncName.c_str()) + 6];
224 sprintf(tmpName, "%s.tmp", FuncName.c_str());
225
226 // if the external symbol of the same name already exists then
227 // it will not create the new one.
228 ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
229
230 // Alignment is always 1
231 //FromFI = MF.getFrameInfo()->CreateStackObject(SlotSize, 1);
232 FromFI = MF.getFrameInfo()->CreateStackObject(1, 1);
233 int FI;
234 for(unsigned i=1;i<SlotSize; ++i) {
235 FI = MF.getFrameInfo()->CreateStackObject(1, 1);
236 }
237}
238
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000239const char *PIC16TargetLowering::getTargetNodeName(unsigned Opcode) const {
240 switch (Opcode) {
241 default: return NULL;
242 case PIC16ISD::Lo: return "PIC16ISD::Lo";
243 case PIC16ISD::Hi: return "PIC16ISD::Hi";
244 case PIC16ISD::MTLO: return "PIC16ISD::MTLO";
245 case PIC16ISD::MTHI: return "PIC16ISD::MTHI";
246 case PIC16ISD::Banksel: return "PIC16ISD::Banksel";
247 case PIC16ISD::PIC16Load: return "PIC16ISD::PIC16Load";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000248 case PIC16ISD::PIC16LdWF: return "PIC16ISD::PIC16LdWF";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000249 case PIC16ISD::PIC16Store: return "PIC16ISD::PIC16Store";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000250 case PIC16ISD::PIC16StWF: return "PIC16ISD::PIC16StWF";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000251 case PIC16ISD::BCF: return "PIC16ISD::BCF";
252 case PIC16ISD::LSLF: return "PIC16ISD::LSLF";
253 case PIC16ISD::LRLF: return "PIC16ISD::LRLF";
254 case PIC16ISD::RLF: return "PIC16ISD::RLF";
255 case PIC16ISD::RRF: return "PIC16ISD::RRF";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000256 case PIC16ISD::CALL: return "PIC16ISD::CALL";
257 case PIC16ISD::SUBCC: return "PIC16ISD::SUBCC";
258 case PIC16ISD::SELECT_ICC: return "PIC16ISD::SELECT_ICC";
259 case PIC16ISD::BRCOND: return "PIC16ISD::BRCOND";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000260 case PIC16ISD::Dummy: return "PIC16ISD::Dummy";
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000261 }
262}
263
Duncan Sands1607f052008-12-01 11:39:25 +0000264void PIC16TargetLowering::ReplaceNodeResults(SDNode *N,
265 SmallVectorImpl<SDValue>&Results,
266 SelectionDAG &DAG) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000267
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000268 switch (N->getOpcode()) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000269 case ISD::GlobalAddress:
Duncan Sands1607f052008-12-01 11:39:25 +0000270 Results.push_back(ExpandGlobalAddress(N, DAG));
271 return;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000272 case ISD::ExternalSymbol:
273 Results.push_back(ExpandExternalSymbol(N, DAG));
274 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000275 case ISD::STORE:
Duncan Sands1607f052008-12-01 11:39:25 +0000276 Results.push_back(ExpandStore(N, DAG));
277 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000278 case ISD::LOAD:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000279 PopulateResults(ExpandLoad(N, DAG), Results);
Duncan Sands1607f052008-12-01 11:39:25 +0000280 return;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000281 case ISD::ADD:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000282 // Results.push_back(ExpandAdd(N, DAG));
Duncan Sands1607f052008-12-01 11:39:25 +0000283 return;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000284 case ISD::FrameIndex:
285 Results.push_back(ExpandFrameIndex(N, DAG));
286 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000287 default:
288 assert (0 && "not implemented");
Duncan Sands1607f052008-12-01 11:39:25 +0000289 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000290 }
291}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000292
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000293SDValue PIC16TargetLowering::ExpandFrameIndex(SDNode *N, SelectionDAG &DAG) {
294
295 // Currently handling FrameIndex of size MVT::i16 only
296 // One example of this scenario is when return value is written on
297 // FrameIndex#0
298
299 if (N->getValueType(0) != MVT::i16)
300 return SDValue();
301
302 // Expand the FrameIndex into ExternalSymbol and a Constant node
303 // The constant will represent the frame index number
304 // Get the current function frame
305 MachineFunction &MF = DAG.getMachineFunction();
306 const Function *Func = MF.getFunction();
307 const std::string Name = Func->getName();
Dale Johannesende064702009-02-06 21:50:26 +0000308
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000309 FrameIndexSDNode *FR = dyn_cast<FrameIndexSDNode>(SDValue(N,0));
Dale Johannesende064702009-02-06 21:50:26 +0000310 // FIXME there isn't really debug info here
311 DebugLoc dl = FR->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000312 int Index = FR->getIndex();
313
314 SDValue FI[2];
315 FI[0] = DAG.getTargetFrameIndex(Index, MVT::i8);
316 FI[1] = DAG.getTargetFrameIndex(Index + 1, MVT::i8);
Dale Johannesende064702009-02-06 21:50:26 +0000317 return DAG.getNode(ISD::BUILD_PAIR, dl, N->getValueType(0), FI[0], FI[1]);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000318}
319
320
321SDValue PIC16TargetLowering::ExpandStore(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000322 StoreSDNode *St = cast<StoreSDNode>(N);
323 SDValue Chain = St->getChain();
324 SDValue Src = St->getValue();
325 SDValue Ptr = St->getBasePtr();
326 MVT ValueType = Src.getValueType();
327 unsigned StoreOffset = 0;
Dale Johannesende064702009-02-06 21:50:26 +0000328 DebugLoc dl = N->getDebugLoc();
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000329
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000330 SDValue PtrLo, PtrHi;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000331 LegalizeAddress(Ptr, DAG, PtrLo, PtrHi, StoreOffset, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000332
333 if (ValueType == MVT::i8) {
Dale Johannesende064702009-02-06 21:50:26 +0000334 return DAG.getNode (PIC16ISD::PIC16Store, dl, MVT::Other, Chain, Src,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000335 PtrLo, PtrHi,
336 DAG.getConstant (0 + StoreOffset, MVT::i8));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000337 }
338 else if (ValueType == MVT::i16) {
339 // Get the Lo and Hi parts from MERGE_VALUE or BUILD_PAIR.
340 SDValue SrcLo, SrcHi;
341 GetExpandedParts(Src, DAG, SrcLo, SrcHi);
342 SDValue ChainLo = Chain, ChainHi = Chain;
343 if (Chain.getOpcode() == ISD::TokenFactor) {
344 ChainLo = Chain.getOperand(0);
345 ChainHi = Chain.getOperand(1);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000346 }
Dale Johannesende064702009-02-06 21:50:26 +0000347 SDValue Store1 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000348 ChainLo,
349 SrcLo, PtrLo, PtrHi,
350 DAG.getConstant (0 + StoreOffset, MVT::i8));
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000351
Dale Johannesende064702009-02-06 21:50:26 +0000352 SDValue Store2 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000353 SrcHi, PtrLo, PtrHi,
354 DAG.getConstant (1 + StoreOffset, MVT::i8));
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000355
Dale Johannesende064702009-02-06 21:50:26 +0000356 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, getChain(Store1),
Duncan Sands1607f052008-12-01 11:39:25 +0000357 getChain(Store2));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000358 }
359 else if (ValueType == MVT::i32) {
360 // Get the Lo and Hi parts from MERGE_VALUE or BUILD_PAIR.
361 SDValue SrcLo, SrcHi;
362 GetExpandedParts(Src, DAG, SrcLo, SrcHi);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000363
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000364 // Get the expanded parts of each of SrcLo and SrcHi.
365 SDValue SrcLo1, SrcLo2, SrcHi1, SrcHi2;
366 GetExpandedParts(SrcLo, DAG, SrcLo1, SrcLo2);
367 GetExpandedParts(SrcHi, DAG, SrcHi1, SrcHi2);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000368
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000369 SDValue ChainLo = Chain, ChainHi = Chain;
370 if (Chain.getOpcode() == ISD::TokenFactor) {
371 ChainLo = Chain.getOperand(0);
372 ChainHi = Chain.getOperand(1);
373 }
374 SDValue ChainLo1 = ChainLo, ChainLo2 = ChainLo, ChainHi1 = ChainHi,
375 ChainHi2 = ChainHi;
376 if (ChainLo.getOpcode() == ISD::TokenFactor) {
377 ChainLo1 = ChainLo.getOperand(0);
378 ChainLo2 = ChainLo.getOperand(1);
379 }
380 if (ChainHi.getOpcode() == ISD::TokenFactor) {
381 ChainHi1 = ChainHi.getOperand(0);
382 ChainHi2 = ChainHi.getOperand(1);
383 }
Dale Johannesende064702009-02-06 21:50:26 +0000384 SDValue Store1 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000385 ChainLo1,
386 SrcLo1, PtrLo, PtrHi,
387 DAG.getConstant (0 + StoreOffset, MVT::i8));
388
Dale Johannesende064702009-02-06 21:50:26 +0000389 SDValue Store2 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainLo2,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000390 SrcLo2, PtrLo, PtrHi,
391 DAG.getConstant (1 + StoreOffset, MVT::i8));
392
Dale Johannesende064702009-02-06 21:50:26 +0000393 SDValue Store3 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi1,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000394 SrcHi1, PtrLo, PtrHi,
395 DAG.getConstant (2 + StoreOffset, MVT::i8));
396
Dale Johannesende064702009-02-06 21:50:26 +0000397 SDValue Store4 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi2,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000398 SrcHi2, PtrLo, PtrHi,
399 DAG.getConstant (3 + StoreOffset, MVT::i8));
400
Dale Johannesende064702009-02-06 21:50:26 +0000401 SDValue RetLo = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
402 getChain(Store1), getChain(Store2));
403 SDValue RetHi = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
404 getChain(Store3), getChain(Store4));
405 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, RetLo, RetHi);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000406
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000407 }
408 else {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000409 assert (0 && "value type not supported");
Duncan Sands1607f052008-12-01 11:39:25 +0000410 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000411 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000412}
413
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000414SDValue PIC16TargetLowering::ExpandExternalSymbol(SDNode *N, SelectionDAG &DAG)
415{
416 ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(SDValue(N, 0));
Dale Johannesende064702009-02-06 21:50:26 +0000417 // FIXME there isn't really debug info here
418 DebugLoc dl = ES->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000419
420 SDValue TES = DAG.getTargetExternalSymbol(ES->getSymbol(), MVT::i8);
421
Dale Johannesende064702009-02-06 21:50:26 +0000422 SDValue Lo = DAG.getNode(PIC16ISD::Lo, dl, MVT::i8, TES);
423 SDValue Hi = DAG.getNode(PIC16ISD::Hi, dl, MVT::i8, TES);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000424
Dale Johannesende064702009-02-06 21:50:26 +0000425 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16, Lo, Hi);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000426}
427
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000428// ExpandGlobalAddress -
Duncan Sands1607f052008-12-01 11:39:25 +0000429SDValue PIC16TargetLowering::ExpandGlobalAddress(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000430 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(SDValue(N, 0));
Dale Johannesende064702009-02-06 21:50:26 +0000431 // FIXME there isn't really debug info here
432 DebugLoc dl = G->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000433
434 SDValue TGA = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i8,
435 G->getOffset());
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000436
Dale Johannesende064702009-02-06 21:50:26 +0000437 SDValue Lo = DAG.getNode(PIC16ISD::Lo, dl, MVT::i8, TGA);
438 SDValue Hi = DAG.getNode(PIC16ISD::Hi, dl, MVT::i8, TGA);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000439
Dale Johannesende064702009-02-06 21:50:26 +0000440 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16, Lo, Hi);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000441}
442
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000443bool PIC16TargetLowering::isDirectAddress(const SDValue &Op) {
444 assert (Op.getNode() != NULL && "Can't operate on NULL SDNode!!");
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000445
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000446 if (Op.getOpcode() == ISD::BUILD_PAIR) {
447 if (Op.getOperand(0).getOpcode() == PIC16ISD::Lo)
448 return true;
449 }
450 return false;
451}
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000452
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000453// Return true if DirectAddress is in ROM_SPACE
454bool PIC16TargetLowering::isRomAddress(const SDValue &Op) {
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000455
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000456 // RomAddress is a GlobalAddress in ROM_SPACE_
457 // If the Op is not a GlobalAddress return NULL without checking
458 // anything further.
459 if (!isDirectAddress(Op))
460 return false;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000461
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000462 // Its a GlobalAddress.
463 // It is BUILD_PAIR((PIC16Lo TGA), (PIC16Hi TGA)) and Op is BUILD_PAIR
464 SDValue TGA = Op.getOperand(0).getOperand(0);
465 GlobalAddressSDNode *GSDN = dyn_cast<GlobalAddressSDNode>(TGA);
466 const Type *ValueType = GSDN->getGlobal()->getType();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000467
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000468 if (!isa<PointerType>(ValueType)) {
469 assert(0 && "TGA must be of a PointerType");
470 }
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000471
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000472 int AddrSpace = dyn_cast<PointerType>(ValueType)->getAddressSpace();
473 if (AddrSpace == PIC16ISD::ROM_SPACE)
474 return true;
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000475
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000476 // Any other address space return it false
477 return false;
478}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000479
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000480// Extract the out flag
481SDValue PIC16TargetLowering::getOutFlag(SDValue &Op) {
482 SDValue Flag = Op.getValue(Op.getNode()->getNumValues() - 1);
483
484 assert (Flag.getValueType() == MVT::Flag && "Node does not have an out Flag");
485
486 return Flag;
487}
488
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000489// To extract chain value from the SDValue Nodes
490// This function will help to maintain the chain extracting
491// code at one place. In case of any change in future it will
492// help maintain the code.
493SDValue PIC16TargetLowering::getChain(SDValue &Op) {
494 SDValue Chain = Op.getValue(Op.getNode()->getNumValues() - 1);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000495
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000496 // If the last value returned in Flag then the chain is
497 // second last value returned.
498 if (Chain.getValueType() == MVT::Flag)
499 Chain = Op.getValue(Op.getNode()->getNumValues() - 2);
500
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000501 // All nodes may not produce a chain. Therefore following assert
502 // verifies that the node is returning a chain only.
503 assert (Chain.getValueType() == MVT::Other && "Node does not have a chain");
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000504
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000505 return Chain;
506}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000507
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000508void PIC16TargetLowering::GetExpandedParts(SDValue Op, SelectionDAG &DAG,
509 SDValue &Lo, SDValue &Hi) {
510 SDNode *N = Op.getNode();
Dale Johannesened2eee62009-02-06 01:31:28 +0000511 DebugLoc dl = N->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000512 MVT NewVT;
513 std::vector<SDValue> Opers;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000514 NewVT = getTypeToTransformTo(N->getValueType(0));
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000515
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000516 // extract the lo component
517 Opers.push_back(Op);
518 Opers.push_back(DAG.getConstant(0,MVT::i8));
Dale Johannesened2eee62009-02-06 01:31:28 +0000519 Lo = DAG.getNode(ISD::EXTRACT_ELEMENT,dl,NewVT,&Opers[0],Opers.size());
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000520 // extract the hi component
521 Opers.clear();
522 Opers.push_back(Op);
523 Opers.push_back(DAG.getConstant(1,MVT::i8));
Dale Johannesened2eee62009-02-06 01:31:28 +0000524 Hi = DAG.getNode(ISD::EXTRACT_ELEMENT,dl,NewVT,&Opers[0],Opers.size());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000525}
526
527// Legalize FrameIndex into ExternalSymbol and offset.
528void
529PIC16TargetLowering::LegalizeFrameIndex(SDValue Op, SelectionDAG &DAG,
530 SDValue &ES, int &Offset) {
531
532 MachineFunction &MF = DAG.getMachineFunction();
533 const Function *Func = MF.getFunction();
534 const std::string Name = Func->getName();
535
536 char *tmpName = new char [strlen(Name.c_str()) + 8];
537 sprintf(tmpName, "%s.args", Name.c_str());
538 ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
539 FrameIndexSDNode *FR = dyn_cast<FrameIndexSDNode>(Op);
540 Offset = FR->getIndex();
541
542 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000543}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000544
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000545// This function legalizes the PIC16 Addresses. If the Pointer is
546// -- Direct address variable residing
547// --> then a Banksel for that variable will be created.
548// -- Rom variable
549// --> then it will be treated as an indirect address.
550// -- Indirect address
551// --> then the address will be loaded into FSR
552// -- ADD with constant operand
553// --> then constant operand of ADD will be returned as Offset
554// and non-constant operand of ADD will be treated as pointer.
555// Returns the high and lo part of the address, and the offset(in case of ADD).
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000556
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000557void PIC16TargetLowering:: LegalizeAddress(SDValue Ptr, SelectionDAG &DAG,
558 SDValue &Lo, SDValue &Hi,
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000559 unsigned &Offset, DebugLoc dl) {
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000560
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000561 // Offset, by default, should be 0
562 Offset = 0;
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000563
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000564 // If the pointer is ADD with constant,
565 // return the constant value as the offset
566 if (Ptr.getOpcode() == ISD::ADD) {
567 SDValue OperLeft = Ptr.getOperand(0);
568 SDValue OperRight = Ptr.getOperand(1);
569 if (OperLeft.getOpcode() == ISD::Constant) {
570 Offset = dyn_cast<ConstantSDNode>(OperLeft)->getZExtValue();
571 Ptr = OperRight;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000572 } else if (OperRight.getOpcode() == ISD::Constant) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000573 Offset = dyn_cast<ConstantSDNode>(OperRight)->getZExtValue();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000574 Ptr = OperLeft;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000575 }
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000576 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000577
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000578 // If the pointer is Type i8 and an external symbol
579 // then treat it as direct address.
580 // One example for such case is storing and loading
581 // from function frame during a call
582 if (Ptr.getValueType() == MVT::i8) {
583 switch (Ptr.getOpcode()) {
584 case ISD::TargetExternalSymbol:
585 Lo = Ptr;
586 Hi = DAG.getConstant(1, MVT::i8);
587 return;
588 }
589 }
590
591 if (Ptr.getOpcode() == ISD::BUILD_PAIR &&
592 Ptr.getOperand(0).getOpcode() == ISD::TargetFrameIndex) {
593
594 int FrameOffset;
595 LegalizeFrameIndex(Ptr.getOperand(0), DAG, Lo, FrameOffset);
596 Hi = DAG.getConstant(1, MVT::i8);
597 Offset += FrameOffset;
598 return;
599 }
600
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000601 if (isDirectAddress(Ptr) && !isRomAddress(Ptr)) {
602 // Direct addressing case for RAM variables. The Hi part is constant
603 // and the Lo part is the TGA itself.
604 Lo = Ptr.getOperand(0).getOperand(0);
605
606 // For direct addresses Hi is a constant. Value 1 for the constant
607 // signifies that banksel needs to generated for it. Value 0 for
608 // the constant signifies that banksel does not need to be generated
609 // for it. Mark it as 1 now and optimize later.
610 Hi = DAG.getConstant(1, MVT::i8);
611 return;
612 }
613
614 // Indirect addresses. Get the hi and lo parts of ptr.
615 GetExpandedParts(Ptr, DAG, Lo, Hi);
616
617 // Put the hi and lo parts into FSR.
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000618 Lo = DAG.getNode(PIC16ISD::MTLO, dl, MVT::i8, Lo);
619 Hi = DAG.getNode(PIC16ISD::MTHI, dl, MVT::i8, Hi);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000620
621 return;
622}
623
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000624//SDValue PIC16TargetLowering::ExpandAdd(SDNode *N, SelectionDAG &DAG) {
625 //SDValue OperLeft = N->getOperand(0);
626 //SDValue OperRight = N->getOperand(1);
627
628 //if((OperLeft.getOpcode() == ISD::Constant) ||
629 //(OperRight.getOpcode() == ISD::Constant)) {
630 //return SDValue();
631 //}
632
633 // These case are yet to be handled
634 //return SDValue();
Duncan Sands1607f052008-12-01 11:39:25 +0000635//}
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000636
Duncan Sands1607f052008-12-01 11:39:25 +0000637SDValue PIC16TargetLowering::ExpandLoad(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000638 LoadSDNode *LD = dyn_cast<LoadSDNode>(SDValue(N, 0));
639 SDValue Chain = LD->getChain();
640 SDValue Ptr = LD->getBasePtr();
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000641 DebugLoc dl = LD->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000642
643 SDValue Load, Offset;
644 SDVTList Tys;
645 MVT VT, NewVT;
646 SDValue PtrLo, PtrHi;
647 unsigned LoadOffset;
648
649 // Legalize direct/indirect addresses. This will give the lo and hi parts
650 // of the address and the offset.
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000651 LegalizeAddress(Ptr, DAG, PtrLo, PtrHi, LoadOffset, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000652
653 // Load from the pointer (direct address or FSR)
654 VT = N->getValueType(0);
655 unsigned NumLoads = VT.getSizeInBits() / 8;
656 std::vector<SDValue> PICLoads;
657 unsigned iter;
658 MVT MemVT = LD->getMemoryVT();
659 if(ISD::isNON_EXTLoad(N)) {
660 for (iter=0; iter<NumLoads ; ++iter) {
661 // Add the pointer offset if any
662 Offset = DAG.getConstant(iter + LoadOffset, MVT::i8);
663 Tys = DAG.getVTList(MVT::i8, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000664 Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Chain, PtrLo, PtrHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000665 Offset);
666 PICLoads.push_back(Load);
667 }
668 } else {
669 // If it is extended load then use PIC16Load for Memory Bytes
670 // and for all extended bytes perform action based on type of
671 // extention - i.e. SignExtendedLoad or ZeroExtendedLoad
672
673
674 // For extended loads this is the memory value type
675 // i.e. without any extension
676 MVT MemVT = LD->getMemoryVT();
677 unsigned MemBytes = MemVT.getSizeInBits() / 8;
678 unsigned ExtdBytes = VT.getSizeInBits() / 8;
679 Offset = DAG.getConstant(LoadOffset, MVT::i8);
680
681 Tys = DAG.getVTList(MVT::i8, MVT::Other);
682 // For MemBytes generate PIC16Load with proper offset
683 for (iter=0; iter<MemBytes; ++iter) {
684 // Add the pointer offset if any
685 Offset = DAG.getConstant(iter + LoadOffset, MVT::i8);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000686 Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Chain, PtrLo, PtrHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000687 Offset);
688 PICLoads.push_back(Load);
689 }
690
691 // For SignExtendedLoad
692 if (ISD::isSEXTLoad(N)) {
693 // For all ExtdBytes use the Right Shifted(Arithmetic) Value of the
694 // highest MemByte
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000695 SDValue SRA = DAG.getNode(ISD::SRA, dl, MVT::i8, Load,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000696 DAG.getConstant(7, MVT::i8));
697 for (iter=MemBytes; iter<ExtdBytes; ++iter) {
698 PICLoads.push_back(SRA);
699 }
700 } else if (ISD::isZEXTLoad(N)) {
701 // ZeroExtendedLoad -- For all ExtdBytes use constant 0
702 SDValue ConstZero = DAG.getConstant(0, MVT::i8);
703 for (iter=MemBytes; iter<ExtdBytes; ++iter) {
704 PICLoads.push_back(ConstZero);
705 }
706 }
707 }
708 SDValue BP;
709
710 if (VT == MVT::i8) {
711 // Operand of Load is illegal -- Load itself is legal
Duncan Sands1607f052008-12-01 11:39:25 +0000712 return PICLoads[0];
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000713 }
714 else if (VT == MVT::i16) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000715 BP = DAG.getNode(ISD::BUILD_PAIR, dl, VT, PICLoads[0], PICLoads[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000716 if (MemVT == MVT::i8)
717 Chain = getChain(PICLoads[0]);
718 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000719 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
720 getChain(PICLoads[0]), getChain(PICLoads[1]));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000721 } else if (VT == MVT::i32) {
722 SDValue BPs[2];
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000723 BPs[0] = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16,
724 PICLoads[0], PICLoads[1]);
725 BPs[1] = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16,
726 PICLoads[2], PICLoads[3]);
727 BP = DAG.getNode(ISD::BUILD_PAIR, dl, VT, BPs[0], BPs[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000728 if (MemVT == MVT::i8)
729 Chain = getChain(PICLoads[0]);
730 else if (MemVT == MVT::i16)
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000731 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
732 getChain(PICLoads[0]), getChain(PICLoads[1]));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000733 else {
734 SDValue Chains[2];
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000735 Chains[0] = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000736 getChain(PICLoads[0]), getChain(PICLoads[1]));
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000737 Chains[1] = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000738 getChain(PICLoads[2]), getChain(PICLoads[3]));
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000739 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
740 Chains[0], Chains[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000741 }
742 }
743 Tys = DAG.getVTList(VT, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000744 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, BP, Chain);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000745}
746
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000747SDValue PIC16TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
748 // We should have handled larger operands in type legalizer itself.
749 assert (Op.getValueType() == MVT::i8 && "illegal shift to lower");
750
751 SDNode *N = Op.getNode();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000752 SDValue Value = N->getOperand(0);
753 SDValue Amt = N->getOperand(1);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000754 PIC16ISD::PIC16Libcall CallCode;
755 switch (N->getOpcode()) {
756 case ISD::SRA:
757 CallCode = PIC16ISD::SRA_I8;
758 break;
759 case ISD::SHL:
760 CallCode = PIC16ISD::SLL_I8;
761 break;
762 case ISD::SRL:
763 CallCode = PIC16ISD::SRL_I8;
764 break;
765 default:
766 assert ( 0 && "This shift is not implemented yet.");
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000767 return SDValue();
768 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000769 SmallVector<SDValue, 2> Ops(2);
770 Ops[0] = Value;
771 Ops[1] = Amt;
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000772 SDValue Call = MakePIC16Libcall(CallCode, N->getValueType(0), &Ops[0], 2,
773 true, DAG, N->getDebugLoc());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000774 return Call;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000775}
776
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000777void
778PIC16TargetLowering::LowerOperationWrapper(SDNode *N,
779 SmallVectorImpl<SDValue>&Results,
780 SelectionDAG &DAG) {
781 SDValue Op = SDValue(N, 0);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000782 SDValue Res;
783 unsigned i;
784 switch (Op.getOpcode()) {
785 case ISD::FORMAL_ARGUMENTS:
786 Res = LowerFORMAL_ARGUMENTS(Op, DAG); break;
787 case ISD::LOAD:
788 Res = ExpandLoad(Op.getNode(), DAG); break;
789 case ISD::CALL:
790 Res = LowerCALL(Op, DAG); break;
791 default: {
792 // All other operations are handled in LowerOperation.
793 Res = LowerOperation(Op, DAG);
794 if (Res.getNode())
795 Results.push_back(Res);
796
797 return;
798 }
799 }
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000800
801 N = Res.getNode();
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000802 unsigned NumValues = N->getNumValues();
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000803 for (i = 0; i < NumValues ; i++) {
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000804 Results.push_back(SDValue(N, i));
805 }
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000806}
807
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000808SDValue PIC16TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
809 switch (Op.getOpcode()) {
810 case ISD::FORMAL_ARGUMENTS:
811 return LowerFORMAL_ARGUMENTS(Op, DAG);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000812 case ISD::ADD:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000813 case ISD::ADDC:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000814 case ISD::ADDE:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000815 return LowerADD(Op, DAG);
816 case ISD::SUB:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000817 case ISD::SUBC:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000818 case ISD::SUBE:
819 return LowerSUB(Op, DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000820 case ISD::LOAD:
Duncan Sands1607f052008-12-01 11:39:25 +0000821 return ExpandLoad(Op.getNode(), DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000822 case ISD::STORE:
Duncan Sands1607f052008-12-01 11:39:25 +0000823 return ExpandStore(Op.getNode(), DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000824 case ISD::SHL:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000825 case ISD::SRA:
826 case ISD::SRL:
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000827 return LowerShift(Op, DAG);
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +0000828 case ISD::OR:
829 case ISD::AND:
830 case ISD::XOR:
831 return LowerBinOp(Op, DAG);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000832 case ISD::CALL:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000833 return LowerCALL(Op, DAG);
834 case ISD::RET:
835 return LowerRET(Op, DAG);
836 case ISD::BR_CC:
837 return LowerBR_CC(Op, DAG);
838 case ISD::SELECT_CC:
839 return LowerSELECT_CC(Op, DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000840 }
Dan Gohman475871a2008-07-27 21:46:04 +0000841 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000842}
843
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000844SDValue PIC16TargetLowering::ConvertToMemOperand(SDValue Op,
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000845 SelectionDAG &DAG,
846 DebugLoc dl) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000847 assert (Op.getValueType() == MVT::i8
848 && "illegal value type to store on stack.");
849
850 MachineFunction &MF = DAG.getMachineFunction();
851 const Function *Func = MF.getFunction();
852 const std::string FuncName = Func->getName();
853
854 char *tmpName = new char [strlen(FuncName.c_str()) + 6];
855
856 // Put the value on stack.
857 // Get a stack slot index and convert to es.
858 int FI = MF.getFrameInfo()->CreateStackObject(1, 1);
859 sprintf(tmpName, "%s.tmp", FuncName.c_str());
860 SDValue ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
861
862 // Store the value to ES.
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000863 SDValue Store = DAG.getNode (PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000864 DAG.getEntryNode(),
865 Op, ES,
866 DAG.getConstant (1, MVT::i8), // Banksel.
867 DAG.getConstant (FI, MVT::i8));
868
869 // Load the value from ES.
870 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000871 SDValue Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Store,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000872 ES, DAG.getConstant (1, MVT::i8),
873 DAG.getConstant (FI, MVT::i8));
874
875 return Load.getValue(0);
876}
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000877
878SDValue
879PIC16TargetLowering::LowerCallArguments(SDValue Op, SDValue Chain,
880 SDValue FrameAddress,
881 SDValue InFlag,
882 SelectionDAG &DAG) {
883 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
884 unsigned NumOps = TheCall->getNumArgs();
Dale Johannesene8d72302009-02-06 23:05:02 +0000885 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000886 std::string Name;
887 SDValue Arg, StoreAt;
888 MVT ArgVT;
889 unsigned Size=0;
890 unsigned ArgCount=0;
891
892
893 // FIXME: This portion of code currently assumes only
894 // primitive types being passed as arguments.
895
896 // Legalize the address before use
897 SDValue PtrLo, PtrHi;
898 unsigned AddressOffset;
899 int StoreOffset = 0;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000900 LegalizeAddress(FrameAddress, DAG, PtrLo, PtrHi, AddressOffset, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000901 SDValue StoreRet;
902
903 std::vector<SDValue> Ops;
904 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
905 for (unsigned i=ArgCount, Offset = 0; i<NumOps; i++) {
906 // Get the argument
907 Arg = TheCall->getArg(i);
908
909 StoreOffset = (Offset + AddressOffset);
910
911 // Store the argument on frame
912
913 Ops.clear();
914 Ops.push_back(Chain);
915 Ops.push_back(Arg.getValue(0));
916 Ops.push_back(PtrLo);
917 Ops.push_back(PtrHi);
918 Ops.push_back(DAG.getConstant(StoreOffset, MVT::i8));
919 Ops.push_back(InFlag);
920
Dale Johannesene8d72302009-02-06 23:05:02 +0000921 StoreRet = DAG.getNode (PIC16ISD::PIC16StWF, dl, Tys, &Ops[0], Ops.size());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000922
923 Chain = getChain(StoreRet);
924 InFlag = getOutFlag(StoreRet);
925
926 // Update the frame offset to be used for next argument
927 ArgVT = Arg.getValueType();
928 Size = ArgVT.getSizeInBits();
929 Size = Size/8; // Calculate size in bytes
930 Offset += Size; // Increase the frame offset
931 }
932 return Chain;
933}
934
935SDValue
936PIC16TargetLowering::LowerCallReturn(SDValue Op, SDValue Chain,
937 SDValue FrameAddress,
938 SDValue InFlag,
939 SelectionDAG &DAG) {
940 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000941 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000942 // Currently handling primitive types only. They will come in
943 // i8 parts
944 unsigned RetVals = TheCall->getNumRetVals();
945
946 std::vector<SDValue> ResultVals;
947
948 // Return immediately if the return type is void
949 if (RetVals == 0)
950 return Chain;
951
952 // Call has something to return
953
954 // Legalize the address before use
955 SDValue LdLo, LdHi;
956 unsigned LdOffset;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000957 LegalizeAddress(FrameAddress, DAG, LdLo, LdHi, LdOffset, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000958
959 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Other, MVT::Flag);
960 SDValue LoadRet;
961
962 for(unsigned i=0, Offset=0;i<RetVals;i++) {
963
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000964 LoadRet = DAG.getNode(PIC16ISD::PIC16LdWF, dl, Tys, Chain, LdLo, LdHi,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000965 DAG.getConstant(LdOffset + Offset, MVT::i8),
966 InFlag);
967
968 InFlag = getOutFlag(LoadRet);
969
970 Chain = getChain(LoadRet);
971 Offset++;
972 ResultVals.push_back(LoadRet);
973 }
974
975 // To return use MERGE_VALUES
976 ResultVals.push_back(Chain);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000977 SDValue Res = DAG.getMergeValues(&ResultVals[0], ResultVals.size(), dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000978 return Res;
979}
980
981SDValue PIC16TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
982 //int NumOps = Op.getNode()->getNumOperands();
983
984 // For default cases LLVM returns the value on the function frame
985 // So let LLVM do this for all the cases other than character
986 return Op;
987}
988
989SDValue PIC16TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
990 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
991 SDValue Chain = TheCall->getChain();
992 SDValue Callee = TheCall->getCallee();
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000993 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000994 unsigned i =0;
995 if (Callee.getValueType() == MVT::i16 &&
996 Callee.getOpcode() == ISD::BUILD_PAIR) {
997 // It has come from TypeLegalizer for lowering
998
999 Callee = Callee.getOperand(0).getOperand(0);
1000
1001 std::vector<SDValue> Ops;
1002 Ops.push_back(Chain);
1003 Ops.push_back(Callee);
1004
1005 // Add the call arguments and their flags
1006 unsigned NumArgs = TheCall->getNumArgs();
1007 for(i=0;i<NumArgs;i++) {
1008 Ops.push_back(TheCall->getArg(i));
1009 Ops.push_back(TheCall->getArgFlagsVal(i));
1010 }
1011
1012 std::vector<MVT> NodeTys;
1013 unsigned NumRets = TheCall->getNumRetVals();
1014 for(i=0;i<NumRets;i++)
1015 NodeTys.push_back(TheCall->getRetValType(i));
1016
1017 // Return a Chain as well
1018 NodeTys.push_back(MVT::Other);
1019
1020 SDVTList VTs = DAG.getVTList(&NodeTys[0], NodeTys.size());
1021 SDValue NewCall =
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001022 DAG.getCall(TheCall->getCallingConv(), dl,
Dale Johannesen8ad9b432009-02-04 01:17:06 +00001023 TheCall->isVarArg(), TheCall->isTailCall(),
1024 TheCall->isInreg(), VTs, &Ops[0], Ops.size());
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001025
1026 return NewCall;
1027 }
1028
1029 SDValue ZeroOperand = DAG.getConstant(0, MVT::i8);
1030
1031 // Start the call sequence.
1032 // Carring the Constant 0 along the CALLSEQSTART
1033 // because there is nothing else to carry.
1034 SDValue SeqStart = DAG.getCALLSEQ_START(Chain, ZeroOperand);
1035 Chain = getChain(SeqStart);
1036
1037 // For any direct call - callee will be GlobalAddressNode or
1038 // ExternalSymbol
1039
1040 // Considering the GlobalAddressNode case here.
1041 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1042 GlobalValue *GV = G->getGlobal();
1043 Callee = DAG.getTargetGlobalAddress(GV, MVT::i8);
1044 }
1045
1046 // Considering the ExternalSymbol case here
1047 if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1048 Callee = DAG.getTargetExternalSymbol(ES->getSymbol(), MVT::i8);
1049 }
1050
1051 SDValue OperFlag = getOutFlag(Chain); // To manage the data dependency
1052
1053 std::string Name;
1054
1055 // Considering GlobalAddress here
1056 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1057 Name = G->getGlobal()->getName();
1058
1059 // Considering ExternalSymbol here
1060 if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Callee))
1061 Name = ES->getSymbol();
1062
1063 char *argFrame = new char [strlen(Name.c_str()) + 8];
1064 sprintf(argFrame, "%s.args", Name.c_str());
1065 SDValue ArgLabel = DAG.getTargetExternalSymbol(argFrame, MVT::i8);
1066
1067 char *retName = new char [strlen(Name.c_str()) + 8];
1068 sprintf(retName, "%s.retval", Name.c_str());
1069 SDValue RetLabel = DAG.getTargetExternalSymbol(retName, MVT::i8);
1070
1071 // Pass the argument to function before making the call.
1072 SDValue CallArgs = LowerCallArguments(Op, Chain, ArgLabel, OperFlag, DAG);
1073 Chain = getChain(CallArgs);
1074 OperFlag = getOutFlag(CallArgs);
1075
1076 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001077 SDValue PICCall = DAG.getNode(PIC16ISD::CALL, dl, Tys, Chain, Callee,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001078 OperFlag);
1079 Chain = getChain(PICCall);
1080 OperFlag = getOutFlag(PICCall);
1081
1082
1083 // Carrying the Constant 0 along the CALLSEQSTART
1084 // because there is nothing else to carry.
1085 SDValue SeqEnd = DAG.getCALLSEQ_END(Chain, ZeroOperand, ZeroOperand,
1086 OperFlag);
1087 Chain = getChain(SeqEnd);
1088 OperFlag = getOutFlag(SeqEnd);
1089
1090 // Lower the return value reading after the call.
1091 return LowerCallReturn(Op, Chain, RetLabel, OperFlag, DAG);
1092}
1093
1094bool PIC16TargetLowering::isDirectLoad(const SDValue Op) {
1095 if (Op.getOpcode() == PIC16ISD::PIC16Load)
1096 if (Op.getOperand(1).getOpcode() == ISD::TargetGlobalAddress
1097 || Op.getOperand(1).getOpcode() == ISD::TargetExternalSymbol)
1098 return true;
1099 return false;
1100}
1101
1102bool PIC16TargetLowering::NeedToConvertToMemOp(SDValue Op, unsigned &MemOp) {
1103 // Return false if one of the operands is already a direct
1104 // load and that operand has only one use.
1105 if (Op.getOperand(0).getOpcode() == ISD::Constant ||
1106 Op.getOperand(1).getOpcode() == ISD::Constant)
1107 return false;
1108 if (isDirectLoad(Op.getOperand(0))) {
1109 if (Op.getOperand(0).hasOneUse())
1110 return false;
1111 else
1112 MemOp = 0;
1113 }
1114 if (isDirectLoad(Op.getOperand(1))) {
1115 if (Op.getOperand(1).hasOneUse())
1116 return false;
1117 else
1118 MemOp = 1;
1119 }
1120 return true;
1121}
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001122
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001123SDValue PIC16TargetLowering:: LowerBinOp(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001124 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001125 // We should have handled larger operands in type legalizer itself.
1126 assert (Op.getValueType() == MVT::i8 && "illegal Op to lower");
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001127 unsigned MemOp = 1;
1128 if (NeedToConvertToMemOp(Op, MemOp)) {
1129 // Put one value on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001130 SDValue NewVal = ConvertToMemOperand (Op.getOperand(MemOp), DAG, dl);
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001131
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001132 return DAG.getNode(Op.getOpcode(), dl, MVT::i8, Op.getOperand(MemOp ^ 1),
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001133 NewVal);
1134 }
1135 else {
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001136 return Op;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001137 }
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001138}
1139
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001140SDValue PIC16TargetLowering:: LowerADD(SDValue Op, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001141 // We should have handled larger operands in type legalizer itself.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001142 assert (Op.getValueType() == MVT::i8 && "illegal add to lower");
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001143 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001144 unsigned MemOp = 1;
1145 if (NeedToConvertToMemOp(Op, MemOp)) {
1146 // Put one value on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001147 SDValue NewVal = ConvertToMemOperand (Op.getOperand(MemOp), DAG, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001148
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001149 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Flag);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001150
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001151 if (Op.getOpcode() == ISD::ADDE)
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001152 return DAG.getNode(Op.getOpcode(), dl, Tys, Op.getOperand(MemOp ^ 1),
1153 NewVal, Op.getOperand(2));
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001154 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001155 return DAG.getNode(Op.getOpcode(), dl, Tys, Op.getOperand(MemOp ^ 1),
1156 NewVal);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001157 }
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001158 else if (Op.getOpcode() == ISD::ADD) {
1159 return Op;
1160 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001161 else {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001162 return SDValue();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001163 }
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001164}
1165
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001166SDValue PIC16TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001167 DebugLoc dl = Op.getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001168 // We should have handled larger operands in type legalizer itself.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001169 assert (Op.getValueType() == MVT::i8 && "illegal sub to lower");
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001170
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001171 // Nothing to do if the first operand is already a direct load and it has
1172 // only one use.
1173 if (isDirectLoad(Op.getOperand(0)) && Op.getOperand(0).hasOneUse())
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001174 return SDValue();
1175
1176 // Put first operand on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001177 SDValue NewVal = ConvertToMemOperand (Op.getOperand(0), DAG, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001178
1179 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Flag);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001180 if (Op.getOpcode() == ISD::SUBE)
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001181 return DAG.getNode(Op.getOpcode(), dl, Tys, NewVal, Op.getOperand(1),
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001182 Op.getOperand(2));
1183 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001184 return DAG.getNode(Op.getOpcode(), dl, Tys, NewVal, Op.getOperand(1));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001185}
1186
1187// LowerFORMAL_ARGUMENTS - In Lowering FORMAL ARGUMENTS - MERGE_VALUES nodes
1188// is returned. MERGE_VALUES nodes number of operands and number of values are
1189// equal. Therefore to construct MERGE_VALUE node, UNDEF nodes equal to the
1190// number of arguments of function have been created.
1191
1192SDValue PIC16TargetLowering:: LowerFORMAL_ARGUMENTS(SDValue Op,
1193 SelectionDAG &DAG) {
1194 SmallVector<SDValue, 8> ArgValues;
1195 unsigned NumArgs = Op.getNumOperands() - 3;
Dale Johannesene8d72302009-02-06 23:05:02 +00001196 DebugLoc dl = Op.getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001197
1198 // Creating UNDEF nodes to meet the requirement of MERGE_VALUES node.
1199 for(unsigned i = 0 ; i<NumArgs ; i++) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001200 SDValue TempNode = DAG.getUNDEF(Op.getNode()->getValueType(i));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001201 ArgValues.push_back(TempNode);
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001202 }
1203
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001204 ArgValues.push_back(Op.getOperand(0));
Dale Johannesene8d72302009-02-06 23:05:02 +00001205 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001206 &ArgValues[0],
1207 ArgValues.size()).getValue(Op.getResNo());
1208}
1209
1210// Perform DAGCombine of PIC16Load
1211SDValue PIC16TargetLowering::
1212PerformPIC16LoadCombine(SDNode *N, DAGCombinerInfo &DCI) const {
1213 SelectionDAG &DAG = DCI.DAG;
1214 SDValue Chain = N->getOperand(0);
1215 if (N->hasNUsesOfValue(0, 0)) {
1216 DAG.ReplaceAllUsesOfValueWith(SDValue(N,1), Chain);
1217 }
1218 return SDValue();
1219}
1220
1221
1222SDValue PIC16TargetLowering::PerformDAGCombine(SDNode *N,
1223 DAGCombinerInfo &DCI) const {
1224 switch (N->getOpcode()) {
1225 case PIC16ISD::PIC16Load:
1226 return PerformPIC16LoadCombine(N, DCI);
1227 }
1228 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001229}
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001230
1231static PIC16CC::CondCodes IntCCToPIC16CC(ISD::CondCode CC) {
1232 switch (CC) {
1233 default: assert(0 && "Unknown condition code!");
1234 case ISD::SETNE: return PIC16CC::NE;
1235 case ISD::SETEQ: return PIC16CC::EQ;
1236 case ISD::SETGT: return PIC16CC::GT;
1237 case ISD::SETGE: return PIC16CC::GE;
1238 case ISD::SETLT: return PIC16CC::LT;
1239 case ISD::SETLE: return PIC16CC::LE;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001240 case ISD::SETULT: return PIC16CC::ULT;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001241 case ISD::SETULE: return PIC16CC::LE;
1242 case ISD::SETUGE: return PIC16CC::GE;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001243 case ISD::SETUGT: return PIC16CC::UGT;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001244 }
1245}
1246
1247// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
1248// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
1249static void LookThroughSetCC(SDValue &LHS, SDValue &RHS,
1250 ISD::CondCode CC, unsigned &SPCC) {
1251 if (isa<ConstantSDNode>(RHS) &&
1252 cast<ConstantSDNode>(RHS)->getZExtValue() == 0 &&
1253 CC == ISD::SETNE &&
1254 (LHS.getOpcode() == PIC16ISD::SELECT_ICC &&
1255 LHS.getOperand(3).getOpcode() == PIC16ISD::SUBCC) &&
1256 isa<ConstantSDNode>(LHS.getOperand(0)) &&
1257 isa<ConstantSDNode>(LHS.getOperand(1)) &&
1258 cast<ConstantSDNode>(LHS.getOperand(0))->getZExtValue() == 1 &&
1259 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() == 0) {
1260 SDValue CMPCC = LHS.getOperand(3);
1261 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getZExtValue();
1262 LHS = CMPCC.getOperand(0);
1263 RHS = CMPCC.getOperand(1);
1264 }
1265}
1266
1267// Returns appropriate CMP insn and corresponding condition code in PIC16CC
1268SDValue PIC16TargetLowering::getPIC16Cmp(SDValue LHS, SDValue RHS,
1269 unsigned CC, SDValue &PIC16CC,
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001270 SelectionDAG &DAG, DebugLoc dl) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001271 PIC16CC::CondCodes CondCode = (PIC16CC::CondCodes) CC;
1272
1273 // PIC16 sub is literal - W. So Swap the operands and condition if needed.
1274 // i.e. a < 12 can be rewritten as 12 > a.
1275 if (RHS.getOpcode() == ISD::Constant) {
1276
1277 SDValue Tmp = LHS;
1278 LHS = RHS;
1279 RHS = Tmp;
1280
1281 switch (CondCode) {
1282 default: break;
1283 case PIC16CC::LT:
1284 CondCode = PIC16CC::GT;
1285 break;
1286 case PIC16CC::GT:
1287 CondCode = PIC16CC::LT;
1288 break;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001289 case PIC16CC::ULT:
1290 CondCode = PIC16CC::UGT;
1291 break;
1292 case PIC16CC::UGT:
1293 CondCode = PIC16CC::ULT;
1294 break;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001295 case PIC16CC::GE:
1296 CondCode = PIC16CC::LE;
1297 break;
1298 case PIC16CC::LE:
1299 CondCode = PIC16CC::GE;
1300 break;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001301 case PIC16CC::ULE:
1302 CondCode = PIC16CC::UGE;
1303 break;
1304 case PIC16CC::UGE:
1305 CondCode = PIC16CC::ULE;
1306 break;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001307 }
1308 }
1309
1310 PIC16CC = DAG.getConstant(CondCode, MVT::i8);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001311
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001312 // These are signed comparisons.
1313 SDValue Mask = DAG.getConstant(128, MVT::i8);
1314 if (isSignedComparison(CondCode)) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001315 LHS = DAG.getNode (ISD::XOR, dl, MVT::i8, LHS, Mask);
1316 RHS = DAG.getNode (ISD::XOR, dl, MVT::i8, RHS, Mask);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001317 }
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001318
1319 SDVTList VTs = DAG.getVTList (MVT::i8, MVT::Flag);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001320 // We can use a subtract operation to set the condition codes. But
1321 // we need to put one operand in memory if required.
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001322 // Nothing to do if the first operand is already a valid type (direct load
1323 // for subwf and literal for sublw) and it is used by this operation only.
1324 if ((LHS.getOpcode() == ISD::Constant || isDirectLoad(LHS))
1325 && LHS.hasOneUse())
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001326 return DAG.getNode(PIC16ISD::SUBCC, dl, VTs, LHS, RHS);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001327
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001328 // else convert the first operand to mem.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001329 LHS = ConvertToMemOperand (LHS, DAG, dl);
1330 return DAG.getNode(PIC16ISD::SUBCC, dl, VTs, LHS, RHS);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001331}
1332
1333
1334SDValue PIC16TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
1335 SDValue LHS = Op.getOperand(0);
1336 SDValue RHS = Op.getOperand(1);
1337 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
1338 SDValue TrueVal = Op.getOperand(2);
1339 SDValue FalseVal = Op.getOperand(3);
1340 unsigned ORIGCC = ~0;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001341 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001342
1343 // If this is a select_cc of a "setcc", and if the setcc got lowered into
1344 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
1345 // i.e.
1346 // A setcc: lhs, rhs, cc is expanded by llvm to
1347 // select_cc: result of setcc, 0, 1, 0, setne
1348 // We can think of it as:
1349 // select_cc: lhs, rhs, 1, 0, cc
1350 LookThroughSetCC(LHS, RHS, CC, ORIGCC);
1351 if (ORIGCC == ~0U) ORIGCC = IntCCToPIC16CC (CC);
1352
1353 SDValue PIC16CC;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001354 SDValue Cmp = getPIC16Cmp(LHS, RHS, ORIGCC, PIC16CC, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001355
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001356 return DAG.getNode (PIC16ISD::SELECT_ICC, dl, TrueVal.getValueType(), TrueVal,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001357 FalseVal, PIC16CC, Cmp.getValue(1));
1358}
1359
1360MachineBasicBlock *
1361PIC16TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00001362 MachineBasicBlock *BB) const {
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001363 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1364 unsigned CC = (PIC16CC::CondCodes)MI->getOperand(3).getImm();
1365
1366 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
1367 // control-flow pattern. The incoming instruction knows the destination vreg
1368 // to set, the condition code register to branch on, the true/false values to
1369 // select between, and a branch opcode to use.
1370 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1371 MachineFunction::iterator It = BB;
1372 ++It;
1373
1374 // thisMBB:
1375 // ...
1376 // TrueVal = ...
1377 // [f]bCC copy1MBB
1378 // fallthrough --> copy0MBB
1379 MachineBasicBlock *thisMBB = BB;
1380 MachineFunction *F = BB->getParent();
1381 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1382 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
1383 BuildMI(BB, TII.get(PIC16::pic16brcond)).addMBB(sinkMBB).addImm(CC);
1384 F->insert(It, copy0MBB);
1385 F->insert(It, sinkMBB);
1386
1387 // Update machine-CFG edges by transferring all successors of the current
1388 // block to the new block which will contain the Phi node for the select.
1389 sinkMBB->transferSuccessors(BB);
1390 // Next, add the true and fallthrough blocks as its successors.
1391 BB->addSuccessor(copy0MBB);
1392 BB->addSuccessor(sinkMBB);
1393
1394 // copy0MBB:
1395 // %FalseValue = ...
1396 // # fallthrough to sinkMBB
1397 BB = copy0MBB;
1398
1399 // Update machine-CFG edges
1400 BB->addSuccessor(sinkMBB);
1401
1402 // sinkMBB:
1403 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1404 // ...
1405 BB = sinkMBB;
1406 BuildMI(BB, TII.get(PIC16::PHI), MI->getOperand(0).getReg())
1407 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1408 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1409
1410 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
1411 return BB;
1412}
1413
1414
1415SDValue PIC16TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
1416 SDValue Chain = Op.getOperand(0);
1417 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1418 SDValue LHS = Op.getOperand(2); // LHS of the condition.
1419 SDValue RHS = Op.getOperand(3); // RHS of the condition.
1420 SDValue Dest = Op.getOperand(4); // BB to jump to
1421 unsigned ORIGCC = ~0;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001422 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001423
1424 // If this is a br_cc of a "setcc", and if the setcc got lowered into
1425 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
1426 LookThroughSetCC(LHS, RHS, CC, ORIGCC);
1427 if (ORIGCC == ~0U) ORIGCC = IntCCToPIC16CC (CC);
1428
1429 // Get the Compare insn and condition code.
1430 SDValue PIC16CC;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001431 SDValue Cmp = getPIC16Cmp(LHS, RHS, ORIGCC, PIC16CC, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001432
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001433 return DAG.getNode(PIC16ISD::BRCOND, dl, MVT::Other, Chain, Dest, PIC16CC,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001434 Cmp.getValue(1));
1435}
1436
1437