blob: d02c6eeb3b95c6e368a39e93b85d96885e963d75 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- HexagonISelDAGToDAG.cpp - A dag to dag inst selector for Hexagon --===//
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines an instruction selector for the Hexagon target.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "Hexagon.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000015#include "HexagonISelLowering.h"
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +000016#include "HexagonMachineFunctionInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000017#include "HexagonTargetMachine.h"
Jyotsna Vermad9225242013-02-13 21:38:46 +000018#include "llvm/ADT/DenseMap.h"
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +000019#include "llvm/CodeGen/FunctionLoweringInfo.h"
20#include "llvm/CodeGen/MachineInstrBuilder.h"
Jyotsna Vermad9225242013-02-13 21:38:46 +000021#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000022#include "llvm/IR/Intrinsics.h"
Jyotsna Vermad9225242013-02-13 21:38:46 +000023#include "llvm/Support/CommandLine.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000024#include "llvm/Support/Compiler.h"
25#include "llvm/Support/Debug.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000026using namespace llvm;
27
Chandler Carruth84e68b22014-04-22 02:41:26 +000028#define DEBUG_TYPE "hexagon-isel"
29
Jyotsna Vermad9225242013-02-13 21:38:46 +000030static
31cl::opt<unsigned>
32MaxNumOfUsesForConstExtenders("ga-max-num-uses-for-constant-extenders",
33 cl::Hidden, cl::init(2),
34 cl::desc("Maximum number of uses of a global address such that we still us a"
35 "constant extended instruction"));
Tony Linthicum1213a7a2011-12-12 21:14:40 +000036
37//===----------------------------------------------------------------------===//
38// Instruction Selector Implementation
39//===----------------------------------------------------------------------===//
40
Jyotsna Vermad9225242013-02-13 21:38:46 +000041namespace llvm {
42 void initializeHexagonDAGToDAGISelPass(PassRegistry&);
43}
44
Tony Linthicum1213a7a2011-12-12 21:14:40 +000045//===--------------------------------------------------------------------===//
46/// HexagonDAGToDAGISel - Hexagon specific code to select Hexagon machine
47/// instructions for SelectionDAG operations.
48///
49namespace {
50class HexagonDAGToDAGISel : public SelectionDAGISel {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +000051 const HexagonTargetMachine& HTM;
Eric Christopher23a7d1e2015-03-21 03:12:59 +000052 const HexagonSubtarget *HST;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000053public:
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +000054 explicit HexagonDAGToDAGISel(HexagonTargetMachine &tm,
Jyotsna Vermad9225242013-02-13 21:38:46 +000055 CodeGenOpt::Level OptLevel)
Eric Christopher23a7d1e2015-03-21 03:12:59 +000056 : SelectionDAGISel(tm, OptLevel), HTM(tm) {
Jyotsna Vermad9225242013-02-13 21:38:46 +000057 initializeHexagonDAGToDAGISelPass(*PassRegistry::getPassRegistry());
Tony Linthicum1213a7a2011-12-12 21:14:40 +000058 }
Eric Christopher23a7d1e2015-03-21 03:12:59 +000059
60 bool runOnMachineFunction(MachineFunction &MF) override {
61 // Reset the subtarget each time through.
62 HST = &MF.getSubtarget<HexagonSubtarget>();
63 SelectionDAGISel::runOnMachineFunction(MF);
64 return true;
65 }
66
Krzysztof Parzyszekae14e7b2015-03-17 21:47:16 +000067 virtual void PreprocessISelDAG() override;
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +000068 virtual void EmitFunctionEntryCode() override;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000069
Craig Topper906c2cd2014-04-29 07:58:16 +000070 SDNode *Select(SDNode *N) override;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000071
72 // Complex Pattern Selectors.
Colin LeMahieu987b0942015-02-04 20:38:01 +000073 inline bool SelectAddrGA(SDValue &N, SDValue &R);
Colin LeMahieu51491352015-02-04 22:36:28 +000074 inline bool SelectAddrGP(SDValue &N, SDValue &R);
Colin LeMahieu987b0942015-02-04 20:38:01 +000075 bool SelectGlobalAddress(SDValue &N, SDValue &R, bool UseGP);
Colin LeMahieuc7522f32015-01-14 23:07:36 +000076 bool SelectAddrFI(SDValue &N, SDValue &R);
77
Craig Topper906c2cd2014-04-29 07:58:16 +000078 const char *getPassName() const override {
Tony Linthicum1213a7a2011-12-12 21:14:40 +000079 return "Hexagon DAG->DAG Pattern Instruction Selection";
80 }
81
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +000082 SDNode *SelectFrameIndex(SDNode *N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000083 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
84 /// inline asm expressions.
Craig Topper906c2cd2014-04-29 07:58:16 +000085 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Daniel Sanders60f1db02015-03-13 12:45:09 +000086 unsigned ConstraintID,
Craig Topper906c2cd2014-04-29 07:58:16 +000087 std::vector<SDValue> &OutOps) override;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000088 SDNode *SelectLoad(SDNode *N);
Andrew Trickef9de2a2013-05-25 02:42:55 +000089 SDNode *SelectBaseOffsetLoad(LoadSDNode *LD, SDLoc dl);
90 SDNode *SelectIndexedLoad(LoadSDNode *LD, SDLoc dl);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000091 SDNode *SelectIndexedLoadZeroExtend64(LoadSDNode *LD, unsigned Opcode,
Andrew Trickef9de2a2013-05-25 02:42:55 +000092 SDLoc dl);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000093 SDNode *SelectIndexedLoadSignExtend64(LoadSDNode *LD, unsigned Opcode,
Andrew Trickef9de2a2013-05-25 02:42:55 +000094 SDLoc dl);
95 SDNode *SelectBaseOffsetStore(StoreSDNode *ST, SDLoc dl);
96 SDNode *SelectIndexedStore(StoreSDNode *ST, SDLoc dl);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000097 SDNode *SelectStore(SDNode *N);
98 SDNode *SelectSHL(SDNode *N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000099 SDNode *SelectMul(SDNode *N);
100 SDNode *SelectZeroExtend(SDNode *N);
Sirish Pande69295b82012-05-10 20:20:25 +0000101 SDNode *SelectIntrinsicWChain(SDNode *N);
Krzysztof Parzyszekae14e7b2015-03-17 21:47:16 +0000102 SDNode *SelectIntrinsicWOChain(SDNode *N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000103 SDNode *SelectConstant(SDNode *N);
Sirish Pande69295b82012-05-10 20:20:25 +0000104 SDNode *SelectConstantFP(SDNode *N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000105 SDNode *SelectAdd(SDNode *N);
Krzysztof Parzyszek8c1cab92015-03-18 00:43:46 +0000106 SDNode *SelectBitOp(SDNode *N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000107
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000108 // XformMskToBitPosU5Imm - Returns the bit position which
109 // the single bit 32 bit mask represents.
110 // Used in Clr and Set bit immediate memops.
111 SDValue XformMskToBitPosU5Imm(uint32_t Imm) {
112 int32_t bitPos;
113 bitPos = Log2_32(Imm);
114 assert(bitPos >= 0 && bitPos < 32 &&
115 "Constant out of range for 32 BitPos Memops");
116 return CurDAG->getTargetConstant(bitPos, MVT::i32);
117 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000118
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000119 // XformMskToBitPosU4Imm - Returns the bit position which the single-bit
120 // 16 bit mask represents. Used in Clr and Set bit immediate memops.
121 SDValue XformMskToBitPosU4Imm(uint16_t Imm) {
122 return XformMskToBitPosU5Imm(Imm);
123 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000124
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000125 // XformMskToBitPosU3Imm - Returns the bit position which the single-bit
126 // 8 bit mask represents. Used in Clr and Set bit immediate memops.
127 SDValue XformMskToBitPosU3Imm(uint8_t Imm) {
128 return XformMskToBitPosU5Imm(Imm);
129 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000130
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000131 // Return true if there is exactly one bit set in V, i.e., if V is one of the
132 // following integers: 2^0, 2^1, ..., 2^31.
133 bool ImmIsSingleBit(uint32_t v) const {
134 return isPowerOf2_32(v);
135 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000136
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000137 // XformM5ToU5Imm - Return a target constant with the specified value, of
138 // type i32 where the negative literal is transformed into a positive literal
139 // for use in -= memops.
140 inline SDValue XformM5ToU5Imm(signed Imm) {
141 assert( (Imm >= -31 && Imm <= -1) && "Constant out of range for Memops");
142 return CurDAG->getTargetConstant( - Imm, MVT::i32);
143 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000144
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000145 // XformU7ToU7M1Imm - Return a target constant decremented by 1, in range
146 // [1..128], used in cmpb.gtu instructions.
147 inline SDValue XformU7ToU7M1Imm(signed Imm) {
148 assert((Imm >= 1 && Imm <= 128) && "Constant out of range for cmpb op");
149 return CurDAG->getTargetConstant(Imm - 1, MVT::i8);
150 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +0000151
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000152 // XformS8ToS8M1Imm - Return a target constant decremented by 1.
153 inline SDValue XformSToSM1Imm(signed Imm) {
154 return CurDAG->getTargetConstant(Imm - 1, MVT::i32);
155 }
Jyotsna Verma60316252013-02-05 19:20:45 +0000156
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000157 // XformU8ToU8M1Imm - Return a target constant decremented by 1.
158 inline SDValue XformUToUM1Imm(unsigned Imm) {
159 assert((Imm >= 1) && "Cannot decrement unsigned int less than 1");
160 return CurDAG->getTargetConstant(Imm - 1, MVT::i32);
161 }
Jyotsna Verma89c84822013-04-23 19:15:55 +0000162
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000163 // XformSToSM2Imm - Return a target constant decremented by 2.
164 inline SDValue XformSToSM2Imm(unsigned Imm) {
165 return CurDAG->getTargetConstant(Imm - 2, MVT::i32);
166 }
Jyotsna Verma89c84822013-04-23 19:15:55 +0000167
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000168 // XformSToSM3Imm - Return a target constant decremented by 3.
169 inline SDValue XformSToSM3Imm(unsigned Imm) {
170 return CurDAG->getTargetConstant(Imm - 3, MVT::i32);
171 }
Colin LeMahieu19ed07c2015-01-28 18:29:11 +0000172
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000173 // Include the pieces autogenerated from the target description.
174 #include "HexagonGenDAGISel.inc"
Colin LeMahieu0ee02fc2015-01-19 20:31:18 +0000175
176private:
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000177 bool isValueExtension(const SDValue &Val, unsigned FromBits, SDValue &Src);
178}; // end HexagonDAGToDAGISel
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000179} // end anonymous namespace
180
181
182/// createHexagonISelDag - This pass converts a legalized DAG into a
183/// Hexagon-specific DAG, ready for instruction scheduling.
184///
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000185namespace llvm {
186FunctionPass *createHexagonISelDag(HexagonTargetMachine &TM,
187 CodeGenOpt::Level OptLevel) {
Jyotsna Vermad9225242013-02-13 21:38:46 +0000188 return new HexagonDAGToDAGISel(TM, OptLevel);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000189}
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000190}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000191
Jyotsna Vermad9225242013-02-13 21:38:46 +0000192static void initializePassOnce(PassRegistry &Registry) {
193 const char *Name = "Hexagon DAG->DAG Pattern Instruction Selection";
194 PassInfo *PI = new PassInfo(Name, "hexagon-isel",
Craig Topper062a2ba2014-04-25 05:30:21 +0000195 &SelectionDAGISel::ID, nullptr, false, false);
Jyotsna Vermad9225242013-02-13 21:38:46 +0000196 Registry.registerPass(*PI, true);
197}
198
199void llvm::initializeHexagonDAGToDAGISelPass(PassRegistry &Registry) {
200 CALL_ONCE_INITIALIZATION(initializePassOnce)
201}
202
203
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000204// Intrinsics that return a a predicate.
205static unsigned doesIntrinsicReturnPredicate(unsigned ID)
206{
207 switch (ID) {
208 default:
209 return 0;
210 case Intrinsic::hexagon_C2_cmpeq:
211 case Intrinsic::hexagon_C2_cmpgt:
212 case Intrinsic::hexagon_C2_cmpgtu:
213 case Intrinsic::hexagon_C2_cmpgtup:
214 case Intrinsic::hexagon_C2_cmpgtp:
215 case Intrinsic::hexagon_C2_cmpeqp:
216 case Intrinsic::hexagon_C2_bitsset:
217 case Intrinsic::hexagon_C2_bitsclr:
218 case Intrinsic::hexagon_C2_cmpeqi:
219 case Intrinsic::hexagon_C2_cmpgti:
220 case Intrinsic::hexagon_C2_cmpgtui:
221 case Intrinsic::hexagon_C2_cmpgei:
222 case Intrinsic::hexagon_C2_cmpgeui:
223 case Intrinsic::hexagon_C2_cmplt:
224 case Intrinsic::hexagon_C2_cmpltu:
225 case Intrinsic::hexagon_C2_bitsclri:
226 case Intrinsic::hexagon_C2_and:
227 case Intrinsic::hexagon_C2_or:
228 case Intrinsic::hexagon_C2_xor:
229 case Intrinsic::hexagon_C2_andn:
230 case Intrinsic::hexagon_C2_not:
231 case Intrinsic::hexagon_C2_orn:
232 case Intrinsic::hexagon_C2_pxfer_map:
233 case Intrinsic::hexagon_C2_any8:
234 case Intrinsic::hexagon_C2_all8:
235 case Intrinsic::hexagon_A2_vcmpbeq:
236 case Intrinsic::hexagon_A2_vcmpbgtu:
237 case Intrinsic::hexagon_A2_vcmpheq:
238 case Intrinsic::hexagon_A2_vcmphgt:
239 case Intrinsic::hexagon_A2_vcmphgtu:
240 case Intrinsic::hexagon_A2_vcmpweq:
241 case Intrinsic::hexagon_A2_vcmpwgt:
242 case Intrinsic::hexagon_A2_vcmpwgtu:
243 case Intrinsic::hexagon_C2_tfrrp:
244 case Intrinsic::hexagon_S2_tstbit_i:
245 case Intrinsic::hexagon_S2_tstbit_r:
246 return 1;
247 }
248}
249
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000250SDNode *HexagonDAGToDAGISel::SelectIndexedLoadSignExtend64(LoadSDNode *LD,
251 unsigned Opcode,
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000252 SDLoc dl) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000253 SDValue Chain = LD->getChain();
254 EVT LoadedVT = LD->getMemoryVT();
255 SDValue Base = LD->getBasePtr();
256 SDValue Offset = LD->getOffset();
257 SDNode *OffsetNode = Offset.getNode();
258 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
Bill Wendling4a7a4082013-06-07 06:19:56 +0000259
Eric Christopher23a7d1e2015-03-21 03:12:59 +0000260 const HexagonInstrInfo &TII = *HST->getInstrInfo();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000261 if (TII.isValidAutoIncImm(LoadedVT, Val)) {
262 SDValue TargetConst = CurDAG->getTargetConstant(Val, MVT::i32);
263 SDNode *Result_1 = CurDAG->getMachineNode(Opcode, dl, MVT::i32, MVT::i32,
264 MVT::Other, Base, TargetConst,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000265 Chain);
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000266 SDNode *Result_2 = CurDAG->getMachineNode(Hexagon::A2_sxtw, dl, MVT::i64,
267 SDValue(Result_1, 0));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000268 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
269 MemOp[0] = LD->getMemOperand();
270 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
271 const SDValue Froms[] = { SDValue(LD, 0),
272 SDValue(LD, 1),
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000273 SDValue(LD, 2) };
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000274 const SDValue Tos[] = { SDValue(Result_2, 0),
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000275 SDValue(Result_1, 1),
276 SDValue(Result_1, 2) };
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000277 ReplaceUses(Froms, Tos, 3);
278 return Result_2;
279 }
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000280
281 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
282 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
283 SDNode *Result_1 = CurDAG->getMachineNode(Opcode, dl, MVT::i32, MVT::Other,
284 Base, TargetConst0, Chain);
285 SDNode *Result_2 = CurDAG->getMachineNode(Hexagon::A2_sxtw, dl, MVT::i64,
286 SDValue(Result_1, 0));
287 SDNode* Result_3 = CurDAG->getMachineNode(Hexagon::A2_addi, dl, MVT::i32,
288 Base, TargetConstVal,
289 SDValue(Result_1, 1));
290 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
291 MemOp[0] = LD->getMemOperand();
292 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
293 const SDValue Froms[] = { SDValue(LD, 0),
294 SDValue(LD, 1),
295 SDValue(LD, 2) };
296 const SDValue Tos[] = { SDValue(Result_2, 0),
297 SDValue(Result_3, 0),
298 SDValue(Result_1, 1) };
299 ReplaceUses(Froms, Tos, 3);
300 return Result_2;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000301}
302
303
304SDNode *HexagonDAGToDAGISel::SelectIndexedLoadZeroExtend64(LoadSDNode *LD,
305 unsigned Opcode,
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000306 SDLoc dl) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000307 SDValue Chain = LD->getChain();
308 EVT LoadedVT = LD->getMemoryVT();
309 SDValue Base = LD->getBasePtr();
310 SDValue Offset = LD->getOffset();
311 SDNode *OffsetNode = Offset.getNode();
312 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
Bill Wendling4a7a4082013-06-07 06:19:56 +0000313
Eric Christopher23a7d1e2015-03-21 03:12:59 +0000314 const HexagonInstrInfo &TII = *HST->getInstrInfo();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000315 if (TII.isValidAutoIncImm(LoadedVT, Val)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000316 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000317 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000318 SDNode *Result_1 = CurDAG->getMachineNode(Opcode, dl, MVT::i32,
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000319 MVT::i32, MVT::Other, Base,
320 TargetConstVal, Chain);
321 SDNode *Result_2 = CurDAG->getMachineNode(Hexagon::A4_combineir, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000322 MVT::i64, MVT::Other,
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000323 TargetConst0,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000324 SDValue(Result_1,0));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000325 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
326 MemOp[0] = LD->getMemOperand();
327 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
328 const SDValue Froms[] = { SDValue(LD, 0),
329 SDValue(LD, 1),
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000330 SDValue(LD, 2) };
331 const SDValue Tos[] = { SDValue(Result_2, 0),
332 SDValue(Result_1, 1),
333 SDValue(Result_1, 2) };
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000334 ReplaceUses(Froms, Tos, 3);
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000335 return Result_2;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000336 }
337
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000338 // Generate an indirect load.
339 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
340 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
341 SDNode *Result_1 = CurDAG->getMachineNode(Opcode, dl, MVT::i32,
342 MVT::Other, Base, TargetConst0,
343 Chain);
344 SDNode *Result_2 = CurDAG->getMachineNode(Hexagon::A4_combineir, dl,
345 MVT::i64, MVT::Other,
346 TargetConst0,
347 SDValue(Result_1,0));
348 // Add offset to base.
349 SDNode* Result_3 = CurDAG->getMachineNode(Hexagon::A2_addi, dl, MVT::i32,
350 Base, TargetConstVal,
351 SDValue(Result_1, 1));
352 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
353 MemOp[0] = LD->getMemOperand();
354 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
355 const SDValue Froms[] = { SDValue(LD, 0),
356 SDValue(LD, 1),
357 SDValue(LD, 2) };
358 const SDValue Tos[] = { SDValue(Result_2, 0), // Load value.
359 SDValue(Result_3, 0), // New address.
360 SDValue(Result_1, 1) };
361 ReplaceUses(Froms, Tos, 3);
362 return Result_2;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000363}
364
365
Andrew Trickef9de2a2013-05-25 02:42:55 +0000366SDNode *HexagonDAGToDAGISel::SelectIndexedLoad(LoadSDNode *LD, SDLoc dl) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000367 SDValue Chain = LD->getChain();
368 SDValue Base = LD->getBasePtr();
369 SDValue Offset = LD->getOffset();
370 SDNode *OffsetNode = Offset.getNode();
371 // Get the constant value.
372 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
373 EVT LoadedVT = LD->getMemoryVT();
374 unsigned Opcode = 0;
375
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000376 // Check for zero extended loads. Treat any-extend loads as zero extended
377 // loads.
378 ISD::LoadExtType ExtType = LD->getExtensionType();
379 bool IsZeroExt = (ExtType == ISD::ZEXTLOAD || ExtType == ISD::EXTLOAD);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000380
381 // Figure out the opcode.
Eric Christopher23a7d1e2015-03-21 03:12:59 +0000382 const HexagonInstrInfo &TII = *HST->getInstrInfo();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000383 if (LoadedVT == MVT::i64) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000384 if (TII.isValidAutoIncImm(LoadedVT, Val))
Colin LeMahieuc83cbbf2014-12-26 19:31:46 +0000385 Opcode = Hexagon::L2_loadrd_pi;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000386 else
Colin LeMahieu947cd702014-12-23 20:44:59 +0000387 Opcode = Hexagon::L2_loadrd_io;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000388 } else if (LoadedVT == MVT::i32) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000389 if (TII.isValidAutoIncImm(LoadedVT, Val))
Colin LeMahieuc83cbbf2014-12-26 19:31:46 +0000390 Opcode = Hexagon::L2_loadri_pi;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000391 else
Colin LeMahieu026e88d2014-12-23 20:02:16 +0000392 Opcode = Hexagon::L2_loadri_io;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000393 } else if (LoadedVT == MVT::i16) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000394 if (TII.isValidAutoIncImm(LoadedVT, Val))
395 Opcode = IsZeroExt ? Hexagon::L2_loadruh_pi : Hexagon::L2_loadrh_pi;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000396 else
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000397 Opcode = IsZeroExt ? Hexagon::L2_loadruh_io : Hexagon::L2_loadrh_io;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000398 } else if (LoadedVT == MVT::i8) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000399 if (TII.isValidAutoIncImm(LoadedVT, Val))
400 Opcode = IsZeroExt ? Hexagon::L2_loadrub_pi : Hexagon::L2_loadrb_pi;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000401 else
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000402 Opcode = IsZeroExt ? Hexagon::L2_loadrub_io : Hexagon::L2_loadrb_io;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000403 } else
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000404 llvm_unreachable("unknown memory type");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000405
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000406 // For zero extended i64 loads, we need to add combine instructions.
407 if (LD->getValueType(0) == MVT::i64 && IsZeroExt)
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000408 return SelectIndexedLoadZeroExtend64(LD, Opcode, dl);
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000409 // Handle sign extended i64 loads.
410 if (LD->getValueType(0) == MVT::i64 && ExtType == ISD::SEXTLOAD)
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000411 return SelectIndexedLoadSignExtend64(LD, Opcode, dl);
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000412
413 if (TII.isValidAutoIncImm(LoadedVT, Val)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000414 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
415 SDNode* Result = CurDAG->getMachineNode(Opcode, dl,
416 LD->getValueType(0),
417 MVT::i32, MVT::Other, Base,
418 TargetConstVal, Chain);
419 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
420 MemOp[0] = LD->getMemOperand();
421 cast<MachineSDNode>(Result)->setMemRefs(MemOp, MemOp + 1);
422 const SDValue Froms[] = { SDValue(LD, 0),
423 SDValue(LD, 1),
424 SDValue(LD, 2)
425 };
426 const SDValue Tos[] = { SDValue(Result, 0),
427 SDValue(Result, 1),
428 SDValue(Result, 2)
429 };
430 ReplaceUses(Froms, Tos, 3);
431 return Result;
432 } else {
433 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
434 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
435 SDNode* Result_1 = CurDAG->getMachineNode(Opcode, dl,
436 LD->getValueType(0),
437 MVT::Other, Base, TargetConst0,
438 Chain);
Colin LeMahieuf297dbe2015-02-05 17:49:13 +0000439 SDNode* Result_2 = CurDAG->getMachineNode(Hexagon::A2_addi, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000440 Base, TargetConstVal,
441 SDValue(Result_1, 1));
442 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
443 MemOp[0] = LD->getMemOperand();
444 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
445 const SDValue Froms[] = { SDValue(LD, 0),
446 SDValue(LD, 1),
447 SDValue(LD, 2)
448 };
449 const SDValue Tos[] = { SDValue(Result_1, 0),
450 SDValue(Result_2, 0),
451 SDValue(Result_1, 1)
452 };
453 ReplaceUses(Froms, Tos, 3);
454 return Result_1;
455 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000456}
457
458
459SDNode *HexagonDAGToDAGISel::SelectLoad(SDNode *N) {
460 SDNode *result;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000461 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000462 LoadSDNode *LD = cast<LoadSDNode>(N);
463 ISD::MemIndexedMode AM = LD->getAddressingMode();
464
465 // Handle indexed loads.
466 if (AM != ISD::UNINDEXED) {
467 result = SelectIndexedLoad(LD, dl);
468 } else {
Colin LeMahieu2efa2d02015-03-09 21:48:13 +0000469 result = SelectCode(LD);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000470 }
471
472 return result;
473}
474
475
Andrew Trickef9de2a2013-05-25 02:42:55 +0000476SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, SDLoc dl) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000477 SDValue Chain = ST->getChain();
478 SDValue Base = ST->getBasePtr();
479 SDValue Offset = ST->getOffset();
480 SDValue Value = ST->getValue();
481 SDNode *OffsetNode = Offset.getNode();
482 // Get the constant value.
483 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
484 EVT StoredVT = ST->getMemoryVT();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000485 EVT ValueVT = Value.getValueType();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000486
487 // Offset value must be within representable range
488 // and must have correct alignment properties.
Eric Christopher23a7d1e2015-03-21 03:12:59 +0000489 const HexagonInstrInfo &TII = *HST->getInstrInfo();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000490 if (TII.isValidAutoIncImm(StoredVT, Val)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000491 unsigned Opcode = 0;
492
493 // Figure out the post inc version of opcode.
Colin LeMahieu9a3cd3f2014-12-29 20:00:43 +0000494 if (StoredVT == MVT::i64) Opcode = Hexagon::S2_storerd_pi;
495 else if (StoredVT == MVT::i32) Opcode = Hexagon::S2_storeri_pi;
496 else if (StoredVT == MVT::i16) Opcode = Hexagon::S2_storerh_pi;
Colin LeMahieu3d34afb2014-12-29 19:42:14 +0000497 else if (StoredVT == MVT::i8) Opcode = Hexagon::S2_storerb_pi;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000498 else llvm_unreachable("unknown memory type");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000499
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000500 if (ST->isTruncatingStore() && ValueVT.getSizeInBits() == 64) {
501 assert(StoredVT.getSizeInBits() < 64 && "Not a truncating store");
502 Value = CurDAG->getTargetExtractSubreg(Hexagon::subreg_loreg,
503 dl, MVT::i32, Value);
504 }
505 SDValue Ops[] = {Base, CurDAG->getTargetConstant(Val, MVT::i32), Value,
506 Chain};
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000507 // Build post increment store.
508 SDNode* Result = CurDAG->getMachineNode(Opcode, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +0000509 MVT::Other, Ops);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000510 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
511 MemOp[0] = ST->getMemOperand();
512 cast<MachineSDNode>(Result)->setMemRefs(MemOp, MemOp + 1);
513
514 ReplaceUses(ST, Result);
515 ReplaceUses(SDValue(ST,1), SDValue(Result,1));
516 return Result;
517 }
518
519 // Note: Order of operands matches the def of instruction:
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +0000520 // def S2_storerd_io
521 // : STInst<(outs), (ins IntRegs:$base, imm:$offset, DoubleRegs:$src1), ...
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000522 // and it differs for POST_ST* for instance.
523 SDValue Ops[] = { Base, CurDAG->getTargetConstant(0, MVT::i32), Value,
524 Chain};
525 unsigned Opcode = 0;
526
527 // Figure out the opcode.
Colin LeMahieubda31b42014-12-29 20:44:51 +0000528 if (StoredVT == MVT::i64) Opcode = Hexagon::S2_storerd_io;
529 else if (StoredVT == MVT::i32) Opcode = Hexagon::S2_storeri_io;
530 else if (StoredVT == MVT::i16) Opcode = Hexagon::S2_storerh_io;
531 else if (StoredVT == MVT::i8) Opcode = Hexagon::S2_storerb_io;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000532 else llvm_unreachable("unknown memory type");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000533
534 // Build regular store.
535 SDValue TargetConstVal = CurDAG->getTargetConstant(Val, MVT::i32);
Michael Liaob53d8962013-04-19 22:22:57 +0000536 SDNode* Result_1 = CurDAG->getMachineNode(Opcode, dl, MVT::Other, Ops);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000537 // Build splitted incriment instruction.
Colin LeMahieuf297dbe2015-02-05 17:49:13 +0000538 SDNode* Result_2 = CurDAG->getMachineNode(Hexagon::A2_addi, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000539 Base,
540 TargetConstVal,
541 SDValue(Result_1, 0));
542 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
543 MemOp[0] = ST->getMemOperand();
544 cast<MachineSDNode>(Result_1)->setMemRefs(MemOp, MemOp + 1);
545
546 ReplaceUses(SDValue(ST,0), SDValue(Result_2,0));
547 ReplaceUses(SDValue(ST,1), SDValue(Result_1,0));
548 return Result_2;
549}
550
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000551SDNode *HexagonDAGToDAGISel::SelectStore(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000552 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000553 StoreSDNode *ST = cast<StoreSDNode>(N);
554 ISD::MemIndexedMode AM = ST->getAddressingMode();
555
556 // Handle indexed stores.
557 if (AM != ISD::UNINDEXED) {
558 return SelectIndexedStore(ST, dl);
559 }
Sirish Pandec92c3162012-05-03 16:18:50 +0000560
Colin LeMahieu2efa2d02015-03-09 21:48:13 +0000561 return SelectCode(ST);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000562}
563
564SDNode *HexagonDAGToDAGISel::SelectMul(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000565 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000566
567 //
568 // %conv.i = sext i32 %tmp1 to i64
569 // %conv2.i = sext i32 %add to i64
570 // %mul.i = mul nsw i64 %conv2.i, %conv.i
571 //
572 // --- match with the following ---
573 //
574 // %mul.i = mpy (%tmp1, %add)
575 //
576
577 if (N->getValueType(0) == MVT::i64) {
578 // Shifting a i64 signed multiply.
579 SDValue MulOp0 = N->getOperand(0);
580 SDValue MulOp1 = N->getOperand(1);
581
582 SDValue OP0;
583 SDValue OP1;
584
585 // Handle sign_extend and sextload.
586 if (MulOp0.getOpcode() == ISD::SIGN_EXTEND) {
587 SDValue Sext0 = MulOp0.getOperand(0);
588 if (Sext0.getNode()->getValueType(0) != MVT::i32) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000589 return SelectCode(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000590 }
591
592 OP0 = Sext0;
593 } else if (MulOp0.getOpcode() == ISD::LOAD) {
594 LoadSDNode *LD = cast<LoadSDNode>(MulOp0.getNode());
595 if (LD->getMemoryVT() != MVT::i32 ||
596 LD->getExtensionType() != ISD::SEXTLOAD ||
597 LD->getAddressingMode() != ISD::UNINDEXED) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000598 return SelectCode(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000599 }
600
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000601 SDValue Chain = LD->getChain();
602 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
Colin LeMahieu026e88d2014-12-23 20:02:16 +0000603 OP0 = SDValue(CurDAG->getMachineNode(Hexagon::L2_loadri_io, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000604 MVT::Other,
605 LD->getBasePtr(), TargetConst0,
606 Chain), 0);
607 } else {
608 return SelectCode(N);
609 }
610
611 // Same goes for the second operand.
612 if (MulOp1.getOpcode() == ISD::SIGN_EXTEND) {
613 SDValue Sext1 = MulOp1.getOperand(0);
614 if (Sext1.getNode()->getValueType(0) != MVT::i32) {
615 return SelectCode(N);
616 }
617
618 OP1 = Sext1;
619 } else if (MulOp1.getOpcode() == ISD::LOAD) {
620 LoadSDNode *LD = cast<LoadSDNode>(MulOp1.getNode());
621 if (LD->getMemoryVT() != MVT::i32 ||
622 LD->getExtensionType() != ISD::SEXTLOAD ||
623 LD->getAddressingMode() != ISD::UNINDEXED) {
624 return SelectCode(N);
625 }
626
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000627 SDValue Chain = LD->getChain();
628 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
Colin LeMahieu026e88d2014-12-23 20:02:16 +0000629 OP1 = SDValue(CurDAG->getMachineNode(Hexagon::L2_loadri_io, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000630 MVT::Other,
631 LD->getBasePtr(), TargetConst0,
632 Chain), 0);
633 } else {
634 return SelectCode(N);
635 }
636
637 // Generate a mpy instruction.
Colin LeMahieud9b23502014-12-16 16:10:01 +0000638 SDNode *Result = CurDAG->getMachineNode(Hexagon::M2_dpmpyss_s0, dl, MVT::i64,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000639 OP0, OP1);
640 ReplaceUses(N, Result);
641 return Result;
642 }
643
644 return SelectCode(N);
645}
646
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000647SDNode *HexagonDAGToDAGISel::SelectSHL(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000648 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000649 if (N->getValueType(0) == MVT::i32) {
650 SDValue Shl_0 = N->getOperand(0);
651 SDValue Shl_1 = N->getOperand(1);
652 // RHS is const.
653 if (Shl_1.getOpcode() == ISD::Constant) {
654 if (Shl_0.getOpcode() == ISD::MUL) {
655 SDValue Mul_0 = Shl_0.getOperand(0); // Val
656 SDValue Mul_1 = Shl_0.getOperand(1); // Const
657 // RHS of mul is const.
658 if (Mul_1.getOpcode() == ISD::Constant) {
659 int32_t ShlConst =
660 cast<ConstantSDNode>(Shl_1.getNode())->getSExtValue();
661 int32_t MulConst =
662 cast<ConstantSDNode>(Mul_1.getNode())->getSExtValue();
663 int32_t ValConst = MulConst << ShlConst;
664 SDValue Val = CurDAG->getTargetConstant(ValConst,
665 MVT::i32);
666 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val.getNode()))
667 if (isInt<9>(CN->getSExtValue())) {
668 SDNode* Result =
Colin LeMahieud9b23502014-12-16 16:10:01 +0000669 CurDAG->getMachineNode(Hexagon::M2_mpysmi, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000670 MVT::i32, Mul_0, Val);
671 ReplaceUses(N, Result);
672 return Result;
673 }
674
675 }
676 } else if (Shl_0.getOpcode() == ISD::SUB) {
677 SDValue Sub_0 = Shl_0.getOperand(0); // Const 0
678 SDValue Sub_1 = Shl_0.getOperand(1); // Val
679 if (Sub_0.getOpcode() == ISD::Constant) {
680 int32_t SubConst =
681 cast<ConstantSDNode>(Sub_0.getNode())->getSExtValue();
682 if (SubConst == 0) {
683 if (Sub_1.getOpcode() == ISD::SHL) {
684 SDValue Shl2_0 = Sub_1.getOperand(0); // Val
685 SDValue Shl2_1 = Sub_1.getOperand(1); // Const
686 if (Shl2_1.getOpcode() == ISD::Constant) {
687 int32_t ShlConst =
688 cast<ConstantSDNode>(Shl_1.getNode())->getSExtValue();
689 int32_t Shl2Const =
690 cast<ConstantSDNode>(Shl2_1.getNode())->getSExtValue();
691 int32_t ValConst = 1 << (ShlConst+Shl2Const);
692 SDValue Val = CurDAG->getTargetConstant(-ValConst, MVT::i32);
693 if (ConstantSDNode *CN =
694 dyn_cast<ConstantSDNode>(Val.getNode()))
695 if (isInt<9>(CN->getSExtValue())) {
696 SDNode* Result =
Colin LeMahieud9b23502014-12-16 16:10:01 +0000697 CurDAG->getMachineNode(Hexagon::M2_mpysmi, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000698 Shl2_0, Val);
699 ReplaceUses(N, Result);
700 return Result;
701 }
702 }
703 }
704 }
705 }
706 }
707 }
708 }
709 return SelectCode(N);
710}
711
712
713//
714// If there is an zero_extend followed an intrinsic in DAG (this means - the
715// result of the intrinsic is predicate); convert the zero_extend to
716// transfer instruction.
717//
718// Zero extend -> transfer is lowered here. Otherwise, zero_extend will be
719// converted into a MUX as predicate registers defined as 1 bit in the
720// compiler. Architecture defines them as 8-bit registers.
721// We want to preserve all the lower 8-bits and, not just 1 LSB bit.
722//
723SDNode *HexagonDAGToDAGISel::SelectZeroExtend(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000724 SDLoc dl(N);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +0000725
726 SDValue Op0 = N->getOperand(0);
727 EVT OpVT = Op0.getValueType();
728 unsigned OpBW = OpVT.getSizeInBits();
729
730 // Special handling for zero-extending a vector of booleans.
731 if (OpVT.isVector() && OpVT.getVectorElementType() == MVT::i1 && OpBW <= 64) {
732 SDNode *Mask = CurDAG->getMachineNode(Hexagon::C2_mask, dl, MVT::i64, Op0);
733 unsigned NE = OpVT.getVectorNumElements();
734 EVT ExVT = N->getValueType(0);
735 unsigned ES = ExVT.getVectorElementType().getSizeInBits();
736 uint64_t MV = 0, Bit = 1;
737 for (unsigned i = 0; i < NE; ++i) {
738 MV |= Bit;
739 Bit <<= ES;
740 }
741 SDValue Ones = CurDAG->getTargetConstant(MV, MVT::i64);
742 SDNode *OnesReg = CurDAG->getMachineNode(Hexagon::CONST64_Int_Real, dl,
743 MVT::i64, Ones);
744 if (ExVT.getSizeInBits() == 32) {
745 SDNode *And = CurDAG->getMachineNode(Hexagon::A2_andp, dl, MVT::i64,
746 SDValue(Mask,0), SDValue(OnesReg,0));
747 SDValue SubR = CurDAG->getTargetConstant(Hexagon::subreg_loreg, MVT::i32);
748 return CurDAG->getMachineNode(Hexagon::EXTRACT_SUBREG, dl, ExVT,
749 SDValue(And,0), SubR);
750 }
751 return CurDAG->getMachineNode(Hexagon::A2_andp, dl, ExVT,
752 SDValue(Mask,0), SDValue(OnesReg,0));
753 }
754
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000755 SDNode *IsIntrinsic = N->getOperand(0).getNode();
756 if ((IsIntrinsic->getOpcode() == ISD::INTRINSIC_WO_CHAIN)) {
757 unsigned ID =
758 cast<ConstantSDNode>(IsIntrinsic->getOperand(0))->getZExtValue();
759 if (doesIntrinsicReturnPredicate(ID)) {
760 // Now we need to differentiate target data types.
761 if (N->getValueType(0) == MVT::i64) {
Krzysztof Parzyszekae14e7b2015-03-17 21:47:16 +0000762 // Convert the zero_extend to Rs = Pd followed by A2_combinew(0,Rs).
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000763 SDValue TargetConst0 = CurDAG->getTargetConstant(0, MVT::i32);
Colin LeMahieu30dcb232014-12-09 18:16:49 +0000764 SDNode *Result_1 = CurDAG->getMachineNode(Hexagon::C2_tfrpr, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000765 MVT::i32,
766 SDValue(IsIntrinsic, 0));
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000767 SDNode *Result_2 = CurDAG->getMachineNode(Hexagon::A2_tfrsi, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000768 MVT::i32,
769 TargetConst0);
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000770 SDNode *Result_3 = CurDAG->getMachineNode(Hexagon::A2_combinew, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000771 MVT::i64, MVT::Other,
772 SDValue(Result_2, 0),
773 SDValue(Result_1, 0));
774 ReplaceUses(N, Result_3);
775 return Result_3;
776 }
777 if (N->getValueType(0) == MVT::i32) {
778 // Convert the zero_extend to Rs = Pd
Colin LeMahieu30dcb232014-12-09 18:16:49 +0000779 SDNode* RsPd = CurDAG->getMachineNode(Hexagon::C2_tfrpr, dl,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000780 MVT::i32,
781 SDValue(IsIntrinsic, 0));
782 ReplaceUses(N, RsPd);
783 return RsPd;
784 }
Craig Toppere55c5562012-02-07 02:50:20 +0000785 llvm_unreachable("Unexpected value type");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000786 }
787 }
788 return SelectCode(N);
789}
790
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000791//
Krzysztof Parzyszek47ab1f22015-03-18 16:23:44 +0000792// Checking for intrinsics circular load/store, and bitreverse load/store
793// instrisics in order to select the correct lowered operation.
794//
795SDNode *HexagonDAGToDAGISel::SelectIntrinsicWChain(SDNode *N) {
796 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
797 if (IntNo == Intrinsic::hexagon_circ_ldd ||
798 IntNo == Intrinsic::hexagon_circ_ldw ||
799 IntNo == Intrinsic::hexagon_circ_lduh ||
800 IntNo == Intrinsic::hexagon_circ_ldh ||
801 IntNo == Intrinsic::hexagon_circ_ldub ||
802 IntNo == Intrinsic::hexagon_circ_ldb) {
803 SDLoc dl(N);
804 SDValue Chain = N->getOperand(0);
805 SDValue Base = N->getOperand(2);
806 SDValue Load = N->getOperand(3);
807 SDValue ModifierExpr = N->getOperand(4);
808 SDValue Offset = N->getOperand(5);
809
810 // We need to add the rerurn type for the load. This intrinsic has
811 // two return types, one for the load and one for the post-increment.
812 // Only the *_ld instructions push the extra return type, and bump the
813 // result node operand number correspondingly.
814 std::vector<EVT> ResTys;
815 unsigned opc;
816 unsigned memsize, align;
817 MVT MvtSize = MVT::i32;
818
819 if (IntNo == Intrinsic::hexagon_circ_ldd) {
820 ResTys.push_back(MVT::i32);
821 ResTys.push_back(MVT::i64);
822 opc = Hexagon::L2_loadrd_pci_pseudo;
823 memsize = 8;
824 align = 8;
825 } else if (IntNo == Intrinsic::hexagon_circ_ldw) {
826 ResTys.push_back(MVT::i32);
827 ResTys.push_back(MVT::i32);
828 opc = Hexagon::L2_loadri_pci_pseudo;
829 memsize = 4;
830 align = 4;
831 } else if (IntNo == Intrinsic::hexagon_circ_ldh) {
832 ResTys.push_back(MVT::i32);
833 ResTys.push_back(MVT::i32);
834 opc = Hexagon::L2_loadrh_pci_pseudo;
835 memsize = 2;
836 align = 2;
837 MvtSize = MVT::i16;
838 } else if (IntNo == Intrinsic::hexagon_circ_lduh) {
839 ResTys.push_back(MVT::i32);
840 ResTys.push_back(MVT::i32);
841 opc = Hexagon::L2_loadruh_pci_pseudo;
842 memsize = 2;
843 align = 2;
844 MvtSize = MVT::i16;
845 } else if (IntNo == Intrinsic::hexagon_circ_ldb) {
846 ResTys.push_back(MVT::i32);
847 ResTys.push_back(MVT::i32);
848 opc = Hexagon::L2_loadrb_pci_pseudo;
849 memsize = 1;
850 align = 1;
851 MvtSize = MVT::i8;
852 } else if (IntNo == Intrinsic::hexagon_circ_ldub) {
853 ResTys.push_back(MVT::i32);
854 ResTys.push_back(MVT::i32);
855 opc = Hexagon::L2_loadrub_pci_pseudo;
856 memsize = 1;
857 align = 1;
858 MvtSize = MVT::i8;
859 } else
860 llvm_unreachable("no opc");
861
862 ResTys.push_back(MVT::Other);
863
864 // Copy over the arguments, which are the same mostly.
865 SmallVector<SDValue, 5> Ops;
866 Ops.push_back(Base);
867 Ops.push_back(Load);
868 Ops.push_back(ModifierExpr);
869 int32_t Val = cast<ConstantSDNode>(Offset.getNode())->getSExtValue();
870 Ops.push_back(CurDAG->getTargetConstant(Val, MVT::i32));
871 Ops.push_back(Chain);
872 SDNode* Result = CurDAG->getMachineNode(opc, dl, ResTys, Ops);
873
874 SDValue ST;
875 MachineMemOperand *Mem =
876 MF->getMachineMemOperand(MachinePointerInfo(),
877 MachineMemOperand::MOStore, memsize, align);
878 if (MvtSize != MVT::i32)
879 ST = CurDAG->getTruncStore(Chain, dl, SDValue(Result, 1), Load,
880 MvtSize, Mem);
881 else
882 ST = CurDAG->getStore(Chain, dl, SDValue(Result, 1), Load, Mem);
883
884 SDNode* Store = SelectStore(ST.getNode());
885
886 const SDValue Froms[] = { SDValue(N, 0),
887 SDValue(N, 1) };
888 const SDValue Tos[] = { SDValue(Result, 0),
889 SDValue(Store, 0) };
890 ReplaceUses(Froms, Tos, 2);
891 return Result;
892 }
893
894 if (IntNo == Intrinsic::hexagon_brev_ldd ||
895 IntNo == Intrinsic::hexagon_brev_ldw ||
896 IntNo == Intrinsic::hexagon_brev_ldh ||
897 IntNo == Intrinsic::hexagon_brev_lduh ||
898 IntNo == Intrinsic::hexagon_brev_ldb ||
899 IntNo == Intrinsic::hexagon_brev_ldub) {
900 SDLoc dl(N);
901 SDValue Chain = N->getOperand(0);
902 SDValue Base = N->getOperand(2);
903 SDValue Load = N->getOperand(3);
904 SDValue ModifierExpr = N->getOperand(4);
905
906 // We need to add the rerurn type for the load. This intrinsic has
907 // two return types, one for the load and one for the post-increment.
908 std::vector<EVT> ResTys;
909 unsigned opc;
910 unsigned memsize, align;
911 MVT MvtSize = MVT::i32;
912
913 if (IntNo == Intrinsic::hexagon_brev_ldd) {
914 ResTys.push_back(MVT::i32);
915 ResTys.push_back(MVT::i64);
916 opc = Hexagon::L2_loadrd_pbr_pseudo;
917 memsize = 8;
918 align = 8;
919 } else if (IntNo == Intrinsic::hexagon_brev_ldw) {
920 ResTys.push_back(MVT::i32);
921 ResTys.push_back(MVT::i32);
922 opc = Hexagon::L2_loadri_pbr_pseudo;
923 memsize = 4;
924 align = 4;
925 } else if (IntNo == Intrinsic::hexagon_brev_ldh) {
926 ResTys.push_back(MVT::i32);
927 ResTys.push_back(MVT::i32);
928 opc = Hexagon::L2_loadrh_pbr_pseudo;
929 memsize = 2;
930 align = 2;
931 MvtSize = MVT::i16;
932 } else if (IntNo == Intrinsic::hexagon_brev_lduh) {
933 ResTys.push_back(MVT::i32);
934 ResTys.push_back(MVT::i32);
935 opc = Hexagon::L2_loadruh_pbr_pseudo;
936 memsize = 2;
937 align = 2;
938 MvtSize = MVT::i16;
939 } else if (IntNo == Intrinsic::hexagon_brev_ldb) {
940 ResTys.push_back(MVT::i32);
941 ResTys.push_back(MVT::i32);
942 opc = Hexagon::L2_loadrb_pbr_pseudo;
943 memsize = 1;
944 align = 1;
945 MvtSize = MVT::i8;
946 } else if (IntNo == Intrinsic::hexagon_brev_ldub) {
947 ResTys.push_back(MVT::i32);
948 ResTys.push_back(MVT::i32);
949 opc = Hexagon::L2_loadrub_pbr_pseudo;
950 memsize = 1;
951 align = 1;
952 MvtSize = MVT::i8;
953 } else
954 llvm_unreachable("no opc");
955
956 ResTys.push_back(MVT::Other);
957
958 // Copy over the arguments, which are the same mostly.
959 SmallVector<SDValue, 4> Ops;
960 Ops.push_back(Base);
961 Ops.push_back(Load);
962 Ops.push_back(ModifierExpr);
963 Ops.push_back(Chain);
964 SDNode* Result = CurDAG->getMachineNode(opc, dl, ResTys, Ops);
965 SDValue ST;
966 MachineMemOperand *Mem =
967 MF->getMachineMemOperand(MachinePointerInfo(),
968 MachineMemOperand::MOStore, memsize, align);
969 if (MvtSize != MVT::i32)
970 ST = CurDAG->getTruncStore(Chain, dl, SDValue(Result, 1), Load,
971 MvtSize, Mem);
972 else
973 ST = CurDAG->getStore(Chain, dl, SDValue(Result, 1), Load, Mem);
974
975 SDNode* Store = SelectStore(ST.getNode());
976
977 const SDValue Froms[] = { SDValue(N, 0),
978 SDValue(N, 1) };
979 const SDValue Tos[] = { SDValue(Result, 0),
980 SDValue(Store, 0) };
981 ReplaceUses(Froms, Tos, 2);
982 return Result;
983 }
984
985 return SelectCode(N);
986}
987
988//
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000989// Checking for intrinsics which have predicate registers as operand(s)
990// and lowering to the actual intrinsic.
991//
992SDNode *HexagonDAGToDAGISel::SelectIntrinsicWOChain(SDNode *N) {
Colin LeMahieu0ee02fc2015-01-19 20:31:18 +0000993 unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
994 unsigned Bits;
995 switch (IID) {
996 case Intrinsic::hexagon_S2_vsplatrb:
997 Bits = 8;
998 break;
999 case Intrinsic::hexagon_S2_vsplatrh:
1000 Bits = 16;
1001 break;
1002 default:
1003 return SelectCode(N);
1004 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001005
Colin LeMahieu0ee02fc2015-01-19 20:31:18 +00001006 SDValue const &V = N->getOperand(1);
1007 SDValue U;
1008 if (isValueExtension(V, Bits, U)) {
1009 SDValue R = CurDAG->getNode(N->getOpcode(), SDLoc(N), N->getValueType(0),
1010 N->getOperand(0), U);
1011 return SelectCode(R.getNode());
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001012 }
1013 return SelectCode(N);
1014}
1015
Sirish Pande69295b82012-05-10 20:20:25 +00001016//
1017// Map floating point constant values.
1018//
1019SDNode *HexagonDAGToDAGISel::SelectConstantFP(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001020 SDLoc dl(N);
Sirish Pande69295b82012-05-10 20:20:25 +00001021 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
1022 APFloat APF = CN->getValueAPF();
1023 if (N->getValueType(0) == MVT::f32) {
1024 return CurDAG->getMachineNode(Hexagon::TFRI_f, dl, MVT::f32,
1025 CurDAG->getTargetConstantFP(APF.convertToFloat(), MVT::f32));
1026 }
1027 else if (N->getValueType(0) == MVT::f64) {
1028 return CurDAG->getMachineNode(Hexagon::CONST64_Float_Real, dl, MVT::f64,
1029 CurDAG->getTargetConstantFP(APF.convertToDouble(), MVT::f64));
1030 }
1031
1032 return SelectCode(N);
1033}
1034
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001035//
1036// Map predicate true (encoded as -1 in LLVM) to a XOR.
1037//
1038SDNode *HexagonDAGToDAGISel::SelectConstant(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001039 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001040 if (N->getValueType(0) == MVT::i1) {
Krzysztof Parzyszek36ccfa52015-03-18 19:07:53 +00001041 SDNode* Result = 0;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001042 int32_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Krzysztof Parzyszek7a9cd802015-03-18 18:50:06 +00001043 if (Val == -1) {
Krzysztof Parzyszek36ccfa52015-03-18 19:07:53 +00001044 Result = CurDAG->getMachineNode(Hexagon::TFR_PdTrue, dl, MVT::i1);
1045 } else if (Val == 0) {
1046 Result = CurDAG->getMachineNode(Hexagon::TFR_PdFalse, dl, MVT::i1);
1047 }
1048 if (Result) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001049 ReplaceUses(N, Result);
1050 return Result;
1051 }
1052 }
1053
1054 return SelectCode(N);
1055}
1056
1057
1058//
1059// Map add followed by a asr -> asr +=.
1060//
1061SDNode *HexagonDAGToDAGISel::SelectAdd(SDNode *N) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001062 SDLoc dl(N);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001063 if (N->getValueType(0) != MVT::i32) {
1064 return SelectCode(N);
1065 }
1066 // Identify nodes of the form: add(asr(...)).
1067 SDNode* Src1 = N->getOperand(0).getNode();
1068 if (Src1->getOpcode() != ISD::SRA || !Src1->hasOneUse()
1069 || Src1->getValueType(0) != MVT::i32) {
1070 return SelectCode(N);
1071 }
1072
1073 // Build Rd = Rd' + asr(Rs, Rt). The machine constraints will ensure that
1074 // Rd and Rd' are assigned to the same register
Colin LeMahieu0f850bd2014-12-19 20:29:29 +00001075 SDNode* Result = CurDAG->getMachineNode(Hexagon::S2_asr_r_r_acc, dl, MVT::i32,
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001076 N->getOperand(1),
1077 Src1->getOperand(0),
1078 Src1->getOperand(1));
1079 ReplaceUses(N, Result);
1080
1081 return Result;
1082}
1083
Krzysztof Parzyszek8c1cab92015-03-18 00:43:46 +00001084//
1085// Map the following, where possible.
1086// AND/FABS -> clrbit
1087// OR -> setbit
1088// XOR/FNEG ->toggle_bit.
1089//
1090SDNode *HexagonDAGToDAGISel::SelectBitOp(SDNode *N) {
1091 SDLoc dl(N);
1092 EVT ValueVT = N->getValueType(0);
1093
1094 // We handle only 32 and 64-bit bit ops.
1095 if (!(ValueVT == MVT::i32 || ValueVT == MVT::i64 ||
1096 ValueVT == MVT::f32 || ValueVT == MVT::f64))
1097 return SelectCode(N);
1098
1099 // We handly only fabs and fneg for V5.
1100 unsigned Opc = N->getOpcode();
Eric Christopher23a7d1e2015-03-21 03:12:59 +00001101 if ((Opc == ISD::FABS || Opc == ISD::FNEG) && !HST->hasV5TOps())
Krzysztof Parzyszek8c1cab92015-03-18 00:43:46 +00001102 return SelectCode(N);
1103
1104 int64_t Val = 0;
1105 if (Opc != ISD::FABS && Opc != ISD::FNEG) {
1106 if (N->getOperand(1).getOpcode() == ISD::Constant)
1107 Val = cast<ConstantSDNode>((N)->getOperand(1))->getSExtValue();
1108 else
1109 return SelectCode(N);
1110 }
1111
1112 if (Opc == ISD::AND) {
1113 if (((ValueVT == MVT::i32) &&
1114 (!((Val & 0x80000000) || (Val & 0x7fffffff)))) ||
1115 ((ValueVT == MVT::i64) &&
1116 (!((Val & 0x8000000000000000) || (Val & 0x7fffffff)))))
1117 // If it's simple AND, do the normal op.
1118 return SelectCode(N);
1119 else
1120 Val = ~Val;
1121 }
1122
1123 // If OR or AND is being fed by shl, srl and, sra don't do this change,
1124 // because Hexagon provide |= &= on shl, srl, and sra.
1125 // Traverse the DAG to see if there is shl, srl and sra.
1126 if (Opc == ISD::OR || Opc == ISD::AND) {
1127 switch (N->getOperand(0)->getOpcode()) {
1128 default: break;
1129 case ISD::SRA:
1130 case ISD::SRL:
1131 case ISD::SHL:
1132 return SelectCode(N);
1133 }
1134 }
1135
1136 // Make sure it's power of 2.
1137 unsigned bitpos = 0;
1138 if (Opc != ISD::FABS && Opc != ISD::FNEG) {
1139 if (((ValueVT == MVT::i32) && !isPowerOf2_32(Val)) ||
1140 ((ValueVT == MVT::i64) && !isPowerOf2_64(Val)))
1141 return SelectCode(N);
1142
1143 // Get the bit position.
Benjamin Kramer327ec242015-03-25 15:36:57 +00001144 bitpos = countTrailingZeros(uint64_t(Val));
Krzysztof Parzyszek8c1cab92015-03-18 00:43:46 +00001145 } else {
1146 // For fabs and fneg, it's always the 31st bit.
1147 bitpos = 31;
1148 }
1149
1150 unsigned BitOpc = 0;
1151 // Set the right opcode for bitwise operations.
1152 switch(Opc) {
1153 default: llvm_unreachable("Only bit-wise/abs/neg operations are allowed.");
1154 case ISD::AND:
1155 case ISD::FABS:
1156 BitOpc = Hexagon::S2_clrbit_i;
1157 break;
1158 case ISD::OR:
1159 BitOpc = Hexagon::S2_setbit_i;
1160 break;
1161 case ISD::XOR:
1162 case ISD::FNEG:
1163 BitOpc = Hexagon::S2_togglebit_i;
1164 break;
1165 }
1166
1167 SDNode *Result;
1168 // Get the right SDVal for the opcode.
1169 SDValue SDVal = CurDAG->getTargetConstant(bitpos, MVT::i32);
1170
1171 if (ValueVT == MVT::i32 || ValueVT == MVT::f32) {
1172 Result = CurDAG->getMachineNode(BitOpc, dl, ValueVT,
1173 N->getOperand(0), SDVal);
1174 } else {
1175 // 64-bit gymnastic to use REG_SEQUENCE. But it's worth it.
1176 EVT SubValueVT;
1177 if (ValueVT == MVT::i64)
1178 SubValueVT = MVT::i32;
1179 else
1180 SubValueVT = MVT::f32;
1181
1182 SDNode *Reg = N->getOperand(0).getNode();
1183 SDValue RegClass = CurDAG->getTargetConstant(Hexagon::DoubleRegsRegClassID,
1184 MVT::i64);
1185
1186 SDValue SubregHiIdx = CurDAG->getTargetConstant(Hexagon::subreg_hireg,
1187 MVT::i32);
1188 SDValue SubregLoIdx = CurDAG->getTargetConstant(Hexagon::subreg_loreg,
1189 MVT::i32);
1190
1191 SDValue SubregHI = CurDAG->getTargetExtractSubreg(Hexagon::subreg_hireg, dl,
1192 MVT::i32, SDValue(Reg, 0));
1193
1194 SDValue SubregLO = CurDAG->getTargetExtractSubreg(Hexagon::subreg_loreg, dl,
1195 MVT::i32, SDValue(Reg, 0));
1196
1197 // Clear/set/toggle hi or lo registers depending on the bit position.
1198 if (SubValueVT != MVT::f32 && bitpos < 32) {
1199 SDNode *Result0 = CurDAG->getMachineNode(BitOpc, dl, SubValueVT,
1200 SubregLO, SDVal);
1201 const SDValue Ops[] = { RegClass, SubregHI, SubregHiIdx,
1202 SDValue(Result0, 0), SubregLoIdx };
1203 Result = CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1204 dl, ValueVT, Ops);
1205 } else {
1206 if (Opc != ISD::FABS && Opc != ISD::FNEG)
1207 SDVal = CurDAG->getTargetConstant(bitpos-32, MVT::i32);
1208 SDNode *Result0 = CurDAG->getMachineNode(BitOpc, dl, SubValueVT,
1209 SubregHI, SDVal);
1210 const SDValue Ops[] = { RegClass, SDValue(Result0, 0), SubregHiIdx,
1211 SubregLO, SubregLoIdx };
1212 Result = CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE,
1213 dl, ValueVT, Ops);
1214 }
1215 }
1216
1217 ReplaceUses(N, Result);
1218 return Result;
1219}
1220
1221
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001222SDNode *HexagonDAGToDAGISel::SelectFrameIndex(SDNode *N) {
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001223 MachineFrameInfo *MFI = MF->getFrameInfo();
1224 const HexagonFrameLowering *HFI = HST->getFrameLowering();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001225 int FX = cast<FrameIndexSDNode>(N)->getIndex();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001226 unsigned StkA = HFI->getStackAlignment();
1227 unsigned MaxA = MFI->getMaxAlignment();
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001228 SDValue FI = CurDAG->getTargetFrameIndex(FX, MVT::i32);
1229 SDValue Zero = CurDAG->getTargetConstant(0, MVT::i32);
1230 SDLoc DL(N);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001231 SDNode *R = 0;
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001232
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001233 // Use TFR_FI when:
1234 // - the object is fixed, or
1235 // - there are no objects with higher-than-default alignment, or
1236 // - there are no dynamically allocated objects.
1237 // Otherwise, use TFR_FIA.
1238 if (FX < 0 || MaxA <= StkA || !MFI->hasVarSizedObjects()) {
1239 R = CurDAG->getMachineNode(Hexagon::TFR_FI, DL, MVT::i32, FI, Zero);
1240 } else {
1241 auto &HMFI = *MF->getInfo<HexagonMachineFunctionInfo>();
1242 unsigned AR = HMFI.getStackAlignBaseVReg();
1243 SDValue CH = CurDAG->getEntryNode();
1244 SDValue Ops[] = { CurDAG->getCopyFromReg(CH, DL, AR, MVT::i32), FI, Zero };
1245 R = CurDAG->getMachineNode(Hexagon::TFR_FIA, DL, MVT::i32, Ops);
1246 }
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001247
1248 if (N->getHasDebugValue())
1249 CurDAG->TransferDbgValues(SDValue(N, 0), SDValue(R, 0));
1250 return R;
1251}
1252
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001253
1254SDNode *HexagonDAGToDAGISel::Select(SDNode *N) {
Tim Northover31d093c2013-09-22 08:21:56 +00001255 if (N->isMachineOpcode()) {
1256 N->setNodeId(-1);
Craig Topper062a2ba2014-04-25 05:30:21 +00001257 return nullptr; // Already selected.
Tim Northover31d093c2013-09-22 08:21:56 +00001258 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001259
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001260 switch (N->getOpcode()) {
1261 case ISD::Constant:
1262 return SelectConstant(N);
1263
Sirish Pande69295b82012-05-10 20:20:25 +00001264 case ISD::ConstantFP:
1265 return SelectConstantFP(N);
1266
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001267 case ISD::FrameIndex:
1268 return SelectFrameIndex(N);
1269
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001270 case ISD::ADD:
1271 return SelectAdd(N);
1272
1273 case ISD::SHL:
1274 return SelectSHL(N);
1275
1276 case ISD::LOAD:
1277 return SelectLoad(N);
1278
1279 case ISD::STORE:
1280 return SelectStore(N);
1281
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001282 case ISD::MUL:
1283 return SelectMul(N);
1284
Krzysztof Parzyszek8c1cab92015-03-18 00:43:46 +00001285 case ISD::AND:
1286 case ISD::OR:
1287 case ISD::XOR:
1288 case ISD::FABS:
1289 case ISD::FNEG:
1290 return SelectBitOp(N);
1291
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001292 case ISD::ZERO_EXTEND:
1293 return SelectZeroExtend(N);
1294
Krzysztof Parzyszek47ab1f22015-03-18 16:23:44 +00001295 case ISD::INTRINSIC_W_CHAIN:
1296 return SelectIntrinsicWChain(N);
1297
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001298 case ISD::INTRINSIC_WO_CHAIN:
1299 return SelectIntrinsicWOChain(N);
1300 }
1301
1302 return SelectCode(N);
1303}
1304
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001305bool HexagonDAGToDAGISel::
Daniel Sanders60f1db02015-03-13 12:45:09 +00001306SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001307 std::vector<SDValue> &OutOps) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001308 SDValue Inp = Op, Res;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001309
Daniel Sanders60f1db02015-03-13 12:45:09 +00001310 switch (ConstraintID) {
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001311 default:
1312 return true;
Daniel Sanders49f643c2015-03-17 14:37:39 +00001313 case InlineAsm::Constraint_i:
1314 case InlineAsm::Constraint_o: // Offsetable.
1315 case InlineAsm::Constraint_v: // Not offsetable.
1316 case InlineAsm::Constraint_m: // Memory.
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001317 if (SelectAddrFI(Inp, Res))
1318 OutOps.push_back(Res);
1319 else
1320 OutOps.push_back(Inp);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001321 break;
1322 }
1323
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001324 OutOps.push_back(CurDAG->getTargetConstant(0, MVT::i32));
Jyotsna Vermad9225242013-02-13 21:38:46 +00001325 return false;
1326}
Colin LeMahieuc7522f32015-01-14 23:07:36 +00001327
Krzysztof Parzyszekae14e7b2015-03-17 21:47:16 +00001328void HexagonDAGToDAGISel::PreprocessISelDAG() {
1329 SelectionDAG &DAG = *CurDAG;
1330 std::vector<SDNode*> Nodes;
1331 for (auto I = DAG.allnodes_begin(), E = DAG.allnodes_end(); I != E; ++I)
1332 Nodes.push_back(I);
1333
1334 // Simplify: (or (select c x 0) z) -> (select c (or x z) z)
1335 // (or (select c 0 y) z) -> (select c z (or y z))
1336 // This may not be the right thing for all targets, so do it here.
1337 for (auto I: Nodes) {
1338 if (I->getOpcode() != ISD::OR)
1339 continue;
1340
1341 auto IsZero = [] (const SDValue &V) -> bool {
1342 if (ConstantSDNode *SC = dyn_cast<ConstantSDNode>(V.getNode()))
1343 return SC->isNullValue();
1344 return false;
1345 };
1346 auto IsSelect0 = [IsZero] (const SDValue &Op) -> bool {
1347 if (Op.getOpcode() != ISD::SELECT)
1348 return false;
1349 return IsZero(Op.getOperand(1)) || IsZero(Op.getOperand(2));
1350 };
1351
1352 SDValue N0 = I->getOperand(0), N1 = I->getOperand(1);
1353 EVT VT = I->getValueType(0);
1354 bool SelN0 = IsSelect0(N0);
1355 SDValue SOp = SelN0 ? N0 : N1;
1356 SDValue VOp = SelN0 ? N1 : N0;
1357
1358 if (SOp.getOpcode() == ISD::SELECT && SOp.getNode()->hasOneUse()) {
1359 SDValue SC = SOp.getOperand(0);
1360 SDValue SX = SOp.getOperand(1);
1361 SDValue SY = SOp.getOperand(2);
1362 SDLoc DLS = SOp;
1363 if (IsZero(SY)) {
1364 SDValue NewOr = DAG.getNode(ISD::OR, DLS, VT, SX, VOp);
1365 SDValue NewSel = DAG.getNode(ISD::SELECT, DLS, VT, SC, NewOr, VOp);
1366 DAG.ReplaceAllUsesWith(I, NewSel.getNode());
1367 } else if (IsZero(SX)) {
1368 SDValue NewOr = DAG.getNode(ISD::OR, DLS, VT, SY, VOp);
1369 SDValue NewSel = DAG.getNode(ISD::SELECT, DLS, VT, SC, VOp, NewOr);
1370 DAG.ReplaceAllUsesWith(I, NewSel.getNode());
1371 }
1372 }
1373 }
1374}
1375
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001376void HexagonDAGToDAGISel::EmitFunctionEntryCode() {
1377 auto &HST = static_cast<const HexagonSubtarget&>(MF->getSubtarget());
1378 auto &HFI = *HST.getFrameLowering();
1379 if (!HFI.needsAligna(*MF))
1380 return;
Krzysztof Parzyszekae14e7b2015-03-17 21:47:16 +00001381
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001382 MachineFrameInfo *MFI = MF->getFrameInfo();
1383 MachineBasicBlock *EntryBB = MF->begin();
1384 unsigned AR = FuncInfo->CreateReg(MVT::i32);
1385 unsigned MaxA = MFI->getMaxAlignment();
1386 auto &HII = *HST.getInstrInfo();
1387 BuildMI(EntryBB, DebugLoc(), HII.get(Hexagon::ALIGNA), AR)
1388 .addImm(MaxA);
1389 MF->getInfo<HexagonMachineFunctionInfo>()->setStackAlignBaseVReg(AR);
1390}
1391
1392// Match a frame index that can be used in an addressing mode.
Colin LeMahieuc7522f32015-01-14 23:07:36 +00001393bool HexagonDAGToDAGISel::SelectAddrFI(SDValue& N, SDValue &R) {
1394 if (N.getOpcode() != ISD::FrameIndex)
1395 return false;
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001396 auto &HFI = *HST->getFrameLowering();
1397 MachineFrameInfo *MFI = MF->getFrameInfo();
1398 int FX = cast<FrameIndexSDNode>(N)->getIndex();
1399 if (!MFI->isFixedObjectIndex(FX) && HFI.needsAligna(*MF))
1400 return false;
1401 R = CurDAG->getTargetFrameIndex(FX, MVT::i32);
Colin LeMahieuc7522f32015-01-14 23:07:36 +00001402 return true;
1403}
Colin LeMahieu0ee02fc2015-01-19 20:31:18 +00001404
Colin LeMahieu987b0942015-02-04 20:38:01 +00001405inline bool HexagonDAGToDAGISel::SelectAddrGA(SDValue &N, SDValue &R) {
1406 return SelectGlobalAddress(N, R, false);
1407}
1408
Colin LeMahieu51491352015-02-04 22:36:28 +00001409inline bool HexagonDAGToDAGISel::SelectAddrGP(SDValue &N, SDValue &R) {
1410 return SelectGlobalAddress(N, R, true);
1411}
1412
Colin LeMahieu987b0942015-02-04 20:38:01 +00001413bool HexagonDAGToDAGISel::SelectGlobalAddress(SDValue &N, SDValue &R,
1414 bool UseGP) {
1415 switch (N.getOpcode()) {
1416 case ISD::ADD: {
1417 SDValue N0 = N.getOperand(0);
1418 SDValue N1 = N.getOperand(1);
1419 unsigned GAOpc = N0.getOpcode();
1420 if (UseGP && GAOpc != HexagonISD::CONST32_GP)
1421 return false;
1422 if (!UseGP && GAOpc != HexagonISD::CONST32)
1423 return false;
1424 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N1)) {
1425 SDValue Addr = N0.getOperand(0);
1426 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Addr)) {
1427 if (GA->getOpcode() == ISD::TargetGlobalAddress) {
1428 uint64_t NewOff = GA->getOffset() + (uint64_t)Const->getSExtValue();
1429 R = CurDAG->getTargetGlobalAddress(GA->getGlobal(), SDLoc(Const),
1430 N.getValueType(), NewOff);
1431 return true;
1432 }
1433 }
1434 }
1435 break;
1436 }
1437 case HexagonISD::CONST32:
1438 // The operand(0) of CONST32 is TargetGlobalAddress, which is what we
1439 // want in the instruction.
1440 if (!UseGP)
1441 R = N.getOperand(0);
1442 return !UseGP;
1443 case HexagonISD::CONST32_GP:
1444 if (UseGP)
1445 R = N.getOperand(0);
1446 return UseGP;
1447 default:
1448 return false;
1449 }
1450
1451 return false;
1452}
1453
Krzysztof Parzyszeka29622a2015-03-12 16:44:50 +00001454bool HexagonDAGToDAGISel::isValueExtension(const SDValue &Val,
1455 unsigned FromBits, SDValue &Src) {
Colin LeMahieu0ee02fc2015-01-19 20:31:18 +00001456 unsigned Opc = Val.getOpcode();
1457 switch (Opc) {
1458 case ISD::SIGN_EXTEND:
1459 case ISD::ZERO_EXTEND:
1460 case ISD::ANY_EXTEND: {
1461 SDValue const &Op0 = Val.getOperand(0);
1462 EVT T = Op0.getValueType();
1463 if (T.isInteger() && T.getSizeInBits() == FromBits) {
1464 Src = Op0;
1465 return true;
1466 }
1467 break;
1468 }
1469 case ISD::SIGN_EXTEND_INREG:
1470 case ISD::AssertSext:
1471 case ISD::AssertZext:
1472 if (Val.getOperand(0).getValueType().isInteger()) {
1473 VTSDNode *T = cast<VTSDNode>(Val.getOperand(1));
1474 if (T->getVT().getSizeInBits() == FromBits) {
1475 Src = Val.getOperand(0);
1476 return true;
1477 }
1478 }
1479 break;
1480 case ISD::AND: {
1481 // Check if this is an AND with "FromBits" of lower bits set to 1.
1482 uint64_t FromMask = (1 << FromBits) - 1;
1483 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val.getOperand(0))) {
1484 if (C->getZExtValue() == FromMask) {
1485 Src = Val.getOperand(1);
1486 return true;
1487 }
1488 }
1489 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val.getOperand(1))) {
1490 if (C->getZExtValue() == FromMask) {
1491 Src = Val.getOperand(0);
1492 return true;
1493 }
1494 }
1495 break;
1496 }
1497 case ISD::OR:
1498 case ISD::XOR: {
1499 // OR/XOR with the lower "FromBits" bits set to 0.
1500 uint64_t FromMask = (1 << FromBits) - 1;
1501 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val.getOperand(0))) {
1502 if ((C->getZExtValue() & FromMask) == 0) {
1503 Src = Val.getOperand(1);
1504 return true;
1505 }
1506 }
1507 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val.getOperand(1))) {
1508 if ((C->getZExtValue() & FromMask) == 0) {
1509 Src = Val.getOperand(0);
1510 return true;
1511 }
1512 }
1513 }
1514 default:
1515 break;
1516 }
1517 return false;
1518}