blob: 473e9d745d4d691d25cc35c53e4b8598acb0b596 [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)
Sanjiv Guptacae1b622009-04-06 10:54:50 +000034 : TargetLowering(TM), TmpSize(0) {
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
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +0000140 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Custom);
141
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000142 // Now deduce the information based on the above mentioned
143 // actions
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000144 computeRegisterProperties();
145}
146
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000147// getOutFlag - Extract the flag result if the Op has it.
148static SDValue getOutFlag(SDValue &Op) {
149 // Flag is the last value of the node.
150 SDValue Flag = Op.getValue(Op.getNode()->getNumValues() - 1);
151
152 assert (Flag.getValueType() == MVT::Flag
153 && "Node does not have an out Flag");
154
155 return Flag;
156}
Sanjiv Guptacae1b622009-04-06 10:54:50 +0000157// Get the TmpOffset for FrameIndex
158unsigned PIC16TargetLowering::GetTmpOffsetForFI(unsigned FI) {
159 std::map<unsigned, unsigned>::iterator
160 MapIt = FiTmpOffsetMap.find(FI);
161 if (MapIt != FiTmpOffsetMap.end())
162 return MapIt->second;
163
164 // This FI (FrameIndex) is not yet mapped, so map it
165 FiTmpOffsetMap[FI] = TmpSize;
166 return TmpSize++;
167}
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000168
169// To extract chain value from the SDValue Nodes
170// This function will help to maintain the chain extracting
171// code at one place. In case of any change in future it will
172// help maintain the code.
173static SDValue getChain(SDValue &Op) {
174 SDValue Chain = Op.getValue(Op.getNode()->getNumValues() - 1);
175
176 // If the last value returned in Flag then the chain is
177 // second last value returned.
178 if (Chain.getValueType() == MVT::Flag)
179 Chain = Op.getValue(Op.getNode()->getNumValues() - 2);
180
181 // All nodes may not produce a chain. Therefore following assert
182 // verifies that the node is returning a chain only.
183 assert (Chain.getValueType() == MVT::Other
184 && "Node does not have a chain");
185
186 return Chain;
187}
188
189/// PopulateResults - Helper function to LowerOperation.
190/// If a node wants to return multiple results after lowering,
191/// it stuffs them into an array of SDValue called Results.
192
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000193static void PopulateResults(SDValue N, SmallVectorImpl<SDValue>&Results) {
194 if (N.getOpcode() == ISD::MERGE_VALUES) {
195 int NumResults = N.getNumOperands();
196 for( int i = 0; i < NumResults; i++)
197 Results.push_back(N.getOperand(i));
198 }
199 else
200 Results.push_back(N);
201}
202
203MVT PIC16TargetLowering::getSetCCResultType(MVT ValType) const {
204 return MVT::i8;
205}
206
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000207/// The type legalizer framework of generating legalizer can generate libcalls
208/// only when the operand/result types are illegal.
209/// PIC16 needs to generate libcalls even for the legal types (i8) for some ops.
210/// For example an arithmetic right shift. These functions are used to lower
211/// such operations that generate libcall for legal types.
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000212
213void
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000214PIC16TargetLowering::setPIC16LibcallName(PIC16ISD::PIC16Libcall Call,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000215 const char *Name) {
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000216 PIC16LibcallNames[Call] = Name;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000217}
218
219const char *
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000220PIC16TargetLowering::getPIC16LibcallName(PIC16ISD::PIC16Libcall Call) {
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000221 return PIC16LibcallNames[Call];
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000222}
223
224SDValue
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000225PIC16TargetLowering::MakePIC16Libcall(PIC16ISD::PIC16Libcall Call,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000226 MVT RetVT, const SDValue *Ops,
227 unsigned NumOps, bool isSigned,
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000228 SelectionDAG &DAG, DebugLoc dl) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000229
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000230 TargetLowering::ArgListTy Args;
231 Args.reserve(NumOps);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000232
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000233 TargetLowering::ArgListEntry Entry;
234 for (unsigned i = 0; i != NumOps; ++i) {
235 Entry.Node = Ops[i];
236 Entry.Ty = Entry.Node.getValueType().getTypeForMVT();
237 Entry.isSExt = isSigned;
238 Entry.isZExt = !isSigned;
239 Args.push_back(Entry);
240 }
241 SDValue Callee = DAG.getExternalSymbol(getPIC16LibcallName(Call), MVT::i8);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000242
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000243 const Type *RetTy = RetVT.getTypeForMVT();
244 std::pair<SDValue,SDValue> CallInfo =
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000245 LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
Sanjiv Guptae9d81f02009-03-20 14:10:20 +0000246 false, CallingConv::C, false, Callee, Args, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000247
248 return CallInfo.first;
249}
250
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000251const char *PIC16TargetLowering::getTargetNodeName(unsigned Opcode) const {
252 switch (Opcode) {
253 default: return NULL;
254 case PIC16ISD::Lo: return "PIC16ISD::Lo";
255 case PIC16ISD::Hi: return "PIC16ISD::Hi";
256 case PIC16ISD::MTLO: return "PIC16ISD::MTLO";
257 case PIC16ISD::MTHI: return "PIC16ISD::MTHI";
258 case PIC16ISD::Banksel: return "PIC16ISD::Banksel";
259 case PIC16ISD::PIC16Load: return "PIC16ISD::PIC16Load";
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000260 case PIC16ISD::PIC16LdArg: return "PIC16ISD::PIC16LdArg";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000261 case PIC16ISD::PIC16LdWF: return "PIC16ISD::PIC16LdWF";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000262 case PIC16ISD::PIC16Store: return "PIC16ISD::PIC16Store";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000263 case PIC16ISD::PIC16StWF: return "PIC16ISD::PIC16StWF";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000264 case PIC16ISD::BCF: return "PIC16ISD::BCF";
265 case PIC16ISD::LSLF: return "PIC16ISD::LSLF";
266 case PIC16ISD::LRLF: return "PIC16ISD::LRLF";
267 case PIC16ISD::RLF: return "PIC16ISD::RLF";
268 case PIC16ISD::RRF: return "PIC16ISD::RRF";
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000269 case PIC16ISD::CALL: return "PIC16ISD::CALL";
270 case PIC16ISD::SUBCC: return "PIC16ISD::SUBCC";
271 case PIC16ISD::SELECT_ICC: return "PIC16ISD::SELECT_ICC";
272 case PIC16ISD::BRCOND: return "PIC16ISD::BRCOND";
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000273 case PIC16ISD::Dummy: return "PIC16ISD::Dummy";
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +0000274 case PIC16ISD::PIC16StopPoint: return "PIC16ISD::PIC16StopPoint";
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000275 }
276}
277
Duncan Sands1607f052008-12-01 11:39:25 +0000278void PIC16TargetLowering::ReplaceNodeResults(SDNode *N,
279 SmallVectorImpl<SDValue>&Results,
280 SelectionDAG &DAG) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000281
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000282 switch (N->getOpcode()) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000283 case ISD::GlobalAddress:
Duncan Sands1607f052008-12-01 11:39:25 +0000284 Results.push_back(ExpandGlobalAddress(N, DAG));
285 return;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000286 case ISD::ExternalSymbol:
287 Results.push_back(ExpandExternalSymbol(N, DAG));
288 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000289 case ISD::STORE:
Duncan Sands1607f052008-12-01 11:39:25 +0000290 Results.push_back(ExpandStore(N, DAG));
291 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000292 case ISD::LOAD:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000293 PopulateResults(ExpandLoad(N, DAG), Results);
Duncan Sands1607f052008-12-01 11:39:25 +0000294 return;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000295 case ISD::ADD:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000296 // Results.push_back(ExpandAdd(N, DAG));
Duncan Sands1607f052008-12-01 11:39:25 +0000297 return;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000298 case ISD::FrameIndex:
299 Results.push_back(ExpandFrameIndex(N, DAG));
300 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000301 default:
302 assert (0 && "not implemented");
Duncan Sands1607f052008-12-01 11:39:25 +0000303 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000304 }
305}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000306
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000307SDValue PIC16TargetLowering::ExpandFrameIndex(SDNode *N, SelectionDAG &DAG) {
308
309 // Currently handling FrameIndex of size MVT::i16 only
310 // One example of this scenario is when return value is written on
311 // FrameIndex#0
312
313 if (N->getValueType(0) != MVT::i16)
314 return SDValue();
315
316 // Expand the FrameIndex into ExternalSymbol and a Constant node
317 // The constant will represent the frame index number
318 // Get the current function frame
319 MachineFunction &MF = DAG.getMachineFunction();
320 const Function *Func = MF.getFunction();
321 const std::string Name = Func->getName();
Dale Johannesende064702009-02-06 21:50:26 +0000322
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000323 FrameIndexSDNode *FR = dyn_cast<FrameIndexSDNode>(SDValue(N,0));
Dale Johannesende064702009-02-06 21:50:26 +0000324 // FIXME there isn't really debug info here
325 DebugLoc dl = FR->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000326 int Index = FR->getIndex();
327
328 SDValue FI[2];
329 FI[0] = DAG.getTargetFrameIndex(Index, MVT::i8);
330 FI[1] = DAG.getTargetFrameIndex(Index + 1, MVT::i8);
Dale Johannesende064702009-02-06 21:50:26 +0000331 return DAG.getNode(ISD::BUILD_PAIR, dl, N->getValueType(0), FI[0], FI[1]);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000332}
333
334
335SDValue PIC16TargetLowering::ExpandStore(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000336 StoreSDNode *St = cast<StoreSDNode>(N);
337 SDValue Chain = St->getChain();
338 SDValue Src = St->getValue();
339 SDValue Ptr = St->getBasePtr();
340 MVT ValueType = Src.getValueType();
341 unsigned StoreOffset = 0;
Dale Johannesende064702009-02-06 21:50:26 +0000342 DebugLoc dl = N->getDebugLoc();
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000343
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000344 SDValue PtrLo, PtrHi;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000345 LegalizeAddress(Ptr, DAG, PtrLo, PtrHi, StoreOffset, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000346
347 if (ValueType == MVT::i8) {
Dale Johannesende064702009-02-06 21:50:26 +0000348 return DAG.getNode (PIC16ISD::PIC16Store, dl, MVT::Other, Chain, Src,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000349 PtrLo, PtrHi,
350 DAG.getConstant (0 + StoreOffset, MVT::i8));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000351 }
352 else if (ValueType == MVT::i16) {
353 // Get the Lo and Hi parts from MERGE_VALUE or BUILD_PAIR.
354 SDValue SrcLo, SrcHi;
355 GetExpandedParts(Src, DAG, SrcLo, SrcHi);
356 SDValue ChainLo = Chain, ChainHi = Chain;
357 if (Chain.getOpcode() == ISD::TokenFactor) {
358 ChainLo = Chain.getOperand(0);
359 ChainHi = Chain.getOperand(1);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000360 }
Dale Johannesende064702009-02-06 21:50:26 +0000361 SDValue Store1 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000362 ChainLo,
363 SrcLo, PtrLo, PtrHi,
364 DAG.getConstant (0 + StoreOffset, MVT::i8));
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000365
Dale Johannesende064702009-02-06 21:50:26 +0000366 SDValue Store2 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000367 SrcHi, PtrLo, PtrHi,
368 DAG.getConstant (1 + StoreOffset, MVT::i8));
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000369
Dale Johannesende064702009-02-06 21:50:26 +0000370 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, getChain(Store1),
Duncan Sands1607f052008-12-01 11:39:25 +0000371 getChain(Store2));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000372 }
373 else if (ValueType == MVT::i32) {
374 // Get the Lo and Hi parts from MERGE_VALUE or BUILD_PAIR.
375 SDValue SrcLo, SrcHi;
376 GetExpandedParts(Src, DAG, SrcLo, SrcHi);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000377
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000378 // Get the expanded parts of each of SrcLo and SrcHi.
379 SDValue SrcLo1, SrcLo2, SrcHi1, SrcHi2;
380 GetExpandedParts(SrcLo, DAG, SrcLo1, SrcLo2);
381 GetExpandedParts(SrcHi, DAG, SrcHi1, SrcHi2);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000382
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000383 SDValue ChainLo = Chain, ChainHi = Chain;
384 if (Chain.getOpcode() == ISD::TokenFactor) {
385 ChainLo = Chain.getOperand(0);
386 ChainHi = Chain.getOperand(1);
387 }
388 SDValue ChainLo1 = ChainLo, ChainLo2 = ChainLo, ChainHi1 = ChainHi,
389 ChainHi2 = ChainHi;
390 if (ChainLo.getOpcode() == ISD::TokenFactor) {
391 ChainLo1 = ChainLo.getOperand(0);
392 ChainLo2 = ChainLo.getOperand(1);
393 }
394 if (ChainHi.getOpcode() == ISD::TokenFactor) {
395 ChainHi1 = ChainHi.getOperand(0);
396 ChainHi2 = ChainHi.getOperand(1);
397 }
Dale Johannesende064702009-02-06 21:50:26 +0000398 SDValue Store1 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000399 ChainLo1,
400 SrcLo1, PtrLo, PtrHi,
401 DAG.getConstant (0 + StoreOffset, MVT::i8));
402
Dale Johannesende064702009-02-06 21:50:26 +0000403 SDValue Store2 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainLo2,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000404 SrcLo2, PtrLo, PtrHi,
405 DAG.getConstant (1 + StoreOffset, MVT::i8));
406
Dale Johannesende064702009-02-06 21:50:26 +0000407 SDValue Store3 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi1,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000408 SrcHi1, PtrLo, PtrHi,
409 DAG.getConstant (2 + StoreOffset, MVT::i8));
410
Dale Johannesende064702009-02-06 21:50:26 +0000411 SDValue Store4 = DAG.getNode(PIC16ISD::PIC16Store, dl, MVT::Other, ChainHi2,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000412 SrcHi2, PtrLo, PtrHi,
413 DAG.getConstant (3 + StoreOffset, MVT::i8));
414
Dale Johannesende064702009-02-06 21:50:26 +0000415 SDValue RetLo = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
416 getChain(Store1), getChain(Store2));
417 SDValue RetHi = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
418 getChain(Store3), getChain(Store4));
419 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, RetLo, RetHi);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000420
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000421 }
422 else {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000423 assert (0 && "value type not supported");
Duncan Sands1607f052008-12-01 11:39:25 +0000424 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000425 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000426}
427
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000428SDValue PIC16TargetLowering::ExpandExternalSymbol(SDNode *N, SelectionDAG &DAG)
429{
430 ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(SDValue(N, 0));
Dale Johannesende064702009-02-06 21:50:26 +0000431 // FIXME there isn't really debug info here
432 DebugLoc dl = ES->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000433
434 SDValue TES = DAG.getTargetExternalSymbol(ES->getSymbol(), MVT::i8);
435
Dale Johannesende064702009-02-06 21:50:26 +0000436 SDValue Lo = DAG.getNode(PIC16ISD::Lo, dl, MVT::i8, TES);
437 SDValue Hi = DAG.getNode(PIC16ISD::Hi, dl, MVT::i8, TES);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000438
Dale Johannesende064702009-02-06 21:50:26 +0000439 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16, Lo, Hi);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000440}
441
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000442// ExpandGlobalAddress -
Duncan Sands1607f052008-12-01 11:39:25 +0000443SDValue PIC16TargetLowering::ExpandGlobalAddress(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000444 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(SDValue(N, 0));
Dale Johannesende064702009-02-06 21:50:26 +0000445 // FIXME there isn't really debug info here
446 DebugLoc dl = G->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000447
448 SDValue TGA = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i8,
449 G->getOffset());
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000450
Dale Johannesende064702009-02-06 21:50:26 +0000451 SDValue Lo = DAG.getNode(PIC16ISD::Lo, dl, MVT::i8, TGA);
452 SDValue Hi = DAG.getNode(PIC16ISD::Hi, dl, MVT::i8, TGA);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000453
Dale Johannesende064702009-02-06 21:50:26 +0000454 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16, Lo, Hi);
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000455}
456
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000457bool PIC16TargetLowering::isDirectAddress(const SDValue &Op) {
458 assert (Op.getNode() != NULL && "Can't operate on NULL SDNode!!");
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000459
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000460 if (Op.getOpcode() == ISD::BUILD_PAIR) {
461 if (Op.getOperand(0).getOpcode() == PIC16ISD::Lo)
462 return true;
463 }
464 return false;
465}
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000466
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000467// Return true if DirectAddress is in ROM_SPACE
468bool PIC16TargetLowering::isRomAddress(const SDValue &Op) {
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000469
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000470 // RomAddress is a GlobalAddress in ROM_SPACE_
471 // If the Op is not a GlobalAddress return NULL without checking
472 // anything further.
473 if (!isDirectAddress(Op))
474 return false;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000475
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000476 // Its a GlobalAddress.
477 // It is BUILD_PAIR((PIC16Lo TGA), (PIC16Hi TGA)) and Op is BUILD_PAIR
478 SDValue TGA = Op.getOperand(0).getOperand(0);
479 GlobalAddressSDNode *GSDN = dyn_cast<GlobalAddressSDNode>(TGA);
480 const Type *ValueType = GSDN->getGlobal()->getType();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000481
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000482 if (!isa<PointerType>(ValueType)) {
483 assert(0 && "TGA must be of a PointerType");
484 }
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000485
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000486 int AddrSpace = dyn_cast<PointerType>(ValueType)->getAddressSpace();
487 if (AddrSpace == PIC16ISD::ROM_SPACE)
488 return true;
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000489
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000490 // Any other address space return it false
491 return false;
492}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000493
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000494
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000495// GetExpandedParts - This function is on the similiar lines as
496// the GetExpandedInteger in type legalizer is. This returns expanded
497// parts of Op in Lo and Hi.
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000498
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000499void PIC16TargetLowering::GetExpandedParts(SDValue Op, SelectionDAG &DAG,
500 SDValue &Lo, SDValue &Hi) {
501 SDNode *N = Op.getNode();
Dale Johannesened2eee62009-02-06 01:31:28 +0000502 DebugLoc dl = N->getDebugLoc();
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000503 MVT NewVT = getTypeToTransformTo(N->getValueType(0));
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000504
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000505 // Extract the lo component.
506 Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, NewVT, Op,
507 DAG.getConstant(0, MVT::i8));
508
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000509 // extract the hi component
Sanjiv Gupta6b830e62009-03-20 13:42:20 +0000510 Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, NewVT, Op,
511 DAG.getConstant(1, MVT::i8));
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000512}
513
514// Legalize FrameIndex into ExternalSymbol and offset.
515void
516PIC16TargetLowering::LegalizeFrameIndex(SDValue Op, SelectionDAG &DAG,
517 SDValue &ES, int &Offset) {
518
519 MachineFunction &MF = DAG.getMachineFunction();
520 const Function *Func = MF.getFunction();
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000521 MachineFrameInfo *MFI = MF.getFrameInfo();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000522 const std::string Name = Func->getName();
523
524 char *tmpName = new char [strlen(Name.c_str()) + 8];
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000525 sprintf(tmpName, "%s.frame", Name.c_str());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000526 ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
527 FrameIndexSDNode *FR = dyn_cast<FrameIndexSDNode>(Op);
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000528
529 // FrameIndices are not stack offsets. But they represent the request
530 // for space on stack. That space requested may be more than one byte.
531 // Therefore, to calculate the stack offset that a FrameIndex aligns
532 // with, we need to traverse all the FrameIndices available earlier in
533 // the list and add their requested size.
534 unsigned FIndex = FR->getIndex();
535 Offset = 0;
536 for (unsigned i=0; i<FIndex ; ++i) {
537 Offset += MFI->getObjectSize(i);
538 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000539
540 return;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000541}
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000542
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000543// This function legalizes the PIC16 Addresses. If the Pointer is
544// -- Direct address variable residing
545// --> then a Banksel for that variable will be created.
546// -- Rom variable
547// --> then it will be treated as an indirect address.
548// -- Indirect address
549// --> then the address will be loaded into FSR
550// -- ADD with constant operand
551// --> then constant operand of ADD will be returned as Offset
552// and non-constant operand of ADD will be treated as pointer.
553// Returns the high and lo part of the address, and the offset(in case of ADD).
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000554
Sanjiv Guptacae1b622009-04-06 10:54:50 +0000555void PIC16TargetLowering::LegalizeAddress(SDValue Ptr, SelectionDAG &DAG,
556 SDValue &Lo, SDValue &Hi,
557 unsigned &Offset, DebugLoc dl) {
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000558
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000559 // Offset, by default, should be 0
560 Offset = 0;
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +0000561
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000562 // If the pointer is ADD with constant,
563 // return the constant value as the offset
564 if (Ptr.getOpcode() == ISD::ADD) {
565 SDValue OperLeft = Ptr.getOperand(0);
566 SDValue OperRight = Ptr.getOperand(1);
567 if (OperLeft.getOpcode() == ISD::Constant) {
568 Offset = dyn_cast<ConstantSDNode>(OperLeft)->getZExtValue();
569 Ptr = OperRight;
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000570 } else if (OperRight.getOpcode() == ISD::Constant) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000571 Offset = dyn_cast<ConstantSDNode>(OperRight)->getZExtValue();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000572 Ptr = OperLeft;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000573 }
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000574 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000575
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000576 // If the pointer is Type i8 and an external symbol
577 // then treat it as direct address.
578 // One example for such case is storing and loading
579 // from function frame during a call
580 if (Ptr.getValueType() == MVT::i8) {
581 switch (Ptr.getOpcode()) {
582 case ISD::TargetExternalSymbol:
583 Lo = Ptr;
584 Hi = DAG.getConstant(1, MVT::i8);
585 return;
586 }
587 }
588
589 if (Ptr.getOpcode() == ISD::BUILD_PAIR &&
590 Ptr.getOperand(0).getOpcode() == ISD::TargetFrameIndex) {
591
592 int FrameOffset;
593 LegalizeFrameIndex(Ptr.getOperand(0), DAG, Lo, FrameOffset);
594 Hi = DAG.getConstant(1, MVT::i8);
595 Offset += FrameOffset;
596 return;
597 }
598
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000599 if (isDirectAddress(Ptr) && !isRomAddress(Ptr)) {
600 // Direct addressing case for RAM variables. The Hi part is constant
601 // and the Lo part is the TGA itself.
602 Lo = Ptr.getOperand(0).getOperand(0);
603
604 // For direct addresses Hi is a constant. Value 1 for the constant
605 // signifies that banksel needs to generated for it. Value 0 for
606 // the constant signifies that banksel does not need to be generated
607 // for it. Mark it as 1 now and optimize later.
608 Hi = DAG.getConstant(1, MVT::i8);
609 return;
610 }
611
612 // Indirect addresses. Get the hi and lo parts of ptr.
613 GetExpandedParts(Ptr, DAG, Lo, Hi);
614
615 // Put the hi and lo parts into FSR.
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000616 Lo = DAG.getNode(PIC16ISD::MTLO, dl, MVT::i8, Lo);
617 Hi = DAG.getNode(PIC16ISD::MTHI, dl, MVT::i8, Hi);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000618
619 return;
620}
621
Duncan Sands1607f052008-12-01 11:39:25 +0000622SDValue PIC16TargetLowering::ExpandLoad(SDNode *N, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000623 LoadSDNode *LD = dyn_cast<LoadSDNode>(SDValue(N, 0));
624 SDValue Chain = LD->getChain();
625 SDValue Ptr = LD->getBasePtr();
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000626 DebugLoc dl = LD->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000627
628 SDValue Load, Offset;
629 SDVTList Tys;
630 MVT VT, NewVT;
631 SDValue PtrLo, PtrHi;
632 unsigned LoadOffset;
633
634 // Legalize direct/indirect addresses. This will give the lo and hi parts
635 // of the address and the offset.
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000636 LegalizeAddress(Ptr, DAG, PtrLo, PtrHi, LoadOffset, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000637
638 // Load from the pointer (direct address or FSR)
639 VT = N->getValueType(0);
640 unsigned NumLoads = VT.getSizeInBits() / 8;
641 std::vector<SDValue> PICLoads;
642 unsigned iter;
643 MVT MemVT = LD->getMemoryVT();
644 if(ISD::isNON_EXTLoad(N)) {
645 for (iter=0; iter<NumLoads ; ++iter) {
646 // Add the pointer offset if any
647 Offset = DAG.getConstant(iter + LoadOffset, MVT::i8);
648 Tys = DAG.getVTList(MVT::i8, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000649 Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Chain, PtrLo, PtrHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000650 Offset);
651 PICLoads.push_back(Load);
652 }
653 } else {
654 // If it is extended load then use PIC16Load for Memory Bytes
655 // and for all extended bytes perform action based on type of
656 // extention - i.e. SignExtendedLoad or ZeroExtendedLoad
657
658
659 // For extended loads this is the memory value type
660 // i.e. without any extension
661 MVT MemVT = LD->getMemoryVT();
662 unsigned MemBytes = MemVT.getSizeInBits() / 8;
663 unsigned ExtdBytes = VT.getSizeInBits() / 8;
664 Offset = DAG.getConstant(LoadOffset, MVT::i8);
665
666 Tys = DAG.getVTList(MVT::i8, MVT::Other);
667 // For MemBytes generate PIC16Load with proper offset
668 for (iter=0; iter<MemBytes; ++iter) {
669 // Add the pointer offset if any
670 Offset = DAG.getConstant(iter + LoadOffset, MVT::i8);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000671 Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Chain, PtrLo, PtrHi,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000672 Offset);
673 PICLoads.push_back(Load);
674 }
675
676 // For SignExtendedLoad
677 if (ISD::isSEXTLoad(N)) {
678 // For all ExtdBytes use the Right Shifted(Arithmetic) Value of the
679 // highest MemByte
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000680 SDValue SRA = DAG.getNode(ISD::SRA, dl, MVT::i8, Load,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000681 DAG.getConstant(7, MVT::i8));
682 for (iter=MemBytes; iter<ExtdBytes; ++iter) {
683 PICLoads.push_back(SRA);
684 }
685 } else if (ISD::isZEXTLoad(N)) {
686 // ZeroExtendedLoad -- For all ExtdBytes use constant 0
687 SDValue ConstZero = DAG.getConstant(0, MVT::i8);
688 for (iter=MemBytes; iter<ExtdBytes; ++iter) {
689 PICLoads.push_back(ConstZero);
690 }
691 }
692 }
693 SDValue BP;
694
695 if (VT == MVT::i8) {
696 // Operand of Load is illegal -- Load itself is legal
Duncan Sands1607f052008-12-01 11:39:25 +0000697 return PICLoads[0];
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000698 }
699 else if (VT == MVT::i16) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000700 BP = DAG.getNode(ISD::BUILD_PAIR, dl, VT, PICLoads[0], PICLoads[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000701 if (MemVT == MVT::i8)
702 Chain = getChain(PICLoads[0]);
703 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000704 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
705 getChain(PICLoads[0]), getChain(PICLoads[1]));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000706 } else if (VT == MVT::i32) {
707 SDValue BPs[2];
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000708 BPs[0] = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16,
709 PICLoads[0], PICLoads[1]);
710 BPs[1] = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i16,
711 PICLoads[2], PICLoads[3]);
712 BP = DAG.getNode(ISD::BUILD_PAIR, dl, VT, BPs[0], BPs[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000713 if (MemVT == MVT::i8)
714 Chain = getChain(PICLoads[0]);
715 else if (MemVT == MVT::i16)
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000716 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
717 getChain(PICLoads[0]), getChain(PICLoads[1]));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000718 else {
719 SDValue Chains[2];
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000720 Chains[0] = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000721 getChain(PICLoads[0]), getChain(PICLoads[1]));
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000722 Chains[1] = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000723 getChain(PICLoads[2]), getChain(PICLoads[3]));
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000724 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
725 Chains[0], Chains[1]);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000726 }
727 }
728 Tys = DAG.getVTList(VT, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000729 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, BP, Chain);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000730}
731
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000732SDValue PIC16TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
733 // We should have handled larger operands in type legalizer itself.
734 assert (Op.getValueType() == MVT::i8 && "illegal shift to lower");
735
736 SDNode *N = Op.getNode();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000737 SDValue Value = N->getOperand(0);
738 SDValue Amt = N->getOperand(1);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000739 PIC16ISD::PIC16Libcall CallCode;
740 switch (N->getOpcode()) {
741 case ISD::SRA:
742 CallCode = PIC16ISD::SRA_I8;
743 break;
744 case ISD::SHL:
745 CallCode = PIC16ISD::SLL_I8;
746 break;
747 case ISD::SRL:
748 CallCode = PIC16ISD::SRL_I8;
749 break;
750 default:
751 assert ( 0 && "This shift is not implemented yet.");
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000752 return SDValue();
753 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000754 SmallVector<SDValue, 2> Ops(2);
755 Ops[0] = Value;
756 Ops[1] = Amt;
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000757 SDValue Call = MakePIC16Libcall(CallCode, N->getValueType(0), &Ops[0], 2,
758 true, DAG, N->getDebugLoc());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000759 return Call;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000760}
761
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000762void
763PIC16TargetLowering::LowerOperationWrapper(SDNode *N,
764 SmallVectorImpl<SDValue>&Results,
765 SelectionDAG &DAG) {
766 SDValue Op = SDValue(N, 0);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000767 SDValue Res;
768 unsigned i;
769 switch (Op.getOpcode()) {
770 case ISD::FORMAL_ARGUMENTS:
771 Res = LowerFORMAL_ARGUMENTS(Op, DAG); break;
772 case ISD::LOAD:
773 Res = ExpandLoad(Op.getNode(), DAG); break;
774 case ISD::CALL:
775 Res = LowerCALL(Op, DAG); break;
776 default: {
777 // All other operations are handled in LowerOperation.
778 Res = LowerOperation(Op, DAG);
779 if (Res.getNode())
780 Results.push_back(Res);
781
782 return;
783 }
784 }
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000785
786 N = Res.getNode();
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000787 unsigned NumValues = N->getNumValues();
Duncan Sands9fbc7e22009-01-21 09:00:29 +0000788 for (i = 0; i < NumValues ; i++) {
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000789 Results.push_back(SDValue(N, i));
790 }
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000791}
792
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000793SDValue PIC16TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
794 switch (Op.getOpcode()) {
795 case ISD::FORMAL_ARGUMENTS:
796 return LowerFORMAL_ARGUMENTS(Op, DAG);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000797 case ISD::ADD:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000798 case ISD::ADDC:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000799 case ISD::ADDE:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000800 return LowerADD(Op, DAG);
801 case ISD::SUB:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000802 case ISD::SUBC:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000803 case ISD::SUBE:
804 return LowerSUB(Op, DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000805 case ISD::LOAD:
Duncan Sands1607f052008-12-01 11:39:25 +0000806 return ExpandLoad(Op.getNode(), DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000807 case ISD::STORE:
Duncan Sands1607f052008-12-01 11:39:25 +0000808 return ExpandStore(Op.getNode(), DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000809 case ISD::SHL:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000810 case ISD::SRA:
811 case ISD::SRL:
Sanjiv Gupta08b9b052009-01-21 05:44:05 +0000812 return LowerShift(Op, DAG);
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +0000813 case ISD::OR:
814 case ISD::AND:
815 case ISD::XOR:
816 return LowerBinOp(Op, DAG);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000817 case ISD::CALL:
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000818 return LowerCALL(Op, DAG);
819 case ISD::RET:
820 return LowerRET(Op, DAG);
821 case ISD::BR_CC:
822 return LowerBR_CC(Op, DAG);
823 case ISD::SELECT_CC:
824 return LowerSELECT_CC(Op, DAG);
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +0000825 case ISD::DBG_STOPPOINT:
826 return LowerStopPoint(Op, DAG);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000827 }
Dan Gohman475871a2008-07-27 21:46:04 +0000828 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000829}
830
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +0000831SDValue PIC16TargetLowering::LowerStopPoint(SDValue Op, SelectionDAG &DAG) {
832 DbgStopPointSDNode *SP = dyn_cast<DbgStopPointSDNode>(Op);
833 unsigned line = SP->getLine();
834 SDValue LineNode = DAG.getConstant(line, MVT::i8);
835 DebugLoc dl = Op.getDebugLoc();
836 return DAG.getNode(PIC16ISD::PIC16StopPoint, dl, MVT::Other,
837 Op.getOperand(0), LineNode);
838}
839
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000840SDValue PIC16TargetLowering::ConvertToMemOperand(SDValue Op,
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000841 SelectionDAG &DAG,
842 DebugLoc dl) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000843 assert (Op.getValueType() == MVT::i8
844 && "illegal value type to store on stack.");
845
846 MachineFunction &MF = DAG.getMachineFunction();
847 const Function *Func = MF.getFunction();
848 const std::string FuncName = Func->getName();
849
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000850 char *tmpName = new char [strlen(FuncName.c_str()) + 8];
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000851
852 // Put the value on stack.
853 // Get a stack slot index and convert to es.
854 int FI = MF.getFrameInfo()->CreateStackObject(1, 1);
855 sprintf(tmpName, "%s.tmp", FuncName.c_str());
856 SDValue ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
857
858 // Store the value to ES.
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000859 SDValue Store = DAG.getNode (PIC16ISD::PIC16Store, dl, MVT::Other,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000860 DAG.getEntryNode(),
861 Op, ES,
862 DAG.getConstant (1, MVT::i8), // Banksel.
Sanjiv Guptacae1b622009-04-06 10:54:50 +0000863 DAG.getConstant (GetTmpOffsetForFI(FI),
864 MVT::i8));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000865
866 // Load the value from ES.
867 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Other);
Dale Johannesen2fabcb22009-02-05 01:01:16 +0000868 SDValue Load = DAG.getNode(PIC16ISD::PIC16Load, dl, Tys, Store,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000869 ES, DAG.getConstant (1, MVT::i8),
Sanjiv Guptacae1b622009-04-06 10:54:50 +0000870 DAG.getConstant (GetTmpOffsetForFI(FI),
871 MVT::i8));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000872
873 return Load.getValue(0);
874}
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000875
876SDValue
877PIC16TargetLowering::LowerCallArguments(SDValue Op, SDValue Chain,
878 SDValue FrameAddress,
879 SDValue InFlag,
880 SelectionDAG &DAG) {
881 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
882 unsigned NumOps = TheCall->getNumArgs();
Dale Johannesene8d72302009-02-06 23:05:02 +0000883 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000884 std::string Name;
885 SDValue Arg, StoreAt;
886 MVT ArgVT;
887 unsigned Size=0;
888 unsigned ArgCount=0;
889
890
891 // FIXME: This portion of code currently assumes only
892 // primitive types being passed as arguments.
893
894 // Legalize the address before use
895 SDValue PtrLo, PtrHi;
896 unsigned AddressOffset;
897 int StoreOffset = 0;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000898 LegalizeAddress(FrameAddress, DAG, PtrLo, PtrHi, AddressOffset, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000899 SDValue StoreRet;
900
901 std::vector<SDValue> Ops;
902 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
903 for (unsigned i=ArgCount, Offset = 0; i<NumOps; i++) {
904 // Get the argument
905 Arg = TheCall->getArg(i);
906
907 StoreOffset = (Offset + AddressOffset);
908
909 // Store the argument on frame
910
911 Ops.clear();
912 Ops.push_back(Chain);
913 Ops.push_back(Arg.getValue(0));
914 Ops.push_back(PtrLo);
915 Ops.push_back(PtrHi);
916 Ops.push_back(DAG.getConstant(StoreOffset, MVT::i8));
917 Ops.push_back(InFlag);
918
Dale Johannesene8d72302009-02-06 23:05:02 +0000919 StoreRet = DAG.getNode (PIC16ISD::PIC16StWF, dl, Tys, &Ops[0], Ops.size());
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000920
921 Chain = getChain(StoreRet);
922 InFlag = getOutFlag(StoreRet);
923
924 // Update the frame offset to be used for next argument
925 ArgVT = Arg.getValueType();
926 Size = ArgVT.getSizeInBits();
927 Size = Size/8; // Calculate size in bytes
928 Offset += Size; // Increase the frame offset
929 }
930 return Chain;
931}
932
933SDValue
934PIC16TargetLowering::LowerCallReturn(SDValue Op, SDValue Chain,
935 SDValue FrameAddress,
936 SDValue InFlag,
937 SelectionDAG &DAG) {
938 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000939 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000940 // Currently handling primitive types only. They will come in
941 // i8 parts
942 unsigned RetVals = TheCall->getNumRetVals();
943
944 std::vector<SDValue> ResultVals;
945
946 // Return immediately if the return type is void
947 if (RetVals == 0)
948 return Chain;
949
950 // Call has something to return
951
952 // Legalize the address before use
953 SDValue LdLo, LdHi;
954 unsigned LdOffset;
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000955 LegalizeAddress(FrameAddress, DAG, LdLo, LdHi, LdOffset, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000956
957 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Other, MVT::Flag);
958 SDValue LoadRet;
959
960 for(unsigned i=0, Offset=0;i<RetVals;i++) {
961
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000962 LoadRet = DAG.getNode(PIC16ISD::PIC16LdWF, dl, Tys, Chain, LdLo, LdHi,
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000963 DAG.getConstant(LdOffset + Offset, MVT::i8),
964 InFlag);
965
966 InFlag = getOutFlag(LoadRet);
967
968 Chain = getChain(LoadRet);
969 Offset++;
970 ResultVals.push_back(LoadRet);
971 }
972
973 // To return use MERGE_VALUES
974 ResultVals.push_back(Chain);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000975 SDValue Res = DAG.getMergeValues(&ResultVals[0], ResultVals.size(), dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000976 return Res;
977}
978
979SDValue PIC16TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000980 SDValue Chain = Op.getOperand(0);
981 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000982
Sanjiv Guptab84d5a42009-04-02 17:42:00 +0000983 if (Op.getNumOperands() == 1) // return void
984 return Op;
985
986 // return should have odd number of operands
987 if ((Op.getNumOperands() % 2) == 0 ) {
988 assert(0 && "Do not know how to return this many arguments!");
989 abort();
990 }
991
992 // Number of values to return
993 unsigned NumRet = (Op.getNumOperands() / 2);
994
995 // Function returns value always on stack with the offset starting
996 // from 0
997 MachineFunction &MF = DAG.getMachineFunction();
998 const Function *F = MF.getFunction();
999 std::string FuncName = F->getName();
1000
1001 char *tmpName = new char [strlen(FuncName.c_str()) + 8];
1002 sprintf(tmpName, "%s.frame", FuncName.c_str());
1003 SDVTList VTs = DAG.getVTList (MVT::i8, MVT::Other);
1004 SDValue ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
1005 SDValue BS = DAG.getConstant(1, MVT::i8);
1006 SDValue RetVal;
1007 for(unsigned i=0;i<NumRet; ++i) {
1008 RetVal = Op.getNode()->getOperand(2*i + 1);
1009 Chain = DAG.getNode (PIC16ISD::PIC16Store, dl, MVT::Other, Chain, RetVal,
1010 ES, BS,
1011 DAG.getConstant (i, MVT::i8));
1012
1013 }
1014 return DAG.getNode(ISD::RET, dl, MVT::Other, Chain);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001015}
1016
1017SDValue PIC16TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
1018 CallSDNode *TheCall = dyn_cast<CallSDNode>(Op);
1019 SDValue Chain = TheCall->getChain();
1020 SDValue Callee = TheCall->getCallee();
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001021 DebugLoc dl = TheCall->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001022 unsigned i =0;
1023 if (Callee.getValueType() == MVT::i16 &&
1024 Callee.getOpcode() == ISD::BUILD_PAIR) {
1025 // It has come from TypeLegalizer for lowering
1026
1027 Callee = Callee.getOperand(0).getOperand(0);
1028
1029 std::vector<SDValue> Ops;
1030 Ops.push_back(Chain);
1031 Ops.push_back(Callee);
1032
1033 // Add the call arguments and their flags
1034 unsigned NumArgs = TheCall->getNumArgs();
1035 for(i=0;i<NumArgs;i++) {
1036 Ops.push_back(TheCall->getArg(i));
1037 Ops.push_back(TheCall->getArgFlagsVal(i));
1038 }
1039
1040 std::vector<MVT> NodeTys;
1041 unsigned NumRets = TheCall->getNumRetVals();
1042 for(i=0;i<NumRets;i++)
1043 NodeTys.push_back(TheCall->getRetValType(i));
1044
1045 // Return a Chain as well
1046 NodeTys.push_back(MVT::Other);
1047
1048 SDVTList VTs = DAG.getVTList(&NodeTys[0], NodeTys.size());
1049 SDValue NewCall =
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001050 DAG.getCall(TheCall->getCallingConv(), dl,
Dale Johannesen8ad9b432009-02-04 01:17:06 +00001051 TheCall->isVarArg(), TheCall->isTailCall(),
1052 TheCall->isInreg(), VTs, &Ops[0], Ops.size());
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001053
1054 return NewCall;
1055 }
1056
1057 SDValue ZeroOperand = DAG.getConstant(0, MVT::i8);
1058
1059 // Start the call sequence.
1060 // Carring the Constant 0 along the CALLSEQSTART
1061 // because there is nothing else to carry.
1062 SDValue SeqStart = DAG.getCALLSEQ_START(Chain, ZeroOperand);
1063 Chain = getChain(SeqStart);
1064
1065 // For any direct call - callee will be GlobalAddressNode or
1066 // ExternalSymbol
1067
1068 // Considering the GlobalAddressNode case here.
1069 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1070 GlobalValue *GV = G->getGlobal();
1071 Callee = DAG.getTargetGlobalAddress(GV, MVT::i8);
1072 }
1073
1074 // Considering the ExternalSymbol case here
1075 if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1076 Callee = DAG.getTargetExternalSymbol(ES->getSymbol(), MVT::i8);
1077 }
1078
1079 SDValue OperFlag = getOutFlag(Chain); // To manage the data dependency
1080
1081 std::string Name;
1082
1083 // Considering GlobalAddress here
1084 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1085 Name = G->getGlobal()->getName();
1086
1087 // Considering ExternalSymbol here
1088 if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Callee))
1089 Name = ES->getSymbol();
1090
1091 char *argFrame = new char [strlen(Name.c_str()) + 8];
1092 sprintf(argFrame, "%s.args", Name.c_str());
1093 SDValue ArgLabel = DAG.getTargetExternalSymbol(argFrame, MVT::i8);
1094
1095 char *retName = new char [strlen(Name.c_str()) + 8];
1096 sprintf(retName, "%s.retval", Name.c_str());
1097 SDValue RetLabel = DAG.getTargetExternalSymbol(retName, MVT::i8);
1098
1099 // Pass the argument to function before making the call.
1100 SDValue CallArgs = LowerCallArguments(Op, Chain, ArgLabel, OperFlag, DAG);
1101 Chain = getChain(CallArgs);
1102 OperFlag = getOutFlag(CallArgs);
1103
1104 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001105 SDValue PICCall = DAG.getNode(PIC16ISD::CALL, dl, Tys, Chain, Callee,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001106 OperFlag);
1107 Chain = getChain(PICCall);
1108 OperFlag = getOutFlag(PICCall);
1109
1110
1111 // Carrying the Constant 0 along the CALLSEQSTART
1112 // because there is nothing else to carry.
1113 SDValue SeqEnd = DAG.getCALLSEQ_END(Chain, ZeroOperand, ZeroOperand,
1114 OperFlag);
1115 Chain = getChain(SeqEnd);
1116 OperFlag = getOutFlag(SeqEnd);
1117
1118 // Lower the return value reading after the call.
1119 return LowerCallReturn(Op, Chain, RetLabel, OperFlag, DAG);
1120}
1121
1122bool PIC16TargetLowering::isDirectLoad(const SDValue Op) {
1123 if (Op.getOpcode() == PIC16ISD::PIC16Load)
1124 if (Op.getOperand(1).getOpcode() == ISD::TargetGlobalAddress
1125 || Op.getOperand(1).getOpcode() == ISD::TargetExternalSymbol)
1126 return true;
1127 return false;
1128}
1129
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001130// NeedToConvertToMemOp - Returns true if one of the operands of the
1131// operation 'Op' needs to be put into memory. Also returns the
1132// operand no. of the operand to be converted in 'MemOp'. Remember, PIC16 has
1133// no instruction that can operation on two registers. Most insns take
1134// one register and one memory operand (addwf) / Constant (addlw).
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001135bool PIC16TargetLowering::NeedToConvertToMemOp(SDValue Op, unsigned &MemOp) {
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001136 // If one of the operand is a constant, return false.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001137 if (Op.getOperand(0).getOpcode() == ISD::Constant ||
1138 Op.getOperand(1).getOpcode() == ISD::Constant)
1139 return false;
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001140
1141 // Return false if one of the operands is already a direct
1142 // load and that operand has only one use.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001143 if (isDirectLoad(Op.getOperand(0))) {
1144 if (Op.getOperand(0).hasOneUse())
1145 return false;
1146 else
1147 MemOp = 0;
1148 }
1149 if (isDirectLoad(Op.getOperand(1))) {
1150 if (Op.getOperand(1).hasOneUse())
1151 return false;
1152 else
1153 MemOp = 1;
1154 }
1155 return true;
1156}
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001157
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001158// LowerBinOp - Lower a commutative binary operation that does not
1159// affect status flag carry.
1160SDValue PIC16TargetLowering::LowerBinOp(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001161 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001162
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001163 // We should have handled larger operands in type legalizer itself.
1164 assert (Op.getValueType() == MVT::i8 && "illegal Op to lower");
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001165
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001166 unsigned MemOp = 1;
1167 if (NeedToConvertToMemOp(Op, MemOp)) {
1168 // Put one value on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001169 SDValue NewVal = ConvertToMemOperand (Op.getOperand(MemOp), DAG, dl);
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001170
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001171 return DAG.getNode(Op.getOpcode(), dl, MVT::i8, Op.getOperand(MemOp ^ 1),
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001172 NewVal);
1173 }
1174 else {
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001175 return Op;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001176 }
Sanjiv Gupta8f78fa82008-11-26 10:53:50 +00001177}
1178
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001179// LowerADD - Lower all types of ADD operations including the ones
1180// that affects carry.
1181SDValue PIC16TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001182 // We should have handled larger operands in type legalizer itself.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001183 assert (Op.getValueType() == MVT::i8 && "illegal add to lower");
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001184 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001185 unsigned MemOp = 1;
1186 if (NeedToConvertToMemOp(Op, MemOp)) {
1187 // Put one value on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001188 SDValue NewVal = ConvertToMemOperand (Op.getOperand(MemOp), DAG, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001189
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001190 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Flag);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001191
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001192 if (Op.getOpcode() == ISD::ADDE)
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001193 return DAG.getNode(Op.getOpcode(), dl, Tys, Op.getOperand(MemOp ^ 1),
1194 NewVal, Op.getOperand(2));
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001195 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001196 return DAG.getNode(Op.getOpcode(), dl, Tys, Op.getOperand(MemOp ^ 1),
1197 NewVal);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001198 }
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001199 else if (Op.getOpcode() == ISD::ADD) {
1200 return Op;
1201 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001202 else {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001203 return SDValue();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001204 }
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001205}
1206
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001207SDValue PIC16TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001208 DebugLoc dl = Op.getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001209 // We should have handled larger operands in type legalizer itself.
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001210 assert (Op.getValueType() == MVT::i8 && "illegal sub to lower");
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001211
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001212 // Nothing to do if the first operand is already a direct load and it has
1213 // only one use.
1214 if (isDirectLoad(Op.getOperand(0)) && Op.getOperand(0).hasOneUse())
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001215 return SDValue();
1216
1217 // Put first operand on stack.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001218 SDValue NewVal = ConvertToMemOperand (Op.getOperand(0), DAG, dl);
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001219
1220 SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Flag);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001221 if (Op.getOpcode() == ISD::SUBE)
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001222 return DAG.getNode(Op.getOpcode(), dl, Tys, NewVal, Op.getOperand(1),
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001223 Op.getOperand(2));
1224 else
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001225 return DAG.getNode(Op.getOpcode(), dl, Tys, NewVal, Op.getOperand(1));
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001226}
1227
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001228// LowerFORMAL_ARGUMENTS - Argument values are loaded from the
1229// <fname>.args + offset. All arguments are already broken to leaglized
1230// types, so the offset just runs from 0 to NumArgVals - 1.
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001231
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001232SDValue PIC16TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op,
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001233 SelectionDAG &DAG) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001234 SmallVector<SDValue, 8> ArgValues;
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001235 unsigned NumArgVals = Op.getNode()->getNumValues() - 1;
Dale Johannesene8d72302009-02-06 23:05:02 +00001236 DebugLoc dl = Op.getDebugLoc();
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001237 SDValue Chain = Op.getOperand(0); // Formal arguments' chain
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001238
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001239
1240 // Reset the map of FI and TmpOffset
1241 ResetTmpOffsetMap();
1242 // Get the callee's name to create the <fname>.args label to pass args.
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001243 MachineFunction &MF = DAG.getMachineFunction();
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001244 const Function *F = MF.getFunction();
1245 std::string FuncName = F->getName();
1246
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001247 // Create the <fname>.args external symbol.
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001248 char *tmpName = new char [strlen(FuncName.c_str()) + 6];
1249 sprintf(tmpName, "%s.args", FuncName.c_str());
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001250 SDValue ES = DAG.getTargetExternalSymbol(tmpName, MVT::i8);
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001251
1252 // Load arg values from the label + offset.
1253 SDVTList VTs = DAG.getVTList (MVT::i8, MVT::Other);
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001254 SDValue BS = DAG.getConstant(1, MVT::i8);
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001255 for (unsigned i = 0; i < NumArgVals ; ++i) {
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001256 SDValue Offset = DAG.getConstant(i, MVT::i8);
1257 SDValue PICLoad = DAG.getNode(PIC16ISD::PIC16LdArg, dl, VTs, Chain, ES, BS,
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001258 Offset);
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001259 Chain = getChain(PICLoad);
1260 ArgValues.push_back(PICLoad);
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001261 }
1262
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001263 // Return a MERGE_VALUE node.
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001264 ArgValues.push_back(Op.getOperand(0));
Dale Johannesene8d72302009-02-06 23:05:02 +00001265 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Sanjiv Guptacae1b622009-04-06 10:54:50 +00001266 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001267}
1268
Sanjiv Gupta6b830e62009-03-20 13:42:20 +00001269// Perform DAGCombine of PIC16Load.
1270// FIXME - Need a more elaborate comment here.
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001271SDValue PIC16TargetLowering::
1272PerformPIC16LoadCombine(SDNode *N, DAGCombinerInfo &DCI) const {
1273 SelectionDAG &DAG = DCI.DAG;
1274 SDValue Chain = N->getOperand(0);
1275 if (N->hasNUsesOfValue(0, 0)) {
1276 DAG.ReplaceAllUsesOfValueWith(SDValue(N,1), Chain);
1277 }
1278 return SDValue();
1279}
1280
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001281// For all the functions with arguments some STORE nodes are generated
1282// that store the argument on the frameindex. However in PIC16 the arguments
1283// are passed on stack only. Therefore these STORE nodes are redundant.
1284// To remove these STORE nodes will be removed in PerformStoreCombine
1285//
1286// Currently this function is doint nothing and will be updated for removing
1287// unwanted store operations
1288SDValue PIC16TargetLowering::
1289PerformStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const {
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001290 return SDValue(N, 0);
1291 /*
1292 // Storing an undef value is of no use, so remove it
1293 if (isStoringUndef(N, Chain, DAG)) {
1294 return Chain; // remove the store and return the chain
1295 }
1296 //else everything is ok.
1297 return SDValue(N, 0);
1298 */
1299}
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001300
1301SDValue PIC16TargetLowering::PerformDAGCombine(SDNode *N,
1302 DAGCombinerInfo &DCI) const {
1303 switch (N->getOpcode()) {
Sanjiv Guptab84d5a42009-04-02 17:42:00 +00001304 case ISD::STORE:
1305 return PerformStoreCombine(N, DCI);
1306 case PIC16ISD::PIC16Load:
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +00001307 return PerformPIC16LoadCombine(N, DCI);
1308 }
1309 return SDValue();
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001310}
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001311
1312static PIC16CC::CondCodes IntCCToPIC16CC(ISD::CondCode CC) {
1313 switch (CC) {
1314 default: assert(0 && "Unknown condition code!");
1315 case ISD::SETNE: return PIC16CC::NE;
1316 case ISD::SETEQ: return PIC16CC::EQ;
1317 case ISD::SETGT: return PIC16CC::GT;
1318 case ISD::SETGE: return PIC16CC::GE;
1319 case ISD::SETLT: return PIC16CC::LT;
1320 case ISD::SETLE: return PIC16CC::LE;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001321 case ISD::SETULT: return PIC16CC::ULT;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001322 case ISD::SETULE: return PIC16CC::LE;
1323 case ISD::SETUGE: return PIC16CC::GE;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001324 case ISD::SETUGT: return PIC16CC::UGT;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001325 }
1326}
1327
1328// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
1329// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
1330static void LookThroughSetCC(SDValue &LHS, SDValue &RHS,
1331 ISD::CondCode CC, unsigned &SPCC) {
1332 if (isa<ConstantSDNode>(RHS) &&
1333 cast<ConstantSDNode>(RHS)->getZExtValue() == 0 &&
1334 CC == ISD::SETNE &&
1335 (LHS.getOpcode() == PIC16ISD::SELECT_ICC &&
1336 LHS.getOperand(3).getOpcode() == PIC16ISD::SUBCC) &&
1337 isa<ConstantSDNode>(LHS.getOperand(0)) &&
1338 isa<ConstantSDNode>(LHS.getOperand(1)) &&
1339 cast<ConstantSDNode>(LHS.getOperand(0))->getZExtValue() == 1 &&
1340 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() == 0) {
1341 SDValue CMPCC = LHS.getOperand(3);
1342 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getZExtValue();
1343 LHS = CMPCC.getOperand(0);
1344 RHS = CMPCC.getOperand(1);
1345 }
1346}
1347
1348// Returns appropriate CMP insn and corresponding condition code in PIC16CC
1349SDValue PIC16TargetLowering::getPIC16Cmp(SDValue LHS, SDValue RHS,
1350 unsigned CC, SDValue &PIC16CC,
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001351 SelectionDAG &DAG, DebugLoc dl) {
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001352 PIC16CC::CondCodes CondCode = (PIC16CC::CondCodes) CC;
1353
1354 // PIC16 sub is literal - W. So Swap the operands and condition if needed.
1355 // i.e. a < 12 can be rewritten as 12 > a.
1356 if (RHS.getOpcode() == ISD::Constant) {
1357
1358 SDValue Tmp = LHS;
1359 LHS = RHS;
1360 RHS = Tmp;
1361
1362 switch (CondCode) {
1363 default: break;
1364 case PIC16CC::LT:
1365 CondCode = PIC16CC::GT;
1366 break;
1367 case PIC16CC::GT:
1368 CondCode = PIC16CC::LT;
1369 break;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001370 case PIC16CC::ULT:
1371 CondCode = PIC16CC::UGT;
1372 break;
1373 case PIC16CC::UGT:
1374 CondCode = PIC16CC::ULT;
1375 break;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001376 case PIC16CC::GE:
1377 CondCode = PIC16CC::LE;
1378 break;
1379 case PIC16CC::LE:
1380 CondCode = PIC16CC::GE;
1381 break;
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001382 case PIC16CC::ULE:
1383 CondCode = PIC16CC::UGE;
1384 break;
1385 case PIC16CC::UGE:
1386 CondCode = PIC16CC::ULE;
1387 break;
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001388 }
1389 }
1390
1391 PIC16CC = DAG.getConstant(CondCode, MVT::i8);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001392
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001393 // These are signed comparisons.
1394 SDValue Mask = DAG.getConstant(128, MVT::i8);
1395 if (isSignedComparison(CondCode)) {
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001396 LHS = DAG.getNode (ISD::XOR, dl, MVT::i8, LHS, Mask);
1397 RHS = DAG.getNode (ISD::XOR, dl, MVT::i8, RHS, Mask);
Sanjiv Gupta08b9b052009-01-21 05:44:05 +00001398 }
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001399
1400 SDVTList VTs = DAG.getVTList (MVT::i8, MVT::Flag);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001401 // We can use a subtract operation to set the condition codes. But
1402 // we need to put one operand in memory if required.
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001403 // Nothing to do if the first operand is already a valid type (direct load
1404 // for subwf and literal for sublw) and it is used by this operation only.
1405 if ((LHS.getOpcode() == ISD::Constant || isDirectLoad(LHS))
1406 && LHS.hasOneUse())
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001407 return DAG.getNode(PIC16ISD::SUBCC, dl, VTs, LHS, RHS);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001408
Sanjiv Guptae0ffc922009-01-30 07:55:25 +00001409 // else convert the first operand to mem.
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001410 LHS = ConvertToMemOperand (LHS, DAG, dl);
1411 return DAG.getNode(PIC16ISD::SUBCC, dl, VTs, LHS, RHS);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001412}
1413
1414
1415SDValue PIC16TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
1416 SDValue LHS = Op.getOperand(0);
1417 SDValue RHS = Op.getOperand(1);
1418 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
1419 SDValue TrueVal = Op.getOperand(2);
1420 SDValue FalseVal = Op.getOperand(3);
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 select_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 // i.e.
1427 // A setcc: lhs, rhs, cc is expanded by llvm to
1428 // select_cc: result of setcc, 0, 1, 0, setne
1429 // We can think of it as:
1430 // select_cc: lhs, rhs, 1, 0, cc
1431 LookThroughSetCC(LHS, RHS, CC, ORIGCC);
1432 if (ORIGCC == ~0U) ORIGCC = IntCCToPIC16CC (CC);
1433
1434 SDValue PIC16CC;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001435 SDValue Cmp = getPIC16Cmp(LHS, RHS, ORIGCC, PIC16CC, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001436
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001437 return DAG.getNode (PIC16ISD::SELECT_ICC, dl, TrueVal.getValueType(), TrueVal,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001438 FalseVal, PIC16CC, Cmp.getValue(1));
1439}
1440
1441MachineBasicBlock *
1442PIC16TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00001443 MachineBasicBlock *BB) const {
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001444 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1445 unsigned CC = (PIC16CC::CondCodes)MI->getOperand(3).getImm();
Dale Johannesenbd9ef182009-02-13 02:29:03 +00001446 DebugLoc dl = MI->getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001447
1448 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
1449 // control-flow pattern. The incoming instruction knows the destination vreg
1450 // to set, the condition code register to branch on, the true/false values to
1451 // select between, and a branch opcode to use.
1452 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1453 MachineFunction::iterator It = BB;
1454 ++It;
1455
1456 // thisMBB:
1457 // ...
1458 // TrueVal = ...
1459 // [f]bCC copy1MBB
1460 // fallthrough --> copy0MBB
1461 MachineBasicBlock *thisMBB = BB;
1462 MachineFunction *F = BB->getParent();
1463 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1464 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesenbd9ef182009-02-13 02:29:03 +00001465 BuildMI(BB, dl, TII.get(PIC16::pic16brcond)).addMBB(sinkMBB).addImm(CC);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001466 F->insert(It, copy0MBB);
1467 F->insert(It, sinkMBB);
1468
1469 // Update machine-CFG edges by transferring all successors of the current
1470 // block to the new block which will contain the Phi node for the select.
1471 sinkMBB->transferSuccessors(BB);
1472 // Next, add the true and fallthrough blocks as its successors.
1473 BB->addSuccessor(copy0MBB);
1474 BB->addSuccessor(sinkMBB);
1475
1476 // copy0MBB:
1477 // %FalseValue = ...
1478 // # fallthrough to sinkMBB
1479 BB = copy0MBB;
1480
1481 // Update machine-CFG edges
1482 BB->addSuccessor(sinkMBB);
1483
1484 // sinkMBB:
1485 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1486 // ...
1487 BB = sinkMBB;
Dale Johannesenbd9ef182009-02-13 02:29:03 +00001488 BuildMI(BB, dl, TII.get(PIC16::PHI), MI->getOperand(0).getReg())
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001489 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1490 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1491
1492 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
1493 return BB;
1494}
1495
1496
1497SDValue PIC16TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
1498 SDValue Chain = Op.getOperand(0);
1499 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1500 SDValue LHS = Op.getOperand(2); // LHS of the condition.
1501 SDValue RHS = Op.getOperand(3); // RHS of the condition.
1502 SDValue Dest = Op.getOperand(4); // BB to jump to
1503 unsigned ORIGCC = ~0;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001504 DebugLoc dl = Op.getDebugLoc();
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001505
1506 // If this is a br_cc of a "setcc", and if the setcc got lowered into
1507 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
1508 LookThroughSetCC(LHS, RHS, CC, ORIGCC);
1509 if (ORIGCC == ~0U) ORIGCC = IntCCToPIC16CC (CC);
1510
1511 // Get the Compare insn and condition code.
1512 SDValue PIC16CC;
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001513 SDValue Cmp = getPIC16Cmp(LHS, RHS, ORIGCC, PIC16CC, DAG, dl);
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001514
Dale Johannesen2fabcb22009-02-05 01:01:16 +00001515 return DAG.getNode(PIC16ISD::BRCOND, dl, MVT::Other, Chain, Dest, PIC16CC,
Sanjiv Gupta1b046942009-01-13 19:18:47 +00001516 Cmp.getValue(1));
1517}
1518
1519