blob: 1290fc1cb2330471d33a6d163c9a2b3a7b96cb32 [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZISelDAGToDAG.cpp - A dag to dag inst selector for SystemZ --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines an instruction selector for the SystemZ target.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SystemZTargetMachine.h"
Richard Sandiford97846492013-07-09 09:46:39 +000015#include "llvm/Analysis/AliasAnalysis.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000016#include "llvm/CodeGen/SelectionDAGISel.h"
17#include "llvm/Support/Debug.h"
18#include "llvm/Support/raw_ostream.h"
19
20using namespace llvm;
21
Chandler Carruthe96dd892014-04-21 22:55:11 +000022#define DEBUG_TYPE "systemz-isel"
23
Ulrich Weigand5f613df2013-05-06 16:15:19 +000024namespace {
25// Used to build addressing modes.
26struct SystemZAddressingMode {
27 // The shape of the address.
28 enum AddrForm {
29 // base+displacement
30 FormBD,
31
32 // base+displacement+index for load and store operands
33 FormBDXNormal,
34
35 // base+displacement+index for load address operands
36 FormBDXLA,
37
38 // base+displacement+index+ADJDYNALLOC
39 FormBDXDynAlloc
40 };
41 AddrForm Form;
42
43 // The type of displacement. The enum names here correspond directly
44 // to the definitions in SystemZOperand.td. We could split them into
45 // flags -- single/pair, 128-bit, etc. -- but it hardly seems worth it.
46 enum DispRange {
47 Disp12Only,
48 Disp12Pair,
49 Disp20Only,
50 Disp20Only128,
51 Disp20Pair
52 };
53 DispRange DR;
54
55 // The parts of the address. The address is equivalent to:
56 //
57 // Base + Disp + Index + (IncludesDynAlloc ? ADJDYNALLOC : 0)
58 SDValue Base;
59 int64_t Disp;
60 SDValue Index;
61 bool IncludesDynAlloc;
62
63 SystemZAddressingMode(AddrForm form, DispRange dr)
64 : Form(form), DR(dr), Base(), Disp(0), Index(),
65 IncludesDynAlloc(false) {}
66
67 // True if the address can have an index register.
68 bool hasIndexField() { return Form != FormBD; }
69
70 // True if the address can (and must) include ADJDYNALLOC.
71 bool isDynAlloc() { return Form == FormBDXDynAlloc; }
72
73 void dump() {
74 errs() << "SystemZAddressingMode " << this << '\n';
75
76 errs() << " Base ";
Craig Topper062a2ba2014-04-25 05:30:21 +000077 if (Base.getNode())
Ulrich Weigand5f613df2013-05-06 16:15:19 +000078 Base.getNode()->dump();
79 else
80 errs() << "null\n";
81
82 if (hasIndexField()) {
83 errs() << " Index ";
Craig Topper062a2ba2014-04-25 05:30:21 +000084 if (Index.getNode())
Ulrich Weigand5f613df2013-05-06 16:15:19 +000085 Index.getNode()->dump();
86 else
87 errs() << "null\n";
88 }
89
90 errs() << " Disp " << Disp;
91 if (IncludesDynAlloc)
92 errs() << " + ADJDYNALLOC";
93 errs() << '\n';
94 }
95};
96
Richard Sandiford82ec87d2013-07-16 11:02:24 +000097// Return a mask with Count low bits set.
98static uint64_t allOnes(unsigned int Count) {
Ulrich Weigand77884bc2015-06-25 11:52:36 +000099 assert(Count <= 64);
Justin Bognerc97c48a2015-06-24 05:59:19 +0000100 if (Count > 63)
101 return UINT64_MAX;
102 return (uint64_t(1) << Count) - 1;
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000103}
104
Richard Sandiford51093212013-07-18 10:40:35 +0000105// Represents operands 2 to 5 of the ROTATE AND ... SELECTED BITS operation
106// given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and
107// Rotate (I5). The combined operand value is effectively:
108//
109// (or (rotl Input, Rotate), ~Mask)
110//
111// for RNSBG and:
112//
113// (and (rotl Input, Rotate), Mask)
114//
Richard Sandiford3e382972013-10-16 13:35:13 +0000115// otherwise. The output value has BitSize bits, although Input may be
Zhan Jun Liau0df35052016-06-22 16:16:27 +0000116// narrower (in which case the upper bits are don't care), or wider (in which
117// case the result will be truncated as part of the operation).
Richard Sandiford5cbac962013-07-18 09:45:08 +0000118struct RxSBGOperands {
Richard Sandiford51093212013-07-18 10:40:35 +0000119 RxSBGOperands(unsigned Op, SDValue N)
120 : Opcode(Op), BitSize(N.getValueType().getSizeInBits()),
121 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
122 Rotate(0) {}
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000123
Richard Sandiford51093212013-07-18 10:40:35 +0000124 unsigned Opcode;
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000125 unsigned BitSize;
126 uint64_t Mask;
127 SDValue Input;
128 unsigned Start;
129 unsigned End;
130 unsigned Rotate;
131};
132
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000133class SystemZDAGToDAGISel : public SelectionDAGISel {
Eric Christophera6734172015-01-31 00:06:45 +0000134 const SystemZSubtarget *Subtarget;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000135
136 // Used by SystemZOperands.td to create integer constants.
Richard Sandiford54b36912013-09-27 15:14:04 +0000137 inline SDValue getImm(const SDNode *Node, uint64_t Imm) const {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000138 return CurDAG->getTargetConstant(Imm, SDLoc(Node), Node->getValueType(0));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000139 }
140
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000141 const SystemZTargetMachine &getTargetMachine() const {
142 return static_cast<const SystemZTargetMachine &>(TM);
143 }
144
145 const SystemZInstrInfo *getInstrInfo() const {
Eric Christophera6734172015-01-31 00:06:45 +0000146 return Subtarget->getInstrInfo();
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000147 }
148
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000149 // Try to fold more of the base or index of AM into AM, where IsBase
150 // selects between the base and index.
Richard Sandiford54b36912013-09-27 15:14:04 +0000151 bool expandAddress(SystemZAddressingMode &AM, bool IsBase) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000152
153 // Try to describe N in AM, returning true on success.
Richard Sandiford54b36912013-09-27 15:14:04 +0000154 bool selectAddress(SDValue N, SystemZAddressingMode &AM) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000155
156 // Extract individual target operands from matched address AM.
157 void getAddressOperands(const SystemZAddressingMode &AM, EVT VT,
Richard Sandiford54b36912013-09-27 15:14:04 +0000158 SDValue &Base, SDValue &Disp) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000159 void getAddressOperands(const SystemZAddressingMode &AM, EVT VT,
Richard Sandiford54b36912013-09-27 15:14:04 +0000160 SDValue &Base, SDValue &Disp, SDValue &Index) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000161
162 // Try to match Addr as a FormBD address with displacement type DR.
163 // Return true on success, storing the base and displacement in
164 // Base and Disp respectively.
165 bool selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
Richard Sandiford54b36912013-09-27 15:14:04 +0000166 SDValue &Base, SDValue &Disp) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000167
Richard Sandiforda481f582013-08-23 11:18:53 +0000168 // Try to match Addr as a FormBDX address with displacement type DR.
169 // Return true on success and if the result had no index. Store the
170 // base and displacement in Base and Disp respectively.
171 bool selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
Richard Sandiford54b36912013-09-27 15:14:04 +0000172 SDValue &Base, SDValue &Disp) const;
Richard Sandiforda481f582013-08-23 11:18:53 +0000173
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000174 // Try to match Addr as a FormBDX* address of form Form with
175 // displacement type DR. Return true on success, storing the base,
176 // displacement and index in Base, Disp and Index respectively.
177 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
178 SystemZAddressingMode::DispRange DR, SDValue Addr,
Richard Sandiford54b36912013-09-27 15:14:04 +0000179 SDValue &Base, SDValue &Disp, SDValue &Index) const;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000180
181 // PC-relative address matching routines used by SystemZOperands.td.
Richard Sandiford54b36912013-09-27 15:14:04 +0000182 bool selectPCRelAddress(SDValue Addr, SDValue &Target) const {
183 if (SystemZISD::isPCREL(Addr.getOpcode())) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000184 Target = Addr.getOperand(0);
185 return true;
186 }
187 return false;
188 }
189
190 // BD matching routines used by SystemZOperands.td.
Richard Sandiford54b36912013-09-27 15:14:04 +0000191 bool selectBDAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000192 return selectBDAddr(SystemZAddressingMode::Disp12Only, Addr, Base, Disp);
193 }
Richard Sandiford54b36912013-09-27 15:14:04 +0000194 bool selectBDAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000195 return selectBDAddr(SystemZAddressingMode::Disp12Pair, Addr, Base, Disp);
196 }
Richard Sandiford54b36912013-09-27 15:14:04 +0000197 bool selectBDAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000198 return selectBDAddr(SystemZAddressingMode::Disp20Only, Addr, Base, Disp);
199 }
Richard Sandiford54b36912013-09-27 15:14:04 +0000200 bool selectBDAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000201 return selectBDAddr(SystemZAddressingMode::Disp20Pair, Addr, Base, Disp);
202 }
203
Richard Sandiforda481f582013-08-23 11:18:53 +0000204 // MVI matching routines used by SystemZOperands.td.
Richard Sandiford54b36912013-09-27 15:14:04 +0000205 bool selectMVIAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Richard Sandiforda481f582013-08-23 11:18:53 +0000206 return selectMVIAddr(SystemZAddressingMode::Disp12Pair, Addr, Base, Disp);
207 }
Richard Sandiford54b36912013-09-27 15:14:04 +0000208 bool selectMVIAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const {
Richard Sandiforda481f582013-08-23 11:18:53 +0000209 return selectMVIAddr(SystemZAddressingMode::Disp20Pair, Addr, Base, Disp);
210 }
211
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000212 // BDX matching routines used by SystemZOperands.td.
213 bool selectBDXAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000214 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000215 return selectBDXAddr(SystemZAddressingMode::FormBDXNormal,
216 SystemZAddressingMode::Disp12Only,
217 Addr, Base, Disp, Index);
218 }
219 bool selectBDXAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000220 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000221 return selectBDXAddr(SystemZAddressingMode::FormBDXNormal,
222 SystemZAddressingMode::Disp12Pair,
223 Addr, Base, Disp, Index);
224 }
225 bool selectDynAlloc12Only(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000226 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000227 return selectBDXAddr(SystemZAddressingMode::FormBDXDynAlloc,
228 SystemZAddressingMode::Disp12Only,
229 Addr, Base, Disp, Index);
230 }
231 bool selectBDXAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000232 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000233 return selectBDXAddr(SystemZAddressingMode::FormBDXNormal,
234 SystemZAddressingMode::Disp20Only,
235 Addr, Base, Disp, Index);
236 }
237 bool selectBDXAddr20Only128(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000238 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000239 return selectBDXAddr(SystemZAddressingMode::FormBDXNormal,
240 SystemZAddressingMode::Disp20Only128,
241 Addr, Base, Disp, Index);
242 }
243 bool selectBDXAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000244 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000245 return selectBDXAddr(SystemZAddressingMode::FormBDXNormal,
246 SystemZAddressingMode::Disp20Pair,
247 Addr, Base, Disp, Index);
248 }
249 bool selectLAAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000250 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000251 return selectBDXAddr(SystemZAddressingMode::FormBDXLA,
252 SystemZAddressingMode::Disp12Pair,
253 Addr, Base, Disp, Index);
254 }
255 bool selectLAAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp,
Richard Sandiford54b36912013-09-27 15:14:04 +0000256 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000257 return selectBDXAddr(SystemZAddressingMode::FormBDXLA,
258 SystemZAddressingMode::Disp20Pair,
259 Addr, Base, Disp, Index);
260 }
261
Ulrich Weigandce4c1092015-05-05 19:25:42 +0000262 // Try to match Addr as an address with a base, 12-bit displacement
263 // and index, where the index is element Elem of a vector.
264 // Return true on success, storing the base, displacement and vector
265 // in Base, Disp and Index respectively.
266 bool selectBDVAddr12Only(SDValue Addr, SDValue Elem, SDValue &Base,
267 SDValue &Disp, SDValue &Index) const;
268
Richard Sandiford885140c2013-07-16 11:55:57 +0000269 // Check whether (or Op (and X InsertMask)) is effectively an insertion
270 // of X into bits InsertMask of some Y != Op. Return true if so and
271 // set Op to that Y.
Richard Sandiford54b36912013-09-27 15:14:04 +0000272 bool detectOrAndInsertion(SDValue &Op, uint64_t InsertMask) const;
Richard Sandiford885140c2013-07-16 11:55:57 +0000273
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000274 // Try to update RxSBG so that only the bits of RxSBG.Input in Mask are used.
275 // Return true on success.
Richard Sandiford54b36912013-09-27 15:14:04 +0000276 bool refineRxSBGMask(RxSBGOperands &RxSBG, uint64_t Mask) const;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000277
Richard Sandiford5cbac962013-07-18 09:45:08 +0000278 // Try to fold some of RxSBG.Input into other fields of RxSBG.
279 // Return true on success.
Richard Sandiford54b36912013-09-27 15:14:04 +0000280 bool expandRxSBG(RxSBGOperands &RxSBG) const;
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000281
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000282 // Return an undefined value of type VT.
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000283 SDValue getUNDEF(const SDLoc &DL, EVT VT) const;
Richard Sandiford84f54a32013-07-11 08:59:12 +0000284
285 // Convert N to VT, if it isn't already.
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000286 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const;
Richard Sandiford84f54a32013-07-11 08:59:12 +0000287
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000288 // Try to implement AND or shift node N using RISBG with the zero flag set.
289 // Return the selected node on success, otherwise return null.
Justin Bognerbbcd2232016-05-10 21:11:26 +0000290 bool tryRISBGZero(SDNode *N);
Richard Sandiford84f54a32013-07-11 08:59:12 +0000291
Richard Sandiford7878b852013-07-18 10:06:15 +0000292 // Try to use RISBG or Opcode to implement OR or XOR node N.
293 // Return the selected node on success, otherwise return null.
Justin Bogner9b34e8a2016-05-13 22:42:08 +0000294 bool tryRxSBG(SDNode *N, unsigned Opcode);
Richard Sandiford885140c2013-07-16 11:55:57 +0000295
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000296 // If Op0 is null, then Node is a constant that can be loaded using:
297 //
298 // (Opcode UpperVal LowerVal)
299 //
300 // If Op0 is nonnull, then Node can be implemented using:
301 //
302 // (Opcode (Opcode Op0 UpperVal) LowerVal)
Justin Bognerffb273d2016-05-09 23:54:23 +0000303 void splitLargeImmediate(unsigned Opcode, SDNode *Node, SDValue Op0,
304 uint64_t UpperVal, uint64_t LowerVal);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000305
Ulrich Weigandce4c1092015-05-05 19:25:42 +0000306 // Try to use gather instruction Opcode to implement vector insertion N.
Justin Bogner9b34e8a2016-05-13 22:42:08 +0000307 bool tryGather(SDNode *N, unsigned Opcode);
Ulrich Weigandce4c1092015-05-05 19:25:42 +0000308
309 // Try to use scatter instruction Opcode to implement store Store.
Justin Bogner9b34e8a2016-05-13 22:42:08 +0000310 bool tryScatter(StoreSDNode *Store, unsigned Opcode);
Ulrich Weigandce4c1092015-05-05 19:25:42 +0000311
Richard Sandiford067817e2013-09-27 15:29:20 +0000312 // Return true if Load and Store are loads and stores of the same size
313 // and are guaranteed not to overlap. Such operations can be implemented
314 // using block (SS-format) instructions.
315 //
316 // Partial overlap would lead to incorrect code, since the block operations
317 // are logically bytewise, even though they have a fast path for the
318 // non-overlapping case. We also need to avoid full overlap (i.e. two
319 // addresses that might be equal at run time) because although that case
320 // would be handled correctly, it might be implemented by millicode.
321 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const;
322
Richard Sandiford178273a2013-09-05 10:36:45 +0000323 // N is a (store (load Y), X) pattern. Return true if it can use an MVC
324 // from Y to X.
Richard Sandiford97846492013-07-09 09:46:39 +0000325 bool storeLoadCanUseMVC(SDNode *N) const;
326
Richard Sandiford178273a2013-09-05 10:36:45 +0000327 // N is a (store (op (load A[0]), (load A[1])), X) pattern. Return true
328 // if A[1 - I] == X and if N can use a block operation like NC from A[I]
329 // to X.
330 bool storeLoadCanUseBlockBinary(SDNode *N, unsigned I) const;
331
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000332public:
333 SystemZDAGToDAGISel(SystemZTargetMachine &TM, CodeGenOpt::Level OptLevel)
Eric Christophera6734172015-01-31 00:06:45 +0000334 : SelectionDAGISel(TM, OptLevel) {}
335
336 bool runOnMachineFunction(MachineFunction &MF) override {
337 Subtarget = &MF.getSubtarget<SystemZSubtarget>();
338 return SelectionDAGISel::runOnMachineFunction(MF);
339 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000340
341 // Override MachineFunctionPass.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000342 const char *getPassName() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000343 return "SystemZ DAG->DAG Pattern Instruction Selection";
344 }
345
346 // Override SelectionDAGISel.
Justin Bogner9b34e8a2016-05-13 22:42:08 +0000347 void Select(SDNode *Node) override;
Daniel Sanders60f1db02015-03-13 12:45:09 +0000348 bool SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000349 std::vector<SDValue> &OutOps) override;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000350
351 // Include the pieces autogenerated from the target description.
352 #include "SystemZGenDAGISel.inc"
353};
354} // end anonymous namespace
355
356FunctionPass *llvm::createSystemZISelDag(SystemZTargetMachine &TM,
357 CodeGenOpt::Level OptLevel) {
358 return new SystemZDAGToDAGISel(TM, OptLevel);
359}
360
361// Return true if Val should be selected as a displacement for an address
362// with range DR. Here we're interested in the range of both the instruction
363// described by DR and of any pairing instruction.
364static bool selectDisp(SystemZAddressingMode::DispRange DR, int64_t Val) {
365 switch (DR) {
366 case SystemZAddressingMode::Disp12Only:
367 return isUInt<12>(Val);
368
369 case SystemZAddressingMode::Disp12Pair:
370 case SystemZAddressingMode::Disp20Only:
371 case SystemZAddressingMode::Disp20Pair:
372 return isInt<20>(Val);
373
374 case SystemZAddressingMode::Disp20Only128:
375 return isInt<20>(Val) && isInt<20>(Val + 8);
376 }
377 llvm_unreachable("Unhandled displacement range");
378}
379
380// Change the base or index in AM to Value, where IsBase selects
381// between the base and index.
382static void changeComponent(SystemZAddressingMode &AM, bool IsBase,
383 SDValue Value) {
384 if (IsBase)
385 AM.Base = Value;
386 else
387 AM.Index = Value;
388}
389
390// The base or index of AM is equivalent to Value + ADJDYNALLOC,
391// where IsBase selects between the base and index. Try to fold the
392// ADJDYNALLOC into AM.
393static bool expandAdjDynAlloc(SystemZAddressingMode &AM, bool IsBase,
394 SDValue Value) {
395 if (AM.isDynAlloc() && !AM.IncludesDynAlloc) {
396 changeComponent(AM, IsBase, Value);
397 AM.IncludesDynAlloc = true;
398 return true;
399 }
400 return false;
401}
402
403// The base of AM is equivalent to Base + Index. Try to use Index as
404// the index register.
405static bool expandIndex(SystemZAddressingMode &AM, SDValue Base,
406 SDValue Index) {
407 if (AM.hasIndexField() && !AM.Index.getNode()) {
408 AM.Base = Base;
409 AM.Index = Index;
410 return true;
411 }
412 return false;
413}
414
415// The base or index of AM is equivalent to Op0 + Op1, where IsBase selects
416// between the base and index. Try to fold Op1 into AM's displacement.
417static bool expandDisp(SystemZAddressingMode &AM, bool IsBase,
Richard Sandiford54b36912013-09-27 15:14:04 +0000418 SDValue Op0, uint64_t Op1) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000419 // First try adjusting the displacement.
Richard Sandiford54b36912013-09-27 15:14:04 +0000420 int64_t TestDisp = AM.Disp + Op1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000421 if (selectDisp(AM.DR, TestDisp)) {
422 changeComponent(AM, IsBase, Op0);
423 AM.Disp = TestDisp;
424 return true;
425 }
426
427 // We could consider forcing the displacement into a register and
428 // using it as an index, but it would need to be carefully tuned.
429 return false;
430}
431
432bool SystemZDAGToDAGISel::expandAddress(SystemZAddressingMode &AM,
Richard Sandiford54b36912013-09-27 15:14:04 +0000433 bool IsBase) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000434 SDValue N = IsBase ? AM.Base : AM.Index;
435 unsigned Opcode = N.getOpcode();
436 if (Opcode == ISD::TRUNCATE) {
437 N = N.getOperand(0);
438 Opcode = N.getOpcode();
439 }
440 if (Opcode == ISD::ADD || CurDAG->isBaseWithConstantOffset(N)) {
441 SDValue Op0 = N.getOperand(0);
442 SDValue Op1 = N.getOperand(1);
443
444 unsigned Op0Code = Op0->getOpcode();
445 unsigned Op1Code = Op1->getOpcode();
446
447 if (Op0Code == SystemZISD::ADJDYNALLOC)
448 return expandAdjDynAlloc(AM, IsBase, Op1);
449 if (Op1Code == SystemZISD::ADJDYNALLOC)
450 return expandAdjDynAlloc(AM, IsBase, Op0);
451
452 if (Op0Code == ISD::Constant)
Richard Sandiford54b36912013-09-27 15:14:04 +0000453 return expandDisp(AM, IsBase, Op1,
454 cast<ConstantSDNode>(Op0)->getSExtValue());
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000455 if (Op1Code == ISD::Constant)
Richard Sandiford54b36912013-09-27 15:14:04 +0000456 return expandDisp(AM, IsBase, Op0,
457 cast<ConstantSDNode>(Op1)->getSExtValue());
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000458
459 if (IsBase && expandIndex(AM, Op0, Op1))
460 return true;
461 }
Richard Sandiford54b36912013-09-27 15:14:04 +0000462 if (Opcode == SystemZISD::PCREL_OFFSET) {
463 SDValue Full = N.getOperand(0);
464 SDValue Base = N.getOperand(1);
465 SDValue Anchor = Base.getOperand(0);
466 uint64_t Offset = (cast<GlobalAddressSDNode>(Full)->getOffset() -
467 cast<GlobalAddressSDNode>(Anchor)->getOffset());
468 return expandDisp(AM, IsBase, Base, Offset);
469 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000470 return false;
471}
472
473// Return true if an instruction with displacement range DR should be
474// used for displacement value Val. selectDisp(DR, Val) must already hold.
475static bool isValidDisp(SystemZAddressingMode::DispRange DR, int64_t Val) {
476 assert(selectDisp(DR, Val) && "Invalid displacement");
477 switch (DR) {
478 case SystemZAddressingMode::Disp12Only:
479 case SystemZAddressingMode::Disp20Only:
480 case SystemZAddressingMode::Disp20Only128:
481 return true;
482
483 case SystemZAddressingMode::Disp12Pair:
484 // Use the other instruction if the displacement is too large.
485 return isUInt<12>(Val);
486
487 case SystemZAddressingMode::Disp20Pair:
488 // Use the other instruction if the displacement is small enough.
489 return !isUInt<12>(Val);
490 }
491 llvm_unreachable("Unhandled displacement range");
492}
493
494// Return true if Base + Disp + Index should be performed by LA(Y).
495static bool shouldUseLA(SDNode *Base, int64_t Disp, SDNode *Index) {
496 // Don't use LA(Y) for constants.
497 if (!Base)
498 return false;
499
500 // Always use LA(Y) for frame addresses, since we know that the destination
501 // register is almost always (perhaps always) going to be different from
502 // the frame register.
503 if (Base->getOpcode() == ISD::FrameIndex)
504 return true;
505
506 if (Disp) {
507 // Always use LA(Y) if there is a base, displacement and index.
508 if (Index)
509 return true;
510
511 // Always use LA if the displacement is small enough. It should always
512 // be no worse than AGHI (and better if it avoids a move).
513 if (isUInt<12>(Disp))
514 return true;
515
516 // For similar reasons, always use LAY if the constant is too big for AGHI.
517 // LAY should be no worse than AGFI.
518 if (!isInt<16>(Disp))
519 return true;
520 } else {
521 // Don't use LA for plain registers.
522 if (!Index)
523 return false;
524
525 // Don't use LA for plain addition if the index operand is only used
526 // once. It should be a natural two-operand addition in that case.
527 if (Index->hasOneUse())
528 return false;
529
530 // Prefer addition if the second operation is sign-extended, in the
531 // hope of using AGF.
532 unsigned IndexOpcode = Index->getOpcode();
533 if (IndexOpcode == ISD::SIGN_EXTEND ||
534 IndexOpcode == ISD::SIGN_EXTEND_INREG)
535 return false;
536 }
537
538 // Don't use LA for two-operand addition if either operand is only
539 // used once. The addition instructions are better in that case.
540 if (Base->hasOneUse())
541 return false;
542
543 return true;
544}
545
546// Return true if Addr is suitable for AM, updating AM if so.
547bool SystemZDAGToDAGISel::selectAddress(SDValue Addr,
Richard Sandiford54b36912013-09-27 15:14:04 +0000548 SystemZAddressingMode &AM) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000549 // Start out assuming that the address will need to be loaded separately,
550 // then try to extend it as much as we can.
551 AM.Base = Addr;
552
553 // First try treating the address as a constant.
554 if (Addr.getOpcode() == ISD::Constant &&
Richard Sandiford54b36912013-09-27 15:14:04 +0000555 expandDisp(AM, true, SDValue(),
556 cast<ConstantSDNode>(Addr)->getSExtValue()))
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000557 ;
Marcin Koscielnicki9de88d92016-05-04 23:31:26 +0000558 // Also see if it's a bare ADJDYNALLOC.
559 else if (Addr.getOpcode() == SystemZISD::ADJDYNALLOC &&
560 expandAdjDynAlloc(AM, true, SDValue()))
561 ;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000562 else
563 // Otherwise try expanding each component.
564 while (expandAddress(AM, true) ||
565 (AM.Index.getNode() && expandAddress(AM, false)))
566 continue;
567
568 // Reject cases where it isn't profitable to use LA(Y).
569 if (AM.Form == SystemZAddressingMode::FormBDXLA &&
570 !shouldUseLA(AM.Base.getNode(), AM.Disp, AM.Index.getNode()))
571 return false;
572
573 // Reject cases where the other instruction in a pair should be used.
574 if (!isValidDisp(AM.DR, AM.Disp))
575 return false;
576
577 // Make sure that ADJDYNALLOC is included where necessary.
578 if (AM.isDynAlloc() && !AM.IncludesDynAlloc)
579 return false;
580
581 DEBUG(AM.dump());
582 return true;
583}
584
585// Insert a node into the DAG at least before Pos. This will reposition
586// the node as needed, and will assign it a node ID that is <= Pos's ID.
587// Note that this does *not* preserve the uniqueness of node IDs!
588// The selection DAG must no longer depend on their uniqueness when this
589// function is used.
590static void insertDAGNode(SelectionDAG *DAG, SDNode *Pos, SDValue N) {
591 if (N.getNode()->getNodeId() == -1 ||
592 N.getNode()->getNodeId() > Pos->getNodeId()) {
Duncan P. N. Exon Smitha2c90e42015-10-20 01:12:46 +0000593 DAG->RepositionNode(Pos->getIterator(), N.getNode());
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000594 N.getNode()->setNodeId(Pos->getNodeId());
595 }
596}
597
598void SystemZDAGToDAGISel::getAddressOperands(const SystemZAddressingMode &AM,
599 EVT VT, SDValue &Base,
Richard Sandiford54b36912013-09-27 15:14:04 +0000600 SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000601 Base = AM.Base;
602 if (!Base.getNode())
603 // Register 0 means "no base". This is mostly useful for shifts.
604 Base = CurDAG->getRegister(0, VT);
605 else if (Base.getOpcode() == ISD::FrameIndex) {
606 // Lower a FrameIndex to a TargetFrameIndex.
607 int64_t FrameIndex = cast<FrameIndexSDNode>(Base)->getIndex();
608 Base = CurDAG->getTargetFrameIndex(FrameIndex, VT);
609 } else if (Base.getValueType() != VT) {
610 // Truncate values from i64 to i32, for shifts.
611 assert(VT == MVT::i32 && Base.getValueType() == MVT::i64 &&
612 "Unexpected truncation");
Andrew Trickef9de2a2013-05-25 02:42:55 +0000613 SDLoc DL(Base);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000614 SDValue Trunc = CurDAG->getNode(ISD::TRUNCATE, DL, VT, Base);
615 insertDAGNode(CurDAG, Base.getNode(), Trunc);
616 Base = Trunc;
617 }
618
619 // Lower the displacement to a TargetConstant.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000620 Disp = CurDAG->getTargetConstant(AM.Disp, SDLoc(Base), VT);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000621}
622
623void SystemZDAGToDAGISel::getAddressOperands(const SystemZAddressingMode &AM,
624 EVT VT, SDValue &Base,
Richard Sandiford54b36912013-09-27 15:14:04 +0000625 SDValue &Disp,
626 SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000627 getAddressOperands(AM, VT, Base, Disp);
628
629 Index = AM.Index;
630 if (!Index.getNode())
631 // Register 0 means "no index".
632 Index = CurDAG->getRegister(0, VT);
633}
634
635bool SystemZDAGToDAGISel::selectBDAddr(SystemZAddressingMode::DispRange DR,
636 SDValue Addr, SDValue &Base,
Richard Sandiford54b36912013-09-27 15:14:04 +0000637 SDValue &Disp) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000638 SystemZAddressingMode AM(SystemZAddressingMode::FormBD, DR);
639 if (!selectAddress(Addr, AM))
640 return false;
641
642 getAddressOperands(AM, Addr.getValueType(), Base, Disp);
643 return true;
644}
645
Richard Sandiforda481f582013-08-23 11:18:53 +0000646bool SystemZDAGToDAGISel::selectMVIAddr(SystemZAddressingMode::DispRange DR,
647 SDValue Addr, SDValue &Base,
Richard Sandiford54b36912013-09-27 15:14:04 +0000648 SDValue &Disp) const {
Richard Sandiforda481f582013-08-23 11:18:53 +0000649 SystemZAddressingMode AM(SystemZAddressingMode::FormBDXNormal, DR);
650 if (!selectAddress(Addr, AM) || AM.Index.getNode())
651 return false;
652
653 getAddressOperands(AM, Addr.getValueType(), Base, Disp);
654 return true;
655}
656
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000657bool SystemZDAGToDAGISel::selectBDXAddr(SystemZAddressingMode::AddrForm Form,
658 SystemZAddressingMode::DispRange DR,
659 SDValue Addr, SDValue &Base,
Richard Sandiford54b36912013-09-27 15:14:04 +0000660 SDValue &Disp, SDValue &Index) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000661 SystemZAddressingMode AM(Form, DR);
662 if (!selectAddress(Addr, AM))
663 return false;
664
665 getAddressOperands(AM, Addr.getValueType(), Base, Disp, Index);
666 return true;
667}
668
Ulrich Weigandce4c1092015-05-05 19:25:42 +0000669bool SystemZDAGToDAGISel::selectBDVAddr12Only(SDValue Addr, SDValue Elem,
670 SDValue &Base,
671 SDValue &Disp,
672 SDValue &Index) const {
673 SDValue Regs[2];
674 if (selectBDXAddr12Only(Addr, Regs[0], Disp, Regs[1]) &&
675 Regs[0].getNode() && Regs[1].getNode()) {
676 for (unsigned int I = 0; I < 2; ++I) {
677 Base = Regs[I];
678 Index = Regs[1 - I];
679 // We can't tell here whether the index vector has the right type
680 // for the access; the caller needs to do that instead.
681 if (Index.getOpcode() == ISD::ZERO_EXTEND)
682 Index = Index.getOperand(0);
683 if (Index.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
684 Index.getOperand(1) == Elem) {
685 Index = Index.getOperand(0);
686 return true;
687 }
688 }
689 }
690 return false;
691}
692
Richard Sandiford885140c2013-07-16 11:55:57 +0000693bool SystemZDAGToDAGISel::detectOrAndInsertion(SDValue &Op,
Richard Sandiford54b36912013-09-27 15:14:04 +0000694 uint64_t InsertMask) const {
Richard Sandiford885140c2013-07-16 11:55:57 +0000695 // We're only interested in cases where the insertion is into some operand
696 // of Op, rather than into Op itself. The only useful case is an AND.
697 if (Op.getOpcode() != ISD::AND)
698 return false;
699
700 // We need a constant mask.
Richard Sandiford21f5d682014-03-06 11:22:58 +0000701 auto *MaskNode = dyn_cast<ConstantSDNode>(Op.getOperand(1).getNode());
Richard Sandiford885140c2013-07-16 11:55:57 +0000702 if (!MaskNode)
703 return false;
704
705 // It's not an insertion of Op.getOperand(0) if the two masks overlap.
706 uint64_t AndMask = MaskNode->getZExtValue();
707 if (InsertMask & AndMask)
708 return false;
709
710 // It's only an insertion if all bits are covered or are known to be zero.
711 // The inner check covers all cases but is more expensive.
712 uint64_t Used = allOnes(Op.getValueType().getSizeInBits());
713 if (Used != (AndMask | InsertMask)) {
714 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000715 CurDAG->computeKnownBits(Op.getOperand(0), KnownZero, KnownOne);
Richard Sandiford885140c2013-07-16 11:55:57 +0000716 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
717 return false;
718 }
719
720 Op = Op.getOperand(0);
721 return true;
722}
723
Richard Sandiford54b36912013-09-27 15:14:04 +0000724bool SystemZDAGToDAGISel::refineRxSBGMask(RxSBGOperands &RxSBG,
725 uint64_t Mask) const {
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000726 const SystemZInstrInfo *TII = getInstrInfo();
Richard Sandiford5cbac962013-07-18 09:45:08 +0000727 if (RxSBG.Rotate != 0)
728 Mask = (Mask << RxSBG.Rotate) | (Mask >> (64 - RxSBG.Rotate));
729 Mask &= RxSBG.Mask;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000730 if (TII->isRxSBGMask(Mask, RxSBG.BitSize, RxSBG.Start, RxSBG.End)) {
Richard Sandiford5cbac962013-07-18 09:45:08 +0000731 RxSBG.Mask = Mask;
Richard Sandiford5cbac962013-07-18 09:45:08 +0000732 return true;
733 }
Richard Sandiford84f54a32013-07-11 08:59:12 +0000734 return false;
735}
736
Richard Sandiforddd7dd932013-11-26 10:53:16 +0000737// Return true if any bits of (RxSBG.Input & Mask) are significant.
738static bool maskMatters(RxSBGOperands &RxSBG, uint64_t Mask) {
739 // Rotate the mask in the same way as RxSBG.Input is rotated.
Richard Sandiford297f7d22013-07-18 10:14:55 +0000740 if (RxSBG.Rotate != 0)
Richard Sandiforddd7dd932013-11-26 10:53:16 +0000741 Mask = ((Mask << RxSBG.Rotate) | (Mask >> (64 - RxSBG.Rotate)));
742 return (Mask & RxSBG.Mask) != 0;
Richard Sandiford297f7d22013-07-18 10:14:55 +0000743}
744
Richard Sandiford54b36912013-09-27 15:14:04 +0000745bool SystemZDAGToDAGISel::expandRxSBG(RxSBGOperands &RxSBG) const {
Richard Sandiford5cbac962013-07-18 09:45:08 +0000746 SDValue N = RxSBG.Input;
Richard Sandiford297f7d22013-07-18 10:14:55 +0000747 unsigned Opcode = N.getOpcode();
748 switch (Opcode) {
Zhan Jun Liau0df35052016-06-22 16:16:27 +0000749 case ISD::TRUNCATE: {
750 if (RxSBG.Opcode == SystemZ::RNSBG)
751 return false;
752 uint64_t BitSize = N.getValueType().getSizeInBits();
753 uint64_t Mask = allOnes(BitSize);
754 if (!refineRxSBGMask(RxSBG, Mask))
755 return false;
756 RxSBG.Input = N.getOperand(0);
757 return true;
758 }
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000759 case ISD::AND: {
Richard Sandiford51093212013-07-18 10:40:35 +0000760 if (RxSBG.Opcode == SystemZ::RNSBG)
761 return false;
762
Richard Sandiford21f5d682014-03-06 11:22:58 +0000763 auto *MaskNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000764 if (!MaskNode)
765 return false;
766
767 SDValue Input = N.getOperand(0);
768 uint64_t Mask = MaskNode->getZExtValue();
Richard Sandiford5cbac962013-07-18 09:45:08 +0000769 if (!refineRxSBGMask(RxSBG, Mask)) {
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000770 // If some bits of Input are already known zeros, those bits will have
771 // been removed from the mask. See if adding them back in makes the
772 // mask suitable.
773 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000774 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000775 Mask |= KnownZero.getZExtValue();
Richard Sandiford5cbac962013-07-18 09:45:08 +0000776 if (!refineRxSBGMask(RxSBG, Mask))
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000777 return false;
778 }
Richard Sandiford5cbac962013-07-18 09:45:08 +0000779 RxSBG.Input = Input;
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000780 return true;
781 }
782
Richard Sandiford51093212013-07-18 10:40:35 +0000783 case ISD::OR: {
784 if (RxSBG.Opcode != SystemZ::RNSBG)
785 return false;
786
Richard Sandiford21f5d682014-03-06 11:22:58 +0000787 auto *MaskNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
Richard Sandiford51093212013-07-18 10:40:35 +0000788 if (!MaskNode)
789 return false;
790
791 SDValue Input = N.getOperand(0);
792 uint64_t Mask = ~MaskNode->getZExtValue();
793 if (!refineRxSBGMask(RxSBG, Mask)) {
794 // If some bits of Input are already known ones, those bits will have
795 // been removed from the mask. See if adding them back in makes the
796 // mask suitable.
797 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000798 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
Richard Sandiford51093212013-07-18 10:40:35 +0000799 Mask &= ~KnownOne.getZExtValue();
800 if (!refineRxSBGMask(RxSBG, Mask))
801 return false;
802 }
803 RxSBG.Input = Input;
804 return true;
805 }
806
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000807 case ISD::ROTL: {
Richard Sandiford5cbac962013-07-18 09:45:08 +0000808 // Any 64-bit rotate left can be merged into the RxSBG.
Richard Sandiford3e382972013-10-16 13:35:13 +0000809 if (RxSBG.BitSize != 64 || N.getValueType() != MVT::i64)
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000810 return false;
Richard Sandiford21f5d682014-03-06 11:22:58 +0000811 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000812 if (!CountNode)
813 return false;
814
Richard Sandiford5cbac962013-07-18 09:45:08 +0000815 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63;
816 RxSBG.Input = N.getOperand(0);
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000817 return true;
818 }
Simon Pilgrim0750c842015-08-15 13:27:30 +0000819
Richard Sandiford220ee492013-12-20 11:49:48 +0000820 case ISD::ANY_EXTEND:
821 // Bits above the extended operand are don't-care.
822 RxSBG.Input = N.getOperand(0);
823 return true;
824
Richard Sandiford3875cb62014-01-09 11:28:53 +0000825 case ISD::ZERO_EXTEND:
826 if (RxSBG.Opcode != SystemZ::RNSBG) {
827 // Restrict the mask to the extended operand.
828 unsigned InnerBitSize = N.getOperand(0).getValueType().getSizeInBits();
829 if (!refineRxSBGMask(RxSBG, allOnes(InnerBitSize)))
830 return false;
Richard Sandiford220ee492013-12-20 11:49:48 +0000831
Richard Sandiford3875cb62014-01-09 11:28:53 +0000832 RxSBG.Input = N.getOperand(0);
833 return true;
834 }
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000835 LLVM_FALLTHROUGH;
Simon Pilgrim0750c842015-08-15 13:27:30 +0000836
Richard Sandiford220ee492013-12-20 11:49:48 +0000837 case ISD::SIGN_EXTEND: {
Richard Sandiford3e382972013-10-16 13:35:13 +0000838 // Check that the extension bits are don't-care (i.e. are masked out
839 // by the final mask).
840 unsigned InnerBitSize = N.getOperand(0).getValueType().getSizeInBits();
Richard Sandiforddd7dd932013-11-26 10:53:16 +0000841 if (maskMatters(RxSBG, allOnes(RxSBG.BitSize) - allOnes(InnerBitSize)))
Richard Sandiford3e382972013-10-16 13:35:13 +0000842 return false;
843
844 RxSBG.Input = N.getOperand(0);
845 return true;
846 }
847
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000848 case ISD::SHL: {
Richard Sandiford21f5d682014-03-06 11:22:58 +0000849 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000850 if (!CountNode)
851 return false;
852
853 uint64_t Count = CountNode->getZExtValue();
Richard Sandiford3e382972013-10-16 13:35:13 +0000854 unsigned BitSize = N.getValueType().getSizeInBits();
855 if (Count < 1 || Count >= BitSize)
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000856 return false;
857
Richard Sandiford51093212013-07-18 10:40:35 +0000858 if (RxSBG.Opcode == SystemZ::RNSBG) {
859 // Treat (shl X, count) as (rotl X, size-count) as long as the bottom
860 // count bits from RxSBG.Input are ignored.
Richard Sandiforddd7dd932013-11-26 10:53:16 +0000861 if (maskMatters(RxSBG, allOnes(Count)))
Richard Sandiford51093212013-07-18 10:40:35 +0000862 return false;
863 } else {
864 // Treat (shl X, count) as (and (rotl X, count), ~0<<count).
Richard Sandiford3e382972013-10-16 13:35:13 +0000865 if (!refineRxSBGMask(RxSBG, allOnes(BitSize - Count) << Count))
Richard Sandiford51093212013-07-18 10:40:35 +0000866 return false;
867 }
868
Richard Sandiford5cbac962013-07-18 09:45:08 +0000869 RxSBG.Rotate = (RxSBG.Rotate + Count) & 63;
870 RxSBG.Input = N.getOperand(0);
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000871 return true;
872 }
873
Richard Sandiford297f7d22013-07-18 10:14:55 +0000874 case ISD::SRL:
875 case ISD::SRA: {
Richard Sandiford21f5d682014-03-06 11:22:58 +0000876 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000877 if (!CountNode)
878 return false;
879
880 uint64_t Count = CountNode->getZExtValue();
Richard Sandiford3e382972013-10-16 13:35:13 +0000881 unsigned BitSize = N.getValueType().getSizeInBits();
882 if (Count < 1 || Count >= BitSize)
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000883 return false;
884
Richard Sandiford51093212013-07-18 10:40:35 +0000885 if (RxSBG.Opcode == SystemZ::RNSBG || Opcode == ISD::SRA) {
886 // Treat (srl|sra X, count) as (rotl X, size-count) as long as the top
887 // count bits from RxSBG.Input are ignored.
Richard Sandiforddd7dd932013-11-26 10:53:16 +0000888 if (maskMatters(RxSBG, allOnes(Count) << (BitSize - Count)))
Richard Sandiford297f7d22013-07-18 10:14:55 +0000889 return false;
890 } else {
891 // Treat (srl X, count), mask) as (and (rotl X, size-count), ~0>>count),
892 // which is similar to SLL above.
Richard Sandiford3e382972013-10-16 13:35:13 +0000893 if (!refineRxSBGMask(RxSBG, allOnes(BitSize - Count)))
Richard Sandiford297f7d22013-07-18 10:14:55 +0000894 return false;
895 }
896
Richard Sandiford5cbac962013-07-18 09:45:08 +0000897 RxSBG.Rotate = (RxSBG.Rotate - Count) & 63;
898 RxSBG.Input = N.getOperand(0);
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000899 return true;
900 }
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000901 default:
902 return false;
903 }
904}
905
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000906SDValue SystemZDAGToDAGISel::getUNDEF(const SDLoc &DL, EVT VT) const {
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000907 SDNode *N = CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, DL, VT);
Richard Sandiford84f54a32013-07-11 08:59:12 +0000908 return SDValue(N, 0);
909}
910
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000911SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT,
912 SDValue N) const {
Richard Sandifordd8163202013-09-13 09:12:44 +0000913 if (N.getValueType() == MVT::i32 && VT == MVT::i64)
Richard Sandiford87a44362013-09-30 10:28:35 +0000914 return CurDAG->getTargetInsertSubreg(SystemZ::subreg_l32,
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000915 DL, VT, getUNDEF(DL, MVT::i64), N);
Richard Sandifordd8163202013-09-13 09:12:44 +0000916 if (N.getValueType() == MVT::i64 && VT == MVT::i32)
Richard Sandiford87a44362013-09-30 10:28:35 +0000917 return CurDAG->getTargetExtractSubreg(SystemZ::subreg_l32, DL, VT, N);
Richard Sandiford84f54a32013-07-11 08:59:12 +0000918 assert(N.getValueType() == VT && "Unexpected value types");
919 return N;
920}
921
Justin Bognerbbcd2232016-05-10 21:11:26 +0000922bool SystemZDAGToDAGISel::tryRISBGZero(SDNode *N) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000923 SDLoc DL(N);
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000924 EVT VT = N->getValueType(0);
Ulrich Weigand77884bc2015-06-25 11:52:36 +0000925 if (!VT.isInteger() || VT.getSizeInBits() > 64)
Justin Bognerbbcd2232016-05-10 21:11:26 +0000926 return false;
Richard Sandiford51093212013-07-18 10:40:35 +0000927 RxSBGOperands RISBG(SystemZ::RISBG, SDValue(N, 0));
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000928 unsigned Count = 0;
Richard Sandiford5cbac962013-07-18 09:45:08 +0000929 while (expandRxSBG(RISBG))
Zhan Jun Liau0df35052016-06-22 16:16:27 +0000930 // The widening or narrowing is expected to be free.
931 // Counting widening or narrowing as a saved operation will result in
932 // preferring an R*SBG over a simple shift/logical instruction.
933 if (RISBG.Input.getOpcode() != ISD::ANY_EXTEND &&
934 RISBG.Input.getOpcode() != ISD::TRUNCATE)
Richard Sandiford3e382972013-10-16 13:35:13 +0000935 Count += 1;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000936 if (Count == 0)
Justin Bognerbbcd2232016-05-10 21:11:26 +0000937 return false;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000938 if (Count == 1) {
939 // Prefer to use normal shift instructions over RISBG, since they can handle
940 // all cases and are sometimes shorter.
941 if (N->getOpcode() != ISD::AND)
Justin Bognerbbcd2232016-05-10 21:11:26 +0000942 return false;
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000943
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000944 // Prefer register extensions like LLC over RISBG. Also prefer to start
945 // out with normal ANDs if one instruction would be enough. We can convert
946 // these ANDs into an RISBG later if a three-address instruction is useful.
947 if (VT == MVT::i32 ||
948 RISBG.Mask == 0xff ||
949 RISBG.Mask == 0xffff ||
950 SystemZ::isImmLF(~RISBG.Mask) ||
951 SystemZ::isImmHF(~RISBG.Mask)) {
952 // Force the new mask into the DAG, since it may include known-one bits.
Richard Sandiford21f5d682014-03-06 11:22:58 +0000953 auto *MaskN = cast<ConstantSDNode>(N->getOperand(1).getNode());
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000954 if (MaskN->getZExtValue() != RISBG.Mask) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000955 SDValue NewMask = CurDAG->getConstant(RISBG.Mask, DL, VT);
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000956 N = CurDAG->UpdateNodeOperands(N, N->getOperand(0), NewMask);
Justin Bognerbbcd2232016-05-10 21:11:26 +0000957 SelectCode(N);
958 return true;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000959 }
Justin Bognerbbcd2232016-05-10 21:11:26 +0000960 return false;
Richard Sandiford6a06ba32013-07-31 11:36:35 +0000961 }
Simon Pilgrim0750c842015-08-15 13:27:30 +0000962 }
963
964 // If the RISBG operands require no rotation and just masks the bottom
965 // 8/16 bits, attempt to convert this to a LLC zero extension.
966 if (RISBG.Rotate == 0 && (RISBG.Mask == 0xff || RISBG.Mask == 0xffff)) {
967 unsigned OpCode = (RISBG.Mask == 0xff ? SystemZ::LLGCR : SystemZ::LLGHR);
968 if (VT == MVT::i32) {
969 if (Subtarget->hasHighWord())
970 OpCode = (RISBG.Mask == 0xff ? SystemZ::LLCRMux : SystemZ::LLHRMux);
971 else
972 OpCode = (RISBG.Mask == 0xff ? SystemZ::LLCR : SystemZ::LLHR);
973 }
974
975 SDValue In = convertTo(DL, VT, RISBG.Input);
Justin Bognerbbcd2232016-05-10 21:11:26 +0000976 SDValue New = convertTo(
977 DL, VT, SDValue(CurDAG->getMachineNode(OpCode, DL, VT, In), 0));
978 ReplaceUses(N, New.getNode());
979 CurDAG->RemoveDeadNode(N);
980 return true;
Simon Pilgrim0750c842015-08-15 13:27:30 +0000981 }
Richard Sandiford82ec87d2013-07-16 11:02:24 +0000982
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000983 unsigned Opcode = SystemZ::RISBG;
Ulrich Weigand371d10a2015-03-31 12:58:17 +0000984 // Prefer RISBGN if available, since it does not clobber CC.
985 if (Subtarget->hasMiscellaneousExtensions())
986 Opcode = SystemZ::RISBGN;
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000987 EVT OpcodeVT = MVT::i64;
Eric Christophera6734172015-01-31 00:06:45 +0000988 if (VT == MVT::i32 && Subtarget->hasHighWord()) {
Richard Sandiford3ad5a152013-10-01 14:36:20 +0000989 Opcode = SystemZ::RISBMux;
990 OpcodeVT = MVT::i32;
991 RISBG.Start &= 31;
992 RISBG.End &= 31;
993 }
Richard Sandiford84f54a32013-07-11 08:59:12 +0000994 SDValue Ops[5] = {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000995 getUNDEF(DL, OpcodeVT),
996 convertTo(DL, OpcodeVT, RISBG.Input),
997 CurDAG->getTargetConstant(RISBG.Start, DL, MVT::i32),
998 CurDAG->getTargetConstant(RISBG.End | 128, DL, MVT::i32),
999 CurDAG->getTargetConstant(RISBG.Rotate, DL, MVT::i32)
Richard Sandiford84f54a32013-07-11 08:59:12 +00001000 };
Justin Bognerbbcd2232016-05-10 21:11:26 +00001001 SDValue New = convertTo(
1002 DL, VT, SDValue(CurDAG->getMachineNode(Opcode, DL, OpcodeVT, Ops), 0));
1003 ReplaceUses(N, New.getNode());
1004 CurDAG->RemoveDeadNode(N);
1005 return true;
Richard Sandiford84f54a32013-07-11 08:59:12 +00001006}
1007
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001008bool SystemZDAGToDAGISel::tryRxSBG(SDNode *N, unsigned Opcode) {
Ulrich Weigand77884bc2015-06-25 11:52:36 +00001009 SDLoc DL(N);
1010 EVT VT = N->getValueType(0);
1011 if (!VT.isInteger() || VT.getSizeInBits() > 64)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001012 return false;
Richard Sandiford7878b852013-07-18 10:06:15 +00001013 // Try treating each operand of N as the second operand of the RxSBG
Richard Sandiford885140c2013-07-16 11:55:57 +00001014 // and see which goes deepest.
Richard Sandiford51093212013-07-18 10:40:35 +00001015 RxSBGOperands RxSBG[] = {
1016 RxSBGOperands(Opcode, N->getOperand(0)),
1017 RxSBGOperands(Opcode, N->getOperand(1))
1018 };
Richard Sandiford885140c2013-07-16 11:55:57 +00001019 unsigned Count[] = { 0, 0 };
1020 for (unsigned I = 0; I < 2; ++I)
Richard Sandiford5cbac962013-07-18 09:45:08 +00001021 while (expandRxSBG(RxSBG[I]))
Zhan Jun Liau0df35052016-06-22 16:16:27 +00001022 // The widening or narrowing is expected to be free.
1023 // Counting widening or narrowing as a saved operation will result in
1024 // preferring an R*SBG over a simple shift/logical instruction.
1025 if (RxSBG[I].Input.getOpcode() != ISD::ANY_EXTEND &&
1026 RxSBG[I].Input.getOpcode() != ISD::TRUNCATE)
Richard Sandiford3e382972013-10-16 13:35:13 +00001027 Count[I] += 1;
Richard Sandiford885140c2013-07-16 11:55:57 +00001028
1029 // Do nothing if neither operand is suitable.
1030 if (Count[0] == 0 && Count[1] == 0)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001031 return false;
Richard Sandiford885140c2013-07-16 11:55:57 +00001032
1033 // Pick the deepest second operand.
1034 unsigned I = Count[0] > Count[1] ? 0 : 1;
1035 SDValue Op0 = N->getOperand(I ^ 1);
1036
1037 // Prefer IC for character insertions from memory.
Richard Sandiford7878b852013-07-18 10:06:15 +00001038 if (Opcode == SystemZ::ROSBG && (RxSBG[I].Mask & 0xff) == 0)
Richard Sandiford21f5d682014-03-06 11:22:58 +00001039 if (auto *Load = dyn_cast<LoadSDNode>(Op0.getNode()))
Richard Sandiford885140c2013-07-16 11:55:57 +00001040 if (Load->getMemoryVT() == MVT::i8)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001041 return false;
Richard Sandiford885140c2013-07-16 11:55:57 +00001042
1043 // See whether we can avoid an AND in the first operand by converting
1044 // ROSBG to RISBG.
Ulrich Weigand371d10a2015-03-31 12:58:17 +00001045 if (Opcode == SystemZ::ROSBG && detectOrAndInsertion(Op0, RxSBG[I].Mask)) {
Richard Sandiford885140c2013-07-16 11:55:57 +00001046 Opcode = SystemZ::RISBG;
Ulrich Weigand371d10a2015-03-31 12:58:17 +00001047 // Prefer RISBGN if available, since it does not clobber CC.
1048 if (Subtarget->hasMiscellaneousExtensions())
1049 Opcode = SystemZ::RISBGN;
1050 }
1051
Richard Sandiford885140c2013-07-16 11:55:57 +00001052 SDValue Ops[5] = {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001053 convertTo(DL, MVT::i64, Op0),
1054 convertTo(DL, MVT::i64, RxSBG[I].Input),
1055 CurDAG->getTargetConstant(RxSBG[I].Start, DL, MVT::i32),
1056 CurDAG->getTargetConstant(RxSBG[I].End, DL, MVT::i32),
1057 CurDAG->getTargetConstant(RxSBG[I].Rotate, DL, MVT::i32)
Richard Sandiford885140c2013-07-16 11:55:57 +00001058 };
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001059 SDValue New = convertTo(
1060 DL, VT, SDValue(CurDAG->getMachineNode(Opcode, DL, MVT::i64, Ops), 0));
1061 ReplaceNode(N, New.getNode());
1062 return true;
Richard Sandiford885140c2013-07-16 11:55:57 +00001063}
1064
Justin Bognerffb273d2016-05-09 23:54:23 +00001065void SystemZDAGToDAGISel::splitLargeImmediate(unsigned Opcode, SDNode *Node,
1066 SDValue Op0, uint64_t UpperVal,
1067 uint64_t LowerVal) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001068 EVT VT = Node->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001069 SDLoc DL(Node);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001070 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001071 if (Op0.getNode())
1072 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper);
Justin Bognerffb273d2016-05-09 23:54:23 +00001073
1074 {
1075 // When we haven't passed in Op0, Upper will be a constant. In order to
1076 // prevent folding back to the large immediate in `Or = getNode(...)` we run
1077 // SelectCode first and end up with an opaque machine node. This means that
1078 // we need to use a handle to keep track of Upper in case it gets CSE'd by
1079 // SelectCode.
1080 //
1081 // Note that in the case where Op0 is passed in we could just call
1082 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing
1083 // the handle at all, but it's fine to do it here.
1084 //
1085 // TODO: This is a pretty hacky way to do this. Can we do something that
1086 // doesn't require a two paragraph explanation?
1087 HandleSDNode Handle(Upper);
1088 SelectCode(Upper.getNode());
1089 Upper = Handle.getValue();
1090 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001091
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001092 SDValue Lower = CurDAG->getConstant(LowerVal, DL, VT);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001093 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower);
Justin Bognerffb273d2016-05-09 23:54:23 +00001094
1095 ReplaceUses(Node, Or.getNode());
1096 CurDAG->RemoveDeadNode(Node);
1097
1098 SelectCode(Or.getNode());
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001099}
1100
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001101bool SystemZDAGToDAGISel::tryGather(SDNode *N, unsigned Opcode) {
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001102 SDValue ElemV = N->getOperand(2);
1103 auto *ElemN = dyn_cast<ConstantSDNode>(ElemV);
1104 if (!ElemN)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001105 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001106
1107 unsigned Elem = ElemN->getZExtValue();
1108 EVT VT = N->getValueType(0);
1109 if (Elem >= VT.getVectorNumElements())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001110 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001111
1112 auto *Load = dyn_cast<LoadSDNode>(N->getOperand(1));
1113 if (!Load || !Load->hasOneUse())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001114 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001115 if (Load->getMemoryVT().getSizeInBits() !=
1116 Load->getValueType(0).getSizeInBits())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001117 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001118
1119 SDValue Base, Disp, Index;
1120 if (!selectBDVAddr12Only(Load->getBasePtr(), ElemV, Base, Disp, Index) ||
1121 Index.getValueType() != VT.changeVectorElementTypeToInteger())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001122 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001123
1124 SDLoc DL(Load);
1125 SDValue Ops[] = {
1126 N->getOperand(0), Base, Disp, Index,
1127 CurDAG->getTargetConstant(Elem, DL, MVT::i32), Load->getChain()
1128 };
1129 SDNode *Res = CurDAG->getMachineNode(Opcode, DL, VT, MVT::Other, Ops);
1130 ReplaceUses(SDValue(Load, 1), SDValue(Res, 1));
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001131 ReplaceNode(N, Res);
1132 return true;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001133}
1134
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001135bool SystemZDAGToDAGISel::tryScatter(StoreSDNode *Store, unsigned Opcode) {
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001136 SDValue Value = Store->getValue();
1137 if (Value.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001138 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001139 if (Store->getMemoryVT().getSizeInBits() !=
1140 Value.getValueType().getSizeInBits())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001141 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001142
1143 SDValue ElemV = Value.getOperand(1);
1144 auto *ElemN = dyn_cast<ConstantSDNode>(ElemV);
1145 if (!ElemN)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001146 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001147
1148 SDValue Vec = Value.getOperand(0);
1149 EVT VT = Vec.getValueType();
1150 unsigned Elem = ElemN->getZExtValue();
1151 if (Elem >= VT.getVectorNumElements())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001152 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001153
1154 SDValue Base, Disp, Index;
1155 if (!selectBDVAddr12Only(Store->getBasePtr(), ElemV, Base, Disp, Index) ||
1156 Index.getValueType() != VT.changeVectorElementTypeToInteger())
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001157 return false;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001158
1159 SDLoc DL(Store);
1160 SDValue Ops[] = {
1161 Vec, Base, Disp, Index, CurDAG->getTargetConstant(Elem, DL, MVT::i32),
1162 Store->getChain()
1163 };
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001164 ReplaceNode(Store, CurDAG->getMachineNode(Opcode, DL, MVT::Other, Ops));
1165 return true;
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001166}
1167
Richard Sandiford067817e2013-09-27 15:29:20 +00001168bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store,
1169 LoadSDNode *Load) const {
Richard Sandiford178273a2013-09-05 10:36:45 +00001170 // Check that the two memory operands have the same size.
1171 if (Load->getMemoryVT() != Store->getMemoryVT())
Richard Sandiford97846492013-07-09 09:46:39 +00001172 return false;
1173
Richard Sandiford178273a2013-09-05 10:36:45 +00001174 // Volatility stops an access from being decomposed.
1175 if (Load->isVolatile() || Store->isVolatile())
1176 return false;
Richard Sandiford97846492013-07-09 09:46:39 +00001177
1178 // There's no chance of overlap if the load is invariant.
Justin Lebaradbf09e2016-09-11 01:38:58 +00001179 if (Load->isInvariant() && Load->isDereferenceable())
Richard Sandiford97846492013-07-09 09:46:39 +00001180 return true;
1181
Richard Sandiford97846492013-07-09 09:46:39 +00001182 // Otherwise we need to check whether there's an alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001183 const Value *V1 = Load->getMemOperand()->getValue();
1184 const Value *V2 = Store->getMemOperand()->getValue();
Richard Sandiford97846492013-07-09 09:46:39 +00001185 if (!V1 || !V2)
1186 return false;
1187
Richard Sandiford067817e2013-09-27 15:29:20 +00001188 // Reject equality.
1189 uint64_t Size = Load->getMemoryVT().getStoreSize();
Richard Sandiford97846492013-07-09 09:46:39 +00001190 int64_t End1 = Load->getSrcValueOffset() + Size;
1191 int64_t End2 = Store->getSrcValueOffset() + Size;
Richard Sandiford067817e2013-09-27 15:29:20 +00001192 if (V1 == V2 && End1 == End2)
1193 return false;
1194
Chandler Carruthac80dc72015-06-17 07:18:54 +00001195 return !AA->alias(MemoryLocation(V1, End1, Load->getAAInfo()),
1196 MemoryLocation(V2, End2, Store->getAAInfo()));
Richard Sandiford97846492013-07-09 09:46:39 +00001197}
1198
Richard Sandiford178273a2013-09-05 10:36:45 +00001199bool SystemZDAGToDAGISel::storeLoadCanUseMVC(SDNode *N) const {
Richard Sandiford21f5d682014-03-06 11:22:58 +00001200 auto *Store = cast<StoreSDNode>(N);
1201 auto *Load = cast<LoadSDNode>(Store->getValue());
Richard Sandiford178273a2013-09-05 10:36:45 +00001202
1203 // Prefer not to use MVC if either address can use ... RELATIVE LONG
1204 // instructions.
1205 uint64_t Size = Load->getMemoryVT().getStoreSize();
1206 if (Size > 1 && Size <= 8) {
1207 // Prefer LHRL, LRL and LGRL.
Richard Sandiford54b36912013-09-27 15:14:04 +00001208 if (SystemZISD::isPCREL(Load->getBasePtr().getOpcode()))
Richard Sandiford178273a2013-09-05 10:36:45 +00001209 return false;
1210 // Prefer STHRL, STRL and STGRL.
Richard Sandiford54b36912013-09-27 15:14:04 +00001211 if (SystemZISD::isPCREL(Store->getBasePtr().getOpcode()))
Richard Sandiford178273a2013-09-05 10:36:45 +00001212 return false;
1213 }
1214
Richard Sandiford067817e2013-09-27 15:29:20 +00001215 return canUseBlockOperation(Store, Load);
Richard Sandiford178273a2013-09-05 10:36:45 +00001216}
1217
1218bool SystemZDAGToDAGISel::storeLoadCanUseBlockBinary(SDNode *N,
1219 unsigned I) const {
Richard Sandiford21f5d682014-03-06 11:22:58 +00001220 auto *StoreA = cast<StoreSDNode>(N);
1221 auto *LoadA = cast<LoadSDNode>(StoreA->getValue().getOperand(1 - I));
1222 auto *LoadB = cast<LoadSDNode>(StoreA->getValue().getOperand(I));
Richard Sandiford067817e2013-09-27 15:29:20 +00001223 return !LoadA->isVolatile() && canUseBlockOperation(StoreA, LoadB);
Richard Sandiford178273a2013-09-05 10:36:45 +00001224}
1225
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001226void SystemZDAGToDAGISel::Select(SDNode *Node) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001227 // Dump information about the Node being selected
1228 DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n");
1229
1230 // If we have a custom node, we already have selected!
1231 if (Node->isMachineOpcode()) {
1232 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
Tim Northover31d093c2013-09-22 08:21:56 +00001233 Node->setNodeId(-1);
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001234 return;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001235 }
1236
1237 unsigned Opcode = Node->getOpcode();
1238 switch (Opcode) {
1239 case ISD::OR:
Richard Sandiford885140c2013-07-16 11:55:57 +00001240 if (Node->getOperand(1).getOpcode() != ISD::Constant)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001241 if (tryRxSBG(Node, SystemZ::ROSBG))
1242 return;
Richard Sandiford7878b852013-07-18 10:06:15 +00001243 goto or_xor;
1244
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001245 case ISD::XOR:
Richard Sandiford7878b852013-07-18 10:06:15 +00001246 if (Node->getOperand(1).getOpcode() != ISD::Constant)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001247 if (tryRxSBG(Node, SystemZ::RXSBG))
1248 return;
Richard Sandiford7878b852013-07-18 10:06:15 +00001249 // Fall through.
1250 or_xor:
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001251 // If this is a 64-bit operation in which both 32-bit halves are nonzero,
1252 // split the operation into two.
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001253 if (Node->getValueType(0) == MVT::i64)
Richard Sandiford21f5d682014-03-06 11:22:58 +00001254 if (auto *Op1 = dyn_cast<ConstantSDNode>(Node->getOperand(1))) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001255 uint64_t Val = Op1->getZExtValue();
Justin Bognerffb273d2016-05-09 23:54:23 +00001256 if (!SystemZ::isImmLF(Val) && !SystemZ::isImmHF(Val)) {
1257 splitLargeImmediate(Opcode, Node, Node->getOperand(0),
1258 Val - uint32_t(Val), uint32_t(Val));
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001259 return;
Justin Bognerffb273d2016-05-09 23:54:23 +00001260 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001261 }
1262 break;
1263
Richard Sandiford84f54a32013-07-11 08:59:12 +00001264 case ISD::AND:
Richard Sandiford51093212013-07-18 10:40:35 +00001265 if (Node->getOperand(1).getOpcode() != ISD::Constant)
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001266 if (tryRxSBG(Node, SystemZ::RNSBG))
1267 return;
Justin Bognercd1d5aa2016-08-17 20:30:52 +00001268 LLVM_FALLTHROUGH;
Richard Sandiford82ec87d2013-07-16 11:02:24 +00001269 case ISD::ROTL:
1270 case ISD::SHL:
1271 case ISD::SRL:
Richard Sandiford220ee492013-12-20 11:49:48 +00001272 case ISD::ZERO_EXTEND:
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001273 if (tryRISBGZero(Node))
1274 return;
Richard Sandiford84f54a32013-07-11 08:59:12 +00001275 break;
1276
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001277 case ISD::Constant:
1278 // If this is a 64-bit constant that is out of the range of LLILF,
1279 // LLIHF and LGFI, split it into two 32-bit pieces.
1280 if (Node->getValueType(0) == MVT::i64) {
1281 uint64_t Val = cast<ConstantSDNode>(Node)->getZExtValue();
Justin Bognerffb273d2016-05-09 23:54:23 +00001282 if (!SystemZ::isImmLF(Val) && !SystemZ::isImmHF(Val) && !isInt<32>(Val)) {
1283 splitLargeImmediate(ISD::OR, Node, SDValue(), Val - uint32_t(Val),
1284 uint32_t(Val));
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001285 return;
Justin Bognerffb273d2016-05-09 23:54:23 +00001286 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001287 }
1288 break;
1289
Richard Sandifordee834382013-07-31 12:38:08 +00001290 case SystemZISD::SELECT_CCMASK: {
1291 SDValue Op0 = Node->getOperand(0);
1292 SDValue Op1 = Node->getOperand(1);
1293 // Prefer to put any load first, so that it can be matched as a
1294 // conditional load.
1295 if (Op1.getOpcode() == ISD::LOAD && Op0.getOpcode() != ISD::LOAD) {
1296 SDValue CCValid = Node->getOperand(2);
1297 SDValue CCMask = Node->getOperand(3);
1298 uint64_t ConstCCValid =
1299 cast<ConstantSDNode>(CCValid.getNode())->getZExtValue();
1300 uint64_t ConstCCMask =
1301 cast<ConstantSDNode>(CCMask.getNode())->getZExtValue();
1302 // Invert the condition.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001303 CCMask = CurDAG->getConstant(ConstCCValid ^ ConstCCMask, SDLoc(Node),
Richard Sandifordee834382013-07-31 12:38:08 +00001304 CCMask.getValueType());
1305 SDValue Op4 = Node->getOperand(4);
1306 Node = CurDAG->UpdateNodeOperands(Node, Op1, Op0, CCValid, CCMask, Op4);
1307 }
1308 break;
1309 }
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001310
1311 case ISD::INSERT_VECTOR_ELT: {
1312 EVT VT = Node->getValueType(0);
1313 unsigned ElemBitSize = VT.getVectorElementType().getSizeInBits();
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001314 if (ElemBitSize == 32) {
1315 if (tryGather(Node, SystemZ::VGEF))
1316 return;
1317 } else if (ElemBitSize == 64) {
1318 if (tryGather(Node, SystemZ::VGEG))
1319 return;
1320 }
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001321 break;
1322 }
1323
1324 case ISD::STORE: {
1325 auto *Store = cast<StoreSDNode>(Node);
1326 unsigned ElemBitSize = Store->getValue().getValueType().getSizeInBits();
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001327 if (ElemBitSize == 32) {
1328 if (tryScatter(Store, SystemZ::VSCEF))
1329 return;
1330 } else if (ElemBitSize == 64) {
1331 if (tryScatter(Store, SystemZ::VSCEG))
1332 return;
1333 }
Ulrich Weigandce4c1092015-05-05 19:25:42 +00001334 break;
1335 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001336 }
1337
Justin Bogner9b34e8a2016-05-13 22:42:08 +00001338 SelectCode(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001339}
1340
1341bool SystemZDAGToDAGISel::
1342SelectInlineAsmMemoryOperand(const SDValue &Op,
Daniel Sanders60f1db02015-03-13 12:45:09 +00001343 unsigned ConstraintID,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001344 std::vector<SDValue> &OutOps) {
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001345 SystemZAddressingMode::AddrForm Form;
1346 SystemZAddressingMode::DispRange DispRange;
Ulrich Weigand79564612016-06-09 15:19:16 +00001347 SDValue Base, Disp, Index;
1348
Daniel Sanders2eeace22015-03-17 16:16:14 +00001349 switch(ConstraintID) {
1350 default:
1351 llvm_unreachable("Unexpected asm memory constraint");
1352 case InlineAsm::Constraint_i:
Daniel Sanders2eeace22015-03-17 16:16:14 +00001353 case InlineAsm::Constraint_Q:
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001354 // Accept an address with a short displacement, but no index.
1355 Form = SystemZAddressingMode::FormBD;
1356 DispRange = SystemZAddressingMode::Disp12Only;
1357 break;
Daniel Sanders2eeace22015-03-17 16:16:14 +00001358 case InlineAsm::Constraint_R:
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001359 // Accept an address with a short displacement and an index.
1360 Form = SystemZAddressingMode::FormBDXNormal;
1361 DispRange = SystemZAddressingMode::Disp12Only;
Daniel Sanders2eeace22015-03-17 16:16:14 +00001362 break;
Ulrich Weigand79564612016-06-09 15:19:16 +00001363 case InlineAsm::Constraint_S:
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001364 // Accept an address with a long displacement, but no index.
1365 Form = SystemZAddressingMode::FormBD;
1366 DispRange = SystemZAddressingMode::Disp20Only;
1367 break;
Ulrich Weigand79564612016-06-09 15:19:16 +00001368 case InlineAsm::Constraint_T:
1369 case InlineAsm::Constraint_m:
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001370 // Accept an address with a long displacement and an index.
1371 // m works the same as T, as this is the most general case.
1372 Form = SystemZAddressingMode::FormBDXNormal;
1373 DispRange = SystemZAddressingMode::Disp20Only;
Ulrich Weigand79564612016-06-09 15:19:16 +00001374 break;
Daniel Sanders2eeace22015-03-17 16:16:14 +00001375 }
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001376
1377 if (selectBDXAddr(Form, DispRange, Op, Base, Disp, Index)) {
Zhan Jun Liaucf2f4b32016-08-18 21:44:15 +00001378 const TargetRegisterClass *TRC =
1379 Subtarget->getRegisterInfo()->getPointerRegClass(*MF);
1380 SDLoc DL(Base);
1381 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), DL, MVT::i32);
1382
1383 // Make sure that the base address doesn't go into %r0.
1384 // If it's a TargetFrameIndex or a fixed register, we shouldn't do anything.
1385 if (Base.getOpcode() != ISD::TargetFrameIndex &&
1386 Base.getOpcode() != ISD::Register) {
1387 Base =
1388 SDValue(CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS,
1389 DL, Base.getValueType(),
1390 Base, RC), 0);
1391 }
1392
1393 // Make sure that the index register isn't assigned to %r0 either.
1394 if (Index.getOpcode() != ISD::Register) {
1395 Index =
1396 SDValue(CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS,
1397 DL, Index.getValueType(),
1398 Index, RC), 0);
1399 }
1400
Ulrich Weiganddaae87aa2016-06-13 14:24:05 +00001401 OutOps.push_back(Base);
1402 OutOps.push_back(Disp);
1403 OutOps.push_back(Index);
1404 return false;
1405 }
1406
Daniel Sanders2eeace22015-03-17 16:16:14 +00001407 return true;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001408}