blob: a83f05276045884463abc12e37d628ab9bae4d1b [file] [log] [blame]
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00001//===-- ARMISelDAGToDAG.cpp - A dag to dag inst selector for ARM ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines an instruction selector for the ARM target.
11//
12//===----------------------------------------------------------------------===//
13
Dale Johannesen51e28e62010-06-03 21:09:53 +000014#define DEBUG_TYPE "arm-isel"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000015#include "ARM.h"
Evan Cheng48575f62010-12-05 22:04:16 +000016#include "ARMBaseInstrInfo.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000017#include "ARMTargetMachine.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000018#include "MCTargetDesc/ARMAddressingModes.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
Weiming Zhao3019fbb2013-02-13 21:43:02 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000023#include "llvm/CodeGen/SelectionDAG.h"
24#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000025#include "llvm/IR/CallingConv.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/LLVMContext.h"
Evan Cheng94cc6d32010-05-04 20:39:49 +000031#include "llvm/Support/CommandLine.h"
Chris Lattner3d62d782008-02-03 05:43:57 +000032#include "llvm/Support/Compiler.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000033#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000036#include "llvm/Target/TargetLowering.h"
37#include "llvm/Target/TargetOptions.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000039using namespace llvm;
40
Evan Chenga2c519b2010-07-30 23:33:54 +000041static cl::opt<bool>
42DisableShifterOp("disable-shifter-op", cl::Hidden,
43 cl::desc("Disable isel of shifter-op"),
44 cl::init(false));
45
Evan Cheng48575f62010-12-05 22:04:16 +000046static cl::opt<bool>
47CheckVMLxHazard("check-vmlx-hazard", cl::Hidden,
48 cl::desc("Check fp vmla / vmls hazard at isel time"),
Bob Wilson84c5eed2011-04-19 18:11:57 +000049 cl::init(true));
Evan Cheng48575f62010-12-05 22:04:16 +000050
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000051//===--------------------------------------------------------------------===//
52/// ARMDAGToDAGISel - ARM specific code to select ARM machine
53/// instructions for SelectionDAG operations.
54///
55namespace {
Jim Grosbach82891622010-09-29 19:03:54 +000056
57enum AddrMode2Type {
58 AM2_BASE, // Simple AM2 (+-imm12)
59 AM2_SHOP // Shifter-op AM2
60};
61
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000062class ARMDAGToDAGISel : public SelectionDAGISel {
Anton Korobeynikovd49ea772009-06-26 21:28:53 +000063 ARMBaseTargetMachine &TM;
Evan Cheng48575f62010-12-05 22:04:16 +000064 const ARMBaseInstrInfo *TII;
Evan Cheng3f7eb8e2008-09-18 07:24:33 +000065
Evan Chenga8e29892007-01-19 07:51:42 +000066 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
67 /// make the right decision when generating code for different targets.
68 const ARMSubtarget *Subtarget;
69
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000070public:
Bob Wilson522ce972009-09-28 14:30:20 +000071 explicit ARMDAGToDAGISel(ARMBaseTargetMachine &tm,
72 CodeGenOpt::Level OptLevel)
73 : SelectionDAGISel(tm, OptLevel), TM(tm),
Evan Cheng48575f62010-12-05 22:04:16 +000074 TII(static_cast<const ARMBaseInstrInfo*>(TM.getInstrInfo())),
75 Subtarget(&TM.getSubtarget<ARMSubtarget>()) {
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000076 }
77
Evan Chenga8e29892007-01-19 07:51:42 +000078 virtual const char *getPassName() const {
79 return "ARM Instruction Selection";
Anton Korobeynikov52237112009-06-17 18:13:58 +000080 }
81
Evan Cheng733c6b12012-12-19 20:16:09 +000082 virtual void PreprocessISelDAG();
83
Bob Wilsonaf4a8912009-10-08 18:51:31 +000084 /// getI32Imm - Return a target constant of type i32 with the specified
85 /// value.
Anton Korobeynikov52237112009-06-17 18:13:58 +000086 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000087 return CurDAG->getTargetConstant(Imm, MVT::i32);
Anton Korobeynikov52237112009-06-17 18:13:58 +000088 }
89
Dan Gohmaneeb3a002010-01-05 01:24:18 +000090 SDNode *Select(SDNode *N);
Evan Cheng014bf212010-02-15 19:41:07 +000091
Evan Cheng48575f62010-12-05 22:04:16 +000092
93 bool hasNoVMLxHazardUse(SDNode *N) const;
Evan Chengf40deed2010-10-27 23:41:30 +000094 bool isShifterOpProfitable(const SDValue &Shift,
95 ARM_AM::ShiftOpc ShOpcVal, unsigned ShAmt);
Owen Anderson92a20222011-07-21 18:54:16 +000096 bool SelectRegShifterOperand(SDValue N, SDValue &A,
97 SDValue &B, SDValue &C,
98 bool CheckProfitability = true);
99 bool SelectImmShifterOperand(SDValue N, SDValue &A,
Owen Anderson152d4a42011-07-21 23:38:37 +0000100 SDValue &B, bool CheckProfitability = true);
101 bool SelectShiftRegShifterOperand(SDValue N, SDValue &A,
Owen Anderson099e5552011-03-18 19:46:58 +0000102 SDValue &B, SDValue &C) {
103 // Don't apply the profitability check
Owen Anderson152d4a42011-07-21 23:38:37 +0000104 return SelectRegShifterOperand(N, A, B, C, false);
105 }
106 bool SelectShiftImmShifterOperand(SDValue N, SDValue &A,
107 SDValue &B) {
108 // Don't apply the profitability check
109 return SelectImmShifterOperand(N, A, B, false);
Owen Anderson099e5552011-03-18 19:46:58 +0000110 }
111
Jim Grosbach3e556122010-10-26 22:37:02 +0000112 bool SelectAddrModeImm12(SDValue N, SDValue &Base, SDValue &OffImm);
113 bool SelectLdStSOReg(SDValue N, SDValue &Base, SDValue &Offset, SDValue &Opc);
114
Jim Grosbach82891622010-09-29 19:03:54 +0000115 AddrMode2Type SelectAddrMode2Worker(SDValue N, SDValue &Base,
116 SDValue &Offset, SDValue &Opc);
117 bool SelectAddrMode2Base(SDValue N, SDValue &Base, SDValue &Offset,
118 SDValue &Opc) {
119 return SelectAddrMode2Worker(N, Base, Offset, Opc) == AM2_BASE;
120 }
121
122 bool SelectAddrMode2ShOp(SDValue N, SDValue &Base, SDValue &Offset,
123 SDValue &Opc) {
124 return SelectAddrMode2Worker(N, Base, Offset, Opc) == AM2_SHOP;
125 }
126
127 bool SelectAddrMode2(SDValue N, SDValue &Base, SDValue &Offset,
128 SDValue &Opc) {
129 SelectAddrMode2Worker(N, Base, Offset, Opc);
Jim Grosbach3e556122010-10-26 22:37:02 +0000130// return SelectAddrMode2ShOp(N, Base, Offset, Opc);
Jim Grosbach82891622010-09-29 19:03:54 +0000131 // This always matches one way or another.
132 return true;
133 }
134
Owen Anderson793e7962011-07-26 20:54:26 +0000135 bool SelectAddrMode2OffsetReg(SDNode *Op, SDValue N,
136 SDValue &Offset, SDValue &Opc);
137 bool SelectAddrMode2OffsetImm(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000138 SDValue &Offset, SDValue &Opc);
Owen Andersonc4e16de2011-08-29 20:16:50 +0000139 bool SelectAddrMode2OffsetImmPre(SDNode *Op, SDValue N,
140 SDValue &Offset, SDValue &Opc);
Jim Grosbach19dec202011-08-05 20:35:44 +0000141 bool SelectAddrOffsetNone(SDValue N, SDValue &Base);
Chris Lattner52a261b2010-09-21 20:31:19 +0000142 bool SelectAddrMode3(SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000143 SDValue &Offset, SDValue &Opc);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000144 bool SelectAddrMode3Offset(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000145 SDValue &Offset, SDValue &Opc);
Chris Lattner52a261b2010-09-21 20:31:19 +0000146 bool SelectAddrMode5(SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000147 SDValue &Offset);
Bob Wilson665814b2010-11-01 23:40:51 +0000148 bool SelectAddrMode6(SDNode *Parent, SDValue N, SDValue &Addr,SDValue &Align);
Bob Wilsonda525062011-02-25 06:42:42 +0000149 bool SelectAddrMode6Offset(SDNode *Op, SDValue N, SDValue &Offset);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000150
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000151 bool SelectAddrModePC(SDValue N, SDValue &Offset, SDValue &Label);
Evan Chenga8e29892007-01-19 07:51:42 +0000152
Bill Wendlingf4caf692010-12-14 03:36:38 +0000153 // Thumb Addressing Modes:
Chris Lattner52a261b2010-09-21 20:31:19 +0000154 bool SelectThumbAddrModeRR(SDValue N, SDValue &Base, SDValue &Offset);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000155 bool SelectThumbAddrModeRI(SDValue N, SDValue &Base, SDValue &Offset,
156 unsigned Scale);
157 bool SelectThumbAddrModeRI5S1(SDValue N, SDValue &Base, SDValue &Offset);
158 bool SelectThumbAddrModeRI5S2(SDValue N, SDValue &Base, SDValue &Offset);
159 bool SelectThumbAddrModeRI5S4(SDValue N, SDValue &Base, SDValue &Offset);
160 bool SelectThumbAddrModeImm5S(SDValue N, unsigned Scale, SDValue &Base,
161 SDValue &OffImm);
162 bool SelectThumbAddrModeImm5S1(SDValue N, SDValue &Base,
163 SDValue &OffImm);
164 bool SelectThumbAddrModeImm5S2(SDValue N, SDValue &Base,
165 SDValue &OffImm);
166 bool SelectThumbAddrModeImm5S4(SDValue N, SDValue &Base,
167 SDValue &OffImm);
Chris Lattner52a261b2010-09-21 20:31:19 +0000168 bool SelectThumbAddrModeSP(SDValue N, SDValue &Base, SDValue &OffImm);
Evan Chenga8e29892007-01-19 07:51:42 +0000169
Bill Wendlingf4caf692010-12-14 03:36:38 +0000170 // Thumb 2 Addressing Modes:
Chris Lattner52a261b2010-09-21 20:31:19 +0000171 bool SelectT2ShifterOperandReg(SDValue N,
Evan Cheng9cb9e672009-06-27 02:26:13 +0000172 SDValue &BaseReg, SDValue &Opc);
Chris Lattner52a261b2010-09-21 20:31:19 +0000173 bool SelectT2AddrModeImm12(SDValue N, SDValue &Base, SDValue &OffImm);
174 bool SelectT2AddrModeImm8(SDValue N, SDValue &Base,
Evan Cheng055b0312009-06-29 07:51:04 +0000175 SDValue &OffImm);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000176 bool SelectT2AddrModeImm8Offset(SDNode *Op, SDValue N,
Evan Chenge88d5ce2009-07-02 07:28:31 +0000177 SDValue &OffImm);
Chris Lattner52a261b2010-09-21 20:31:19 +0000178 bool SelectT2AddrModeSoReg(SDValue N, SDValue &Base,
Evan Cheng055b0312009-06-29 07:51:04 +0000179 SDValue &OffReg, SDValue &ShImm);
180
Evan Cheng875a6ac2010-11-12 22:42:47 +0000181 inline bool is_so_imm(unsigned Imm) const {
182 return ARM_AM::getSOImmVal(Imm) != -1;
183 }
184
185 inline bool is_so_imm_not(unsigned Imm) const {
186 return ARM_AM::getSOImmVal(~Imm) != -1;
187 }
188
189 inline bool is_t2_so_imm(unsigned Imm) const {
190 return ARM_AM::getT2SOImmVal(Imm) != -1;
191 }
192
193 inline bool is_t2_so_imm_not(unsigned Imm) const {
194 return ARM_AM::getT2SOImmVal(~Imm) != -1;
195 }
196
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000197 // Include the pieces autogenerated from the target description.
198#include "ARMGenDAGISel.inc"
Bob Wilson224c2442009-05-19 05:53:42 +0000199
200private:
Evan Chenge88d5ce2009-07-02 07:28:31 +0000201 /// SelectARMIndexedLoad - Indexed (pre/post inc/dec) load matching code for
202 /// ARM.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000203 SDNode *SelectARMIndexedLoad(SDNode *N);
204 SDNode *SelectT2IndexedLoad(SDNode *N);
Evan Chenge88d5ce2009-07-02 07:28:31 +0000205
Bob Wilson621f1952010-03-23 05:25:43 +0000206 /// SelectVLD - Select NEON load intrinsics. NumVecs should be
207 /// 1, 2, 3 or 4. The opcode arrays specify the instructions used for
Bob Wilson3e36f132009-10-14 17:28:52 +0000208 /// loads of D registers and even subregs and odd subregs of Q registers.
Bob Wilson621f1952010-03-23 05:25:43 +0000209 /// For NumVecs <= 2, QOpcodes1 is not used.
Bob Wilson1c3ef902011-02-07 17:43:21 +0000210 SDNode *SelectVLD(SDNode *N, bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +0000211 const uint16_t *DOpcodes,
212 const uint16_t *QOpcodes0, const uint16_t *QOpcodes1);
Bob Wilson3e36f132009-10-14 17:28:52 +0000213
Bob Wilson24f995d2009-10-14 18:32:29 +0000214 /// SelectVST - Select NEON store intrinsics. NumVecs should
Bob Wilson11d98992010-03-23 06:20:33 +0000215 /// be 1, 2, 3 or 4. The opcode arrays specify the instructions used for
Bob Wilson24f995d2009-10-14 18:32:29 +0000216 /// stores of D registers and even subregs and odd subregs of Q registers.
Bob Wilson11d98992010-03-23 06:20:33 +0000217 /// For NumVecs <= 2, QOpcodes1 is not used.
Bob Wilson1c3ef902011-02-07 17:43:21 +0000218 SDNode *SelectVST(SDNode *N, bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +0000219 const uint16_t *DOpcodes,
220 const uint16_t *QOpcodes0, const uint16_t *QOpcodes1);
Bob Wilson24f995d2009-10-14 18:32:29 +0000221
Bob Wilson96493442009-10-14 16:46:45 +0000222 /// SelectVLDSTLane - Select NEON load/store lane intrinsics. NumVecs should
Bob Wilsona7c397c2009-10-14 16:19:03 +0000223 /// be 2, 3 or 4. The opcode arrays specify the instructions used for
Bob Wilson8466fa12010-09-13 23:01:35 +0000224 /// load/store of D registers and Q registers.
Bob Wilson1c3ef902011-02-07 17:43:21 +0000225 SDNode *SelectVLDSTLane(SDNode *N, bool IsLoad,
226 bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +0000227 const uint16_t *DOpcodes, const uint16_t *QOpcodes);
Bob Wilsona7c397c2009-10-14 16:19:03 +0000228
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000229 /// SelectVLDDup - Select NEON load-duplicate intrinsics. NumVecs
230 /// should be 2, 3 or 4. The opcode array specifies the instructions used
231 /// for loading D registers. (Q registers are not supported.)
Bob Wilson1c3ef902011-02-07 17:43:21 +0000232 SDNode *SelectVLDDup(SDNode *N, bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +0000233 const uint16_t *Opcodes);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000234
Bob Wilson78dfbc32010-07-07 00:08:54 +0000235 /// SelectVTBL - Select NEON VTBL and VTBX intrinsics. NumVecs should be 2,
236 /// 3 or 4. These are custom-selected so that a REG_SEQUENCE can be
237 /// generated to force the table registers to be consecutive.
238 SDNode *SelectVTBL(SDNode *N, bool IsExt, unsigned NumVecs, unsigned Opc);
Bob Wilsond491d6e2010-07-06 23:36:25 +0000239
Sandeep Patel4e1ed882009-10-13 20:25:58 +0000240 /// SelectV6T2BitfieldExtractOp - Select SBFX/UBFX instructions for ARM.
Jim Grosbach3a1287b2010-04-22 23:24:18 +0000241 SDNode *SelectV6T2BitfieldExtractOp(SDNode *N, bool isSigned);
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000242
Evan Cheng07ba9062009-11-19 21:45:22 +0000243 /// SelectCMOVOp - Select CMOV instructions for ARM.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000244 SDNode *SelectCMOVOp(SDNode *N);
245 SDNode *SelectT2CMOVShiftOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +0000246 ARMCC::CondCodes CCVal, SDValue CCR,
247 SDValue InFlag);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000248 SDNode *SelectARMCMOVShiftOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +0000249 ARMCC::CondCodes CCVal, SDValue CCR,
250 SDValue InFlag);
Jim Grosbacha4257162010-10-07 00:53:56 +0000251 SDNode *SelectT2CMOVImmOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +0000252 ARMCC::CondCodes CCVal, SDValue CCR,
253 SDValue InFlag);
Jim Grosbach3bbdcea2010-10-07 00:42:42 +0000254 SDNode *SelectARMCMOVImmOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +0000255 ARMCC::CondCodes CCVal, SDValue CCR,
256 SDValue InFlag);
Evan Cheng07ba9062009-11-19 21:45:22 +0000257
Bill Wendlingef2c86f2011-10-10 22:59:55 +0000258 // Select special operations if node forms integer ABS pattern
259 SDNode *SelectABSOp(SDNode *N);
260
Weiming Zhao3019fbb2013-02-13 21:43:02 +0000261 SDNode *SelectInlineAsm(SDNode *N);
262
Evan Chengde8aa4e2010-05-05 18:28:36 +0000263 SDNode *SelectConcatVector(SDNode *N);
264
Eli Friedman2bdffe42011-08-31 00:31:29 +0000265 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
266
Evan Chengaf4550f2009-07-02 01:23:32 +0000267 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
268 /// inline asm expressions.
269 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
270 char ConstraintCode,
271 std::vector<SDValue> &OutOps);
Bob Wilson3bf12ab2009-10-06 22:01:59 +0000272
Weiming Zhao8b149cb2012-11-17 00:23:35 +0000273 // Form pairs of consecutive R, S, D, or Q registers.
Weiming Zhaoe56764b2012-11-16 21:55:34 +0000274 SDNode *createGPRPairNode(EVT VT, SDValue V0, SDValue V1);
Weiming Zhao8b149cb2012-11-17 00:23:35 +0000275 SDNode *createSRegPairNode(EVT VT, SDValue V0, SDValue V1);
276 SDNode *createDRegPairNode(EVT VT, SDValue V0, SDValue V1);
277 SDNode *createQRegPairNode(EVT VT, SDValue V0, SDValue V1);
Evan Cheng603afbf2010-05-10 17:34:18 +0000278
Bob Wilson40cbe7d2010-06-04 00:04:02 +0000279 // Form sequences of 4 consecutive S, D, or Q registers.
Weiming Zhao8b149cb2012-11-17 00:23:35 +0000280 SDNode *createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
281 SDNode *createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
282 SDNode *createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
Bob Wilson665814b2010-11-01 23:40:51 +0000283
284 // Get the alignment operand for a NEON VLD or VST instruction.
285 SDValue GetVLDSTAlign(SDValue Align, unsigned NumVecs, bool is64BitVector);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000286};
Evan Chenga8e29892007-01-19 07:51:42 +0000287}
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000288
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000289/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
290/// operand. If so Imm will receive the 32-bit value.
291static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
292 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
293 Imm = cast<ConstantSDNode>(N)->getZExtValue();
294 return true;
295 }
296 return false;
297}
298
299// isInt32Immediate - This method tests to see if a constant operand.
300// If so Imm will receive the 32 bit value.
301static bool isInt32Immediate(SDValue N, unsigned &Imm) {
302 return isInt32Immediate(N.getNode(), Imm);
303}
304
305// isOpcWithIntImmediate - This method tests to see if the node is a specific
306// opcode and that it has a immediate integer right operand.
307// If so Imm will receive the 32 bit value.
308static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
309 return N->getOpcode() == Opc &&
310 isInt32Immediate(N->getOperand(1).getNode(), Imm);
311}
312
Daniel Dunbarec91d522011-01-19 15:12:16 +0000313/// \brief Check whether a particular node is a constant value representable as
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +0000314/// (N * Scale) where (N in [\p RangeMin, \p RangeMax).
Daniel Dunbarec91d522011-01-19 15:12:16 +0000315///
316/// \param ScaledConstant [out] - On success, the pre-scaled constant value.
Jakob Stoklund Olesen11ebe3d2011-09-23 22:10:33 +0000317static bool isScaledConstantInRange(SDValue Node, int Scale,
Daniel Dunbarec91d522011-01-19 15:12:16 +0000318 int RangeMin, int RangeMax,
319 int &ScaledConstant) {
Jakob Stoklund Olesen11ebe3d2011-09-23 22:10:33 +0000320 assert(Scale > 0 && "Invalid scale!");
Daniel Dunbarec91d522011-01-19 15:12:16 +0000321
322 // Check that this is a constant.
323 const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Node);
324 if (!C)
325 return false;
326
327 ScaledConstant = (int) C->getZExtValue();
328 if ((ScaledConstant % Scale) != 0)
329 return false;
330
331 ScaledConstant /= Scale;
332 return ScaledConstant >= RangeMin && ScaledConstant < RangeMax;
333}
334
Evan Cheng733c6b12012-12-19 20:16:09 +0000335void ARMDAGToDAGISel::PreprocessISelDAG() {
336 if (!Subtarget->hasV6T2Ops())
337 return;
338
339 bool isThumb2 = Subtarget->isThumb();
340 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
341 E = CurDAG->allnodes_end(); I != E; ) {
342 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
343
344 if (N->getOpcode() != ISD::ADD)
345 continue;
346
347 // Look for (add X1, (and (srl X2, c1), c2)) where c2 is constant with
348 // leading zeros, followed by consecutive set bits, followed by 1 or 2
349 // trailing zeros, e.g. 1020.
350 // Transform the expression to
351 // (add X1, (shl (and (srl X2, c1), (c2>>tz)), tz)) where tz is the number
352 // of trailing zeros of c2. The left shift would be folded as an shifter
353 // operand of 'add' and the 'and' and 'srl' would become a bits extraction
354 // node (UBFX).
355
356 SDValue N0 = N->getOperand(0);
357 SDValue N1 = N->getOperand(1);
358 unsigned And_imm = 0;
359 if (!isOpcWithIntImmediate(N1.getNode(), ISD::AND, And_imm)) {
360 if (isOpcWithIntImmediate(N0.getNode(), ISD::AND, And_imm))
361 std::swap(N0, N1);
362 }
363 if (!And_imm)
364 continue;
365
366 // Check if the AND mask is an immediate of the form: 000.....1111111100
367 unsigned TZ = CountTrailingZeros_32(And_imm);
368 if (TZ != 1 && TZ != 2)
369 // Be conservative here. Shifter operands aren't always free. e.g. On
370 // Swift, left shifter operand of 1 / 2 for free but others are not.
371 // e.g.
372 // ubfx r3, r1, #16, #8
373 // ldr.w r3, [r0, r3, lsl #2]
374 // vs.
375 // mov.w r9, #1020
376 // and.w r2, r9, r1, lsr #14
377 // ldr r2, [r0, r2]
378 continue;
379 And_imm >>= TZ;
380 if (And_imm & (And_imm + 1))
381 continue;
382
383 // Look for (and (srl X, c1), c2).
384 SDValue Srl = N1.getOperand(0);
385 unsigned Srl_imm = 0;
386 if (!isOpcWithIntImmediate(Srl.getNode(), ISD::SRL, Srl_imm) ||
387 (Srl_imm <= 2))
388 continue;
389
390 // Make sure first operand is not a shifter operand which would prevent
391 // folding of the left shift.
392 SDValue CPTmp0;
393 SDValue CPTmp1;
394 SDValue CPTmp2;
395 if (isThumb2) {
396 if (SelectT2ShifterOperandReg(N0, CPTmp0, CPTmp1))
397 continue;
398 } else {
399 if (SelectImmShifterOperand(N0, CPTmp0, CPTmp1) ||
400 SelectRegShifterOperand(N0, CPTmp0, CPTmp1, CPTmp2))
401 continue;
402 }
403
404 // Now make the transformation.
405 Srl = CurDAG->getNode(ISD::SRL, Srl.getDebugLoc(), MVT::i32,
406 Srl.getOperand(0),
407 CurDAG->getConstant(Srl_imm+TZ, MVT::i32));
408 N1 = CurDAG->getNode(ISD::AND, N1.getDebugLoc(), MVT::i32,
409 Srl, CurDAG->getConstant(And_imm, MVT::i32));
410 N1 = CurDAG->getNode(ISD::SHL, N1.getDebugLoc(), MVT::i32,
411 N1, CurDAG->getConstant(TZ, MVT::i32));
412 CurDAG->UpdateNodeOperands(N, N0, N1);
413 }
414}
415
Evan Cheng48575f62010-12-05 22:04:16 +0000416/// hasNoVMLxHazardUse - Return true if it's desirable to select a FP MLA / MLS
417/// node. VFP / NEON fp VMLA / VMLS instructions have special RAW hazards (at
418/// least on current ARM implementations) which should be avoidded.
419bool ARMDAGToDAGISel::hasNoVMLxHazardUse(SDNode *N) const {
420 if (OptLevel == CodeGenOpt::None)
421 return true;
422
423 if (!CheckVMLxHazard)
424 return true;
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000425
426 if (!Subtarget->isCortexA8() && !Subtarget->isLikeA9() &&
427 !Subtarget->isSwift())
Evan Cheng48575f62010-12-05 22:04:16 +0000428 return true;
429
430 if (!N->hasOneUse())
431 return false;
432
433 SDNode *Use = *N->use_begin();
434 if (Use->getOpcode() == ISD::CopyToReg)
435 return true;
436 if (Use->isMachineOpcode()) {
Evan Chenge837dea2011-06-28 19:10:37 +0000437 const MCInstrDesc &MCID = TII->get(Use->getMachineOpcode());
438 if (MCID.mayStore())
Evan Cheng48575f62010-12-05 22:04:16 +0000439 return true;
Evan Chenge837dea2011-06-28 19:10:37 +0000440 unsigned Opcode = MCID.getOpcode();
Evan Cheng48575f62010-12-05 22:04:16 +0000441 if (Opcode == ARM::VMOVRS || Opcode == ARM::VMOVRRD)
442 return true;
443 // vmlx feeding into another vmlx. We actually want to unfold
444 // the use later in the MLxExpansion pass. e.g.
445 // vmla
446 // vmla (stall 8 cycles)
447 //
448 // vmul (5 cycles)
449 // vadd (5 cycles)
450 // vmla
451 // This adds up to about 18 - 19 cycles.
452 //
453 // vmla
454 // vmul (stall 4 cycles)
455 // vadd adds up to about 14 cycles.
456 return TII->isFpMLxInstruction(Opcode);
457 }
458
459 return false;
460}
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000461
Evan Chengf40deed2010-10-27 23:41:30 +0000462bool ARMDAGToDAGISel::isShifterOpProfitable(const SDValue &Shift,
463 ARM_AM::ShiftOpc ShOpcVal,
464 unsigned ShAmt) {
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000465 if (!Subtarget->isLikeA9() && !Subtarget->isSwift())
Evan Chengf40deed2010-10-27 23:41:30 +0000466 return true;
467 if (Shift.hasOneUse())
468 return true;
469 // R << 2 is free.
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000470 return ShOpcVal == ARM_AM::lsl &&
471 (ShAmt == 2 || (Subtarget->isSwift() && ShAmt == 1));
Evan Chengf40deed2010-10-27 23:41:30 +0000472}
473
Owen Anderson92a20222011-07-21 18:54:16 +0000474bool ARMDAGToDAGISel::SelectImmShifterOperand(SDValue N,
Evan Cheng055b0312009-06-29 07:51:04 +0000475 SDValue &BaseReg,
Owen Anderson099e5552011-03-18 19:46:58 +0000476 SDValue &Opc,
477 bool CheckProfitability) {
Evan Chenga2c519b2010-07-30 23:33:54 +0000478 if (DisableShifterOp)
479 return false;
480
Evan Chengee04a6d2011-07-20 23:34:39 +0000481 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOpcode());
Evan Cheng055b0312009-06-29 07:51:04 +0000482
483 // Don't match base register only case. That is matched to a separate
484 // lower complexity pattern with explicit register operand.
485 if (ShOpcVal == ARM_AM::no_shift) return false;
Jim Grosbach764ab522009-08-11 15:33:49 +0000486
Evan Cheng055b0312009-06-29 07:51:04 +0000487 BaseReg = N.getOperand(0);
488 unsigned ShImmVal = 0;
Owen Anderson92a20222011-07-21 18:54:16 +0000489 ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1));
490 if (!RHS) return false;
Owen Anderson92a20222011-07-21 18:54:16 +0000491 ShImmVal = RHS->getZExtValue() & 31;
Evan Chengf40deed2010-10-27 23:41:30 +0000492 Opc = CurDAG->getTargetConstant(ARM_AM::getSORegOpc(ShOpcVal, ShImmVal),
493 MVT::i32);
494 return true;
495}
496
Owen Anderson92a20222011-07-21 18:54:16 +0000497bool ARMDAGToDAGISel::SelectRegShifterOperand(SDValue N,
498 SDValue &BaseReg,
499 SDValue &ShReg,
500 SDValue &Opc,
501 bool CheckProfitability) {
502 if (DisableShifterOp)
503 return false;
504
505 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOpcode());
506
507 // Don't match base register only case. That is matched to a separate
508 // lower complexity pattern with explicit register operand.
509 if (ShOpcVal == ARM_AM::no_shift) return false;
510
511 BaseReg = N.getOperand(0);
512 unsigned ShImmVal = 0;
513 ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1));
514 if (RHS) return false;
515
516 ShReg = N.getOperand(1);
517 if (CheckProfitability && !isShifterOpProfitable(N, ShOpcVal, ShImmVal))
518 return false;
519 Opc = CurDAG->getTargetConstant(ARM_AM::getSORegOpc(ShOpcVal, ShImmVal),
520 MVT::i32);
521 return true;
522}
523
524
Jim Grosbach3e556122010-10-26 22:37:02 +0000525bool ARMDAGToDAGISel::SelectAddrModeImm12(SDValue N,
526 SDValue &Base,
527 SDValue &OffImm) {
528 // Match simple R + imm12 operands.
529
530 // Base only.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000531 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB &&
532 !CurDAG->isBaseWithConstantOffset(N)) {
Jim Grosbach3e556122010-10-26 22:37:02 +0000533 if (N.getOpcode() == ISD::FrameIndex) {
Chris Lattner0a9481f2011-02-13 22:25:43 +0000534 // Match frame index.
Jim Grosbach3e556122010-10-26 22:37:02 +0000535 int FI = cast<FrameIndexSDNode>(N)->getIndex();
536 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
537 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
538 return true;
Chris Lattner0a9481f2011-02-13 22:25:43 +0000539 }
Owen Anderson099e5552011-03-18 19:46:58 +0000540
Chris Lattner0a9481f2011-02-13 22:25:43 +0000541 if (N.getOpcode() == ARMISD::Wrapper &&
542 !(Subtarget->useMovt() &&
543 N.getOperand(0).getOpcode() == ISD::TargetGlobalAddress)) {
Jim Grosbach3e556122010-10-26 22:37:02 +0000544 Base = N.getOperand(0);
545 } else
546 Base = N;
547 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
548 return true;
549 }
550
551 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
552 int RHSC = (int)RHS->getZExtValue();
553 if (N.getOpcode() == ISD::SUB)
554 RHSC = -RHSC;
555
556 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
557 Base = N.getOperand(0);
558 if (Base.getOpcode() == ISD::FrameIndex) {
559 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
560 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
561 }
562 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
563 return true;
564 }
565 }
566
567 // Base only.
568 Base = N;
569 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
570 return true;
571}
572
573
574
575bool ARMDAGToDAGISel::SelectLdStSOReg(SDValue N, SDValue &Base, SDValue &Offset,
576 SDValue &Opc) {
Evan Chengf40deed2010-10-27 23:41:30 +0000577 if (N.getOpcode() == ISD::MUL &&
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000578 ((!Subtarget->isLikeA9() && !Subtarget->isSwift()) || N.hasOneUse())) {
Jim Grosbach3e556122010-10-26 22:37:02 +0000579 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
580 // X * [3,5,9] -> X + X * [2,4,8] etc.
581 int RHSC = (int)RHS->getZExtValue();
582 if (RHSC & 1) {
583 RHSC = RHSC & ~1;
584 ARM_AM::AddrOpc AddSub = ARM_AM::add;
585 if (RHSC < 0) {
586 AddSub = ARM_AM::sub;
587 RHSC = - RHSC;
588 }
589 if (isPowerOf2_32(RHSC)) {
590 unsigned ShAmt = Log2_32(RHSC);
591 Base = Offset = N.getOperand(0);
592 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, ShAmt,
593 ARM_AM::lsl),
594 MVT::i32);
595 return true;
596 }
597 }
598 }
599 }
600
Chris Lattner0a9481f2011-02-13 22:25:43 +0000601 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB &&
602 // ISD::OR that is equivalent to an ISD::ADD.
603 !CurDAG->isBaseWithConstantOffset(N))
Jim Grosbach3e556122010-10-26 22:37:02 +0000604 return false;
605
606 // Leave simple R +/- imm12 operands for LDRi12
Chris Lattner0a9481f2011-02-13 22:25:43 +0000607 if (N.getOpcode() == ISD::ADD || N.getOpcode() == ISD::OR) {
Daniel Dunbarec91d522011-01-19 15:12:16 +0000608 int RHSC;
609 if (isScaledConstantInRange(N.getOperand(1), /*Scale=*/1,
610 -0x1000+1, 0x1000, RHSC)) // 12 bits.
611 return false;
Jim Grosbach3e556122010-10-26 22:37:02 +0000612 }
613
614 // Otherwise this is R +/- [possibly shifted] R.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000615 ARM_AM::AddrOpc AddSub = N.getOpcode() == ISD::SUB ? ARM_AM::sub:ARM_AM::add;
Evan Chengee04a6d2011-07-20 23:34:39 +0000616 ARM_AM::ShiftOpc ShOpcVal =
617 ARM_AM::getShiftOpcForNode(N.getOperand(1).getOpcode());
Jim Grosbach3e556122010-10-26 22:37:02 +0000618 unsigned ShAmt = 0;
619
620 Base = N.getOperand(0);
621 Offset = N.getOperand(1);
622
623 if (ShOpcVal != ARM_AM::no_shift) {
624 // Check to see if the RHS of the shift is a constant, if not, we can't fold
625 // it.
626 if (ConstantSDNode *Sh =
627 dyn_cast<ConstantSDNode>(N.getOperand(1).getOperand(1))) {
628 ShAmt = Sh->getZExtValue();
Evan Chengf40deed2010-10-27 23:41:30 +0000629 if (isShifterOpProfitable(Offset, ShOpcVal, ShAmt))
630 Offset = N.getOperand(1).getOperand(0);
631 else {
632 ShAmt = 0;
633 ShOpcVal = ARM_AM::no_shift;
634 }
Jim Grosbach3e556122010-10-26 22:37:02 +0000635 } else {
636 ShOpcVal = ARM_AM::no_shift;
637 }
638 }
639
640 // Try matching (R shl C) + (R).
Chris Lattner0a9481f2011-02-13 22:25:43 +0000641 if (N.getOpcode() != ISD::SUB && ShOpcVal == ARM_AM::no_shift &&
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000642 !(Subtarget->isLikeA9() || Subtarget->isSwift() ||
643 N.getOperand(0).hasOneUse())) {
Evan Chengee04a6d2011-07-20 23:34:39 +0000644 ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOperand(0).getOpcode());
Jim Grosbach3e556122010-10-26 22:37:02 +0000645 if (ShOpcVal != ARM_AM::no_shift) {
646 // Check to see if the RHS of the shift is a constant, if not, we can't
647 // fold it.
648 if (ConstantSDNode *Sh =
649 dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) {
650 ShAmt = Sh->getZExtValue();
Cameron Zwarich8f8aa812011-10-05 23:39:02 +0000651 if (isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt)) {
Evan Chengf40deed2010-10-27 23:41:30 +0000652 Offset = N.getOperand(0).getOperand(0);
653 Base = N.getOperand(1);
654 } else {
655 ShAmt = 0;
656 ShOpcVal = ARM_AM::no_shift;
657 }
Jim Grosbach3e556122010-10-26 22:37:02 +0000658 } else {
659 ShOpcVal = ARM_AM::no_shift;
660 }
661 }
662 }
663
664 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, ShAmt, ShOpcVal),
665 MVT::i32);
666 return true;
667}
668
669
Jim Grosbach3e556122010-10-26 22:37:02 +0000670//-----
671
Jim Grosbach82891622010-09-29 19:03:54 +0000672AddrMode2Type ARMDAGToDAGISel::SelectAddrMode2Worker(SDValue N,
673 SDValue &Base,
674 SDValue &Offset,
675 SDValue &Opc) {
Evan Chengf40deed2010-10-27 23:41:30 +0000676 if (N.getOpcode() == ISD::MUL &&
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000677 (!(Subtarget->isLikeA9() || Subtarget->isSwift()) || N.hasOneUse())) {
Evan Chenga13fd102007-03-13 21:05:54 +0000678 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
679 // X * [3,5,9] -> X + X * [2,4,8] etc.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000680 int RHSC = (int)RHS->getZExtValue();
Evan Chenga13fd102007-03-13 21:05:54 +0000681 if (RHSC & 1) {
682 RHSC = RHSC & ~1;
683 ARM_AM::AddrOpc AddSub = ARM_AM::add;
684 if (RHSC < 0) {
685 AddSub = ARM_AM::sub;
686 RHSC = - RHSC;
687 }
688 if (isPowerOf2_32(RHSC)) {
689 unsigned ShAmt = Log2_32(RHSC);
690 Base = Offset = N.getOperand(0);
691 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, ShAmt,
692 ARM_AM::lsl),
Owen Anderson825b72b2009-08-11 20:47:22 +0000693 MVT::i32);
Jim Grosbach82891622010-09-29 19:03:54 +0000694 return AM2_SHOP;
Evan Chenga13fd102007-03-13 21:05:54 +0000695 }
696 }
697 }
698 }
699
Chris Lattner0a9481f2011-02-13 22:25:43 +0000700 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB &&
701 // ISD::OR that is equivalent to an ADD.
702 !CurDAG->isBaseWithConstantOffset(N)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000703 Base = N;
704 if (N.getOpcode() == ISD::FrameIndex) {
705 int FI = cast<FrameIndexSDNode>(N)->getIndex();
706 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000707 } else if (N.getOpcode() == ARMISD::Wrapper &&
708 !(Subtarget->useMovt() &&
709 N.getOperand(0).getOpcode() == ISD::TargetGlobalAddress)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000710 Base = N.getOperand(0);
711 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000712 Offset = CurDAG->getRegister(0, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000713 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(ARM_AM::add, 0,
714 ARM_AM::no_shift),
Owen Anderson825b72b2009-08-11 20:47:22 +0000715 MVT::i32);
Jim Grosbach82891622010-09-29 19:03:54 +0000716 return AM2_BASE;
Rafael Espindola6e8c6492006-11-08 17:07:32 +0000717 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000718
Evan Chenga8e29892007-01-19 07:51:42 +0000719 // Match simple R +/- imm12 operands.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000720 if (N.getOpcode() != ISD::SUB) {
Daniel Dunbarec91d522011-01-19 15:12:16 +0000721 int RHSC;
722 if (isScaledConstantInRange(N.getOperand(1), /*Scale=*/1,
723 -0x1000+1, 0x1000, RHSC)) { // 12 bits.
724 Base = N.getOperand(0);
725 if (Base.getOpcode() == ISD::FrameIndex) {
726 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
727 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Rafael Espindola6e8c6492006-11-08 17:07:32 +0000728 }
Daniel Dunbarec91d522011-01-19 15:12:16 +0000729 Offset = CurDAG->getRegister(0, MVT::i32);
730
731 ARM_AM::AddrOpc AddSub = ARM_AM::add;
732 if (RHSC < 0) {
733 AddSub = ARM_AM::sub;
734 RHSC = - RHSC;
735 }
736 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, RHSC,
737 ARM_AM::no_shift),
738 MVT::i32);
739 return AM2_BASE;
Evan Chenga8e29892007-01-19 07:51:42 +0000740 }
Jim Grosbachbe912322010-09-29 17:32:29 +0000741 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000742
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000743 if ((Subtarget->isLikeA9() || Subtarget->isSwift()) && !N.hasOneUse()) {
Evan Chengf40deed2010-10-27 23:41:30 +0000744 // Compute R +/- (R << N) and reuse it.
745 Base = N;
746 Offset = CurDAG->getRegister(0, MVT::i32);
747 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(ARM_AM::add, 0,
748 ARM_AM::no_shift),
749 MVT::i32);
750 return AM2_BASE;
751 }
752
Johnny Chen6a3b5ee2009-10-27 17:25:15 +0000753 // Otherwise this is R +/- [possibly shifted] R.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000754 ARM_AM::AddrOpc AddSub = N.getOpcode() != ISD::SUB ? ARM_AM::add:ARM_AM::sub;
Evan Chengee04a6d2011-07-20 23:34:39 +0000755 ARM_AM::ShiftOpc ShOpcVal =
756 ARM_AM::getShiftOpcForNode(N.getOperand(1).getOpcode());
Evan Chenga8e29892007-01-19 07:51:42 +0000757 unsigned ShAmt = 0;
Jim Grosbach764ab522009-08-11 15:33:49 +0000758
Evan Chenga8e29892007-01-19 07:51:42 +0000759 Base = N.getOperand(0);
760 Offset = N.getOperand(1);
Jim Grosbach764ab522009-08-11 15:33:49 +0000761
Evan Chenga8e29892007-01-19 07:51:42 +0000762 if (ShOpcVal != ARM_AM::no_shift) {
763 // Check to see if the RHS of the shift is a constant, if not, we can't fold
764 // it.
765 if (ConstantSDNode *Sh =
766 dyn_cast<ConstantSDNode>(N.getOperand(1).getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000767 ShAmt = Sh->getZExtValue();
Evan Chengf40deed2010-10-27 23:41:30 +0000768 if (isShifterOpProfitable(Offset, ShOpcVal, ShAmt))
769 Offset = N.getOperand(1).getOperand(0);
770 else {
771 ShAmt = 0;
772 ShOpcVal = ARM_AM::no_shift;
773 }
Evan Chenga8e29892007-01-19 07:51:42 +0000774 } else {
775 ShOpcVal = ARM_AM::no_shift;
Rafael Espindola6e8c6492006-11-08 17:07:32 +0000776 }
777 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000778
Evan Chenga8e29892007-01-19 07:51:42 +0000779 // Try matching (R shl C) + (R).
Chris Lattner0a9481f2011-02-13 22:25:43 +0000780 if (N.getOpcode() != ISD::SUB && ShOpcVal == ARM_AM::no_shift &&
Bob Wilsoneb1641d2012-09-29 21:43:49 +0000781 !(Subtarget->isLikeA9() || Subtarget->isSwift() ||
782 N.getOperand(0).hasOneUse())) {
Evan Chengee04a6d2011-07-20 23:34:39 +0000783 ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOperand(0).getOpcode());
Evan Chenga8e29892007-01-19 07:51:42 +0000784 if (ShOpcVal != ARM_AM::no_shift) {
785 // Check to see if the RHS of the shift is a constant, if not, we can't
786 // fold it.
787 if (ConstantSDNode *Sh =
788 dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000789 ShAmt = Sh->getZExtValue();
Cameron Zwarich8f8aa812011-10-05 23:39:02 +0000790 if (isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt)) {
Evan Chengf40deed2010-10-27 23:41:30 +0000791 Offset = N.getOperand(0).getOperand(0);
792 Base = N.getOperand(1);
793 } else {
794 ShAmt = 0;
795 ShOpcVal = ARM_AM::no_shift;
796 }
Evan Chenga8e29892007-01-19 07:51:42 +0000797 } else {
798 ShOpcVal = ARM_AM::no_shift;
799 }
800 }
801 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000802
Evan Chenga8e29892007-01-19 07:51:42 +0000803 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, ShAmt, ShOpcVal),
Owen Anderson825b72b2009-08-11 20:47:22 +0000804 MVT::i32);
Jim Grosbach82891622010-09-29 19:03:54 +0000805 return AM2_SHOP;
Rafael Espindola6e8c6492006-11-08 17:07:32 +0000806}
807
Owen Anderson793e7962011-07-26 20:54:26 +0000808bool ARMDAGToDAGISel::SelectAddrMode2OffsetReg(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000809 SDValue &Offset, SDValue &Opc) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000810 unsigned Opcode = Op->getOpcode();
Evan Chenga8e29892007-01-19 07:51:42 +0000811 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
812 ? cast<LoadSDNode>(Op)->getAddressingMode()
813 : cast<StoreSDNode>(Op)->getAddressingMode();
814 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
815 ? ARM_AM::add : ARM_AM::sub;
Daniel Dunbarec91d522011-01-19 15:12:16 +0000816 int Val;
Owen Anderson793e7962011-07-26 20:54:26 +0000817 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val))
818 return false;
Evan Chenga8e29892007-01-19 07:51:42 +0000819
820 Offset = N;
Evan Chengee04a6d2011-07-20 23:34:39 +0000821 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOpcode());
Evan Chenga8e29892007-01-19 07:51:42 +0000822 unsigned ShAmt = 0;
823 if (ShOpcVal != ARM_AM::no_shift) {
824 // Check to see if the RHS of the shift is a constant, if not, we can't fold
825 // it.
826 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000827 ShAmt = Sh->getZExtValue();
Evan Chengf40deed2010-10-27 23:41:30 +0000828 if (isShifterOpProfitable(N, ShOpcVal, ShAmt))
829 Offset = N.getOperand(0);
830 else {
831 ShAmt = 0;
832 ShOpcVal = ARM_AM::no_shift;
833 }
Evan Chenga8e29892007-01-19 07:51:42 +0000834 } else {
835 ShOpcVal = ARM_AM::no_shift;
836 }
837 }
838
839 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, ShAmt, ShOpcVal),
Owen Anderson825b72b2009-08-11 20:47:22 +0000840 MVT::i32);
Rafael Espindola32bd5f42006-10-17 18:04:53 +0000841 return true;
842}
843
Owen Andersonc4e16de2011-08-29 20:16:50 +0000844bool ARMDAGToDAGISel::SelectAddrMode2OffsetImmPre(SDNode *Op, SDValue N,
845 SDValue &Offset, SDValue &Opc) {
Owen Andersond84192f2011-08-31 20:00:11 +0000846 unsigned Opcode = Op->getOpcode();
847 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
848 ? cast<LoadSDNode>(Op)->getAddressingMode()
849 : cast<StoreSDNode>(Op)->getAddressingMode();
850 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
851 ? ARM_AM::add : ARM_AM::sub;
Owen Andersonc4e16de2011-08-29 20:16:50 +0000852 int Val;
853 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val)) { // 12 bits.
Owen Andersond84192f2011-08-31 20:00:11 +0000854 if (AddSub == ARM_AM::sub) Val *= -1;
Owen Andersonc4e16de2011-08-29 20:16:50 +0000855 Offset = CurDAG->getRegister(0, MVT::i32);
856 Opc = CurDAG->getTargetConstant(Val, MVT::i32);
857 return true;
858 }
859
860 return false;
861}
862
863
Owen Anderson793e7962011-07-26 20:54:26 +0000864bool ARMDAGToDAGISel::SelectAddrMode2OffsetImm(SDNode *Op, SDValue N,
865 SDValue &Offset, SDValue &Opc) {
866 unsigned Opcode = Op->getOpcode();
867 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
868 ? cast<LoadSDNode>(Op)->getAddressingMode()
869 : cast<StoreSDNode>(Op)->getAddressingMode();
870 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
871 ? ARM_AM::add : ARM_AM::sub;
872 int Val;
873 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val)) { // 12 bits.
874 Offset = CurDAG->getRegister(0, MVT::i32);
875 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, Val,
876 ARM_AM::no_shift),
877 MVT::i32);
878 return true;
879 }
880
881 return false;
882}
883
Jim Grosbach19dec202011-08-05 20:35:44 +0000884bool ARMDAGToDAGISel::SelectAddrOffsetNone(SDValue N, SDValue &Base) {
885 Base = N;
886 return true;
887}
Evan Chenga8e29892007-01-19 07:51:42 +0000888
Chris Lattner52a261b2010-09-21 20:31:19 +0000889bool ARMDAGToDAGISel::SelectAddrMode3(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000890 SDValue &Base, SDValue &Offset,
891 SDValue &Opc) {
Evan Chenga8e29892007-01-19 07:51:42 +0000892 if (N.getOpcode() == ISD::SUB) {
893 // X - C is canonicalize to X + -C, no need to handle it here.
894 Base = N.getOperand(0);
895 Offset = N.getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +0000896 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(ARM_AM::sub, 0),MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000897 return true;
898 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000899
Chris Lattner0a9481f2011-02-13 22:25:43 +0000900 if (!CurDAG->isBaseWithConstantOffset(N)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000901 Base = N;
902 if (N.getOpcode() == ISD::FrameIndex) {
903 int FI = cast<FrameIndexSDNode>(N)->getIndex();
904 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
905 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000906 Offset = CurDAG->getRegister(0, MVT::i32);
907 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(ARM_AM::add, 0),MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000908 return true;
909 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000910
Evan Chenga8e29892007-01-19 07:51:42 +0000911 // If the RHS is +/- imm8, fold into addr mode.
Daniel Dunbarec91d522011-01-19 15:12:16 +0000912 int RHSC;
913 if (isScaledConstantInRange(N.getOperand(1), /*Scale=*/1,
914 -256 + 1, 256, RHSC)) { // 8 bits.
915 Base = N.getOperand(0);
916 if (Base.getOpcode() == ISD::FrameIndex) {
917 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
918 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000919 }
Daniel Dunbarec91d522011-01-19 15:12:16 +0000920 Offset = CurDAG->getRegister(0, MVT::i32);
921
922 ARM_AM::AddrOpc AddSub = ARM_AM::add;
923 if (RHSC < 0) {
924 AddSub = ARM_AM::sub;
Chris Lattner0a9481f2011-02-13 22:25:43 +0000925 RHSC = -RHSC;
Daniel Dunbarec91d522011-01-19 15:12:16 +0000926 }
927 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(AddSub, RHSC),MVT::i32);
928 return true;
Evan Chenga8e29892007-01-19 07:51:42 +0000929 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000930
Evan Chenga8e29892007-01-19 07:51:42 +0000931 Base = N.getOperand(0);
932 Offset = N.getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(ARM_AM::add, 0), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000934 return true;
935}
936
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000937bool ARMDAGToDAGISel::SelectAddrMode3Offset(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000938 SDValue &Offset, SDValue &Opc) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000939 unsigned Opcode = Op->getOpcode();
Evan Chenga8e29892007-01-19 07:51:42 +0000940 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
941 ? cast<LoadSDNode>(Op)->getAddressingMode()
942 : cast<StoreSDNode>(Op)->getAddressingMode();
943 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
944 ? ARM_AM::add : ARM_AM::sub;
Daniel Dunbarec91d522011-01-19 15:12:16 +0000945 int Val;
946 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 256, Val)) { // 12 bits.
947 Offset = CurDAG->getRegister(0, MVT::i32);
948 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(AddSub, Val), MVT::i32);
949 return true;
Evan Chenga8e29892007-01-19 07:51:42 +0000950 }
951
952 Offset = N;
Owen Anderson825b72b2009-08-11 20:47:22 +0000953 Opc = CurDAG->getTargetConstant(ARM_AM::getAM3Opc(AddSub, 0), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000954 return true;
955}
956
Jim Grosbach3ab56582010-10-21 19:38:40 +0000957bool ARMDAGToDAGISel::SelectAddrMode5(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000958 SDValue &Base, SDValue &Offset) {
Chris Lattner0a9481f2011-02-13 22:25:43 +0000959 if (!CurDAG->isBaseWithConstantOffset(N)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000960 Base = N;
961 if (N.getOpcode() == ISD::FrameIndex) {
962 int FI = cast<FrameIndexSDNode>(N)->getIndex();
963 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000964 } else if (N.getOpcode() == ARMISD::Wrapper &&
965 !(Subtarget->useMovt() &&
966 N.getOperand(0).getOpcode() == ISD::TargetGlobalAddress)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000967 Base = N.getOperand(0);
968 }
969 Offset = CurDAG->getTargetConstant(ARM_AM::getAM5Opc(ARM_AM::add, 0),
Owen Anderson825b72b2009-08-11 20:47:22 +0000970 MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000971 return true;
972 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000973
Evan Chenga8e29892007-01-19 07:51:42 +0000974 // If the RHS is +/- imm8, fold into addr mode.
Daniel Dunbarec91d522011-01-19 15:12:16 +0000975 int RHSC;
976 if (isScaledConstantInRange(N.getOperand(1), /*Scale=*/4,
977 -256 + 1, 256, RHSC)) {
978 Base = N.getOperand(0);
979 if (Base.getOpcode() == ISD::FrameIndex) {
980 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
981 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000982 }
Daniel Dunbarec91d522011-01-19 15:12:16 +0000983
984 ARM_AM::AddrOpc AddSub = ARM_AM::add;
985 if (RHSC < 0) {
986 AddSub = ARM_AM::sub;
Chris Lattner0a9481f2011-02-13 22:25:43 +0000987 RHSC = -RHSC;
Daniel Dunbarec91d522011-01-19 15:12:16 +0000988 }
989 Offset = CurDAG->getTargetConstant(ARM_AM::getAM5Opc(AddSub, RHSC),
990 MVT::i32);
991 return true;
Evan Chenga8e29892007-01-19 07:51:42 +0000992 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000993
Evan Chenga8e29892007-01-19 07:51:42 +0000994 Base = N;
995 Offset = CurDAG->getTargetConstant(ARM_AM::getAM5Opc(ARM_AM::add, 0),
Owen Anderson825b72b2009-08-11 20:47:22 +0000996 MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +0000997 return true;
998}
999
Bob Wilson665814b2010-11-01 23:40:51 +00001000bool ARMDAGToDAGISel::SelectAddrMode6(SDNode *Parent, SDValue N, SDValue &Addr,
1001 SDValue &Align) {
Bob Wilson8b024a52009-07-01 23:16:05 +00001002 Addr = N;
Bob Wilson665814b2010-11-01 23:40:51 +00001003
1004 unsigned Alignment = 0;
1005 if (LSBaseSDNode *LSN = dyn_cast<LSBaseSDNode>(Parent)) {
1006 // This case occurs only for VLD1-lane/dup and VST1-lane instructions.
1007 // The maximum alignment is equal to the memory size being referenced.
1008 unsigned LSNAlign = LSN->getAlignment();
1009 unsigned MemSize = LSN->getMemoryVT().getSizeInBits() / 8;
Jakob Stoklund Olesenb0117ee2011-10-27 22:39:16 +00001010 if (LSNAlign >= MemSize && MemSize > 1)
Bob Wilson665814b2010-11-01 23:40:51 +00001011 Alignment = MemSize;
1012 } else {
1013 // All other uses of addrmode6 are for intrinsics. For now just record
1014 // the raw alignment value; it will be refined later based on the legal
1015 // alignment operands for the intrinsic.
1016 Alignment = cast<MemIntrinsicSDNode>(Parent)->getAlignment();
1017 }
1018
1019 Align = CurDAG->getTargetConstant(Alignment, MVT::i32);
Bob Wilson8b024a52009-07-01 23:16:05 +00001020 return true;
1021}
1022
Bob Wilsonda525062011-02-25 06:42:42 +00001023bool ARMDAGToDAGISel::SelectAddrMode6Offset(SDNode *Op, SDValue N,
1024 SDValue &Offset) {
1025 LSBaseSDNode *LdSt = cast<LSBaseSDNode>(Op);
1026 ISD::MemIndexedMode AM = LdSt->getAddressingMode();
1027 if (AM != ISD::POST_INC)
1028 return false;
1029 Offset = N;
1030 if (ConstantSDNode *NC = dyn_cast<ConstantSDNode>(N)) {
1031 if (NC->getZExtValue() * 8 == LdSt->getMemoryVT().getSizeInBits())
1032 Offset = CurDAG->getRegister(0, MVT::i32);
1033 }
1034 return true;
1035}
1036
Chris Lattner52a261b2010-09-21 20:31:19 +00001037bool ARMDAGToDAGISel::SelectAddrModePC(SDValue N,
Evan Chengbba9f5f2009-08-14 19:01:37 +00001038 SDValue &Offset, SDValue &Label) {
Evan Chenga8e29892007-01-19 07:51:42 +00001039 if (N.getOpcode() == ARMISD::PIC_ADD && N.hasOneUse()) {
1040 Offset = N.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001041 SDValue N1 = N.getOperand(1);
Evan Cheng9fe20092011-01-20 08:34:58 +00001042 Label = CurDAG->getTargetConstant(cast<ConstantSDNode>(N1)->getZExtValue(),
1043 MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001044 return true;
1045 }
Bill Wendlingf4caf692010-12-14 03:36:38 +00001046
Evan Chenga8e29892007-01-19 07:51:42 +00001047 return false;
1048}
1049
Bill Wendlingf4caf692010-12-14 03:36:38 +00001050
1051//===----------------------------------------------------------------------===//
1052// Thumb Addressing Modes
1053//===----------------------------------------------------------------------===//
1054
Chris Lattner52a261b2010-09-21 20:31:19 +00001055bool ARMDAGToDAGISel::SelectThumbAddrModeRR(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001056 SDValue &Base, SDValue &Offset){
Chris Lattner0a9481f2011-02-13 22:25:43 +00001057 if (N.getOpcode() != ISD::ADD && !CurDAG->isBaseWithConstantOffset(N)) {
Evan Cheng2f297df2009-07-11 07:08:13 +00001058 ConstantSDNode *NC = dyn_cast<ConstantSDNode>(N);
Dan Gohmane368b462010-06-18 14:22:04 +00001059 if (!NC || !NC->isNullValue())
Evan Cheng2f297df2009-07-11 07:08:13 +00001060 return false;
1061
1062 Base = Offset = N;
Evan Chengc38f2bc2007-01-23 22:59:13 +00001063 return true;
1064 }
1065
Evan Chenga8e29892007-01-19 07:51:42 +00001066 Base = N.getOperand(0);
1067 Offset = N.getOperand(1);
1068 return true;
1069}
1070
Evan Cheng79d43262007-01-24 02:21:22 +00001071bool
Bill Wendlingf4caf692010-12-14 03:36:38 +00001072ARMDAGToDAGISel::SelectThumbAddrModeRI(SDValue N, SDValue &Base,
1073 SDValue &Offset, unsigned Scale) {
Evan Cheng79d43262007-01-24 02:21:22 +00001074 if (Scale == 4) {
Dan Gohman475871a2008-07-27 21:46:04 +00001075 SDValue TmpBase, TmpOffImm;
Chris Lattner52a261b2010-09-21 20:31:19 +00001076 if (SelectThumbAddrModeSP(N, TmpBase, TmpOffImm))
Evan Cheng79d43262007-01-24 02:21:22 +00001077 return false; // We want to select tLDRspi / tSTRspi instead.
Bill Wendlingf4caf692010-12-14 03:36:38 +00001078
Evan Cheng012f2d92007-01-24 08:53:17 +00001079 if (N.getOpcode() == ARMISD::Wrapper &&
1080 N.getOperand(0).getOpcode() == ISD::TargetConstantPool)
1081 return false; // We want to select tLDRpci instead.
Evan Cheng79d43262007-01-24 02:21:22 +00001082 }
1083
Chris Lattner0a9481f2011-02-13 22:25:43 +00001084 if (!CurDAG->isBaseWithConstantOffset(N))
Bill Wendlingbc4224b2010-12-15 01:03:19 +00001085 return false;
Evan Chenga8e29892007-01-19 07:51:42 +00001086
Evan Chengad0e4652007-02-06 00:22:06 +00001087 // Thumb does not have [sp, r] address mode.
1088 RegisterSDNode *LHSR = dyn_cast<RegisterSDNode>(N.getOperand(0));
1089 RegisterSDNode *RHSR = dyn_cast<RegisterSDNode>(N.getOperand(1));
1090 if ((LHSR && LHSR->getReg() == ARM::SP) ||
Bill Wendlingbc4224b2010-12-15 01:03:19 +00001091 (RHSR && RHSR->getReg() == ARM::SP))
1092 return false;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001093
Daniel Dunbarec91d522011-01-19 15:12:16 +00001094 // FIXME: Why do we explicitly check for a match here and then return false?
1095 // Presumably to allow something else to match, but shouldn't this be
1096 // documented?
1097 int RHSC;
1098 if (isScaledConstantInRange(N.getOperand(1), Scale, 0, 32, RHSC))
1099 return false;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001100
1101 Base = N.getOperand(0);
1102 Offset = N.getOperand(1);
1103 return true;
1104}
1105
1106bool
1107ARMDAGToDAGISel::SelectThumbAddrModeRI5S1(SDValue N,
1108 SDValue &Base,
1109 SDValue &Offset) {
1110 return SelectThumbAddrModeRI(N, Base, Offset, 1);
1111}
1112
1113bool
1114ARMDAGToDAGISel::SelectThumbAddrModeRI5S2(SDValue N,
1115 SDValue &Base,
1116 SDValue &Offset) {
1117 return SelectThumbAddrModeRI(N, Base, Offset, 2);
1118}
1119
1120bool
1121ARMDAGToDAGISel::SelectThumbAddrModeRI5S4(SDValue N,
1122 SDValue &Base,
1123 SDValue &Offset) {
1124 return SelectThumbAddrModeRI(N, Base, Offset, 4);
1125}
1126
1127bool
1128ARMDAGToDAGISel::SelectThumbAddrModeImm5S(SDValue N, unsigned Scale,
1129 SDValue &Base, SDValue &OffImm) {
1130 if (Scale == 4) {
1131 SDValue TmpBase, TmpOffImm;
1132 if (SelectThumbAddrModeSP(N, TmpBase, TmpOffImm))
1133 return false; // We want to select tLDRspi / tSTRspi instead.
1134
1135 if (N.getOpcode() == ARMISD::Wrapper &&
1136 N.getOperand(0).getOpcode() == ISD::TargetConstantPool)
1137 return false; // We want to select tLDRpci instead.
1138 }
1139
Chris Lattner0a9481f2011-02-13 22:25:43 +00001140 if (!CurDAG->isBaseWithConstantOffset(N)) {
Bill Wendlingf4caf692010-12-14 03:36:38 +00001141 if (N.getOpcode() == ARMISD::Wrapper &&
1142 !(Subtarget->useMovt() &&
1143 N.getOperand(0).getOpcode() == ISD::TargetGlobalAddress)) {
1144 Base = N.getOperand(0);
1145 } else {
1146 Base = N;
1147 }
1148
Owen Anderson825b72b2009-08-11 20:47:22 +00001149 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
Evan Chengad0e4652007-02-06 00:22:06 +00001150 return true;
1151 }
1152
Bill Wendlingbc4224b2010-12-15 01:03:19 +00001153 RegisterSDNode *LHSR = dyn_cast<RegisterSDNode>(N.getOperand(0));
1154 RegisterSDNode *RHSR = dyn_cast<RegisterSDNode>(N.getOperand(1));
1155 if ((LHSR && LHSR->getReg() == ARM::SP) ||
1156 (RHSR && RHSR->getReg() == ARM::SP)) {
1157 ConstantSDNode *LHS = dyn_cast<ConstantSDNode>(N.getOperand(0));
1158 ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1));
1159 unsigned LHSC = LHS ? LHS->getZExtValue() : 0;
1160 unsigned RHSC = RHS ? RHS->getZExtValue() : 0;
1161
1162 // Thumb does not have [sp, #imm5] address mode for non-zero imm5.
1163 if (LHSC != 0 || RHSC != 0) return false;
1164
1165 Base = N;
1166 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
1167 return true;
1168 }
1169
Evan Chenga8e29892007-01-19 07:51:42 +00001170 // If the RHS is + imm5 * scale, fold into addr mode.
Daniel Dunbarec91d522011-01-19 15:12:16 +00001171 int RHSC;
1172 if (isScaledConstantInRange(N.getOperand(1), Scale, 0, 32, RHSC)) {
1173 Base = N.getOperand(0);
1174 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
1175 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00001176 }
1177
Evan Chengc38f2bc2007-01-23 22:59:13 +00001178 Base = N.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001179 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
Evan Chengc38f2bc2007-01-23 22:59:13 +00001180 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00001181}
1182
Bill Wendlingf4caf692010-12-14 03:36:38 +00001183bool
1184ARMDAGToDAGISel::SelectThumbAddrModeImm5S4(SDValue N, SDValue &Base,
1185 SDValue &OffImm) {
1186 return SelectThumbAddrModeImm5S(N, 4, Base, OffImm);
Evan Chenga8e29892007-01-19 07:51:42 +00001187}
1188
Bill Wendlingf4caf692010-12-14 03:36:38 +00001189bool
1190ARMDAGToDAGISel::SelectThumbAddrModeImm5S2(SDValue N, SDValue &Base,
1191 SDValue &OffImm) {
1192 return SelectThumbAddrModeImm5S(N, 2, Base, OffImm);
Evan Chenga8e29892007-01-19 07:51:42 +00001193}
1194
Bill Wendlingf4caf692010-12-14 03:36:38 +00001195bool
1196ARMDAGToDAGISel::SelectThumbAddrModeImm5S1(SDValue N, SDValue &Base,
1197 SDValue &OffImm) {
1198 return SelectThumbAddrModeImm5S(N, 1, Base, OffImm);
Evan Chenga8e29892007-01-19 07:51:42 +00001199}
1200
Chris Lattner52a261b2010-09-21 20:31:19 +00001201bool ARMDAGToDAGISel::SelectThumbAddrModeSP(SDValue N,
1202 SDValue &Base, SDValue &OffImm) {
Evan Chenga8e29892007-01-19 07:51:42 +00001203 if (N.getOpcode() == ISD::FrameIndex) {
1204 int FI = cast<FrameIndexSDNode>(N)->getIndex();
1205 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00001206 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001207 return true;
1208 }
Evan Cheng79d43262007-01-24 02:21:22 +00001209
Chris Lattner0a9481f2011-02-13 22:25:43 +00001210 if (!CurDAG->isBaseWithConstantOffset(N))
Evan Chengad0e4652007-02-06 00:22:06 +00001211 return false;
1212
1213 RegisterSDNode *LHSR = dyn_cast<RegisterSDNode>(N.getOperand(0));
Evan Cheng8c1a73a2007-02-06 09:11:20 +00001214 if (N.getOperand(0).getOpcode() == ISD::FrameIndex ||
1215 (LHSR && LHSR->getReg() == ARM::SP)) {
Evan Cheng79d43262007-01-24 02:21:22 +00001216 // If the RHS is + imm8 * scale, fold into addr mode.
Daniel Dunbarec91d522011-01-19 15:12:16 +00001217 int RHSC;
1218 if (isScaledConstantInRange(N.getOperand(1), /*Scale=*/4, 0, 256, RHSC)) {
1219 Base = N.getOperand(0);
1220 if (Base.getOpcode() == ISD::FrameIndex) {
1221 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
1222 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Evan Cheng79d43262007-01-24 02:21:22 +00001223 }
Daniel Dunbarec91d522011-01-19 15:12:16 +00001224 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
1225 return true;
Evan Cheng79d43262007-01-24 02:21:22 +00001226 }
1227 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001228
Evan Chenga8e29892007-01-19 07:51:42 +00001229 return false;
1230}
1231
Bill Wendlingf4caf692010-12-14 03:36:38 +00001232
1233//===----------------------------------------------------------------------===//
1234// Thumb 2 Addressing Modes
1235//===----------------------------------------------------------------------===//
1236
1237
Chris Lattner52a261b2010-09-21 20:31:19 +00001238bool ARMDAGToDAGISel::SelectT2ShifterOperandReg(SDValue N, SDValue &BaseReg,
Evan Cheng9cb9e672009-06-27 02:26:13 +00001239 SDValue &Opc) {
Evan Chenga2c519b2010-07-30 23:33:54 +00001240 if (DisableShifterOp)
1241 return false;
1242
Evan Chengee04a6d2011-07-20 23:34:39 +00001243 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(N.getOpcode());
Evan Cheng9cb9e672009-06-27 02:26:13 +00001244
1245 // Don't match base register only case. That is matched to a separate
1246 // lower complexity pattern with explicit register operand.
1247 if (ShOpcVal == ARM_AM::no_shift) return false;
1248
1249 BaseReg = N.getOperand(0);
1250 unsigned ShImmVal = 0;
1251 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1252 ShImmVal = RHS->getZExtValue() & 31;
1253 Opc = getI32Imm(ARM_AM::getSORegOpc(ShOpcVal, ShImmVal));
1254 return true;
1255 }
1256
1257 return false;
1258}
1259
Chris Lattner52a261b2010-09-21 20:31:19 +00001260bool ARMDAGToDAGISel::SelectT2AddrModeImm12(SDValue N,
Evan Cheng055b0312009-06-29 07:51:04 +00001261 SDValue &Base, SDValue &OffImm) {
1262 // Match simple R + imm12 operands.
David Goodwin31e7eba2009-07-20 15:55:39 +00001263
Evan Cheng3a214252009-08-11 08:52:18 +00001264 // Base only.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001265 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB &&
1266 !CurDAG->isBaseWithConstantOffset(N)) {
David Goodwin31e7eba2009-07-20 15:55:39 +00001267 if (N.getOpcode() == ISD::FrameIndex) {
Chris Lattner0a9481f2011-02-13 22:25:43 +00001268 // Match frame index.
David Goodwin31e7eba2009-07-20 15:55:39 +00001269 int FI = cast<FrameIndexSDNode>(N)->getIndex();
1270 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00001271 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
David Goodwin31e7eba2009-07-20 15:55:39 +00001272 return true;
Chris Lattner0a9481f2011-02-13 22:25:43 +00001273 }
Owen Anderson099e5552011-03-18 19:46:58 +00001274
Chris Lattner0a9481f2011-02-13 22:25:43 +00001275 if (N.getOpcode() == ARMISD::Wrapper &&
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00001276 !(Subtarget->useMovt() &&
1277 N.getOperand(0).getOpcode() == ISD::TargetGlobalAddress)) {
Evan Cheng3a214252009-08-11 08:52:18 +00001278 Base = N.getOperand(0);
1279 if (Base.getOpcode() == ISD::TargetConstantPool)
1280 return false; // We want to select t2LDRpci instead.
1281 } else
1282 Base = N;
Owen Anderson825b72b2009-08-11 20:47:22 +00001283 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
Evan Cheng3a214252009-08-11 08:52:18 +00001284 return true;
David Goodwin31e7eba2009-07-20 15:55:39 +00001285 }
Evan Cheng055b0312009-06-29 07:51:04 +00001286
1287 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
Chris Lattner52a261b2010-09-21 20:31:19 +00001288 if (SelectT2AddrModeImm8(N, Base, OffImm))
Evan Cheng3a214252009-08-11 08:52:18 +00001289 // Let t2LDRi8 handle (R - imm8).
1290 return false;
1291
Evan Cheng055b0312009-06-29 07:51:04 +00001292 int RHSC = (int)RHS->getZExtValue();
David Goodwind8c95b52009-07-30 18:56:48 +00001293 if (N.getOpcode() == ISD::SUB)
1294 RHSC = -RHSC;
1295
1296 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
Evan Cheng055b0312009-06-29 07:51:04 +00001297 Base = N.getOperand(0);
David Goodwind8c95b52009-07-30 18:56:48 +00001298 if (Base.getOpcode() == ISD::FrameIndex) {
1299 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
1300 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
1301 }
Owen Anderson825b72b2009-08-11 20:47:22 +00001302 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
Evan Cheng055b0312009-06-29 07:51:04 +00001303 return true;
1304 }
1305 }
1306
Evan Cheng3a214252009-08-11 08:52:18 +00001307 // Base only.
1308 Base = N;
Owen Anderson825b72b2009-08-11 20:47:22 +00001309 OffImm = CurDAG->getTargetConstant(0, MVT::i32);
Evan Cheng3a214252009-08-11 08:52:18 +00001310 return true;
Evan Cheng055b0312009-06-29 07:51:04 +00001311}
1312
Chris Lattner52a261b2010-09-21 20:31:19 +00001313bool ARMDAGToDAGISel::SelectT2AddrModeImm8(SDValue N,
Evan Cheng055b0312009-06-29 07:51:04 +00001314 SDValue &Base, SDValue &OffImm) {
David Goodwind8c95b52009-07-30 18:56:48 +00001315 // Match simple R - imm8 operands.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001316 if (N.getOpcode() != ISD::ADD && N.getOpcode() != ISD::SUB &&
1317 !CurDAG->isBaseWithConstantOffset(N))
1318 return false;
Owen Anderson099e5552011-03-18 19:46:58 +00001319
Chris Lattner0a9481f2011-02-13 22:25:43 +00001320 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1321 int RHSC = (int)RHS->getSExtValue();
1322 if (N.getOpcode() == ISD::SUB)
1323 RHSC = -RHSC;
Jim Grosbach764ab522009-08-11 15:33:49 +00001324
Chris Lattner0a9481f2011-02-13 22:25:43 +00001325 if ((RHSC >= -255) && (RHSC < 0)) { // 8 bits (always negative)
1326 Base = N.getOperand(0);
1327 if (Base.getOpcode() == ISD::FrameIndex) {
1328 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
1329 Base = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
Evan Cheng055b0312009-06-29 07:51:04 +00001330 }
Chris Lattner0a9481f2011-02-13 22:25:43 +00001331 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
1332 return true;
Evan Cheng055b0312009-06-29 07:51:04 +00001333 }
1334 }
1335
1336 return false;
1337}
1338
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001339bool ARMDAGToDAGISel::SelectT2AddrModeImm8Offset(SDNode *Op, SDValue N,
Evan Chenge88d5ce2009-07-02 07:28:31 +00001340 SDValue &OffImm){
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001341 unsigned Opcode = Op->getOpcode();
Evan Chenge88d5ce2009-07-02 07:28:31 +00001342 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
1343 ? cast<LoadSDNode>(Op)->getAddressingMode()
1344 : cast<StoreSDNode>(Op)->getAddressingMode();
Daniel Dunbarec91d522011-01-19 15:12:16 +00001345 int RHSC;
1346 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x100, RHSC)) { // 8 bits.
1347 OffImm = ((AM == ISD::PRE_INC) || (AM == ISD::POST_INC))
1348 ? CurDAG->getTargetConstant(RHSC, MVT::i32)
1349 : CurDAG->getTargetConstant(-RHSC, MVT::i32);
1350 return true;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001351 }
1352
1353 return false;
1354}
1355
Chris Lattner52a261b2010-09-21 20:31:19 +00001356bool ARMDAGToDAGISel::SelectT2AddrModeSoReg(SDValue N,
Evan Cheng055b0312009-06-29 07:51:04 +00001357 SDValue &Base,
1358 SDValue &OffReg, SDValue &ShImm) {
Evan Cheng3a214252009-08-11 08:52:18 +00001359 // (R - imm8) should be handled by t2LDRi8. The rest are handled by t2LDRi12.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001360 if (N.getOpcode() != ISD::ADD && !CurDAG->isBaseWithConstantOffset(N))
Evan Cheng3a214252009-08-11 08:52:18 +00001361 return false;
Evan Cheng055b0312009-06-29 07:51:04 +00001362
Evan Cheng3a214252009-08-11 08:52:18 +00001363 // Leave (R + imm12) for t2LDRi12, (R - imm8) for t2LDRi8.
1364 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1365 int RHSC = (int)RHS->getZExtValue();
1366 if (RHSC >= 0 && RHSC < 0x1000) // 12 bits (unsigned)
1367 return false;
1368 else if (RHSC < 0 && RHSC >= -255) // 8 bits
David Goodwind8c95b52009-07-30 18:56:48 +00001369 return false;
1370 }
1371
Evan Cheng055b0312009-06-29 07:51:04 +00001372 // Look for (R + R) or (R + (R << [1,2,3])).
1373 unsigned ShAmt = 0;
1374 Base = N.getOperand(0);
1375 OffReg = N.getOperand(1);
1376
1377 // Swap if it is ((R << c) + R).
Evan Chengee04a6d2011-07-20 23:34:39 +00001378 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(OffReg.getOpcode());
Evan Cheng055b0312009-06-29 07:51:04 +00001379 if (ShOpcVal != ARM_AM::lsl) {
Evan Chengee04a6d2011-07-20 23:34:39 +00001380 ShOpcVal = ARM_AM::getShiftOpcForNode(Base.getOpcode());
Evan Cheng055b0312009-06-29 07:51:04 +00001381 if (ShOpcVal == ARM_AM::lsl)
1382 std::swap(Base, OffReg);
Jim Grosbach764ab522009-08-11 15:33:49 +00001383 }
1384
Evan Cheng055b0312009-06-29 07:51:04 +00001385 if (ShOpcVal == ARM_AM::lsl) {
1386 // Check to see if the RHS of the shift is a constant, if not, we can't fold
1387 // it.
1388 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(OffReg.getOperand(1))) {
1389 ShAmt = Sh->getZExtValue();
Evan Chengf40deed2010-10-27 23:41:30 +00001390 if (ShAmt < 4 && isShifterOpProfitable(OffReg, ShOpcVal, ShAmt))
1391 OffReg = OffReg.getOperand(0);
1392 else {
Evan Cheng055b0312009-06-29 07:51:04 +00001393 ShAmt = 0;
1394 ShOpcVal = ARM_AM::no_shift;
Evan Chengf40deed2010-10-27 23:41:30 +00001395 }
Evan Cheng055b0312009-06-29 07:51:04 +00001396 } else {
1397 ShOpcVal = ARM_AM::no_shift;
1398 }
David Goodwin7ecc8502009-07-15 15:50:19 +00001399 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001400
Owen Anderson825b72b2009-08-11 20:47:22 +00001401 ShImm = CurDAG->getTargetConstant(ShAmt, MVT::i32);
Evan Cheng055b0312009-06-29 07:51:04 +00001402
1403 return true;
1404}
1405
1406//===--------------------------------------------------------------------===//
1407
Evan Chengee568cf2007-07-05 07:15:27 +00001408/// getAL - Returns a ARMCC::AL immediate node.
Dan Gohman475871a2008-07-27 21:46:04 +00001409static inline SDValue getAL(SelectionDAG *CurDAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 return CurDAG->getTargetConstant((uint64_t)ARMCC::AL, MVT::i32);
Evan Cheng44bec522007-05-15 01:29:07 +00001411}
1412
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001413SDNode *ARMDAGToDAGISel::SelectARMIndexedLoad(SDNode *N) {
1414 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengaf4550f2009-07-02 01:23:32 +00001415 ISD::MemIndexedMode AM = LD->getAddressingMode();
1416 if (AM == ISD::UNINDEXED)
1417 return NULL;
1418
Owen Andersone50ed302009-08-10 22:56:29 +00001419 EVT LoadedVT = LD->getMemoryVT();
Evan Chengaf4550f2009-07-02 01:23:32 +00001420 SDValue Offset, AMOpc;
1421 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC);
1422 unsigned Opcode = 0;
1423 bool Match = false;
Owen Andersonc4e16de2011-08-29 20:16:50 +00001424 if (LoadedVT == MVT::i32 && isPre &&
1425 SelectAddrMode2OffsetImmPre(N, LD->getOffset(), Offset, AMOpc)) {
1426 Opcode = ARM::LDR_PRE_IMM;
1427 Match = true;
1428 } else if (LoadedVT == MVT::i32 && !isPre &&
Owen Anderson793e7962011-07-26 20:54:26 +00001429 SelectAddrMode2OffsetImm(N, LD->getOffset(), Offset, AMOpc)) {
Owen Andersonc4e16de2011-08-29 20:16:50 +00001430 Opcode = ARM::LDR_POST_IMM;
Evan Chengaf4550f2009-07-02 01:23:32 +00001431 Match = true;
Owen Anderson793e7962011-07-26 20:54:26 +00001432 } else if (LoadedVT == MVT::i32 &&
1433 SelectAddrMode2OffsetReg(N, LD->getOffset(), Offset, AMOpc)) {
Owen Anderson9ab0f252011-08-26 20:43:14 +00001434 Opcode = isPre ? ARM::LDR_PRE_REG : ARM::LDR_POST_REG;
Owen Anderson793e7962011-07-26 20:54:26 +00001435 Match = true;
1436
Owen Anderson825b72b2009-08-11 20:47:22 +00001437 } else if (LoadedVT == MVT::i16 &&
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001438 SelectAddrMode3Offset(N, LD->getOffset(), Offset, AMOpc)) {
Evan Chengaf4550f2009-07-02 01:23:32 +00001439 Match = true;
1440 Opcode = (LD->getExtensionType() == ISD::SEXTLOAD)
1441 ? (isPre ? ARM::LDRSH_PRE : ARM::LDRSH_POST)
1442 : (isPre ? ARM::LDRH_PRE : ARM::LDRH_POST);
Owen Anderson825b72b2009-08-11 20:47:22 +00001443 } else if (LoadedVT == MVT::i8 || LoadedVT == MVT::i1) {
Evan Chengaf4550f2009-07-02 01:23:32 +00001444 if (LD->getExtensionType() == ISD::SEXTLOAD) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001445 if (SelectAddrMode3Offset(N, LD->getOffset(), Offset, AMOpc)) {
Evan Chengaf4550f2009-07-02 01:23:32 +00001446 Match = true;
1447 Opcode = isPre ? ARM::LDRSB_PRE : ARM::LDRSB_POST;
1448 }
1449 } else {
Owen Andersonc4e16de2011-08-29 20:16:50 +00001450 if (isPre &&
1451 SelectAddrMode2OffsetImmPre(N, LD->getOffset(), Offset, AMOpc)) {
Evan Chengaf4550f2009-07-02 01:23:32 +00001452 Match = true;
Owen Andersonc4e16de2011-08-29 20:16:50 +00001453 Opcode = ARM::LDRB_PRE_IMM;
1454 } else if (!isPre &&
1455 SelectAddrMode2OffsetImm(N, LD->getOffset(), Offset, AMOpc)) {
1456 Match = true;
1457 Opcode = ARM::LDRB_POST_IMM;
Owen Anderson793e7962011-07-26 20:54:26 +00001458 } else if (SelectAddrMode2OffsetReg(N, LD->getOffset(), Offset, AMOpc)) {
1459 Match = true;
Owen Anderson9ab0f252011-08-26 20:43:14 +00001460 Opcode = isPre ? ARM::LDRB_PRE_REG : ARM::LDRB_POST_REG;
Evan Chengaf4550f2009-07-02 01:23:32 +00001461 }
1462 }
1463 }
1464
1465 if (Match) {
Owen Anderson2b568fb2011-08-26 21:12:37 +00001466 if (Opcode == ARM::LDR_PRE_IMM || Opcode == ARM::LDRB_PRE_IMM) {
1467 SDValue Chain = LD->getChain();
1468 SDValue Base = LD->getBasePtr();
1469 SDValue Ops[]= { Base, AMOpc, getAL(CurDAG),
1470 CurDAG->getRegister(0, MVT::i32), Chain };
Jim Grosbachb04546f2011-09-13 20:30:37 +00001471 return CurDAG->getMachineNode(Opcode, N->getDebugLoc(), MVT::i32,
1472 MVT::i32, MVT::Other, Ops, 5);
Owen Anderson2b568fb2011-08-26 21:12:37 +00001473 } else {
1474 SDValue Chain = LD->getChain();
1475 SDValue Base = LD->getBasePtr();
1476 SDValue Ops[]= { Base, Offset, AMOpc, getAL(CurDAG),
1477 CurDAG->getRegister(0, MVT::i32), Chain };
Jim Grosbachb04546f2011-09-13 20:30:37 +00001478 return CurDAG->getMachineNode(Opcode, N->getDebugLoc(), MVT::i32,
1479 MVT::i32, MVT::Other, Ops, 6);
Owen Anderson2b568fb2011-08-26 21:12:37 +00001480 }
Evan Chengaf4550f2009-07-02 01:23:32 +00001481 }
1482
1483 return NULL;
1484}
1485
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001486SDNode *ARMDAGToDAGISel::SelectT2IndexedLoad(SDNode *N) {
1487 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chenge88d5ce2009-07-02 07:28:31 +00001488 ISD::MemIndexedMode AM = LD->getAddressingMode();
1489 if (AM == ISD::UNINDEXED)
1490 return NULL;
1491
Owen Andersone50ed302009-08-10 22:56:29 +00001492 EVT LoadedVT = LD->getMemoryVT();
Evan Cheng4fbb9962009-07-02 23:16:11 +00001493 bool isSExtLd = LD->getExtensionType() == ISD::SEXTLOAD;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001494 SDValue Offset;
1495 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC);
1496 unsigned Opcode = 0;
1497 bool Match = false;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001498 if (SelectT2AddrModeImm8Offset(N, LD->getOffset(), Offset)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001499 switch (LoadedVT.getSimpleVT().SimpleTy) {
1500 case MVT::i32:
Evan Chenge88d5ce2009-07-02 07:28:31 +00001501 Opcode = isPre ? ARM::t2LDR_PRE : ARM::t2LDR_POST;
1502 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001503 case MVT::i16:
Evan Cheng4fbb9962009-07-02 23:16:11 +00001504 if (isSExtLd)
1505 Opcode = isPre ? ARM::t2LDRSH_PRE : ARM::t2LDRSH_POST;
1506 else
1507 Opcode = isPre ? ARM::t2LDRH_PRE : ARM::t2LDRH_POST;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001508 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001509 case MVT::i8:
1510 case MVT::i1:
Evan Cheng4fbb9962009-07-02 23:16:11 +00001511 if (isSExtLd)
1512 Opcode = isPre ? ARM::t2LDRSB_PRE : ARM::t2LDRSB_POST;
1513 else
1514 Opcode = isPre ? ARM::t2LDRB_PRE : ARM::t2LDRB_POST;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001515 break;
1516 default:
1517 return NULL;
1518 }
1519 Match = true;
1520 }
1521
1522 if (Match) {
1523 SDValue Chain = LD->getChain();
1524 SDValue Base = LD->getBasePtr();
1525 SDValue Ops[]= { Base, Offset, getAL(CurDAG),
Owen Anderson825b72b2009-08-11 20:47:22 +00001526 CurDAG->getRegister(0, MVT::i32), Chain };
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001527 return CurDAG->getMachineNode(Opcode, N->getDebugLoc(), MVT::i32, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00001528 MVT::Other, Ops, 5);
Evan Chenge88d5ce2009-07-02 07:28:31 +00001529 }
1530
1531 return NULL;
1532}
1533
Weiming Zhaoe56764b2012-11-16 21:55:34 +00001534/// \brief Form a GPRPair pseudo register from a pair of GPR regs.
1535SDNode *ARMDAGToDAGISel::createGPRPairNode(EVT VT, SDValue V0, SDValue V1) {
1536 DebugLoc dl = V0.getNode()->getDebugLoc();
1537 SDValue RegClass =
1538 CurDAG->getTargetConstant(ARM::GPRPairRegClassID, MVT::i32);
1539 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::gsub_0, MVT::i32);
1540 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::gsub_1, MVT::i32);
1541 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1 };
1542 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 5);
1543}
1544
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001545/// \brief Form a D register from a pair of S registers.
1546SDNode *ARMDAGToDAGISel::createSRegPairNode(EVT VT, SDValue V0, SDValue V1) {
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001547 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001548 SDValue RegClass =
1549 CurDAG->getTargetConstant(ARM::DPR_VFP2RegClassID, MVT::i32);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001550 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::ssub_0, MVT::i32);
1551 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::ssub_1, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001552 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1 };
1553 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 5);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001554}
1555
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001556/// \brief Form a quad register from a pair of D registers.
1557SDNode *ARMDAGToDAGISel::createDRegPairNode(EVT VT, SDValue V0, SDValue V1) {
Bob Wilson3bf12ab2009-10-06 22:01:59 +00001558 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001559 SDValue RegClass = CurDAG->getTargetConstant(ARM::QPRRegClassID, MVT::i32);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +00001560 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::dsub_0, MVT::i32);
1561 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::dsub_1, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001562 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1 };
1563 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 5);
Bob Wilson3bf12ab2009-10-06 22:01:59 +00001564}
1565
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001566/// \brief Form 4 consecutive D registers from a pair of Q registers.
1567SDNode *ARMDAGToDAGISel::createQRegPairNode(EVT VT, SDValue V0, SDValue V1) {
Evan Cheng603afbf2010-05-10 17:34:18 +00001568 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001569 SDValue RegClass = CurDAG->getTargetConstant(ARM::QQPRRegClassID, MVT::i32);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +00001570 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::qsub_0, MVT::i32);
1571 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::qsub_1, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001572 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1 };
1573 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 5);
Evan Cheng603afbf2010-05-10 17:34:18 +00001574}
1575
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001576/// \brief Form 4 consecutive S registers.
1577SDNode *ARMDAGToDAGISel::createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1,
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001578 SDValue V2, SDValue V3) {
1579 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001580 SDValue RegClass =
1581 CurDAG->getTargetConstant(ARM::QPR_VFP2RegClassID, MVT::i32);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001582 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::ssub_0, MVT::i32);
1583 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::ssub_1, MVT::i32);
1584 SDValue SubReg2 = CurDAG->getTargetConstant(ARM::ssub_2, MVT::i32);
1585 SDValue SubReg3 = CurDAG->getTargetConstant(ARM::ssub_3, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001586 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1,
1587 V2, SubReg2, V3, SubReg3 };
1588 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 9);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00001589}
1590
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001591/// \brief Form 4 consecutive D registers.
1592SDNode *ARMDAGToDAGISel::createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1,
Evan Cheng603afbf2010-05-10 17:34:18 +00001593 SDValue V2, SDValue V3) {
1594 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001595 SDValue RegClass = CurDAG->getTargetConstant(ARM::QQPRRegClassID, MVT::i32);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +00001596 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::dsub_0, MVT::i32);
1597 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::dsub_1, MVT::i32);
1598 SDValue SubReg2 = CurDAG->getTargetConstant(ARM::dsub_2, MVT::i32);
1599 SDValue SubReg3 = CurDAG->getTargetConstant(ARM::dsub_3, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001600 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1,
1601 V2, SubReg2, V3, SubReg3 };
1602 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 9);
Evan Cheng603afbf2010-05-10 17:34:18 +00001603}
1604
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001605/// \brief Form 4 consecutive Q registers.
1606SDNode *ARMDAGToDAGISel::createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1,
Evan Cheng8f6de382010-05-16 03:27:48 +00001607 SDValue V2, SDValue V3) {
1608 DebugLoc dl = V0.getNode()->getDebugLoc();
Owen Anderson1300f302011-06-16 18:17:13 +00001609 SDValue RegClass = CurDAG->getTargetConstant(ARM::QQQQPRRegClassID, MVT::i32);
Jakob Stoklund Olesen558661d2010-05-24 16:54:32 +00001610 SDValue SubReg0 = CurDAG->getTargetConstant(ARM::qsub_0, MVT::i32);
1611 SDValue SubReg1 = CurDAG->getTargetConstant(ARM::qsub_1, MVT::i32);
1612 SDValue SubReg2 = CurDAG->getTargetConstant(ARM::qsub_2, MVT::i32);
1613 SDValue SubReg3 = CurDAG->getTargetConstant(ARM::qsub_3, MVT::i32);
Owen Anderson1300f302011-06-16 18:17:13 +00001614 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1,
1615 V2, SubReg2, V3, SubReg3 };
1616 return CurDAG->getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VT, Ops, 9);
Evan Cheng8f6de382010-05-16 03:27:48 +00001617}
1618
Bob Wilson2a6e6162010-09-23 23:42:37 +00001619/// GetVLDSTAlign - Get the alignment (in bytes) for the alignment operand
1620/// of a NEON VLD or VST instruction. The supported values depend on the
1621/// number of registers being loaded.
Bob Wilson665814b2010-11-01 23:40:51 +00001622SDValue ARMDAGToDAGISel::GetVLDSTAlign(SDValue Align, unsigned NumVecs,
1623 bool is64BitVector) {
Bob Wilson2a6e6162010-09-23 23:42:37 +00001624 unsigned NumRegs = NumVecs;
1625 if (!is64BitVector && NumVecs < 3)
1626 NumRegs *= 2;
1627
Bob Wilson665814b2010-11-01 23:40:51 +00001628 unsigned Alignment = cast<ConstantSDNode>(Align)->getZExtValue();
Bob Wilson2a6e6162010-09-23 23:42:37 +00001629 if (Alignment >= 32 && NumRegs == 4)
Bob Wilson665814b2010-11-01 23:40:51 +00001630 Alignment = 32;
1631 else if (Alignment >= 16 && (NumRegs == 2 || NumRegs == 4))
1632 Alignment = 16;
1633 else if (Alignment >= 8)
1634 Alignment = 8;
1635 else
1636 Alignment = 0;
1637
1638 return CurDAG->getTargetConstant(Alignment, MVT::i32);
Bob Wilson2a6e6162010-09-23 23:42:37 +00001639}
1640
Jim Grosbach10b90a92011-10-24 21:45:13 +00001641// Get the register stride update opcode of a VLD/VST instruction that
1642// is otherwise equivalent to the given fixed stride updating instruction.
1643static unsigned getVLDSTRegisterUpdateOpcode(unsigned Opc) {
1644 switch (Opc) {
1645 default: break;
1646 case ARM::VLD1d8wb_fixed: return ARM::VLD1d8wb_register;
1647 case ARM::VLD1d16wb_fixed: return ARM::VLD1d16wb_register;
1648 case ARM::VLD1d32wb_fixed: return ARM::VLD1d32wb_register;
1649 case ARM::VLD1d64wb_fixed: return ARM::VLD1d64wb_register;
1650 case ARM::VLD1q8wb_fixed: return ARM::VLD1q8wb_register;
1651 case ARM::VLD1q16wb_fixed: return ARM::VLD1q16wb_register;
1652 case ARM::VLD1q32wb_fixed: return ARM::VLD1q32wb_register;
1653 case ARM::VLD1q64wb_fixed: return ARM::VLD1q64wb_register;
Jim Grosbach4334e032011-10-31 21:50:31 +00001654
1655 case ARM::VST1d8wb_fixed: return ARM::VST1d8wb_register;
1656 case ARM::VST1d16wb_fixed: return ARM::VST1d16wb_register;
1657 case ARM::VST1d32wb_fixed: return ARM::VST1d32wb_register;
1658 case ARM::VST1d64wb_fixed: return ARM::VST1d64wb_register;
1659 case ARM::VST1q8wb_fixed: return ARM::VST1q8wb_register;
1660 case ARM::VST1q16wb_fixed: return ARM::VST1q16wb_register;
1661 case ARM::VST1q32wb_fixed: return ARM::VST1q32wb_register;
1662 case ARM::VST1q64wb_fixed: return ARM::VST1q64wb_register;
Jim Grosbachd5ca2012011-11-29 22:38:04 +00001663 case ARM::VST1d64TPseudoWB_fixed: return ARM::VST1d64TPseudoWB_register;
Jim Grosbach4c7edb32011-11-29 22:58:48 +00001664 case ARM::VST1d64QPseudoWB_fixed: return ARM::VST1d64QPseudoWB_register;
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00001665
Jim Grosbach28f08c92012-03-05 19:33:30 +00001666 case ARM::VLD2d8wb_fixed: return ARM::VLD2d8wb_register;
1667 case ARM::VLD2d16wb_fixed: return ARM::VLD2d16wb_register;
1668 case ARM::VLD2d32wb_fixed: return ARM::VLD2d32wb_register;
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00001669 case ARM::VLD2q8PseudoWB_fixed: return ARM::VLD2q8PseudoWB_register;
1670 case ARM::VLD2q16PseudoWB_fixed: return ARM::VLD2q16PseudoWB_register;
1671 case ARM::VLD2q32PseudoWB_fixed: return ARM::VLD2q32PseudoWB_register;
1672
Jim Grosbach28f08c92012-03-05 19:33:30 +00001673 case ARM::VST2d8wb_fixed: return ARM::VST2d8wb_register;
1674 case ARM::VST2d16wb_fixed: return ARM::VST2d16wb_register;
1675 case ARM::VST2d32wb_fixed: return ARM::VST2d32wb_register;
Jim Grosbachbb3a2e42011-12-14 21:32:11 +00001676 case ARM::VST2q8PseudoWB_fixed: return ARM::VST2q8PseudoWB_register;
1677 case ARM::VST2q16PseudoWB_fixed: return ARM::VST2q16PseudoWB_register;
1678 case ARM::VST2q32PseudoWB_fixed: return ARM::VST2q32PseudoWB_register;
Jim Grosbache6949b12011-12-21 19:40:55 +00001679
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001680 case ARM::VLD2DUPd8wb_fixed: return ARM::VLD2DUPd8wb_register;
1681 case ARM::VLD2DUPd16wb_fixed: return ARM::VLD2DUPd16wb_register;
1682 case ARM::VLD2DUPd32wb_fixed: return ARM::VLD2DUPd32wb_register;
Jim Grosbach10b90a92011-10-24 21:45:13 +00001683 }
1684 return Opc; // If not one we handle, return it unchanged.
1685}
1686
Bob Wilson1c3ef902011-02-07 17:43:21 +00001687SDNode *ARMDAGToDAGISel::SelectVLD(SDNode *N, bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +00001688 const uint16_t *DOpcodes,
1689 const uint16_t *QOpcodes0,
1690 const uint16_t *QOpcodes1) {
Bob Wilson621f1952010-03-23 05:25:43 +00001691 assert(NumVecs >= 1 && NumVecs <= 4 && "VLD NumVecs out-of-range");
Bob Wilson3e36f132009-10-14 17:28:52 +00001692 DebugLoc dl = N->getDebugLoc();
1693
Bob Wilson226036e2010-03-20 22:13:40 +00001694 SDValue MemAddr, Align;
Bob Wilson1c3ef902011-02-07 17:43:21 +00001695 unsigned AddrOpIdx = isUpdating ? 1 : 2;
1696 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align))
Bob Wilson3e36f132009-10-14 17:28:52 +00001697 return NULL;
1698
1699 SDValue Chain = N->getOperand(0);
1700 EVT VT = N->getValueType(0);
1701 bool is64BitVector = VT.is64BitVector();
Bob Wilson665814b2010-11-01 23:40:51 +00001702 Align = GetVLDSTAlign(Align, NumVecs, is64BitVector);
Bob Wilson40ff01a2010-09-23 21:43:54 +00001703
Bob Wilson3e36f132009-10-14 17:28:52 +00001704 unsigned OpcodeIndex;
1705 switch (VT.getSimpleVT().SimpleTy) {
1706 default: llvm_unreachable("unhandled vld type");
1707 // Double-register operations:
1708 case MVT::v8i8: OpcodeIndex = 0; break;
1709 case MVT::v4i16: OpcodeIndex = 1; break;
1710 case MVT::v2f32:
1711 case MVT::v2i32: OpcodeIndex = 2; break;
1712 case MVT::v1i64: OpcodeIndex = 3; break;
1713 // Quad-register operations:
1714 case MVT::v16i8: OpcodeIndex = 0; break;
1715 case MVT::v8i16: OpcodeIndex = 1; break;
1716 case MVT::v4f32:
1717 case MVT::v4i32: OpcodeIndex = 2; break;
Bob Wilson621f1952010-03-23 05:25:43 +00001718 case MVT::v2i64: OpcodeIndex = 3;
Bob Wilson11d98992010-03-23 06:20:33 +00001719 assert(NumVecs == 1 && "v2i64 type only supported for VLD1");
Bob Wilson621f1952010-03-23 05:25:43 +00001720 break;
Bob Wilson3e36f132009-10-14 17:28:52 +00001721 }
1722
Bob Wilsonf5721912010-09-03 18:16:02 +00001723 EVT ResTy;
1724 if (NumVecs == 1)
1725 ResTy = VT;
1726 else {
1727 unsigned ResTyElts = (NumVecs == 3) ? 4 : NumVecs;
1728 if (!is64BitVector)
1729 ResTyElts *= 2;
1730 ResTy = EVT::getVectorVT(*CurDAG->getContext(), MVT::i64, ResTyElts);
1731 }
Bob Wilson1c3ef902011-02-07 17:43:21 +00001732 std::vector<EVT> ResTys;
1733 ResTys.push_back(ResTy);
1734 if (isUpdating)
1735 ResTys.push_back(MVT::i32);
1736 ResTys.push_back(MVT::Other);
Bob Wilsonf5721912010-09-03 18:16:02 +00001737
Evan Cheng47b7b9f2010-04-16 05:46:06 +00001738 SDValue Pred = getAL(CurDAG);
Bob Wilson226036e2010-03-20 22:13:40 +00001739 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Bob Wilson1c3ef902011-02-07 17:43:21 +00001740 SDNode *VLd;
1741 SmallVector<SDValue, 7> Ops;
Evan Chenge9e2ba02010-05-10 21:26:24 +00001742
Bob Wilson1c3ef902011-02-07 17:43:21 +00001743 // Double registers and VLD1/VLD2 quad registers are directly supported.
1744 if (is64BitVector || NumVecs <= 2) {
1745 unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
1746 QOpcodes0[OpcodeIndex]);
1747 Ops.push_back(MemAddr);
1748 Ops.push_back(Align);
1749 if (isUpdating) {
1750 SDValue Inc = N->getOperand(AddrOpIdx + 1);
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00001751 // FIXME: VLD1/VLD2 fixed increment doesn't need Reg0. Remove the reg0
Jim Grosbach10b90a92011-10-24 21:45:13 +00001752 // case entirely when the rest are updated to that form, too.
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00001753 if ((NumVecs == 1 || NumVecs == 2) && !isa<ConstantSDNode>(Inc.getNode()))
Jim Grosbach10b90a92011-10-24 21:45:13 +00001754 Opc = getVLDSTRegisterUpdateOpcode(Opc);
Jim Grosbacha4e3c7f2011-12-09 21:28:25 +00001755 // We use a VLD1 for v1i64 even if the pseudo says vld2/3/4, so
Jim Grosbach4334e032011-10-31 21:50:31 +00001756 // check for that explicitly too. Horribly hacky, but temporary.
Jim Grosbach28f08c92012-03-05 19:33:30 +00001757 if ((NumVecs != 1 && NumVecs != 2 && Opc != ARM::VLD1q64wb_fixed) ||
Jim Grosbach4334e032011-10-31 21:50:31 +00001758 !isa<ConstantSDNode>(Inc.getNode()))
Jim Grosbach10b90a92011-10-24 21:45:13 +00001759 Ops.push_back(isa<ConstantSDNode>(Inc.getNode()) ? Reg0 : Inc);
Evan Chenge9e2ba02010-05-10 21:26:24 +00001760 }
Bob Wilson1c3ef902011-02-07 17:43:21 +00001761 Ops.push_back(Pred);
1762 Ops.push_back(Reg0);
1763 Ops.push_back(Chain);
1764 VLd = CurDAG->getMachineNode(Opc, dl, ResTys, Ops.data(), Ops.size());
Bob Wilsonffde0802010-09-02 16:00:54 +00001765
Bob Wilson3e36f132009-10-14 17:28:52 +00001766 } else {
1767 // Otherwise, quad registers are loaded with two separate instructions,
1768 // where one loads the even registers and the other loads the odd registers.
Bob Wilsonf5721912010-09-03 18:16:02 +00001769 EVT AddrTy = MemAddr.getValueType();
Bob Wilson3e36f132009-10-14 17:28:52 +00001770
Bob Wilson1c3ef902011-02-07 17:43:21 +00001771 // Load the even subregs. This is always an updating load, so that it
1772 // provides the address to the second load for the odd subregs.
Bob Wilsonf5721912010-09-03 18:16:02 +00001773 SDValue ImplDef =
1774 SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, ResTy), 0);
1775 const SDValue OpsA[] = { MemAddr, Align, Reg0, ImplDef, Pred, Reg0, Chain };
Bob Wilson7de68142011-02-07 17:43:15 +00001776 SDNode *VLdA = CurDAG->getMachineNode(QOpcodes0[OpcodeIndex], dl,
1777 ResTy, AddrTy, MVT::Other, OpsA, 7);
Bob Wilsonf5721912010-09-03 18:16:02 +00001778 Chain = SDValue(VLdA, 2);
Bob Wilson3e36f132009-10-14 17:28:52 +00001779
Bob Wilson24f995d2009-10-14 18:32:29 +00001780 // Load the odd subregs.
Bob Wilson1c3ef902011-02-07 17:43:21 +00001781 Ops.push_back(SDValue(VLdA, 1));
1782 Ops.push_back(Align);
1783 if (isUpdating) {
1784 SDValue Inc = N->getOperand(AddrOpIdx + 1);
1785 assert(isa<ConstantSDNode>(Inc.getNode()) &&
1786 "only constant post-increment update allowed for VLD3/4");
1787 (void)Inc;
1788 Ops.push_back(Reg0);
1789 }
1790 Ops.push_back(SDValue(VLdA, 0));
1791 Ops.push_back(Pred);
1792 Ops.push_back(Reg0);
1793 Ops.push_back(Chain);
1794 VLd = CurDAG->getMachineNode(QOpcodes1[OpcodeIndex], dl, ResTys,
1795 Ops.data(), Ops.size());
Bob Wilsonf5721912010-09-03 18:16:02 +00001796 }
Bob Wilson3e36f132009-10-14 17:28:52 +00001797
Evan Chengb58a3402011-04-19 00:04:03 +00001798 // Transfer memoperands.
1799 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1800 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
1801 cast<MachineSDNode>(VLd)->setMemRefs(MemOp, MemOp + 1);
1802
Bob Wilson1c3ef902011-02-07 17:43:21 +00001803 if (NumVecs == 1)
1804 return VLd;
1805
1806 // Extract out the subregisters.
1807 SDValue SuperReg = SDValue(VLd, 0);
1808 assert(ARM::dsub_7 == ARM::dsub_0+7 &&
1809 ARM::qsub_3 == ARM::qsub_0+3 && "Unexpected subreg numbering");
1810 unsigned Sub0 = (is64BitVector ? ARM::dsub_0 : ARM::qsub_0);
1811 for (unsigned Vec = 0; Vec < NumVecs; ++Vec)
1812 ReplaceUses(SDValue(N, Vec),
1813 CurDAG->getTargetExtractSubreg(Sub0 + Vec, dl, VT, SuperReg));
1814 ReplaceUses(SDValue(N, NumVecs), SDValue(VLd, 1));
1815 if (isUpdating)
1816 ReplaceUses(SDValue(N, NumVecs + 1), SDValue(VLd, 2));
Bob Wilson3e36f132009-10-14 17:28:52 +00001817 return NULL;
1818}
1819
Bob Wilson1c3ef902011-02-07 17:43:21 +00001820SDNode *ARMDAGToDAGISel::SelectVST(SDNode *N, bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +00001821 const uint16_t *DOpcodes,
1822 const uint16_t *QOpcodes0,
1823 const uint16_t *QOpcodes1) {
Bob Wilsond491d6e2010-07-06 23:36:25 +00001824 assert(NumVecs >= 1 && NumVecs <= 4 && "VST NumVecs out-of-range");
Bob Wilson24f995d2009-10-14 18:32:29 +00001825 DebugLoc dl = N->getDebugLoc();
1826
Bob Wilson226036e2010-03-20 22:13:40 +00001827 SDValue MemAddr, Align;
Bob Wilson1c3ef902011-02-07 17:43:21 +00001828 unsigned AddrOpIdx = isUpdating ? 1 : 2;
1829 unsigned Vec0Idx = 3; // AddrOpIdx + (isUpdating ? 2 : 1)
1830 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align))
Bob Wilson24f995d2009-10-14 18:32:29 +00001831 return NULL;
1832
Evan Chengb58a3402011-04-19 00:04:03 +00001833 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1834 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
1835
Bob Wilson24f995d2009-10-14 18:32:29 +00001836 SDValue Chain = N->getOperand(0);
Bob Wilson1c3ef902011-02-07 17:43:21 +00001837 EVT VT = N->getOperand(Vec0Idx).getValueType();
Bob Wilson24f995d2009-10-14 18:32:29 +00001838 bool is64BitVector = VT.is64BitVector();
Bob Wilson665814b2010-11-01 23:40:51 +00001839 Align = GetVLDSTAlign(Align, NumVecs, is64BitVector);
Bob Wilson2a6e6162010-09-23 23:42:37 +00001840
Bob Wilson24f995d2009-10-14 18:32:29 +00001841 unsigned OpcodeIndex;
1842 switch (VT.getSimpleVT().SimpleTy) {
1843 default: llvm_unreachable("unhandled vst type");
1844 // Double-register operations:
1845 case MVT::v8i8: OpcodeIndex = 0; break;
1846 case MVT::v4i16: OpcodeIndex = 1; break;
1847 case MVT::v2f32:
1848 case MVT::v2i32: OpcodeIndex = 2; break;
1849 case MVT::v1i64: OpcodeIndex = 3; break;
1850 // Quad-register operations:
1851 case MVT::v16i8: OpcodeIndex = 0; break;
1852 case MVT::v8i16: OpcodeIndex = 1; break;
1853 case MVT::v4f32:
1854 case MVT::v4i32: OpcodeIndex = 2; break;
Bob Wilson11d98992010-03-23 06:20:33 +00001855 case MVT::v2i64: OpcodeIndex = 3;
1856 assert(NumVecs == 1 && "v2i64 type only supported for VST1");
1857 break;
Bob Wilson24f995d2009-10-14 18:32:29 +00001858 }
1859
Bob Wilson1c3ef902011-02-07 17:43:21 +00001860 std::vector<EVT> ResTys;
1861 if (isUpdating)
1862 ResTys.push_back(MVT::i32);
1863 ResTys.push_back(MVT::Other);
1864
Evan Cheng47b7b9f2010-04-16 05:46:06 +00001865 SDValue Pred = getAL(CurDAG);
Bob Wilson226036e2010-03-20 22:13:40 +00001866 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Bob Wilson1c3ef902011-02-07 17:43:21 +00001867 SmallVector<SDValue, 7> Ops;
Evan Chengac0869d2009-11-21 06:21:52 +00001868
Bob Wilson1c3ef902011-02-07 17:43:21 +00001869 // Double registers and VST1/VST2 quad registers are directly supported.
1870 if (is64BitVector || NumVecs <= 2) {
Bob Wilson7de68142011-02-07 17:43:15 +00001871 SDValue SrcReg;
Bob Wilsone5ce4f62010-08-28 05:12:57 +00001872 if (NumVecs == 1) {
Bob Wilson1c3ef902011-02-07 17:43:21 +00001873 SrcReg = N->getOperand(Vec0Idx);
1874 } else if (is64BitVector) {
Evan Cheng0ce537a2010-05-11 01:19:40 +00001875 // Form a REG_SEQUENCE to force register allocation.
Bob Wilson1c3ef902011-02-07 17:43:21 +00001876 SDValue V0 = N->getOperand(Vec0Idx + 0);
1877 SDValue V1 = N->getOperand(Vec0Idx + 1);
Evan Cheng0ce537a2010-05-11 01:19:40 +00001878 if (NumVecs == 2)
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001879 SrcReg = SDValue(createDRegPairNode(MVT::v2i64, V0, V1), 0);
Evan Cheng0ce537a2010-05-11 01:19:40 +00001880 else {
Bob Wilson1c3ef902011-02-07 17:43:21 +00001881 SDValue V2 = N->getOperand(Vec0Idx + 2);
Bob Wilson7de68142011-02-07 17:43:15 +00001882 // If it's a vst3, form a quad D-register and leave the last part as
Evan Cheng0ce537a2010-05-11 01:19:40 +00001883 // an undef.
1884 SDValue V3 = (NumVecs == 3)
1885 ? SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,dl,VT), 0)
Bob Wilson1c3ef902011-02-07 17:43:21 +00001886 : N->getOperand(Vec0Idx + 3);
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001887 SrcReg = SDValue(createQuadDRegsNode(MVT::v4i64, V0, V1, V2, V3), 0);
Evan Cheng0ce537a2010-05-11 01:19:40 +00001888 }
Bob Wilsone5ce4f62010-08-28 05:12:57 +00001889 } else {
1890 // Form a QQ register.
Bob Wilson1c3ef902011-02-07 17:43:21 +00001891 SDValue Q0 = N->getOperand(Vec0Idx);
1892 SDValue Q1 = N->getOperand(Vec0Idx + 1);
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001893 SrcReg = SDValue(createQRegPairNode(MVT::v4i64, Q0, Q1), 0);
Bob Wilson24f995d2009-10-14 18:32:29 +00001894 }
Bob Wilson1c3ef902011-02-07 17:43:21 +00001895
1896 unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
1897 QOpcodes0[OpcodeIndex]);
1898 Ops.push_back(MemAddr);
1899 Ops.push_back(Align);
1900 if (isUpdating) {
1901 SDValue Inc = N->getOperand(AddrOpIdx + 1);
Jim Grosbachbb3a2e42011-12-14 21:32:11 +00001902 // FIXME: VST1/VST2 fixed increment doesn't need Reg0. Remove the reg0
Jim Grosbach4334e032011-10-31 21:50:31 +00001903 // case entirely when the rest are updated to that form, too.
Jim Grosbachbb3a2e42011-12-14 21:32:11 +00001904 if (NumVecs <= 2 && !isa<ConstantSDNode>(Inc.getNode()))
Jim Grosbach4334e032011-10-31 21:50:31 +00001905 Opc = getVLDSTRegisterUpdateOpcode(Opc);
1906 // We use a VST1 for v1i64 even if the pseudo says vld2/3/4, so
1907 // check for that explicitly too. Horribly hacky, but temporary.
Jim Grosbach28f08c92012-03-05 19:33:30 +00001908 if ((NumVecs > 2 && Opc != ARM::VST1q64wb_fixed) ||
Jim Grosbach4334e032011-10-31 21:50:31 +00001909 !isa<ConstantSDNode>(Inc.getNode()))
1910 Ops.push_back(isa<ConstantSDNode>(Inc.getNode()) ? Reg0 : Inc);
Bob Wilson1c3ef902011-02-07 17:43:21 +00001911 }
1912 Ops.push_back(SrcReg);
1913 Ops.push_back(Pred);
1914 Ops.push_back(Reg0);
1915 Ops.push_back(Chain);
Evan Chengb58a3402011-04-19 00:04:03 +00001916 SDNode *VSt =
1917 CurDAG->getMachineNode(Opc, dl, ResTys, Ops.data(), Ops.size());
1918
1919 // Transfer memoperands.
1920 cast<MachineSDNode>(VSt)->setMemRefs(MemOp, MemOp + 1);
1921
1922 return VSt;
Bob Wilson24f995d2009-10-14 18:32:29 +00001923 }
1924
1925 // Otherwise, quad registers are stored with two separate instructions,
1926 // where one stores the even registers and the other stores the odd registers.
Evan Cheng7189fd02010-05-15 07:53:37 +00001927
Bob Wilson07f6e802010-06-16 21:34:01 +00001928 // Form the QQQQ REG_SEQUENCE.
Bob Wilson1c3ef902011-02-07 17:43:21 +00001929 SDValue V0 = N->getOperand(Vec0Idx + 0);
1930 SDValue V1 = N->getOperand(Vec0Idx + 1);
1931 SDValue V2 = N->getOperand(Vec0Idx + 2);
Bob Wilsone5ce4f62010-08-28 05:12:57 +00001932 SDValue V3 = (NumVecs == 3)
1933 ? SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, VT), 0)
Bob Wilson1c3ef902011-02-07 17:43:21 +00001934 : N->getOperand(Vec0Idx + 3);
Weiming Zhao8b149cb2012-11-17 00:23:35 +00001935 SDValue RegSeq = SDValue(createQuadQRegsNode(MVT::v8i64, V0, V1, V2, V3), 0);
Bob Wilson07f6e802010-06-16 21:34:01 +00001936
Bob Wilson1c3ef902011-02-07 17:43:21 +00001937 // Store the even D registers. This is always an updating store, so that it
1938 // provides the address to the second store for the odd subregs.
Bob Wilson7de68142011-02-07 17:43:15 +00001939 const SDValue OpsA[] = { MemAddr, Align, Reg0, RegSeq, Pred, Reg0, Chain };
1940 SDNode *VStA = CurDAG->getMachineNode(QOpcodes0[OpcodeIndex], dl,
1941 MemAddr.getValueType(),
1942 MVT::Other, OpsA, 7);
Evan Chengb58a3402011-04-19 00:04:03 +00001943 cast<MachineSDNode>(VStA)->setMemRefs(MemOp, MemOp + 1);
Bob Wilson07f6e802010-06-16 21:34:01 +00001944 Chain = SDValue(VStA, 1);
1945
1946 // Store the odd D registers.
Bob Wilson1c3ef902011-02-07 17:43:21 +00001947 Ops.push_back(SDValue(VStA, 0));
1948 Ops.push_back(Align);
1949 if (isUpdating) {
1950 SDValue Inc = N->getOperand(AddrOpIdx + 1);
1951 assert(isa<ConstantSDNode>(Inc.getNode()) &&
1952 "only constant post-increment update allowed for VST3/4");
1953 (void)Inc;
1954 Ops.push_back(Reg0);
1955 }
1956 Ops.push_back(RegSeq);
1957 Ops.push_back(Pred);
1958 Ops.push_back(Reg0);
1959 Ops.push_back(Chain);
Evan Chengb58a3402011-04-19 00:04:03 +00001960 SDNode *VStB = CurDAG->getMachineNode(QOpcodes1[OpcodeIndex], dl, ResTys,
1961 Ops.data(), Ops.size());
1962 cast<MachineSDNode>(VStB)->setMemRefs(MemOp, MemOp + 1);
1963 return VStB;
Bob Wilson24f995d2009-10-14 18:32:29 +00001964}
1965
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001966SDNode *ARMDAGToDAGISel::SelectVLDSTLane(SDNode *N, bool IsLoad,
Bob Wilson1c3ef902011-02-07 17:43:21 +00001967 bool isUpdating, unsigned NumVecs,
Craig Topper51f50c12012-05-24 05:17:00 +00001968 const uint16_t *DOpcodes,
1969 const uint16_t *QOpcodes) {
Bob Wilson96493442009-10-14 16:46:45 +00001970 assert(NumVecs >=2 && NumVecs <= 4 && "VLDSTLane NumVecs out-of-range");
Bob Wilsona7c397c2009-10-14 16:19:03 +00001971 DebugLoc dl = N->getDebugLoc();
1972
Bob Wilson226036e2010-03-20 22:13:40 +00001973 SDValue MemAddr, Align;
Bob Wilson1c3ef902011-02-07 17:43:21 +00001974 unsigned AddrOpIdx = isUpdating ? 1 : 2;
1975 unsigned Vec0Idx = 3; // AddrOpIdx + (isUpdating ? 2 : 1)
1976 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align))
Bob Wilsona7c397c2009-10-14 16:19:03 +00001977 return NULL;
1978
Evan Chengb58a3402011-04-19 00:04:03 +00001979 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1980 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
1981
Bob Wilsona7c397c2009-10-14 16:19:03 +00001982 SDValue Chain = N->getOperand(0);
1983 unsigned Lane =
Bob Wilson1c3ef902011-02-07 17:43:21 +00001984 cast<ConstantSDNode>(N->getOperand(Vec0Idx + NumVecs))->getZExtValue();
1985 EVT VT = N->getOperand(Vec0Idx).getValueType();
Bob Wilsona7c397c2009-10-14 16:19:03 +00001986 bool is64BitVector = VT.is64BitVector();
1987
Bob Wilson665814b2010-11-01 23:40:51 +00001988 unsigned Alignment = 0;
Bob Wilson3454ed92010-10-19 00:16:32 +00001989 if (NumVecs != 3) {
Bob Wilson665814b2010-11-01 23:40:51 +00001990 Alignment = cast<ConstantSDNode>(Align)->getZExtValue();
Bob Wilson3454ed92010-10-19 00:16:32 +00001991 unsigned NumBytes = NumVecs * VT.getVectorElementType().getSizeInBits()/8;
1992 if (Alignment > NumBytes)
1993 Alignment = NumBytes;
Bob Wilsona92bac62010-12-10 19:37:42 +00001994 if (Alignment < 8 && Alignment < NumBytes)
1995 Alignment = 0;
Bob Wilson3454ed92010-10-19 00:16:32 +00001996 // Alignment must be a power of two; make sure of that.
1997 Alignment = (Alignment & -Alignment);
Bob Wilson665814b2010-11-01 23:40:51 +00001998 if (Alignment == 1)
1999 Alignment = 0;
Bob Wilson3454ed92010-10-19 00:16:32 +00002000 }
Bob Wilson665814b2010-11-01 23:40:51 +00002001 Align = CurDAG->getTargetConstant(Alignment, MVT::i32);
Bob Wilson3454ed92010-10-19 00:16:32 +00002002
Bob Wilsona7c397c2009-10-14 16:19:03 +00002003 unsigned OpcodeIndex;
2004 switch (VT.getSimpleVT().SimpleTy) {
Bob Wilson96493442009-10-14 16:46:45 +00002005 default: llvm_unreachable("unhandled vld/vst lane type");
Bob Wilsona7c397c2009-10-14 16:19:03 +00002006 // Double-register operations:
2007 case MVT::v8i8: OpcodeIndex = 0; break;
2008 case MVT::v4i16: OpcodeIndex = 1; break;
2009 case MVT::v2f32:
2010 case MVT::v2i32: OpcodeIndex = 2; break;
2011 // Quad-register operations:
2012 case MVT::v8i16: OpcodeIndex = 0; break;
2013 case MVT::v4f32:
2014 case MVT::v4i32: OpcodeIndex = 1; break;
2015 }
2016
Bob Wilson1c3ef902011-02-07 17:43:21 +00002017 std::vector<EVT> ResTys;
2018 if (IsLoad) {
2019 unsigned ResTyElts = (NumVecs == 3) ? 4 : NumVecs;
2020 if (!is64BitVector)
2021 ResTyElts *= 2;
2022 ResTys.push_back(EVT::getVectorVT(*CurDAG->getContext(),
2023 MVT::i64, ResTyElts));
2024 }
2025 if (isUpdating)
2026 ResTys.push_back(MVT::i32);
2027 ResTys.push_back(MVT::Other);
2028
Evan Cheng47b7b9f2010-04-16 05:46:06 +00002029 SDValue Pred = getAL(CurDAG);
Bob Wilson226036e2010-03-20 22:13:40 +00002030 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Evan Chengac0869d2009-11-21 06:21:52 +00002031
Bob Wilson1c3ef902011-02-07 17:43:21 +00002032 SmallVector<SDValue, 8> Ops;
Bob Wilsona7c397c2009-10-14 16:19:03 +00002033 Ops.push_back(MemAddr);
Jim Grosbach8a5ec862009-11-07 21:25:39 +00002034 Ops.push_back(Align);
Bob Wilson1c3ef902011-02-07 17:43:21 +00002035 if (isUpdating) {
2036 SDValue Inc = N->getOperand(AddrOpIdx + 1);
2037 Ops.push_back(isa<ConstantSDNode>(Inc.getNode()) ? Reg0 : Inc);
2038 }
Bob Wilson07f6e802010-06-16 21:34:01 +00002039
Bob Wilson8466fa12010-09-13 23:01:35 +00002040 SDValue SuperReg;
Bob Wilson1c3ef902011-02-07 17:43:21 +00002041 SDValue V0 = N->getOperand(Vec0Idx + 0);
2042 SDValue V1 = N->getOperand(Vec0Idx + 1);
Bob Wilson8466fa12010-09-13 23:01:35 +00002043 if (NumVecs == 2) {
2044 if (is64BitVector)
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002045 SuperReg = SDValue(createDRegPairNode(MVT::v2i64, V0, V1), 0);
Bob Wilson8466fa12010-09-13 23:01:35 +00002046 else
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002047 SuperReg = SDValue(createQRegPairNode(MVT::v4i64, V0, V1), 0);
Bob Wilsona7c397c2009-10-14 16:19:03 +00002048 } else {
Bob Wilson1c3ef902011-02-07 17:43:21 +00002049 SDValue V2 = N->getOperand(Vec0Idx + 2);
Bob Wilson8466fa12010-09-13 23:01:35 +00002050 SDValue V3 = (NumVecs == 3)
Bob Wilson1c3ef902011-02-07 17:43:21 +00002051 ? SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, VT), 0)
2052 : N->getOperand(Vec0Idx + 3);
Bob Wilson8466fa12010-09-13 23:01:35 +00002053 if (is64BitVector)
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002054 SuperReg = SDValue(createQuadDRegsNode(MVT::v4i64, V0, V1, V2, V3), 0);
Bob Wilson8466fa12010-09-13 23:01:35 +00002055 else
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002056 SuperReg = SDValue(createQuadQRegsNode(MVT::v8i64, V0, V1, V2, V3), 0);
Bob Wilsona7c397c2009-10-14 16:19:03 +00002057 }
Bob Wilson8466fa12010-09-13 23:01:35 +00002058 Ops.push_back(SuperReg);
Bob Wilsona7c397c2009-10-14 16:19:03 +00002059 Ops.push_back(getI32Imm(Lane));
Evan Chengac0869d2009-11-21 06:21:52 +00002060 Ops.push_back(Pred);
Bob Wilson226036e2010-03-20 22:13:40 +00002061 Ops.push_back(Reg0);
Bob Wilsona7c397c2009-10-14 16:19:03 +00002062 Ops.push_back(Chain);
2063
Bob Wilson1c3ef902011-02-07 17:43:21 +00002064 unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
2065 QOpcodes[OpcodeIndex]);
2066 SDNode *VLdLn = CurDAG->getMachineNode(Opc, dl, ResTys,
2067 Ops.data(), Ops.size());
Evan Chengb58a3402011-04-19 00:04:03 +00002068 cast<MachineSDNode>(VLdLn)->setMemRefs(MemOp, MemOp + 1);
Bob Wilson96493442009-10-14 16:46:45 +00002069 if (!IsLoad)
Bob Wilson1c3ef902011-02-07 17:43:21 +00002070 return VLdLn;
Evan Cheng7092c2b2010-05-15 01:36:29 +00002071
Bob Wilson8466fa12010-09-13 23:01:35 +00002072 // Extract the subregisters.
Bob Wilson1c3ef902011-02-07 17:43:21 +00002073 SuperReg = SDValue(VLdLn, 0);
2074 assert(ARM::dsub_7 == ARM::dsub_0+7 &&
2075 ARM::qsub_3 == ARM::qsub_0+3 && "Unexpected subreg numbering");
2076 unsigned Sub0 = is64BitVector ? ARM::dsub_0 : ARM::qsub_0;
Bob Wilson07f6e802010-06-16 21:34:01 +00002077 for (unsigned Vec = 0; Vec < NumVecs; ++Vec)
2078 ReplaceUses(SDValue(N, Vec),
Bob Wilson1c3ef902011-02-07 17:43:21 +00002079 CurDAG->getTargetExtractSubreg(Sub0 + Vec, dl, VT, SuperReg));
2080 ReplaceUses(SDValue(N, NumVecs), SDValue(VLdLn, 1));
2081 if (isUpdating)
2082 ReplaceUses(SDValue(N, NumVecs + 1), SDValue(VLdLn, 2));
Bob Wilsona7c397c2009-10-14 16:19:03 +00002083 return NULL;
2084}
2085
Bob Wilson1c3ef902011-02-07 17:43:21 +00002086SDNode *ARMDAGToDAGISel::SelectVLDDup(SDNode *N, bool isUpdating,
Craig Topper51f50c12012-05-24 05:17:00 +00002087 unsigned NumVecs,
2088 const uint16_t *Opcodes) {
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002089 assert(NumVecs >=2 && NumVecs <= 4 && "VLDDup NumVecs out-of-range");
2090 DebugLoc dl = N->getDebugLoc();
2091
2092 SDValue MemAddr, Align;
2093 if (!SelectAddrMode6(N, N->getOperand(1), MemAddr, Align))
2094 return NULL;
2095
Evan Chengb58a3402011-04-19 00:04:03 +00002096 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
2097 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
2098
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002099 SDValue Chain = N->getOperand(0);
2100 EVT VT = N->getValueType(0);
2101
2102 unsigned Alignment = 0;
2103 if (NumVecs != 3) {
2104 Alignment = cast<ConstantSDNode>(Align)->getZExtValue();
2105 unsigned NumBytes = NumVecs * VT.getVectorElementType().getSizeInBits()/8;
2106 if (Alignment > NumBytes)
2107 Alignment = NumBytes;
Bob Wilsona92bac62010-12-10 19:37:42 +00002108 if (Alignment < 8 && Alignment < NumBytes)
2109 Alignment = 0;
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002110 // Alignment must be a power of two; make sure of that.
2111 Alignment = (Alignment & -Alignment);
2112 if (Alignment == 1)
2113 Alignment = 0;
2114 }
2115 Align = CurDAG->getTargetConstant(Alignment, MVT::i32);
2116
2117 unsigned OpcodeIndex;
2118 switch (VT.getSimpleVT().SimpleTy) {
2119 default: llvm_unreachable("unhandled vld-dup type");
2120 case MVT::v8i8: OpcodeIndex = 0; break;
2121 case MVT::v4i16: OpcodeIndex = 1; break;
2122 case MVT::v2f32:
2123 case MVT::v2i32: OpcodeIndex = 2; break;
2124 }
2125
2126 SDValue Pred = getAL(CurDAG);
2127 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
2128 SDValue SuperReg;
2129 unsigned Opc = Opcodes[OpcodeIndex];
Bob Wilson1c3ef902011-02-07 17:43:21 +00002130 SmallVector<SDValue, 6> Ops;
2131 Ops.push_back(MemAddr);
2132 Ops.push_back(Align);
2133 if (isUpdating) {
Jim Grosbache6949b12011-12-21 19:40:55 +00002134 // fixed-stride update instructions don't have an explicit writeback
2135 // operand. It's implicit in the opcode itself.
Bob Wilson1c3ef902011-02-07 17:43:21 +00002136 SDValue Inc = N->getOperand(2);
Jim Grosbache6949b12011-12-21 19:40:55 +00002137 if (!isa<ConstantSDNode>(Inc.getNode()))
2138 Ops.push_back(Inc);
2139 // FIXME: VLD3 and VLD4 haven't been updated to that form yet.
2140 else if (NumVecs > 2)
2141 Ops.push_back(Reg0);
Bob Wilson1c3ef902011-02-07 17:43:21 +00002142 }
2143 Ops.push_back(Pred);
2144 Ops.push_back(Reg0);
2145 Ops.push_back(Chain);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002146
2147 unsigned ResTyElts = (NumVecs == 3) ? 4 : NumVecs;
Bob Wilson1c3ef902011-02-07 17:43:21 +00002148 std::vector<EVT> ResTys;
Evan Chengb58a3402011-04-19 00:04:03 +00002149 ResTys.push_back(EVT::getVectorVT(*CurDAG->getContext(), MVT::i64,ResTyElts));
Bob Wilson1c3ef902011-02-07 17:43:21 +00002150 if (isUpdating)
2151 ResTys.push_back(MVT::i32);
2152 ResTys.push_back(MVT::Other);
2153 SDNode *VLdDup =
2154 CurDAG->getMachineNode(Opc, dl, ResTys, Ops.data(), Ops.size());
Evan Chengb58a3402011-04-19 00:04:03 +00002155 cast<MachineSDNode>(VLdDup)->setMemRefs(MemOp, MemOp + 1);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002156 SuperReg = SDValue(VLdDup, 0);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002157
2158 // Extract the subregisters.
2159 assert(ARM::dsub_7 == ARM::dsub_0+7 && "Unexpected subreg numbering");
2160 unsigned SubIdx = ARM::dsub_0;
2161 for (unsigned Vec = 0; Vec < NumVecs; ++Vec)
2162 ReplaceUses(SDValue(N, Vec),
2163 CurDAG->getTargetExtractSubreg(SubIdx+Vec, dl, VT, SuperReg));
Bob Wilson1c3ef902011-02-07 17:43:21 +00002164 ReplaceUses(SDValue(N, NumVecs), SDValue(VLdDup, 1));
2165 if (isUpdating)
2166 ReplaceUses(SDValue(N, NumVecs + 1), SDValue(VLdDup, 2));
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002167 return NULL;
2168}
2169
Bob Wilson78dfbc32010-07-07 00:08:54 +00002170SDNode *ARMDAGToDAGISel::SelectVTBL(SDNode *N, bool IsExt, unsigned NumVecs,
2171 unsigned Opc) {
Bob Wilsond491d6e2010-07-06 23:36:25 +00002172 assert(NumVecs >= 2 && NumVecs <= 4 && "VTBL NumVecs out-of-range");
2173 DebugLoc dl = N->getDebugLoc();
2174 EVT VT = N->getValueType(0);
Bob Wilson78dfbc32010-07-07 00:08:54 +00002175 unsigned FirstTblReg = IsExt ? 2 : 1;
Bob Wilsond491d6e2010-07-06 23:36:25 +00002176
2177 // Form a REG_SEQUENCE to force register allocation.
2178 SDValue RegSeq;
Bob Wilson78dfbc32010-07-07 00:08:54 +00002179 SDValue V0 = N->getOperand(FirstTblReg + 0);
2180 SDValue V1 = N->getOperand(FirstTblReg + 1);
Bob Wilsond491d6e2010-07-06 23:36:25 +00002181 if (NumVecs == 2)
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002182 RegSeq = SDValue(createDRegPairNode(MVT::v16i8, V0, V1), 0);
Bob Wilsond491d6e2010-07-06 23:36:25 +00002183 else {
Bob Wilson78dfbc32010-07-07 00:08:54 +00002184 SDValue V2 = N->getOperand(FirstTblReg + 2);
Jim Grosbach3ab56582010-10-21 19:38:40 +00002185 // If it's a vtbl3, form a quad D-register and leave the last part as
Bob Wilsond491d6e2010-07-06 23:36:25 +00002186 // an undef.
2187 SDValue V3 = (NumVecs == 3)
2188 ? SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, VT), 0)
Bob Wilson78dfbc32010-07-07 00:08:54 +00002189 : N->getOperand(FirstTblReg + 3);
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002190 RegSeq = SDValue(createQuadDRegsNode(MVT::v4i64, V0, V1, V2, V3), 0);
Bob Wilsond491d6e2010-07-06 23:36:25 +00002191 }
2192
Bob Wilson78dfbc32010-07-07 00:08:54 +00002193 SmallVector<SDValue, 6> Ops;
2194 if (IsExt)
2195 Ops.push_back(N->getOperand(1));
Bob Wilsonbd916c52010-09-13 23:55:10 +00002196 Ops.push_back(RegSeq);
Bob Wilson78dfbc32010-07-07 00:08:54 +00002197 Ops.push_back(N->getOperand(FirstTblReg + NumVecs));
Bob Wilsond491d6e2010-07-06 23:36:25 +00002198 Ops.push_back(getAL(CurDAG)); // predicate
2199 Ops.push_back(CurDAG->getRegister(0, MVT::i32)); // predicate register
Bob Wilson78dfbc32010-07-07 00:08:54 +00002200 return CurDAG->getMachineNode(Opc, dl, VT, Ops.data(), Ops.size());
Bob Wilsond491d6e2010-07-06 23:36:25 +00002201}
2202
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002203SDNode *ARMDAGToDAGISel::SelectV6T2BitfieldExtractOp(SDNode *N,
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002204 bool isSigned) {
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002205 if (!Subtarget->hasV6T2Ops())
2206 return NULL;
Bob Wilson96493442009-10-14 16:46:45 +00002207
Evan Cheng733c6b12012-12-19 20:16:09 +00002208 unsigned Opc = isSigned
2209 ? (Subtarget->isThumb() ? ARM::t2SBFX : ARM::SBFX)
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002210 : (Subtarget->isThumb() ? ARM::t2UBFX : ARM::UBFX);
2211
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002212 // For unsigned extracts, check for a shift right and mask
2213 unsigned And_imm = 0;
2214 if (N->getOpcode() == ISD::AND) {
2215 if (isOpcWithIntImmediate(N, ISD::AND, And_imm)) {
2216
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002217 // The immediate is a mask of the low bits iff imm & (imm+1) == 0
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002218 if (And_imm & (And_imm + 1))
2219 return NULL;
2220
2221 unsigned Srl_imm = 0;
2222 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::SRL,
2223 Srl_imm)) {
2224 assert(Srl_imm > 0 && Srl_imm < 32 && "bad amount in shift node!");
2225
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002226 // Note: The width operand is encoded as width-1.
2227 unsigned Width = CountTrailingOnes_32(And_imm) - 1;
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002228 unsigned LSB = Srl_imm;
Evan Cheng733c6b12012-12-19 20:16:09 +00002229
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002230 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Evan Cheng733c6b12012-12-19 20:16:09 +00002231
2232 if ((LSB + Width + 1) == N->getValueType(0).getSizeInBits()) {
2233 // It's cheaper to use a right shift to extract the top bits.
2234 if (Subtarget->isThumb()) {
2235 Opc = isSigned ? ARM::t2ASRri : ARM::t2LSRri;
2236 SDValue Ops[] = { N->getOperand(0).getOperand(0),
2237 CurDAG->getTargetConstant(LSB, MVT::i32),
2238 getAL(CurDAG), Reg0, Reg0 };
2239 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
2240 }
2241
2242 // ARM models shift instructions as MOVsi with shifter operand.
2243 ARM_AM::ShiftOpc ShOpcVal = ARM_AM::getShiftOpcForNode(ISD::SRL);
2244 SDValue ShOpc =
2245 CurDAG->getTargetConstant(ARM_AM::getSORegOpc(ShOpcVal, LSB),
2246 MVT::i32);
2247 SDValue Ops[] = { N->getOperand(0).getOperand(0), ShOpc,
2248 getAL(CurDAG), Reg0, Reg0 };
2249 return CurDAG->SelectNodeTo(N, ARM::MOVsi, MVT::i32, Ops, 5);
2250 }
2251
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002252 SDValue Ops[] = { N->getOperand(0).getOperand(0),
2253 CurDAG->getTargetConstant(LSB, MVT::i32),
2254 CurDAG->getTargetConstant(Width, MVT::i32),
2255 getAL(CurDAG), Reg0 };
2256 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
2257 }
2258 }
2259 return NULL;
2260 }
2261
2262 // Otherwise, we're looking for a shift of a shift
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002263 unsigned Shl_imm = 0;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002264 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::SHL, Shl_imm)) {
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002265 assert(Shl_imm > 0 && Shl_imm < 32 && "bad amount in shift node!");
2266 unsigned Srl_imm = 0;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002267 if (isInt32Immediate(N->getOperand(1), Srl_imm)) {
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002268 assert(Srl_imm > 0 && Srl_imm < 32 && "bad amount in shift node!");
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002269 // Note: The width operand is encoded as width-1.
2270 unsigned Width = 32 - Srl_imm - 1;
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002271 int LSB = Srl_imm - Shl_imm;
Evan Cheng8000c6c2009-10-22 00:40:00 +00002272 if (LSB < 0)
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002273 return NULL;
2274 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002275 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002276 CurDAG->getTargetConstant(LSB, MVT::i32),
2277 CurDAG->getTargetConstant(Width, MVT::i32),
2278 getAL(CurDAG), Reg0 };
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002279 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002280 }
2281 }
2282 return NULL;
2283}
2284
Evan Cheng9ef48352009-11-20 00:54:03 +00002285SDNode *ARMDAGToDAGISel::
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002286SelectT2CMOVShiftOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002287 ARMCC::CondCodes CCVal, SDValue CCR, SDValue InFlag) {
2288 SDValue CPTmp0;
2289 SDValue CPTmp1;
Chris Lattner52a261b2010-09-21 20:31:19 +00002290 if (SelectT2ShifterOperandReg(TrueVal, CPTmp0, CPTmp1)) {
Evan Cheng9ef48352009-11-20 00:54:03 +00002291 unsigned SOVal = cast<ConstantSDNode>(CPTmp1)->getZExtValue();
2292 unsigned SOShOp = ARM_AM::getSORegShOp(SOVal);
2293 unsigned Opc = 0;
2294 switch (SOShOp) {
2295 case ARM_AM::lsl: Opc = ARM::t2MOVCClsl; break;
2296 case ARM_AM::lsr: Opc = ARM::t2MOVCClsr; break;
2297 case ARM_AM::asr: Opc = ARM::t2MOVCCasr; break;
2298 case ARM_AM::ror: Opc = ARM::t2MOVCCror; break;
2299 default:
2300 llvm_unreachable("Unknown so_reg opcode!");
Evan Cheng9ef48352009-11-20 00:54:03 +00002301 }
2302 SDValue SOShImm =
2303 CurDAG->getTargetConstant(ARM_AM::getSORegOffset(SOVal), MVT::i32);
2304 SDValue CC = CurDAG->getTargetConstant(CCVal, MVT::i32);
2305 SDValue Ops[] = { FalseVal, CPTmp0, SOShImm, CC, CCR, InFlag };
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002306 return CurDAG->SelectNodeTo(N, Opc, MVT::i32,Ops, 6);
Evan Cheng9ef48352009-11-20 00:54:03 +00002307 }
2308 return 0;
2309}
2310
2311SDNode *ARMDAGToDAGISel::
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002312SelectARMCMOVShiftOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002313 ARMCC::CondCodes CCVal, SDValue CCR, SDValue InFlag) {
2314 SDValue CPTmp0;
2315 SDValue CPTmp1;
2316 SDValue CPTmp2;
Owen Anderson152d4a42011-07-21 23:38:37 +00002317 if (SelectImmShifterOperand(TrueVal, CPTmp0, CPTmp2)) {
Evan Cheng9ef48352009-11-20 00:54:03 +00002318 SDValue CC = CurDAG->getTargetConstant(CCVal, MVT::i32);
Owen Andersone0a03142011-07-22 18:30:30 +00002319 SDValue Ops[] = { FalseVal, CPTmp0, CPTmp2, CC, CCR, InFlag };
2320 return CurDAG->SelectNodeTo(N, ARM::MOVCCsi, MVT::i32, Ops, 6);
Owen Anderson92a20222011-07-21 18:54:16 +00002321 }
2322
2323 if (SelectRegShifterOperand(TrueVal, CPTmp0, CPTmp1, CPTmp2)) {
2324 SDValue CC = CurDAG->getTargetConstant(CCVal, MVT::i32);
2325 SDValue Ops[] = { FalseVal, CPTmp0, CPTmp1, CPTmp2, CC, CCR, InFlag };
2326 return CurDAG->SelectNodeTo(N, ARM::MOVCCsr, MVT::i32, Ops, 7);
Evan Cheng9ef48352009-11-20 00:54:03 +00002327 }
2328 return 0;
2329}
2330
2331SDNode *ARMDAGToDAGISel::
Jim Grosbacha4257162010-10-07 00:53:56 +00002332SelectT2CMOVImmOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng6b194912010-11-17 20:56:30 +00002333 ARMCC::CondCodes CCVal, SDValue CCR, SDValue InFlag) {
Evan Cheng9ef48352009-11-20 00:54:03 +00002334 ConstantSDNode *T = dyn_cast<ConstantSDNode>(TrueVal);
Evan Chengff96b632010-11-19 23:01:16 +00002335 if (!T)
Evan Cheng9ef48352009-11-20 00:54:03 +00002336 return 0;
2337
Evan Cheng63f35442010-11-13 02:25:14 +00002338 unsigned Opc = 0;
Jim Grosbacha4257162010-10-07 00:53:56 +00002339 unsigned TrueImm = T->getZExtValue();
Evan Cheng6b194912010-11-17 20:56:30 +00002340 if (is_t2_so_imm(TrueImm)) {
2341 Opc = ARM::t2MOVCCi;
2342 } else if (TrueImm <= 0xffff) {
2343 Opc = ARM::t2MOVCCi16;
Evan Cheng63f35442010-11-13 02:25:14 +00002344 } else if (is_t2_so_imm_not(TrueImm)) {
2345 TrueImm = ~TrueImm;
2346 Opc = ARM::t2MVNCCi;
Evan Cheng6b194912010-11-17 20:56:30 +00002347 } else if (TrueVal.getNode()->hasOneUse() && Subtarget->hasV6T2Ops()) {
Evan Cheng63f35442010-11-13 02:25:14 +00002348 // Large immediate.
2349 Opc = ARM::t2MOVCCi32imm;
2350 }
2351
2352 if (Opc) {
Evan Cheng875a6ac2010-11-12 22:42:47 +00002353 SDValue True = CurDAG->getTargetConstant(TrueImm, MVT::i32);
Evan Cheng9ef48352009-11-20 00:54:03 +00002354 SDValue CC = CurDAG->getTargetConstant(CCVal, MVT::i32);
2355 SDValue Ops[] = { FalseVal, True, CC, CCR, InFlag };
Evan Cheng63f35442010-11-13 02:25:14 +00002356 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
Evan Cheng9ef48352009-11-20 00:54:03 +00002357 }
Evan Cheng63f35442010-11-13 02:25:14 +00002358
Evan Cheng9ef48352009-11-20 00:54:03 +00002359 return 0;
2360}
2361
2362SDNode *ARMDAGToDAGISel::
Jim Grosbach3bbdcea2010-10-07 00:42:42 +00002363SelectARMCMOVImmOp(SDNode *N, SDValue FalseVal, SDValue TrueVal,
Evan Cheng6b194912010-11-17 20:56:30 +00002364 ARMCC::CondCodes CCVal, SDValue CCR, SDValue InFlag) {
Evan Cheng9ef48352009-11-20 00:54:03 +00002365 ConstantSDNode *T = dyn_cast<ConstantSDNode>(TrueVal);
2366 if (!T)
2367 return 0;
2368
Evan Cheng63f35442010-11-13 02:25:14 +00002369 unsigned Opc = 0;
Jim Grosbach3bbdcea2010-10-07 00:42:42 +00002370 unsigned TrueImm = T->getZExtValue();
Evan Cheng875a6ac2010-11-12 22:42:47 +00002371 bool isSoImm = is_so_imm(TrueImm);
Evan Cheng6b194912010-11-17 20:56:30 +00002372 if (isSoImm) {
2373 Opc = ARM::MOVCCi;
2374 } else if (Subtarget->hasV6T2Ops() && TrueImm <= 0xffff) {
2375 Opc = ARM::MOVCCi16;
Evan Cheng63f35442010-11-13 02:25:14 +00002376 } else if (is_so_imm_not(TrueImm)) {
2377 TrueImm = ~TrueImm;
2378 Opc = ARM::MVNCCi;
Evan Cheng6b194912010-11-17 20:56:30 +00002379 } else if (TrueVal.getNode()->hasOneUse() &&
2380 (Subtarget->hasV6T2Ops() || ARM_AM::isSOImmTwoPartVal(TrueImm))) {
Evan Cheng63f35442010-11-13 02:25:14 +00002381 // Large immediate.
2382 Opc = ARM::MOVCCi32imm;
2383 }
2384
2385 if (Opc) {
Jim Grosbach3bbdcea2010-10-07 00:42:42 +00002386 SDValue True = CurDAG->getTargetConstant(TrueImm, MVT::i32);
Evan Cheng9ef48352009-11-20 00:54:03 +00002387 SDValue CC = CurDAG->getTargetConstant(CCVal, MVT::i32);
2388 SDValue Ops[] = { FalseVal, True, CC, CCR, InFlag };
Evan Cheng63f35442010-11-13 02:25:14 +00002389 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
Evan Cheng9ef48352009-11-20 00:54:03 +00002390 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00002391
Evan Cheng9ef48352009-11-20 00:54:03 +00002392 return 0;
2393}
2394
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002395SDNode *ARMDAGToDAGISel::SelectCMOVOp(SDNode *N) {
2396 EVT VT = N->getValueType(0);
2397 SDValue FalseVal = N->getOperand(0);
2398 SDValue TrueVal = N->getOperand(1);
2399 SDValue CC = N->getOperand(2);
2400 SDValue CCR = N->getOperand(3);
2401 SDValue InFlag = N->getOperand(4);
Evan Cheng9ef48352009-11-20 00:54:03 +00002402 assert(CC.getOpcode() == ISD::Constant);
2403 assert(CCR.getOpcode() == ISD::Register);
2404 ARMCC::CondCodes CCVal =
2405 (ARMCC::CondCodes)cast<ConstantSDNode>(CC)->getZExtValue();
Evan Cheng07ba9062009-11-19 21:45:22 +00002406
2407 if (!Subtarget->isThumb1Only() && VT == MVT::i32) {
2408 // Pattern: (ARMcmov:i32 GPR:i32:$false, so_reg:i32:$true, (imm:i32):$cc)
2409 // Emits: (MOVCCs:i32 GPR:i32:$false, so_reg:i32:$true, (imm:i32):$cc)
2410 // Pattern complexity = 18 cost = 1 size = 0
Evan Cheng07ba9062009-11-19 21:45:22 +00002411 if (Subtarget->isThumb()) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002412 SDNode *Res = SelectT2CMOVShiftOp(N, FalseVal, TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002413 CCVal, CCR, InFlag);
2414 if (!Res)
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002415 Res = SelectT2CMOVShiftOp(N, TrueVal, FalseVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002416 ARMCC::getOppositeCondition(CCVal), CCR, InFlag);
2417 if (Res)
2418 return Res;
Evan Cheng07ba9062009-11-19 21:45:22 +00002419 } else {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002420 SDNode *Res = SelectARMCMOVShiftOp(N, FalseVal, TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002421 CCVal, CCR, InFlag);
2422 if (!Res)
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002423 Res = SelectARMCMOVShiftOp(N, TrueVal, FalseVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002424 ARMCC::getOppositeCondition(CCVal), CCR, InFlag);
2425 if (Res)
2426 return Res;
Evan Cheng07ba9062009-11-19 21:45:22 +00002427 }
2428
2429 // Pattern: (ARMcmov:i32 GPR:i32:$false,
Jakob Stoklund Olesen00d3dda2010-08-17 20:39:04 +00002430 // (imm:i32)<<P:Pred_so_imm>>:$true,
Evan Cheng07ba9062009-11-19 21:45:22 +00002431 // (imm:i32):$cc)
2432 // Emits: (MOVCCi:i32 GPR:i32:$false,
2433 // (so_imm:i32 (imm:i32):$true), (imm:i32):$cc)
2434 // Pattern complexity = 10 cost = 1 size = 0
Evan Cheng9ef48352009-11-20 00:54:03 +00002435 if (Subtarget->isThumb()) {
Jim Grosbacha4257162010-10-07 00:53:56 +00002436 SDNode *Res = SelectT2CMOVImmOp(N, FalseVal, TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002437 CCVal, CCR, InFlag);
2438 if (!Res)
Jim Grosbacha4257162010-10-07 00:53:56 +00002439 Res = SelectT2CMOVImmOp(N, TrueVal, FalseVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002440 ARMCC::getOppositeCondition(CCVal), CCR, InFlag);
2441 if (Res)
2442 return Res;
2443 } else {
Jim Grosbach3bbdcea2010-10-07 00:42:42 +00002444 SDNode *Res = SelectARMCMOVImmOp(N, FalseVal, TrueVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002445 CCVal, CCR, InFlag);
2446 if (!Res)
Jim Grosbach3bbdcea2010-10-07 00:42:42 +00002447 Res = SelectARMCMOVImmOp(N, TrueVal, FalseVal,
Evan Cheng9ef48352009-11-20 00:54:03 +00002448 ARMCC::getOppositeCondition(CCVal), CCR, InFlag);
2449 if (Res)
2450 return Res;
Evan Cheng07ba9062009-11-19 21:45:22 +00002451 }
2452 }
2453
2454 // Pattern: (ARMcmov:i32 GPR:i32:$false, GPR:i32:$true, (imm:i32):$cc)
2455 // Emits: (MOVCCr:i32 GPR:i32:$false, GPR:i32:$true, (imm:i32):$cc)
2456 // Pattern complexity = 6 cost = 1 size = 0
2457 //
2458 // Pattern: (ARMcmov:i32 GPR:i32:$false, GPR:i32:$true, (imm:i32):$cc)
2459 // Emits: (tMOVCCr:i32 GPR:i32:$false, GPR:i32:$true, (imm:i32):$cc)
2460 // Pattern complexity = 6 cost = 11 size = 0
2461 //
Jim Grosbach3c5edaa2011-03-11 23:15:02 +00002462 // Also VMOVScc and VMOVDcc.
Evan Cheng9ef48352009-11-20 00:54:03 +00002463 SDValue Tmp2 = CurDAG->getTargetConstant(CCVal, MVT::i32);
2464 SDValue Ops[] = { FalseVal, TrueVal, Tmp2, CCR, InFlag };
Evan Cheng07ba9062009-11-19 21:45:22 +00002465 unsigned Opc = 0;
2466 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperbc219812012-02-07 02:50:20 +00002467 default: llvm_unreachable("Illegal conditional move type!");
Evan Cheng07ba9062009-11-19 21:45:22 +00002468 case MVT::i32:
2469 Opc = Subtarget->isThumb()
2470 ? (Subtarget->hasThumb2() ? ARM::t2MOVCCr : ARM::tMOVCCr_pseudo)
2471 : ARM::MOVCCr;
2472 break;
2473 case MVT::f32:
2474 Opc = ARM::VMOVScc;
2475 break;
2476 case MVT::f64:
2477 Opc = ARM::VMOVDcc;
2478 break;
2479 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002480 return CurDAG->SelectNodeTo(N, Opc, VT, Ops, 5);
Evan Cheng07ba9062009-11-19 21:45:22 +00002481}
2482
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002483/// Target-specific DAG combining for ISD::XOR.
2484/// Target-independent combining lowers SELECT_CC nodes of the form
2485/// select_cc setg[ge] X, 0, X, -X
2486/// select_cc setgt X, -1, X, -X
2487/// select_cc setl[te] X, 0, -X, X
2488/// select_cc setlt X, 1, -X, X
2489/// which represent Integer ABS into:
2490/// Y = sra (X, size(X)-1); xor (add (X, Y), Y)
2491/// ARM instruction selection detects the latter and matches it to
2492/// ARM::ABS or ARM::t2ABS machine node.
2493SDNode *ARMDAGToDAGISel::SelectABSOp(SDNode *N){
2494 SDValue XORSrc0 = N->getOperand(0);
2495 SDValue XORSrc1 = N->getOperand(1);
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002496 EVT VT = N->getValueType(0);
2497
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002498 if (Subtarget->isThumb1Only())
2499 return NULL;
2500
Jim Grosbach27690282012-08-01 20:33:00 +00002501 if (XORSrc0.getOpcode() != ISD::ADD || XORSrc1.getOpcode() != ISD::SRA)
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002502 return NULL;
2503
2504 SDValue ADDSrc0 = XORSrc0.getOperand(0);
2505 SDValue ADDSrc1 = XORSrc0.getOperand(1);
2506 SDValue SRASrc0 = XORSrc1.getOperand(0);
2507 SDValue SRASrc1 = XORSrc1.getOperand(1);
2508 ConstantSDNode *SRAConstant = dyn_cast<ConstantSDNode>(SRASrc1);
2509 EVT XType = SRASrc0.getValueType();
2510 unsigned Size = XType.getSizeInBits() - 1;
2511
Jim Grosbach27690282012-08-01 20:33:00 +00002512 if (ADDSrc1 == XORSrc1 && ADDSrc0 == SRASrc0 &&
2513 XType.isInteger() && SRAConstant != NULL &&
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002514 Size == SRAConstant->getZExtValue()) {
Jim Grosbach27690282012-08-01 20:33:00 +00002515 unsigned Opcode = Subtarget->isThumb2() ? ARM::t2ABS : ARM::ABS;
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002516 return CurDAG->SelectNodeTo(N, Opcode, VT, ADDSrc0);
2517 }
2518
2519 return NULL;
2520}
2521
Evan Chengde8aa4e2010-05-05 18:28:36 +00002522SDNode *ARMDAGToDAGISel::SelectConcatVector(SDNode *N) {
2523 // The only time a CONCAT_VECTORS operation can have legal types is when
2524 // two 64-bit vectors are concatenated to a 128-bit vector.
2525 EVT VT = N->getValueType(0);
2526 if (!VT.is128BitVector() || N->getNumOperands() != 2)
2527 llvm_unreachable("unexpected CONCAT_VECTORS");
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002528 return createDRegPairNode(VT, N->getOperand(0), N->getOperand(1));
Evan Chengde8aa4e2010-05-05 18:28:36 +00002529}
2530
Eli Friedman2bdffe42011-08-31 00:31:29 +00002531SDNode *ARMDAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
Eli Friedman4d3f3292011-08-31 17:52:22 +00002532 SmallVector<SDValue, 6> Ops;
2533 Ops.push_back(Node->getOperand(1)); // Ptr
2534 Ops.push_back(Node->getOperand(2)); // Low part of Val1
2535 Ops.push_back(Node->getOperand(3)); // High part of Val1
Owen Andersond84192f2011-08-31 20:00:11 +00002536 if (Opc == ARM::ATOMCMPXCHG6432) {
Eli Friedman4d3f3292011-08-31 17:52:22 +00002537 Ops.push_back(Node->getOperand(4)); // Low part of Val2
2538 Ops.push_back(Node->getOperand(5)); // High part of Val2
2539 }
2540 Ops.push_back(Node->getOperand(0)); // Chain
Eli Friedman2bdffe42011-08-31 00:31:29 +00002541 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
2542 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Eli Friedman2bdffe42011-08-31 00:31:29 +00002543 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
Eli Friedman4d3f3292011-08-31 17:52:22 +00002544 MVT::i32, MVT::i32, MVT::Other,
2545 Ops.data() ,Ops.size());
Eli Friedman2bdffe42011-08-31 00:31:29 +00002546 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
2547 return ResNode;
2548}
2549
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002550SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
Dale Johannesened2eee62009-02-06 01:31:28 +00002551 DebugLoc dl = N->getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002552
Dan Gohmane8be6c62008-07-17 19:10:17 +00002553 if (N->isMachineOpcode())
Evan Chenga8e29892007-01-19 07:51:42 +00002554 return NULL; // Already selected.
Rafael Espindola337c4ad62006-06-12 12:28:08 +00002555
2556 switch (N->getOpcode()) {
Evan Chenga8e29892007-01-19 07:51:42 +00002557 default: break;
Weiming Zhao3019fbb2013-02-13 21:43:02 +00002558 case ISD::INLINEASM: {
2559 SDNode *ResNode = SelectInlineAsm(N);
2560 if (ResNode)
2561 return ResNode;
2562 break;
2563 }
Bill Wendlingef2c86f2011-10-10 22:59:55 +00002564 case ISD::XOR: {
2565 // Select special operations if XOR node forms integer ABS pattern
2566 SDNode *ResNode = SelectABSOp(N);
2567 if (ResNode)
2568 return ResNode;
2569 // Other cases are autogenerated.
2570 break;
2571 }
Evan Chenga8e29892007-01-19 07:51:42 +00002572 case ISD::Constant: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002573 unsigned Val = cast<ConstantSDNode>(N)->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00002574 bool UseCP = true;
Anton Korobeynikov6a2fa322009-09-27 23:52:58 +00002575 if (Subtarget->hasThumb2())
2576 // Thumb2-aware targets have the MOVT instruction, so all immediates can
2577 // be done with MOV + MOVT, at worst.
2578 UseCP = 0;
2579 else {
2580 if (Subtarget->isThumb()) {
Bob Wilsone64e3cf2009-06-22 17:29:13 +00002581 UseCP = (Val > 255 && // MOV
2582 ~Val > 255 && // MOV + MVN
2583 !ARM_AM::isThumbImmShiftedVal(Val)); // MOV + LSL
Anton Korobeynikov6a2fa322009-09-27 23:52:58 +00002584 } else
2585 UseCP = (ARM_AM::getSOImmVal(Val) == -1 && // MOV
2586 ARM_AM::getSOImmVal(~Val) == -1 && // MVN
2587 !ARM_AM::isSOImmTwoPartVal(Val)); // two instrs.
2588 }
2589
Evan Chenga8e29892007-01-19 07:51:42 +00002590 if (UseCP) {
Dan Gohman475871a2008-07-27 21:46:04 +00002591 SDValue CPIdx =
Owen Anderson1d0be152009-08-13 21:58:54 +00002592 CurDAG->getTargetConstantPool(ConstantInt::get(
2593 Type::getInt32Ty(*CurDAG->getContext()), Val),
Evan Chenga8e29892007-01-19 07:51:42 +00002594 TLI.getPointerTy());
Evan Cheng012f2d92007-01-24 08:53:17 +00002595
2596 SDNode *ResNode;
Evan Cheng446c4282009-07-11 06:43:01 +00002597 if (Subtarget->isThumb1Only()) {
Evan Cheng47b7b9f2010-04-16 05:46:06 +00002598 SDValue Pred = getAL(CurDAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00002599 SDValue PredReg = CurDAG->getRegister(0, MVT::i32);
Evan Cheng446c4282009-07-11 06:43:01 +00002600 SDValue Ops[] = { CPIdx, Pred, PredReg, CurDAG->getEntryNode() };
Jim Grosbach3e333632010-12-15 23:52:36 +00002601 ResNode = CurDAG->getMachineNode(ARM::tLDRpci, dl, MVT::i32, MVT::Other,
Dan Gohman602b0c82009-09-25 18:54:59 +00002602 Ops, 4);
Evan Cheng446c4282009-07-11 06:43:01 +00002603 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00002604 SDValue Ops[] = {
Jim Grosbach764ab522009-08-11 15:33:49 +00002605 CPIdx,
Owen Anderson825b72b2009-08-11 20:47:22 +00002606 CurDAG->getTargetConstant(0, MVT::i32),
Evan Chengee568cf2007-07-05 07:15:27 +00002607 getAL(CurDAG),
Owen Anderson825b72b2009-08-11 20:47:22 +00002608 CurDAG->getRegister(0, MVT::i32),
Evan Cheng012f2d92007-01-24 08:53:17 +00002609 CurDAG->getEntryNode()
2610 };
Dan Gohman602b0c82009-09-25 18:54:59 +00002611 ResNode=CurDAG->getMachineNode(ARM::LDRcp, dl, MVT::i32, MVT::Other,
Jim Grosbach3e556122010-10-26 22:37:02 +00002612 Ops, 5);
Evan Cheng012f2d92007-01-24 08:53:17 +00002613 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002614 ReplaceUses(SDValue(N, 0), SDValue(ResNode, 0));
Evan Chenga8e29892007-01-19 07:51:42 +00002615 return NULL;
2616 }
Jim Grosbach764ab522009-08-11 15:33:49 +00002617
Evan Chenga8e29892007-01-19 07:51:42 +00002618 // Other cases are autogenerated.
Rafael Espindola337c4ad62006-06-12 12:28:08 +00002619 break;
Evan Chenga8e29892007-01-19 07:51:42 +00002620 }
Rafael Espindolaf819a492006-11-09 13:58:55 +00002621 case ISD::FrameIndex: {
Evan Chenga8e29892007-01-19 07:51:42 +00002622 // Selects to ADDri FI, 0 which in turn will become ADDri SP, imm.
Rafael Espindolaf819a492006-11-09 13:58:55 +00002623 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohman475871a2008-07-27 21:46:04 +00002624 SDValue TFI = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
David Goodwinf1daf7d2009-07-08 23:10:31 +00002625 if (Subtarget->isThumb1Only()) {
Jim Grosbach5b815842011-08-24 17:46:13 +00002626 SDValue Ops[] = { TFI, CurDAG->getTargetConstant(0, MVT::i32),
2627 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32) };
2628 return CurDAG->SelectNodeTo(N, ARM::tADDrSPi, MVT::i32, Ops, 4);
Jim Grosbach30eae3c2009-04-07 20:34:09 +00002629 } else {
David Goodwin419c6152009-07-14 18:48:51 +00002630 unsigned Opc = ((Subtarget->isThumb() && Subtarget->hasThumb2()) ?
2631 ARM::t2ADDri : ARM::ADDri);
Owen Anderson825b72b2009-08-11 20:47:22 +00002632 SDValue Ops[] = { TFI, CurDAG->getTargetConstant(0, MVT::i32),
2633 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32),
2634 CurDAG->getRegister(0, MVT::i32) };
2635 return CurDAG->SelectNodeTo(N, Opc, MVT::i32, Ops, 5);
Evan Chengee568cf2007-07-05 07:15:27 +00002636 }
Evan Chenga8e29892007-01-19 07:51:42 +00002637 }
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002638 case ISD::SRL:
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002639 if (SDNode *I = SelectV6T2BitfieldExtractOp(N, false))
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002640 return I;
2641 break;
2642 case ISD::SRA:
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002643 if (SDNode *I = SelectV6T2BitfieldExtractOp(N, true))
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002644 return I;
2645 break;
Evan Chenga8e29892007-01-19 07:51:42 +00002646 case ISD::MUL:
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002647 if (Subtarget->isThumb1Only())
Evan Cheng79d43262007-01-24 02:21:22 +00002648 break;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002649 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002650 unsigned RHSV = C->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00002651 if (!RHSV) break;
2652 if (isPowerOf2_32(RHSV-1)) { // 2^n+1?
Evan Chengaf9e7a72009-07-21 00:31:12 +00002653 unsigned ShImm = Log2_32(RHSV-1);
2654 if (ShImm >= 32)
2655 break;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002656 SDValue V = N->getOperand(0);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002657 ShImm = ARM_AM::getSORegOpc(ARM_AM::lsl, ShImm);
Owen Anderson825b72b2009-08-11 20:47:22 +00002658 SDValue ShImmOp = CurDAG->getTargetConstant(ShImm, MVT::i32);
2659 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Evan Cheng78dd9db2009-07-22 18:08:05 +00002660 if (Subtarget->isThumb()) {
Evan Chengaf9e7a72009-07-21 00:31:12 +00002661 SDValue Ops[] = { V, V, ShImmOp, getAL(CurDAG), Reg0, Reg0 };
Owen Anderson825b72b2009-08-11 20:47:22 +00002662 return CurDAG->SelectNodeTo(N, ARM::t2ADDrs, MVT::i32, Ops, 6);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002663 } else {
2664 SDValue Ops[] = { V, V, Reg0, ShImmOp, getAL(CurDAG), Reg0, Reg0 };
Owen Anderson92a20222011-07-21 18:54:16 +00002665 return CurDAG->SelectNodeTo(N, ARM::ADDrsi, MVT::i32, Ops, 7);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002666 }
Evan Chenga8e29892007-01-19 07:51:42 +00002667 }
2668 if (isPowerOf2_32(RHSV+1)) { // 2^n-1?
Evan Chengaf9e7a72009-07-21 00:31:12 +00002669 unsigned ShImm = Log2_32(RHSV+1);
2670 if (ShImm >= 32)
2671 break;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002672 SDValue V = N->getOperand(0);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002673 ShImm = ARM_AM::getSORegOpc(ARM_AM::lsl, ShImm);
Owen Anderson825b72b2009-08-11 20:47:22 +00002674 SDValue ShImmOp = CurDAG->getTargetConstant(ShImm, MVT::i32);
2675 SDValue Reg0 = CurDAG->getRegister(0, MVT::i32);
Evan Cheng78dd9db2009-07-22 18:08:05 +00002676 if (Subtarget->isThumb()) {
Bob Wilson13ef8402010-05-28 00:27:15 +00002677 SDValue Ops[] = { V, V, ShImmOp, getAL(CurDAG), Reg0, Reg0 };
2678 return CurDAG->SelectNodeTo(N, ARM::t2RSBrs, MVT::i32, Ops, 6);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002679 } else {
2680 SDValue Ops[] = { V, V, Reg0, ShImmOp, getAL(CurDAG), Reg0, Reg0 };
Owen Anderson92a20222011-07-21 18:54:16 +00002681 return CurDAG->SelectNodeTo(N, ARM::RSBrsi, MVT::i32, Ops, 7);
Evan Chengaf9e7a72009-07-21 00:31:12 +00002682 }
Evan Chenga8e29892007-01-19 07:51:42 +00002683 }
2684 }
2685 break;
Evan Cheng20956592009-10-21 08:15:52 +00002686 case ISD::AND: {
Jim Grosbach3a1287b2010-04-22 23:24:18 +00002687 // Check for unsigned bitfield extract
2688 if (SDNode *I = SelectV6T2BitfieldExtractOp(N, false))
2689 return I;
2690
Evan Cheng20956592009-10-21 08:15:52 +00002691 // (and (or x, c2), c1) and top 16-bits of c1 and c2 match, lower 16-bits
2692 // of c1 are 0xffff, and lower 16-bit of c2 are 0. That is, the top 16-bits
2693 // are entirely contributed by c2 and lower 16-bits are entirely contributed
2694 // by x. That's equal to (or (and x, 0xffff), (and c1, 0xffff0000)).
2695 // Select it to: "movt x, ((c1 & 0xffff) >> 16)
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002696 EVT VT = N->getValueType(0);
Evan Cheng20956592009-10-21 08:15:52 +00002697 if (VT != MVT::i32)
2698 break;
2699 unsigned Opc = (Subtarget->isThumb() && Subtarget->hasThumb2())
2700 ? ARM::t2MOVTi16
2701 : (Subtarget->hasV6T2Ops() ? ARM::MOVTi16 : 0);
2702 if (!Opc)
2703 break;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002704 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Evan Cheng20956592009-10-21 08:15:52 +00002705 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2706 if (!N1C)
2707 break;
2708 if (N0.getOpcode() == ISD::OR && N0.getNode()->hasOneUse()) {
2709 SDValue N2 = N0.getOperand(1);
2710 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2711 if (!N2C)
2712 break;
2713 unsigned N1CVal = N1C->getZExtValue();
2714 unsigned N2CVal = N2C->getZExtValue();
2715 if ((N1CVal & 0xffff0000U) == (N2CVal & 0xffff0000U) &&
2716 (N1CVal & 0xffffU) == 0xffffU &&
2717 (N2CVal & 0xffffU) == 0x0U) {
2718 SDValue Imm16 = CurDAG->getTargetConstant((N2CVal & 0xFFFF0000U) >> 16,
2719 MVT::i32);
2720 SDValue Ops[] = { N0.getOperand(0), Imm16,
2721 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32) };
2722 return CurDAG->getMachineNode(Opc, dl, VT, Ops, 4);
2723 }
2724 }
2725 break;
2726 }
Jim Grosbache5165492009-11-09 00:11:35 +00002727 case ARMISD::VMOVRRD:
2728 return CurDAG->getMachineNode(ARM::VMOVRRD, dl, MVT::i32, MVT::i32,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002729 N->getOperand(0), getAL(CurDAG),
Dan Gohman602b0c82009-09-25 18:54:59 +00002730 CurDAG->getRegister(0, MVT::i32));
Dan Gohman525178c2007-10-08 18:33:35 +00002731 case ISD::UMUL_LOHI: {
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002732 if (Subtarget->isThumb1Only())
2733 break;
2734 if (Subtarget->isThumb()) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002735 SDValue Ops[] = { N->getOperand(0), N->getOperand(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00002736 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32),
2737 CurDAG->getRegister(0, MVT::i32) };
Jim Grosbach18f30e62010-06-02 21:53:11 +00002738 return CurDAG->getMachineNode(ARM::t2UMULL, dl, MVT::i32, MVT::i32,Ops,4);
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002739 } else {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002740 SDValue Ops[] = { N->getOperand(0), N->getOperand(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00002741 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32),
2742 CurDAG->getRegister(0, MVT::i32) };
Anton Korobeynikov4d728602011-01-01 20:38:38 +00002743 return CurDAG->getMachineNode(Subtarget->hasV6Ops() ?
2744 ARM::UMULL : ARM::UMULLv5,
2745 dl, MVT::i32, MVT::i32, Ops, 5);
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002746 }
Evan Chengee568cf2007-07-05 07:15:27 +00002747 }
Dan Gohman525178c2007-10-08 18:33:35 +00002748 case ISD::SMUL_LOHI: {
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002749 if (Subtarget->isThumb1Only())
2750 break;
2751 if (Subtarget->isThumb()) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002752 SDValue Ops[] = { N->getOperand(0), N->getOperand(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00002753 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32) };
Jim Grosbach18f30e62010-06-02 21:53:11 +00002754 return CurDAG->getMachineNode(ARM::t2SMULL, dl, MVT::i32, MVT::i32,Ops,4);
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002755 } else {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002756 SDValue Ops[] = { N->getOperand(0), N->getOperand(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00002757 getAL(CurDAG), CurDAG->getRegister(0, MVT::i32),
2758 CurDAG->getRegister(0, MVT::i32) };
Anton Korobeynikov4d728602011-01-01 20:38:38 +00002759 return CurDAG->getMachineNode(Subtarget->hasV6Ops() ?
2760 ARM::SMULL : ARM::SMULLv5,
2761 dl, MVT::i32, MVT::i32, Ops, 5);
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002762 }
Evan Chengee568cf2007-07-05 07:15:27 +00002763 }
Arnold Schwaighofer67514e92012-09-04 14:37:49 +00002764 case ARMISD::UMLAL:{
2765 if (Subtarget->isThumb()) {
2766 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), N->getOperand(2),
2767 N->getOperand(3), getAL(CurDAG),
2768 CurDAG->getRegister(0, MVT::i32)};
2769 return CurDAG->getMachineNode(ARM::t2UMLAL, dl, MVT::i32, MVT::i32, Ops, 6);
2770 }else{
2771 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), N->getOperand(2),
2772 N->getOperand(3), getAL(CurDAG),
2773 CurDAG->getRegister(0, MVT::i32),
2774 CurDAG->getRegister(0, MVT::i32) };
2775 return CurDAG->getMachineNode(Subtarget->hasV6Ops() ?
2776 ARM::UMLAL : ARM::UMLALv5,
2777 dl, MVT::i32, MVT::i32, Ops, 7);
2778 }
2779 }
2780 case ARMISD::SMLAL:{
2781 if (Subtarget->isThumb()) {
2782 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), N->getOperand(2),
2783 N->getOperand(3), getAL(CurDAG),
2784 CurDAG->getRegister(0, MVT::i32)};
2785 return CurDAG->getMachineNode(ARM::t2SMLAL, dl, MVT::i32, MVT::i32, Ops, 6);
2786 }else{
2787 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), N->getOperand(2),
2788 N->getOperand(3), getAL(CurDAG),
2789 CurDAG->getRegister(0, MVT::i32),
2790 CurDAG->getRegister(0, MVT::i32) };
2791 return CurDAG->getMachineNode(Subtarget->hasV6Ops() ?
2792 ARM::SMLAL : ARM::SMLALv5,
2793 dl, MVT::i32, MVT::i32, Ops, 7);
2794 }
2795 }
Evan Chenga8e29892007-01-19 07:51:42 +00002796 case ISD::LOAD: {
Evan Chenge88d5ce2009-07-02 07:28:31 +00002797 SDNode *ResNode = 0;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002798 if (Subtarget->isThumb() && Subtarget->hasThumb2())
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002799 ResNode = SelectT2IndexedLoad(N);
Evan Chenge88d5ce2009-07-02 07:28:31 +00002800 else
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002801 ResNode = SelectARMIndexedLoad(N);
Evan Chengaf4550f2009-07-02 01:23:32 +00002802 if (ResNode)
2803 return ResNode;
Evan Chenga8e29892007-01-19 07:51:42 +00002804 // Other cases are autogenerated.
Rafael Espindolaf819a492006-11-09 13:58:55 +00002805 break;
Rafael Espindola337c4ad62006-06-12 12:28:08 +00002806 }
Evan Chengee568cf2007-07-05 07:15:27 +00002807 case ARMISD::BRCOND: {
2808 // Pattern: (ARMbrcond:void (bb:Other):$dst, (imm:i32):$cc)
2809 // Emits: (Bcc:void (bb:Other):$dst, (imm:i32):$cc)
2810 // Pattern complexity = 6 cost = 1 size = 0
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00002811
Evan Chengee568cf2007-07-05 07:15:27 +00002812 // Pattern: (ARMbrcond:void (bb:Other):$dst, (imm:i32):$cc)
2813 // Emits: (tBcc:void (bb:Other):$dst, (imm:i32):$cc)
2814 // Pattern complexity = 6 cost = 1 size = 0
2815
David Goodwin5e47a9a2009-06-30 18:04:13 +00002816 // Pattern: (ARMbrcond:void (bb:Other):$dst, (imm:i32):$cc)
2817 // Emits: (t2Bcc:void (bb:Other):$dst, (imm:i32):$cc)
2818 // Pattern complexity = 6 cost = 1 size = 0
2819
Jim Grosbach764ab522009-08-11 15:33:49 +00002820 unsigned Opc = Subtarget->isThumb() ?
David Goodwin5e47a9a2009-06-30 18:04:13 +00002821 ((Subtarget->hasThumb2()) ? ARM::t2Bcc : ARM::tBcc) : ARM::Bcc;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002822 SDValue Chain = N->getOperand(0);
2823 SDValue N1 = N->getOperand(1);
2824 SDValue N2 = N->getOperand(2);
2825 SDValue N3 = N->getOperand(3);
2826 SDValue InFlag = N->getOperand(4);
Evan Chengee568cf2007-07-05 07:15:27 +00002827 assert(N1.getOpcode() == ISD::BasicBlock);
2828 assert(N2.getOpcode() == ISD::Constant);
2829 assert(N3.getOpcode() == ISD::Register);
2830
Dan Gohman475871a2008-07-27 21:46:04 +00002831 SDValue Tmp2 = CurDAG->getTargetConstant(((unsigned)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002832 cast<ConstantSDNode>(N2)->getZExtValue()),
Owen Anderson825b72b2009-08-11 20:47:22 +00002833 MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00002834 SDValue Ops[] = { N1, Tmp2, N3, Chain, InFlag };
Dan Gohman602b0c82009-09-25 18:54:59 +00002835 SDNode *ResNode = CurDAG->getMachineNode(Opc, dl, MVT::Other,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002836 MVT::Glue, Ops, 5);
Dan Gohman475871a2008-07-27 21:46:04 +00002837 Chain = SDValue(ResNode, 0);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002838 if (N->getNumValues() == 2) {
Dan Gohman475871a2008-07-27 21:46:04 +00002839 InFlag = SDValue(ResNode, 1);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002840 ReplaceUses(SDValue(N, 1), InFlag);
Chris Lattnera47b9bc2008-02-03 03:20:59 +00002841 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002842 ReplaceUses(SDValue(N, 0),
Evan Chenged54de42009-11-19 08:16:50 +00002843 SDValue(Chain.getNode(), Chain.getResNo()));
Evan Chengee568cf2007-07-05 07:15:27 +00002844 return NULL;
2845 }
Evan Cheng07ba9062009-11-19 21:45:22 +00002846 case ARMISD::CMOV:
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002847 return SelectCMOVOp(N);
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002848 case ARMISD::VZIP: {
2849 unsigned Opc = 0;
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002850 EVT VT = N->getValueType(0);
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002851 switch (VT.getSimpleVT().SimpleTy) {
2852 default: return NULL;
2853 case MVT::v8i8: Opc = ARM::VZIPd8; break;
2854 case MVT::v4i16: Opc = ARM::VZIPd16; break;
2855 case MVT::v2f32:
Jim Grosbach6073b302012-04-11 16:53:25 +00002856 // vzip.32 Dd, Dm is a pseudo-instruction expanded to vtrn.32 Dd, Dm.
2857 case MVT::v2i32: Opc = ARM::VTRNd32; break;
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002858 case MVT::v16i8: Opc = ARM::VZIPq8; break;
2859 case MVT::v8i16: Opc = ARM::VZIPq16; break;
2860 case MVT::v4f32:
2861 case MVT::v4i32: Opc = ARM::VZIPq32; break;
2862 }
Evan Cheng47b7b9f2010-04-16 05:46:06 +00002863 SDValue Pred = getAL(CurDAG);
Evan Chengac0869d2009-11-21 06:21:52 +00002864 SDValue PredReg = CurDAG->getRegister(0, MVT::i32);
2865 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), Pred, PredReg };
2866 return CurDAG->getMachineNode(Opc, dl, VT, VT, Ops, 4);
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002867 }
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002868 case ARMISD::VUZP: {
2869 unsigned Opc = 0;
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002870 EVT VT = N->getValueType(0);
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002871 switch (VT.getSimpleVT().SimpleTy) {
2872 default: return NULL;
2873 case MVT::v8i8: Opc = ARM::VUZPd8; break;
2874 case MVT::v4i16: Opc = ARM::VUZPd16; break;
2875 case MVT::v2f32:
Jim Grosbach18355472012-04-11 17:40:18 +00002876 // vuzp.32 Dd, Dm is a pseudo-instruction expanded to vtrn.32 Dd, Dm.
2877 case MVT::v2i32: Opc = ARM::VTRNd32; break;
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002878 case MVT::v16i8: Opc = ARM::VUZPq8; break;
2879 case MVT::v8i16: Opc = ARM::VUZPq16; break;
2880 case MVT::v4f32:
2881 case MVT::v4i32: Opc = ARM::VUZPq32; break;
2882 }
Evan Cheng47b7b9f2010-04-16 05:46:06 +00002883 SDValue Pred = getAL(CurDAG);
Evan Chengac0869d2009-11-21 06:21:52 +00002884 SDValue PredReg = CurDAG->getRegister(0, MVT::i32);
2885 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), Pred, PredReg };
2886 return CurDAG->getMachineNode(Opc, dl, VT, VT, Ops, 4);
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002887 }
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002888 case ARMISD::VTRN: {
2889 unsigned Opc = 0;
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002890 EVT VT = N->getValueType(0);
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00002891 switch (VT.getSimpleVT().SimpleTy) {
2892 default: return NULL;
2893 case MVT::v8i8: Opc = ARM::VTRNd8; break;
2894 case MVT::v4i16: Opc = ARM::VTRNd16; break;
2895 case MVT::v2f32:
2896 case MVT::v2i32: Opc = ARM::VTRNd32; break;
2897 case MVT::v16i8: Opc = ARM::VTRNq8; break;
2898 case MVT::v8i16: Opc = ARM::VTRNq16; break;
2899 case MVT::v4f32:
2900 case MVT::v4i32: Opc = ARM::VTRNq32; break;
2901 }
Evan Cheng47b7b9f2010-04-16 05:46:06 +00002902 SDValue Pred = getAL(CurDAG);
Evan Chengac0869d2009-11-21 06:21:52 +00002903 SDValue PredReg = CurDAG->getRegister(0, MVT::i32);
2904 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), Pred, PredReg };
2905 return CurDAG->getMachineNode(Opc, dl, VT, VT, Ops, 4);
Anton Korobeynikov62e84f12009-08-21 12:40:50 +00002906 }
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002907 case ARMISD::BUILD_VECTOR: {
2908 EVT VecVT = N->getValueType(0);
2909 EVT EltVT = VecVT.getVectorElementType();
2910 unsigned NumElts = VecVT.getVectorNumElements();
Duncan Sandscdfad362010-11-03 12:17:33 +00002911 if (EltVT == MVT::f64) {
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002912 assert(NumElts == 2 && "unexpected type for BUILD_VECTOR");
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002913 return createDRegPairNode(VecVT, N->getOperand(0), N->getOperand(1));
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002914 }
Duncan Sandscdfad362010-11-03 12:17:33 +00002915 assert(EltVT == MVT::f32 && "unexpected type for BUILD_VECTOR");
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002916 if (NumElts == 2)
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002917 return createSRegPairNode(VecVT, N->getOperand(0), N->getOperand(1));
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002918 assert(NumElts == 4 && "unexpected type for BUILD_VECTOR");
Weiming Zhao8b149cb2012-11-17 00:23:35 +00002919 return createQuadSRegsNode(VecVT, N->getOperand(0), N->getOperand(1),
Bob Wilson40cbe7d2010-06-04 00:04:02 +00002920 N->getOperand(2), N->getOperand(3));
2921 }
Bob Wilson31fb12f2009-08-26 17:39:53 +00002922
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002923 case ARMISD::VLD2DUP: {
Craig Topper51f50c12012-05-24 05:17:00 +00002924 static const uint16_t Opcodes[] = { ARM::VLD2DUPd8, ARM::VLD2DUPd16,
2925 ARM::VLD2DUPd32 };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002926 return SelectVLDDup(N, false, 2, Opcodes);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00002927 }
2928
Bob Wilson86c6d802010-11-29 19:35:29 +00002929 case ARMISD::VLD3DUP: {
Craig Topper51f50c12012-05-24 05:17:00 +00002930 static const uint16_t Opcodes[] = { ARM::VLD3DUPd8Pseudo,
2931 ARM::VLD3DUPd16Pseudo,
2932 ARM::VLD3DUPd32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002933 return SelectVLDDup(N, false, 3, Opcodes);
Bob Wilson86c6d802010-11-29 19:35:29 +00002934 }
2935
Bob Wilson6c4c9822010-11-30 00:00:35 +00002936 case ARMISD::VLD4DUP: {
Craig Topper51f50c12012-05-24 05:17:00 +00002937 static const uint16_t Opcodes[] = { ARM::VLD4DUPd8Pseudo,
2938 ARM::VLD4DUPd16Pseudo,
2939 ARM::VLD4DUPd32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002940 return SelectVLDDup(N, false, 4, Opcodes);
2941 }
2942
2943 case ARMISD::VLD2DUP_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002944 static const uint16_t Opcodes[] = { ARM::VLD2DUPd8wb_fixed,
2945 ARM::VLD2DUPd16wb_fixed,
2946 ARM::VLD2DUPd32wb_fixed };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002947 return SelectVLDDup(N, true, 2, Opcodes);
2948 }
2949
2950 case ARMISD::VLD3DUP_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002951 static const uint16_t Opcodes[] = { ARM::VLD3DUPd8Pseudo_UPD,
2952 ARM::VLD3DUPd16Pseudo_UPD,
2953 ARM::VLD3DUPd32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002954 return SelectVLDDup(N, true, 3, Opcodes);
2955 }
2956
2957 case ARMISD::VLD4DUP_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002958 static const uint16_t Opcodes[] = { ARM::VLD4DUPd8Pseudo_UPD,
2959 ARM::VLD4DUPd16Pseudo_UPD,
2960 ARM::VLD4DUPd32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002961 return SelectVLDDup(N, true, 4, Opcodes);
2962 }
2963
2964 case ARMISD::VLD1_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002965 static const uint16_t DOpcodes[] = { ARM::VLD1d8wb_fixed,
2966 ARM::VLD1d16wb_fixed,
2967 ARM::VLD1d32wb_fixed,
2968 ARM::VLD1d64wb_fixed };
2969 static const uint16_t QOpcodes[] = { ARM::VLD1q8wb_fixed,
2970 ARM::VLD1q16wb_fixed,
2971 ARM::VLD1q32wb_fixed,
2972 ARM::VLD1q64wb_fixed };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002973 return SelectVLD(N, true, 1, DOpcodes, QOpcodes, 0);
2974 }
2975
2976 case ARMISD::VLD2_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002977 static const uint16_t DOpcodes[] = { ARM::VLD2d8wb_fixed,
2978 ARM::VLD2d16wb_fixed,
2979 ARM::VLD2d32wb_fixed,
2980 ARM::VLD1q64wb_fixed};
2981 static const uint16_t QOpcodes[] = { ARM::VLD2q8PseudoWB_fixed,
2982 ARM::VLD2q16PseudoWB_fixed,
2983 ARM::VLD2q32PseudoWB_fixed };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002984 return SelectVLD(N, true, 2, DOpcodes, QOpcodes, 0);
2985 }
2986
2987 case ARMISD::VLD3_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00002988 static const uint16_t DOpcodes[] = { ARM::VLD3d8Pseudo_UPD,
2989 ARM::VLD3d16Pseudo_UPD,
2990 ARM::VLD3d32Pseudo_UPD,
2991 ARM::VLD1q64wb_fixed};
2992 static const uint16_t QOpcodes0[] = { ARM::VLD3q8Pseudo_UPD,
2993 ARM::VLD3q16Pseudo_UPD,
2994 ARM::VLD3q32Pseudo_UPD };
2995 static const uint16_t QOpcodes1[] = { ARM::VLD3q8oddPseudo_UPD,
2996 ARM::VLD3q16oddPseudo_UPD,
2997 ARM::VLD3q32oddPseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00002998 return SelectVLD(N, true, 3, DOpcodes, QOpcodes0, QOpcodes1);
2999 }
3000
3001 case ARMISD::VLD4_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003002 static const uint16_t DOpcodes[] = { ARM::VLD4d8Pseudo_UPD,
3003 ARM::VLD4d16Pseudo_UPD,
3004 ARM::VLD4d32Pseudo_UPD,
3005 ARM::VLD1q64wb_fixed};
3006 static const uint16_t QOpcodes0[] = { ARM::VLD4q8Pseudo_UPD,
3007 ARM::VLD4q16Pseudo_UPD,
3008 ARM::VLD4q32Pseudo_UPD };
3009 static const uint16_t QOpcodes1[] = { ARM::VLD4q8oddPseudo_UPD,
3010 ARM::VLD4q16oddPseudo_UPD,
3011 ARM::VLD4q32oddPseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003012 return SelectVLD(N, true, 4, DOpcodes, QOpcodes0, QOpcodes1);
3013 }
3014
3015 case ARMISD::VLD2LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003016 static const uint16_t DOpcodes[] = { ARM::VLD2LNd8Pseudo_UPD,
3017 ARM::VLD2LNd16Pseudo_UPD,
3018 ARM::VLD2LNd32Pseudo_UPD };
3019 static const uint16_t QOpcodes[] = { ARM::VLD2LNq16Pseudo_UPD,
3020 ARM::VLD2LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003021 return SelectVLDSTLane(N, true, true, 2, DOpcodes, QOpcodes);
3022 }
3023
3024 case ARMISD::VLD3LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003025 static const uint16_t DOpcodes[] = { ARM::VLD3LNd8Pseudo_UPD,
3026 ARM::VLD3LNd16Pseudo_UPD,
3027 ARM::VLD3LNd32Pseudo_UPD };
3028 static const uint16_t QOpcodes[] = { ARM::VLD3LNq16Pseudo_UPD,
3029 ARM::VLD3LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003030 return SelectVLDSTLane(N, true, true, 3, DOpcodes, QOpcodes);
3031 }
3032
3033 case ARMISD::VLD4LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003034 static const uint16_t DOpcodes[] = { ARM::VLD4LNd8Pseudo_UPD,
3035 ARM::VLD4LNd16Pseudo_UPD,
3036 ARM::VLD4LNd32Pseudo_UPD };
3037 static const uint16_t QOpcodes[] = { ARM::VLD4LNq16Pseudo_UPD,
3038 ARM::VLD4LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003039 return SelectVLDSTLane(N, true, true, 4, DOpcodes, QOpcodes);
3040 }
3041
3042 case ARMISD::VST1_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003043 static const uint16_t DOpcodes[] = { ARM::VST1d8wb_fixed,
3044 ARM::VST1d16wb_fixed,
3045 ARM::VST1d32wb_fixed,
3046 ARM::VST1d64wb_fixed };
3047 static const uint16_t QOpcodes[] = { ARM::VST1q8wb_fixed,
3048 ARM::VST1q16wb_fixed,
3049 ARM::VST1q32wb_fixed,
3050 ARM::VST1q64wb_fixed };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003051 return SelectVST(N, true, 1, DOpcodes, QOpcodes, 0);
3052 }
3053
3054 case ARMISD::VST2_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003055 static const uint16_t DOpcodes[] = { ARM::VST2d8wb_fixed,
3056 ARM::VST2d16wb_fixed,
3057 ARM::VST2d32wb_fixed,
3058 ARM::VST1q64wb_fixed};
3059 static const uint16_t QOpcodes[] = { ARM::VST2q8PseudoWB_fixed,
3060 ARM::VST2q16PseudoWB_fixed,
3061 ARM::VST2q32PseudoWB_fixed };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003062 return SelectVST(N, true, 2, DOpcodes, QOpcodes, 0);
3063 }
3064
3065 case ARMISD::VST3_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003066 static const uint16_t DOpcodes[] = { ARM::VST3d8Pseudo_UPD,
3067 ARM::VST3d16Pseudo_UPD,
3068 ARM::VST3d32Pseudo_UPD,
3069 ARM::VST1d64TPseudoWB_fixed};
3070 static const uint16_t QOpcodes0[] = { ARM::VST3q8Pseudo_UPD,
3071 ARM::VST3q16Pseudo_UPD,
3072 ARM::VST3q32Pseudo_UPD };
3073 static const uint16_t QOpcodes1[] = { ARM::VST3q8oddPseudo_UPD,
3074 ARM::VST3q16oddPseudo_UPD,
3075 ARM::VST3q32oddPseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003076 return SelectVST(N, true, 3, DOpcodes, QOpcodes0, QOpcodes1);
3077 }
3078
3079 case ARMISD::VST4_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003080 static const uint16_t DOpcodes[] = { ARM::VST4d8Pseudo_UPD,
3081 ARM::VST4d16Pseudo_UPD,
3082 ARM::VST4d32Pseudo_UPD,
3083 ARM::VST1d64QPseudoWB_fixed};
3084 static const uint16_t QOpcodes0[] = { ARM::VST4q8Pseudo_UPD,
3085 ARM::VST4q16Pseudo_UPD,
3086 ARM::VST4q32Pseudo_UPD };
3087 static const uint16_t QOpcodes1[] = { ARM::VST4q8oddPseudo_UPD,
3088 ARM::VST4q16oddPseudo_UPD,
3089 ARM::VST4q32oddPseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003090 return SelectVST(N, true, 4, DOpcodes, QOpcodes0, QOpcodes1);
3091 }
3092
3093 case ARMISD::VST2LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003094 static const uint16_t DOpcodes[] = { ARM::VST2LNd8Pseudo_UPD,
3095 ARM::VST2LNd16Pseudo_UPD,
3096 ARM::VST2LNd32Pseudo_UPD };
3097 static const uint16_t QOpcodes[] = { ARM::VST2LNq16Pseudo_UPD,
3098 ARM::VST2LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003099 return SelectVLDSTLane(N, false, true, 2, DOpcodes, QOpcodes);
3100 }
3101
3102 case ARMISD::VST3LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003103 static const uint16_t DOpcodes[] = { ARM::VST3LNd8Pseudo_UPD,
3104 ARM::VST3LNd16Pseudo_UPD,
3105 ARM::VST3LNd32Pseudo_UPD };
3106 static const uint16_t QOpcodes[] = { ARM::VST3LNq16Pseudo_UPD,
3107 ARM::VST3LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003108 return SelectVLDSTLane(N, false, true, 3, DOpcodes, QOpcodes);
3109 }
3110
3111 case ARMISD::VST4LN_UPD: {
Craig Topper51f50c12012-05-24 05:17:00 +00003112 static const uint16_t DOpcodes[] = { ARM::VST4LNd8Pseudo_UPD,
3113 ARM::VST4LNd16Pseudo_UPD,
3114 ARM::VST4LNd32Pseudo_UPD };
3115 static const uint16_t QOpcodes[] = { ARM::VST4LNq16Pseudo_UPD,
3116 ARM::VST4LNq32Pseudo_UPD };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003117 return SelectVLDSTLane(N, false, true, 4, DOpcodes, QOpcodes);
Bob Wilson6c4c9822010-11-30 00:00:35 +00003118 }
3119
Bob Wilson31fb12f2009-08-26 17:39:53 +00003120 case ISD::INTRINSIC_VOID:
3121 case ISD::INTRINSIC_W_CHAIN: {
3122 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
Bob Wilson31fb12f2009-08-26 17:39:53 +00003123 switch (IntNo) {
3124 default:
Bob Wilson429009b2010-05-06 16:05:26 +00003125 break;
Bob Wilson31fb12f2009-08-26 17:39:53 +00003126
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003127 case Intrinsic::arm_ldrexd: {
3128 SDValue MemAddr = N->getOperand(2);
3129 DebugLoc dl = N->getDebugLoc();
3130 SDValue Chain = N->getOperand(0);
3131
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003132 bool isThumb = Subtarget->isThumb() && Subtarget->hasThumb2();
3133 unsigned NewOpc = isThumb ? ARM::t2LDREXD :ARM::LDREXD;
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003134
3135 // arm_ldrexd returns a i64 value in {i32, i32}
3136 std::vector<EVT> ResTys;
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003137 if (isThumb) {
3138 ResTys.push_back(MVT::i32);
3139 ResTys.push_back(MVT::i32);
3140 } else
3141 ResTys.push_back(MVT::Untyped);
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003142 ResTys.push_back(MVT::Other);
3143
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003144 // Place arguments in the right order.
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003145 SmallVector<SDValue, 7> Ops;
3146 Ops.push_back(MemAddr);
3147 Ops.push_back(getAL(CurDAG));
3148 Ops.push_back(CurDAG->getRegister(0, MVT::i32));
3149 Ops.push_back(Chain);
3150 SDNode *Ld = CurDAG->getMachineNode(NewOpc, dl, ResTys, Ops.data(),
3151 Ops.size());
3152 // Transfer memoperands.
3153 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
3154 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
3155 cast<MachineSDNode>(Ld)->setMemRefs(MemOp, MemOp + 1);
3156
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003157 // Remap uses.
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003158 SDValue Glue = isThumb ? SDValue(Ld, 2) : SDValue(Ld, 1);
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003159 if (!SDValue(N, 0).use_empty()) {
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003160 SDValue Result;
3161 if (isThumb)
3162 Result = SDValue(Ld, 0);
3163 else {
3164 SDValue SubRegIdx = CurDAG->getTargetConstant(ARM::gsub_0, MVT::i32);
3165 SDNode *ResNode = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
3166 dl, MVT::i32, MVT::Glue, SDValue(Ld, 0), SubRegIdx, Glue);
3167 Result = SDValue(ResNode,0);
3168 Glue = Result.getValue(1);
3169 }
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003170 ReplaceUses(SDValue(N, 0), Result);
3171 }
3172 if (!SDValue(N, 1).use_empty()) {
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003173 SDValue Result;
3174 if (isThumb)
3175 Result = SDValue(Ld, 1);
3176 else {
3177 SDValue SubRegIdx = CurDAG->getTargetConstant(ARM::gsub_1, MVT::i32);
3178 SDNode *ResNode = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
3179 dl, MVT::i32, MVT::Glue, SDValue(Ld, 0), SubRegIdx, Glue);
3180 Result = SDValue(ResNode,0);
3181 Glue = Result.getValue(1);
3182 }
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003183 ReplaceUses(SDValue(N, 1), Result);
3184 }
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003185 ReplaceUses(SDValue(N, 2), Glue);
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003186 return NULL;
3187 }
3188
3189 case Intrinsic::arm_strexd: {
3190 DebugLoc dl = N->getDebugLoc();
3191 SDValue Chain = N->getOperand(0);
3192 SDValue Val0 = N->getOperand(2);
3193 SDValue Val1 = N->getOperand(3);
3194 SDValue MemAddr = N->getOperand(4);
3195
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003196 // Store exclusive double return a i32 value which is the return status
3197 // of the issued store.
3198 std::vector<EVT> ResTys;
3199 ResTys.push_back(MVT::i32);
3200 ResTys.push_back(MVT::Other);
3201
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003202 bool isThumb = Subtarget->isThumb() && Subtarget->hasThumb2();
3203 // Place arguments in the right order.
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003204 SmallVector<SDValue, 7> Ops;
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003205 if (isThumb) {
3206 Ops.push_back(Val0);
3207 Ops.push_back(Val1);
3208 } else
3209 // arm_strexd uses GPRPair.
3210 Ops.push_back(SDValue(createGPRPairNode(MVT::Untyped, Val0, Val1), 0));
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003211 Ops.push_back(MemAddr);
3212 Ops.push_back(getAL(CurDAG));
3213 Ops.push_back(CurDAG->getRegister(0, MVT::i32));
3214 Ops.push_back(Chain);
3215
Weiming Zhaoe56764b2012-11-16 21:55:34 +00003216 unsigned NewOpc = isThumb ? ARM::t2STREXD : ARM::STREXD;
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003217
3218 SDNode *St = CurDAG->getMachineNode(NewOpc, dl, ResTys, Ops.data(),
3219 Ops.size());
3220 // Transfer memoperands.
3221 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
3222 MemOp[0] = cast<MemIntrinsicSDNode>(N)->getMemOperand();
3223 cast<MachineSDNode>(St)->setMemRefs(MemOp, MemOp + 1);
3224
3225 return St;
3226 }
3227
Bob Wilson621f1952010-03-23 05:25:43 +00003228 case Intrinsic::arm_neon_vld1: {
Craig Topper51f50c12012-05-24 05:17:00 +00003229 static const uint16_t DOpcodes[] = { ARM::VLD1d8, ARM::VLD1d16,
3230 ARM::VLD1d32, ARM::VLD1d64 };
3231 static const uint16_t QOpcodes[] = { ARM::VLD1q8, ARM::VLD1q16,
3232 ARM::VLD1q32, ARM::VLD1q64};
Bob Wilson1c3ef902011-02-07 17:43:21 +00003233 return SelectVLD(N, false, 1, DOpcodes, QOpcodes, 0);
Bob Wilson621f1952010-03-23 05:25:43 +00003234 }
3235
Bob Wilson31fb12f2009-08-26 17:39:53 +00003236 case Intrinsic::arm_neon_vld2: {
Craig Topper51f50c12012-05-24 05:17:00 +00003237 static const uint16_t DOpcodes[] = { ARM::VLD2d8, ARM::VLD2d16,
3238 ARM::VLD2d32, ARM::VLD1q64 };
3239 static const uint16_t QOpcodes[] = { ARM::VLD2q8Pseudo, ARM::VLD2q16Pseudo,
3240 ARM::VLD2q32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003241 return SelectVLD(N, false, 2, DOpcodes, QOpcodes, 0);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003242 }
3243
3244 case Intrinsic::arm_neon_vld3: {
Craig Topper51f50c12012-05-24 05:17:00 +00003245 static const uint16_t DOpcodes[] = { ARM::VLD3d8Pseudo,
3246 ARM::VLD3d16Pseudo,
3247 ARM::VLD3d32Pseudo,
3248 ARM::VLD1d64TPseudo };
3249 static const uint16_t QOpcodes0[] = { ARM::VLD3q8Pseudo_UPD,
3250 ARM::VLD3q16Pseudo_UPD,
3251 ARM::VLD3q32Pseudo_UPD };
3252 static const uint16_t QOpcodes1[] = { ARM::VLD3q8oddPseudo,
3253 ARM::VLD3q16oddPseudo,
3254 ARM::VLD3q32oddPseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003255 return SelectVLD(N, false, 3, DOpcodes, QOpcodes0, QOpcodes1);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003256 }
3257
3258 case Intrinsic::arm_neon_vld4: {
Craig Topper51f50c12012-05-24 05:17:00 +00003259 static const uint16_t DOpcodes[] = { ARM::VLD4d8Pseudo,
3260 ARM::VLD4d16Pseudo,
3261 ARM::VLD4d32Pseudo,
3262 ARM::VLD1d64QPseudo };
3263 static const uint16_t QOpcodes0[] = { ARM::VLD4q8Pseudo_UPD,
3264 ARM::VLD4q16Pseudo_UPD,
3265 ARM::VLD4q32Pseudo_UPD };
3266 static const uint16_t QOpcodes1[] = { ARM::VLD4q8oddPseudo,
3267 ARM::VLD4q16oddPseudo,
3268 ARM::VLD4q32oddPseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003269 return SelectVLD(N, false, 4, DOpcodes, QOpcodes0, QOpcodes1);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003270 }
3271
Bob Wilson243fcc52009-09-01 04:26:28 +00003272 case Intrinsic::arm_neon_vld2lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003273 static const uint16_t DOpcodes[] = { ARM::VLD2LNd8Pseudo,
3274 ARM::VLD2LNd16Pseudo,
3275 ARM::VLD2LNd32Pseudo };
3276 static const uint16_t QOpcodes[] = { ARM::VLD2LNq16Pseudo,
3277 ARM::VLD2LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003278 return SelectVLDSTLane(N, true, false, 2, DOpcodes, QOpcodes);
Bob Wilson243fcc52009-09-01 04:26:28 +00003279 }
3280
3281 case Intrinsic::arm_neon_vld3lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003282 static const uint16_t DOpcodes[] = { ARM::VLD3LNd8Pseudo,
3283 ARM::VLD3LNd16Pseudo,
3284 ARM::VLD3LNd32Pseudo };
3285 static const uint16_t QOpcodes[] = { ARM::VLD3LNq16Pseudo,
3286 ARM::VLD3LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003287 return SelectVLDSTLane(N, true, false, 3, DOpcodes, QOpcodes);
Bob Wilson243fcc52009-09-01 04:26:28 +00003288 }
3289
3290 case Intrinsic::arm_neon_vld4lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003291 static const uint16_t DOpcodes[] = { ARM::VLD4LNd8Pseudo,
3292 ARM::VLD4LNd16Pseudo,
3293 ARM::VLD4LNd32Pseudo };
3294 static const uint16_t QOpcodes[] = { ARM::VLD4LNq16Pseudo,
3295 ARM::VLD4LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003296 return SelectVLDSTLane(N, true, false, 4, DOpcodes, QOpcodes);
Bob Wilson243fcc52009-09-01 04:26:28 +00003297 }
3298
Bob Wilson11d98992010-03-23 06:20:33 +00003299 case Intrinsic::arm_neon_vst1: {
Craig Topper51f50c12012-05-24 05:17:00 +00003300 static const uint16_t DOpcodes[] = { ARM::VST1d8, ARM::VST1d16,
3301 ARM::VST1d32, ARM::VST1d64 };
3302 static const uint16_t QOpcodes[] = { ARM::VST1q8, ARM::VST1q16,
3303 ARM::VST1q32, ARM::VST1q64 };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003304 return SelectVST(N, false, 1, DOpcodes, QOpcodes, 0);
Bob Wilson11d98992010-03-23 06:20:33 +00003305 }
3306
Bob Wilson31fb12f2009-08-26 17:39:53 +00003307 case Intrinsic::arm_neon_vst2: {
Craig Topper51f50c12012-05-24 05:17:00 +00003308 static const uint16_t DOpcodes[] = { ARM::VST2d8, ARM::VST2d16,
3309 ARM::VST2d32, ARM::VST1q64 };
3310 static uint16_t QOpcodes[] = { ARM::VST2q8Pseudo, ARM::VST2q16Pseudo,
3311 ARM::VST2q32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003312 return SelectVST(N, false, 2, DOpcodes, QOpcodes, 0);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003313 }
3314
3315 case Intrinsic::arm_neon_vst3: {
Craig Topper51f50c12012-05-24 05:17:00 +00003316 static const uint16_t DOpcodes[] = { ARM::VST3d8Pseudo,
3317 ARM::VST3d16Pseudo,
3318 ARM::VST3d32Pseudo,
3319 ARM::VST1d64TPseudo };
3320 static const uint16_t QOpcodes0[] = { ARM::VST3q8Pseudo_UPD,
3321 ARM::VST3q16Pseudo_UPD,
3322 ARM::VST3q32Pseudo_UPD };
3323 static const uint16_t QOpcodes1[] = { ARM::VST3q8oddPseudo,
3324 ARM::VST3q16oddPseudo,
3325 ARM::VST3q32oddPseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003326 return SelectVST(N, false, 3, DOpcodes, QOpcodes0, QOpcodes1);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003327 }
3328
3329 case Intrinsic::arm_neon_vst4: {
Craig Topper51f50c12012-05-24 05:17:00 +00003330 static const uint16_t DOpcodes[] = { ARM::VST4d8Pseudo,
3331 ARM::VST4d16Pseudo,
3332 ARM::VST4d32Pseudo,
3333 ARM::VST1d64QPseudo };
3334 static const uint16_t QOpcodes0[] = { ARM::VST4q8Pseudo_UPD,
3335 ARM::VST4q16Pseudo_UPD,
3336 ARM::VST4q32Pseudo_UPD };
3337 static const uint16_t QOpcodes1[] = { ARM::VST4q8oddPseudo,
3338 ARM::VST4q16oddPseudo,
3339 ARM::VST4q32oddPseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003340 return SelectVST(N, false, 4, DOpcodes, QOpcodes0, QOpcodes1);
Bob Wilson31fb12f2009-08-26 17:39:53 +00003341 }
Bob Wilson8a3198b2009-09-01 18:51:56 +00003342
3343 case Intrinsic::arm_neon_vst2lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003344 static const uint16_t DOpcodes[] = { ARM::VST2LNd8Pseudo,
3345 ARM::VST2LNd16Pseudo,
3346 ARM::VST2LNd32Pseudo };
3347 static const uint16_t QOpcodes[] = { ARM::VST2LNq16Pseudo,
3348 ARM::VST2LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003349 return SelectVLDSTLane(N, false, false, 2, DOpcodes, QOpcodes);
Bob Wilson8a3198b2009-09-01 18:51:56 +00003350 }
3351
3352 case Intrinsic::arm_neon_vst3lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003353 static const uint16_t DOpcodes[] = { ARM::VST3LNd8Pseudo,
3354 ARM::VST3LNd16Pseudo,
3355 ARM::VST3LNd32Pseudo };
3356 static const uint16_t QOpcodes[] = { ARM::VST3LNq16Pseudo,
3357 ARM::VST3LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003358 return SelectVLDSTLane(N, false, false, 3, DOpcodes, QOpcodes);
Bob Wilson8a3198b2009-09-01 18:51:56 +00003359 }
3360
3361 case Intrinsic::arm_neon_vst4lane: {
Craig Topper51f50c12012-05-24 05:17:00 +00003362 static const uint16_t DOpcodes[] = { ARM::VST4LNd8Pseudo,
3363 ARM::VST4LNd16Pseudo,
3364 ARM::VST4LNd32Pseudo };
3365 static const uint16_t QOpcodes[] = { ARM::VST4LNq16Pseudo,
3366 ARM::VST4LNq32Pseudo };
Bob Wilson1c3ef902011-02-07 17:43:21 +00003367 return SelectVLDSTLane(N, false, false, 4, DOpcodes, QOpcodes);
Bob Wilson8a3198b2009-09-01 18:51:56 +00003368 }
Bob Wilson31fb12f2009-08-26 17:39:53 +00003369 }
Bob Wilson429009b2010-05-06 16:05:26 +00003370 break;
Bob Wilson31fb12f2009-08-26 17:39:53 +00003371 }
Evan Chengde8aa4e2010-05-05 18:28:36 +00003372
Bob Wilsond491d6e2010-07-06 23:36:25 +00003373 case ISD::INTRINSIC_WO_CHAIN: {
3374 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
3375 switch (IntNo) {
3376 default:
3377 break;
3378
3379 case Intrinsic::arm_neon_vtbl2:
Jim Grosbach28f08c92012-03-05 19:33:30 +00003380 return SelectVTBL(N, false, 2, ARM::VTBL2);
Bob Wilsond491d6e2010-07-06 23:36:25 +00003381 case Intrinsic::arm_neon_vtbl3:
Bob Wilsonbd916c52010-09-13 23:55:10 +00003382 return SelectVTBL(N, false, 3, ARM::VTBL3Pseudo);
Bob Wilsond491d6e2010-07-06 23:36:25 +00003383 case Intrinsic::arm_neon_vtbl4:
Bob Wilsonbd916c52010-09-13 23:55:10 +00003384 return SelectVTBL(N, false, 4, ARM::VTBL4Pseudo);
Bob Wilson78dfbc32010-07-07 00:08:54 +00003385
3386 case Intrinsic::arm_neon_vtbx2:
Jim Grosbach28f08c92012-03-05 19:33:30 +00003387 return SelectVTBL(N, true, 2, ARM::VTBX2);
Bob Wilson78dfbc32010-07-07 00:08:54 +00003388 case Intrinsic::arm_neon_vtbx3:
Bob Wilsonbd916c52010-09-13 23:55:10 +00003389 return SelectVTBL(N, true, 3, ARM::VTBX3Pseudo);
Bob Wilson78dfbc32010-07-07 00:08:54 +00003390 case Intrinsic::arm_neon_vtbx4:
Bob Wilsonbd916c52010-09-13 23:55:10 +00003391 return SelectVTBL(N, true, 4, ARM::VTBX4Pseudo);
Bob Wilsond491d6e2010-07-06 23:36:25 +00003392 }
3393 break;
3394 }
3395
Bill Wendling69a05a72011-03-14 23:02:38 +00003396 case ARMISD::VTBL1: {
3397 DebugLoc dl = N->getDebugLoc();
3398 EVT VT = N->getValueType(0);
3399 SmallVector<SDValue, 6> Ops;
3400
3401 Ops.push_back(N->getOperand(0));
3402 Ops.push_back(N->getOperand(1));
3403 Ops.push_back(getAL(CurDAG)); // Predicate
3404 Ops.push_back(CurDAG->getRegister(0, MVT::i32)); // Predicate Register
3405 return CurDAG->getMachineNode(ARM::VTBL1, dl, VT, Ops.data(), Ops.size());
3406 }
3407 case ARMISD::VTBL2: {
3408 DebugLoc dl = N->getDebugLoc();
3409 EVT VT = N->getValueType(0);
3410
3411 // Form a REG_SEQUENCE to force register allocation.
3412 SDValue V0 = N->getOperand(0);
3413 SDValue V1 = N->getOperand(1);
Weiming Zhao8b149cb2012-11-17 00:23:35 +00003414 SDValue RegSeq = SDValue(createDRegPairNode(MVT::v16i8, V0, V1), 0);
Bill Wendling69a05a72011-03-14 23:02:38 +00003415
3416 SmallVector<SDValue, 6> Ops;
3417 Ops.push_back(RegSeq);
3418 Ops.push_back(N->getOperand(2));
3419 Ops.push_back(getAL(CurDAG)); // Predicate
3420 Ops.push_back(CurDAG->getRegister(0, MVT::i32)); // Predicate Register
Jim Grosbach28f08c92012-03-05 19:33:30 +00003421 return CurDAG->getMachineNode(ARM::VTBL2, dl, VT,
Bill Wendling69a05a72011-03-14 23:02:38 +00003422 Ops.data(), Ops.size());
3423 }
3424
Bob Wilson429009b2010-05-06 16:05:26 +00003425 case ISD::CONCAT_VECTORS:
Evan Chengde8aa4e2010-05-05 18:28:36 +00003426 return SelectConcatVector(N);
Eli Friedman2bdffe42011-08-31 00:31:29 +00003427
3428 case ARMISD::ATOMOR64_DAG:
3429 return SelectAtomic64(N, ARM::ATOMOR6432);
3430 case ARMISD::ATOMXOR64_DAG:
3431 return SelectAtomic64(N, ARM::ATOMXOR6432);
3432 case ARMISD::ATOMADD64_DAG:
3433 return SelectAtomic64(N, ARM::ATOMADD6432);
3434 case ARMISD::ATOMSUB64_DAG:
3435 return SelectAtomic64(N, ARM::ATOMSUB6432);
3436 case ARMISD::ATOMNAND64_DAG:
3437 return SelectAtomic64(N, ARM::ATOMNAND6432);
3438 case ARMISD::ATOMAND64_DAG:
3439 return SelectAtomic64(N, ARM::ATOMAND6432);
3440 case ARMISD::ATOMSWAP64_DAG:
3441 return SelectAtomic64(N, ARM::ATOMSWAP6432);
Eli Friedman4d3f3292011-08-31 17:52:22 +00003442 case ARMISD::ATOMCMPXCHG64_DAG:
3443 return SelectAtomic64(N, ARM::ATOMCMPXCHG6432);
Silviu Baranga35b3df62012-11-29 14:41:25 +00003444
3445 case ARMISD::ATOMMIN64_DAG:
3446 return SelectAtomic64(N, ARM::ATOMMIN6432);
3447 case ARMISD::ATOMUMIN64_DAG:
3448 return SelectAtomic64(N, ARM::ATOMUMIN6432);
3449 case ARMISD::ATOMMAX64_DAG:
3450 return SelectAtomic64(N, ARM::ATOMMAX6432);
3451 case ARMISD::ATOMUMAX64_DAG:
3452 return SelectAtomic64(N, ARM::ATOMUMAX6432);
Evan Chengde8aa4e2010-05-05 18:28:36 +00003453 }
Evan Chenge5ad88e2008-12-10 21:54:21 +00003454
Dan Gohmaneeb3a002010-01-05 01:24:18 +00003455 return SelectCode(N);
Evan Chenga8e29892007-01-19 07:51:42 +00003456}
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00003457
Weiming Zhao3019fbb2013-02-13 21:43:02 +00003458SDNode *ARMDAGToDAGISel::SelectInlineAsm(SDNode *N){
3459 std::vector<SDValue> AsmNodeOperands;
3460 unsigned Flag, Kind;
3461 bool Changed = false;
3462 unsigned NumOps = N->getNumOperands();
3463
3464 ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(
3465 N->getOperand(InlineAsm::Op_AsmString));
3466 StringRef AsmString = StringRef(S->getSymbol());
3467
3468 // Normally, i64 data is bounded to two arbitrary GRPs for "%r" constraint.
3469 // However, some instrstions (e.g. ldrexd/strexd in ARM mode) require
3470 // (even/even+1) GPRs and use %n and %Hn to refer to the individual regs
3471 // respectively. Since there is no constraint to explicitly specify a
3472 // reg pair, we search %H operand inside the asm string. If it is found, the
3473 // transformation below enforces a GPRPair reg class for "%r" for 64-bit data.
3474 if (AsmString.find(":H}") == StringRef::npos)
3475 return NULL;
3476
3477 DebugLoc dl = N->getDebugLoc();
3478 SDValue Glue = N->getOperand(NumOps-1);
3479
3480 // Glue node will be appended late.
3481 for(unsigned i = 0; i < NumOps -1; ++i) {
3482 SDValue op = N->getOperand(i);
3483 AsmNodeOperands.push_back(op);
3484
3485 if (i < InlineAsm::Op_FirstOperand)
3486 continue;
3487
3488 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(i))) {
3489 Flag = C->getZExtValue();
3490 Kind = InlineAsm::getKind(Flag);
3491 }
3492 else
3493 continue;
3494
3495 if (Kind != InlineAsm::Kind_RegUse && Kind != InlineAsm::Kind_RegDef
3496 && Kind != InlineAsm::Kind_RegDefEarlyClobber)
3497 continue;
3498
3499 unsigned RegNum = InlineAsm::getNumOperandRegisters(Flag);
3500 unsigned RC;
3501 bool HasRC = InlineAsm::hasRegClassConstraint(Flag, RC);
3502 if (!HasRC || RC != ARM::GPRRegClassID || RegNum != 2)
3503 continue;
3504
3505 assert((i+2 < NumOps-1) && "Invalid number of operands in inline asm");
3506 SDValue V0 = N->getOperand(i+1);
3507 SDValue V1 = N->getOperand(i+2);
3508 unsigned Reg0 = cast<RegisterSDNode>(V0)->getReg();
3509 unsigned Reg1 = cast<RegisterSDNode>(V1)->getReg();
3510 SDValue PairedReg;
3511 MachineRegisterInfo &MRI = MF->getRegInfo();
3512
3513 if (Kind == InlineAsm::Kind_RegDef ||
3514 Kind == InlineAsm::Kind_RegDefEarlyClobber) {
3515 // Replace the two GPRs with 1 GPRPair and copy values from GPRPair to
3516 // the original GPRs.
3517
3518 unsigned GPVR = MRI.createVirtualRegister(&ARM::GPRPairRegClass);
3519 PairedReg = CurDAG->getRegister(GPVR, MVT::Untyped);
3520 SDValue Chain = SDValue(N,0);
3521
3522 SDNode *GU = N->getGluedUser();
3523 SDValue RegCopy = CurDAG->getCopyFromReg(Chain, dl, GPVR, MVT::Untyped,
3524 Chain.getValue(1));
3525
3526 // Extract values from a GPRPair reg and copy to the original GPR reg.
3527 SDValue Sub0 = CurDAG->getTargetExtractSubreg(ARM::gsub_0, dl, MVT::i32,
3528 RegCopy);
3529 SDValue Sub1 = CurDAG->getTargetExtractSubreg(ARM::gsub_1, dl, MVT::i32,
3530 RegCopy);
3531 SDValue T0 = CurDAG->getCopyToReg(Sub0, dl, Reg0, Sub0,
3532 RegCopy.getValue(1));
3533 SDValue T1 = CurDAG->getCopyToReg(Sub1, dl, Reg1, Sub1, T0.getValue(1));
3534
3535 // Update the original glue user.
3536 std::vector<SDValue> Ops(GU->op_begin(), GU->op_end()-1);
3537 Ops.push_back(T1.getValue(1));
3538 CurDAG->UpdateNodeOperands(GU, &Ops[0], Ops.size());
3539 GU = T1.getNode();
3540 }
3541 else {
3542 // For Kind == InlineAsm::Kind_RegUse, we first copy two GPRs into a
3543 // GPRPair and then pass the GPRPair to the inline asm.
3544 SDValue Chain = AsmNodeOperands[InlineAsm::Op_InputChain];
3545
3546 // As REG_SEQ doesn't take RegisterSDNode, we copy them first.
3547 SDValue T0 = CurDAG->getCopyFromReg(Chain, dl, Reg0, MVT::i32,
3548 Chain.getValue(1));
3549 SDValue T1 = CurDAG->getCopyFromReg(Chain, dl, Reg1, MVT::i32,
3550 T0.getValue(1));
3551 SDValue Pair = SDValue(createGPRPairNode(MVT::Untyped, T0, T1), 0);
3552
3553 // Copy REG_SEQ into a GPRPair-typed VR and replace the original two
3554 // i32 VRs of inline asm with it.
3555 unsigned GPVR = MRI.createVirtualRegister(&ARM::GPRPairRegClass);
3556 PairedReg = CurDAG->getRegister(GPVR, MVT::Untyped);
3557 Chain = CurDAG->getCopyToReg(T1, dl, GPVR, Pair, T1.getValue(1));
3558
3559 AsmNodeOperands[InlineAsm::Op_InputChain] = Chain;
3560 Glue = Chain.getValue(1);
3561 }
3562
3563 Changed = true;
3564
3565 if(PairedReg.getNode()) {
3566 Flag = InlineAsm::getFlagWord(Kind, 1 /* RegNum*/);
3567 Flag = InlineAsm::getFlagWordForRegClass(Flag, ARM::GPRPairRegClassID);
3568 // Replace the current flag.
3569 AsmNodeOperands[AsmNodeOperands.size() -1] = CurDAG->getTargetConstant(
3570 Flag, MVT::i32);
3571 // Add the new register node and skip the original two GPRs.
3572 AsmNodeOperands.push_back(PairedReg);
3573 // Skip the next two GPRs.
3574 i += 2;
3575 }
3576 }
3577
3578 AsmNodeOperands.push_back(Glue);
3579 if (!Changed)
3580 return NULL;
3581
3582 SDValue New = CurDAG->getNode(ISD::INLINEASM, N->getDebugLoc(),
3583 CurDAG->getVTList(MVT::Other, MVT::Glue), &AsmNodeOperands[0],
3584 AsmNodeOperands.size());
3585 New->setNodeId(-1);
3586 return New.getNode();
3587}
3588
3589
Bob Wilson224c2442009-05-19 05:53:42 +00003590bool ARMDAGToDAGISel::
3591SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
3592 std::vector<SDValue> &OutOps) {
3593 assert(ConstraintCode == 'm' && "unexpected asm memory constraint");
Bob Wilson765cc0b2009-10-13 20:50:28 +00003594 // Require the address to be in a register. That is safe for all ARM
3595 // variants and it is hard to do anything much smarter without knowing
3596 // how the operand is used.
3597 OutOps.push_back(Op);
Bob Wilson224c2442009-05-19 05:53:42 +00003598 return false;
3599}
3600
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00003601/// createARMISelDag - This pass converts a legalized DAG into a
3602/// ARM-specific DAG, ready for instruction scheduling.
3603///
Bob Wilson522ce972009-09-28 14:30:20 +00003604FunctionPass *llvm::createARMISelDag(ARMBaseTargetMachine &TM,
3605 CodeGenOpt::Level OptLevel) {
3606 return new ARMDAGToDAGISel(TM, OptLevel);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00003607}