blob: af5b52f1aee6948f045582acbdc5acd8d36248f3 [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZISelLowering.cpp - SystemZ DAG lowering implementation -----===//
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 implements the SystemZTargetLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "systemz-lower"
15
16#include "SystemZISelLowering.h"
17#include "SystemZCallingConv.h"
18#include "SystemZConstantPoolValue.h"
19#include "SystemZMachineFunctionInfo.h"
20#include "SystemZTargetMachine.h"
21#include "llvm/CodeGen/CallingConvLower.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
25
Will Dietz981af002013-10-12 00:55:57 +000026#include <cctype>
27
Ulrich Weigand5f613df2013-05-06 16:15:19 +000028using namespace llvm;
29
Richard Sandifordf722a8e302013-10-16 11:10:55 +000030namespace {
31// Represents a sequence for extracting a 0/1 value from an IPM result:
32// (((X ^ XORValue) + AddValue) >> Bit)
33struct IPMConversion {
34 IPMConversion(unsigned xorValue, int64_t addValue, unsigned bit)
35 : XORValue(xorValue), AddValue(addValue), Bit(bit) {}
36
37 int64_t XORValue;
38 int64_t AddValue;
39 unsigned Bit;
40};
41}
42
Ulrich Weigand5f613df2013-05-06 16:15:19 +000043// Classify VT as either 32 or 64 bit.
44static bool is32Bit(EVT VT) {
45 switch (VT.getSimpleVT().SimpleTy) {
46 case MVT::i32:
47 return true;
48 case MVT::i64:
49 return false;
50 default:
51 llvm_unreachable("Unsupported type");
52 }
53}
54
55// Return a version of MachineOperand that can be safely used before the
56// final use.
57static MachineOperand earlyUseOperand(MachineOperand Op) {
58 if (Op.isReg())
59 Op.setIsKill(false);
60 return Op;
61}
62
63SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm)
64 : TargetLowering(tm, new TargetLoweringObjectFileELF()),
65 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
66 MVT PtrVT = getPointerTy();
67
68 // Set up the register classes.
Richard Sandiford0755c932013-10-01 11:26:28 +000069 if (Subtarget.hasHighWord())
70 addRegisterClass(MVT::i32, &SystemZ::GRX32BitRegClass);
71 else
72 addRegisterClass(MVT::i32, &SystemZ::GR32BitRegClass);
Ulrich Weigand5f613df2013-05-06 16:15:19 +000073 addRegisterClass(MVT::i64, &SystemZ::GR64BitRegClass);
74 addRegisterClass(MVT::f32, &SystemZ::FP32BitRegClass);
75 addRegisterClass(MVT::f64, &SystemZ::FP64BitRegClass);
76 addRegisterClass(MVT::f128, &SystemZ::FP128BitRegClass);
77
78 // Compute derived properties from the register classes
79 computeRegisterProperties();
80
81 // Set up special registers.
82 setExceptionPointerRegister(SystemZ::R6D);
83 setExceptionSelectorRegister(SystemZ::R7D);
84 setStackPointerRegisterToSaveRestore(SystemZ::R15D);
85
86 // TODO: It may be better to default to latency-oriented scheduling, however
87 // LLVM's current latency-oriented scheduler can't handle physreg definitions
Richard Sandiford14a44492013-05-22 13:38:45 +000088 // such as SystemZ has with CC, so set this to the register-pressure
Ulrich Weigand5f613df2013-05-06 16:15:19 +000089 // scheduler, because it can.
90 setSchedulingPreference(Sched::RegPressure);
91
92 setBooleanContents(ZeroOrOneBooleanContent);
93 setBooleanVectorContents(ZeroOrOneBooleanContent); // FIXME: Is this correct?
94
95 // Instructions are strings of 2-byte aligned 2-byte values.
96 setMinFunctionAlignment(2);
97
98 // Handle operations that are handled in a similar way for all types.
99 for (unsigned I = MVT::FIRST_INTEGER_VALUETYPE;
100 I <= MVT::LAST_FP_VALUETYPE;
101 ++I) {
102 MVT VT = MVT::SimpleValueType(I);
103 if (isTypeLegal(VT)) {
Richard Sandifordf722a8e302013-10-16 11:10:55 +0000104 // Lower SET_CC into an IPM-based sequence.
105 setOperationAction(ISD::SETCC, VT, Custom);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000106
107 // Expand SELECT(C, A, B) into SELECT_CC(X, 0, A, B, NE).
108 setOperationAction(ISD::SELECT, VT, Expand);
109
110 // Lower SELECT_CC and BR_CC into separate comparisons and branches.
111 setOperationAction(ISD::SELECT_CC, VT, Custom);
112 setOperationAction(ISD::BR_CC, VT, Custom);
113 }
114 }
115
116 // Expand jump table branches as address arithmetic followed by an
117 // indirect jump.
118 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
119
120 // Expand BRCOND into a BR_CC (see above).
121 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
122
123 // Handle integer types.
124 for (unsigned I = MVT::FIRST_INTEGER_VALUETYPE;
125 I <= MVT::LAST_INTEGER_VALUETYPE;
126 ++I) {
127 MVT VT = MVT::SimpleValueType(I);
128 if (isTypeLegal(VT)) {
129 // Expand individual DIV and REMs into DIVREMs.
130 setOperationAction(ISD::SDIV, VT, Expand);
131 setOperationAction(ISD::UDIV, VT, Expand);
132 setOperationAction(ISD::SREM, VT, Expand);
133 setOperationAction(ISD::UREM, VT, Expand);
134 setOperationAction(ISD::SDIVREM, VT, Custom);
135 setOperationAction(ISD::UDIVREM, VT, Custom);
136
137 // Expand ATOMIC_LOAD and ATOMIC_STORE using ATOMIC_CMP_SWAP.
138 // FIXME: probably much too conservative.
139 setOperationAction(ISD::ATOMIC_LOAD, VT, Expand);
140 setOperationAction(ISD::ATOMIC_STORE, VT, Expand);
141
142 // No special instructions for these.
143 setOperationAction(ISD::CTPOP, VT, Expand);
144 setOperationAction(ISD::CTTZ, VT, Expand);
145 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
146 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
147 setOperationAction(ISD::ROTR, VT, Expand);
148
Richard Sandiford7d86e472013-08-21 09:34:56 +0000149 // Use *MUL_LOHI where possible instead of MULH*.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000150 setOperationAction(ISD::MULHS, VT, Expand);
151 setOperationAction(ISD::MULHU, VT, Expand);
Richard Sandiford7d86e472013-08-21 09:34:56 +0000152 setOperationAction(ISD::SMUL_LOHI, VT, Custom);
153 setOperationAction(ISD::UMUL_LOHI, VT, Custom);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000154
155 // We have instructions for signed but not unsigned FP conversion.
156 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
157 }
158 }
159
160 // Type legalization will convert 8- and 16-bit atomic operations into
161 // forms that operate on i32s (but still keeping the original memory VT).
162 // Lower them into full i32 operations.
163 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Custom);
164 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Custom);
165 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
166 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Custom);
167 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Custom);
168 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Custom);
169 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Custom);
170 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Custom);
171 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Custom);
172 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Custom);
173 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Custom);
174 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
175
176 // We have instructions for signed but not unsigned FP conversion.
177 // Handle unsigned 32-bit types as signed 64-bit types.
178 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Promote);
179 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
180
181 // We have native support for a 64-bit CTLZ, via FLOGR.
182 setOperationAction(ISD::CTLZ, MVT::i32, Promote);
183 setOperationAction(ISD::CTLZ, MVT::i64, Legal);
184
185 // Give LowerOperation the chance to replace 64-bit ORs with subregs.
186 setOperationAction(ISD::OR, MVT::i64, Custom);
187
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000188 // FIXME: Can we support these natively?
189 setOperationAction(ISD::SRL_PARTS, MVT::i64, Expand);
190 setOperationAction(ISD::SHL_PARTS, MVT::i64, Expand);
191 setOperationAction(ISD::SRA_PARTS, MVT::i64, Expand);
192
193 // We have native instructions for i8, i16 and i32 extensions, but not i1.
194 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
195 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
196 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
197 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
198
199 // Handle the various types of symbolic address.
200 setOperationAction(ISD::ConstantPool, PtrVT, Custom);
201 setOperationAction(ISD::GlobalAddress, PtrVT, Custom);
202 setOperationAction(ISD::GlobalTLSAddress, PtrVT, Custom);
203 setOperationAction(ISD::BlockAddress, PtrVT, Custom);
204 setOperationAction(ISD::JumpTable, PtrVT, Custom);
205
206 // We need to handle dynamic allocations specially because of the
207 // 160-byte area at the bottom of the stack.
208 setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
209
210 // Use custom expanders so that we can force the function to use
211 // a frame pointer.
212 setOperationAction(ISD::STACKSAVE, MVT::Other, Custom);
213 setOperationAction(ISD::STACKRESTORE, MVT::Other, Custom);
214
Richard Sandiford03481332013-08-23 11:36:42 +0000215 // Handle prefetches with PFD or PFDRL.
216 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
217
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000218 // Handle floating-point types.
219 for (unsigned I = MVT::FIRST_FP_VALUETYPE;
220 I <= MVT::LAST_FP_VALUETYPE;
221 ++I) {
222 MVT VT = MVT::SimpleValueType(I);
223 if (isTypeLegal(VT)) {
224 // We can use FI for FRINT.
225 setOperationAction(ISD::FRINT, VT, Legal);
226
Richard Sandifordaf5f66a2013-08-21 09:04:20 +0000227 // We can use the extended form of FI for other rounding operations.
228 if (Subtarget.hasFPExtension()) {
229 setOperationAction(ISD::FNEARBYINT, VT, Legal);
230 setOperationAction(ISD::FFLOOR, VT, Legal);
231 setOperationAction(ISD::FCEIL, VT, Legal);
232 setOperationAction(ISD::FTRUNC, VT, Legal);
233 setOperationAction(ISD::FROUND, VT, Legal);
234 }
235
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000236 // No special instructions for these.
237 setOperationAction(ISD::FSIN, VT, Expand);
238 setOperationAction(ISD::FCOS, VT, Expand);
239 setOperationAction(ISD::FREM, VT, Expand);
240 }
241 }
242
243 // We have fused multiply-addition for f32 and f64 but not f128.
244 setOperationAction(ISD::FMA, MVT::f32, Legal);
245 setOperationAction(ISD::FMA, MVT::f64, Legal);
246 setOperationAction(ISD::FMA, MVT::f128, Expand);
247
248 // Needed so that we don't try to implement f128 constant loads using
249 // a load-and-extend of a f80 constant (in cases where the constant
250 // would fit in an f80).
251 setLoadExtAction(ISD::EXTLOAD, MVT::f80, Expand);
252
253 // Floating-point truncation and stores need to be done separately.
254 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
255 setTruncStoreAction(MVT::f128, MVT::f32, Expand);
256 setTruncStoreAction(MVT::f128, MVT::f64, Expand);
257
258 // We have 64-bit FPR<->GPR moves, but need special handling for
259 // 32-bit forms.
260 setOperationAction(ISD::BITCAST, MVT::i32, Custom);
261 setOperationAction(ISD::BITCAST, MVT::f32, Custom);
262
263 // VASTART and VACOPY need to deal with the SystemZ-specific varargs
264 // structure, but VAEND is a no-op.
265 setOperationAction(ISD::VASTART, MVT::Other, Custom);
266 setOperationAction(ISD::VACOPY, MVT::Other, Custom);
267 setOperationAction(ISD::VAEND, MVT::Other, Expand);
Richard Sandifordd131ff82013-07-08 09:35:23 +0000268
269 // We want to use MVC in preference to even a single load/store pair.
270 MaxStoresPerMemcpy = 0;
271 MaxStoresPerMemcpyOptSize = 0;
Richard Sandiford47660c12013-07-09 09:32:42 +0000272
273 // The main memset sequence is a byte store followed by an MVC.
274 // Two STC or MV..I stores win over that, but the kind of fused stores
275 // generated by target-independent code don't when the byte value is
276 // variable. E.g. "STC <reg>;MHI <reg>,257;STH <reg>" is not better
277 // than "STC;MVC". Handle the choice in target-specific code instead.
278 MaxStoresPerMemset = 0;
279 MaxStoresPerMemsetOptSize = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000280}
281
Richard Sandifordabc010b2013-11-06 12:16:02 +0000282EVT SystemZTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
283 if (!VT.isVector())
284 return MVT::i32;
285 return VT.changeVectorElementTypeToInteger();
286}
287
288bool SystemZTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
Stephen Lin73de7bf2013-07-09 18:16:56 +0000289 VT = VT.getScalarType();
290
291 if (!VT.isSimple())
292 return false;
293
294 switch (VT.getSimpleVT().SimpleTy) {
295 case MVT::f32:
296 case MVT::f64:
297 return true;
298 case MVT::f128:
299 return false;
300 default:
301 break;
302 }
303
304 return false;
305}
306
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000307bool SystemZTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
308 // We can load zero using LZ?R and negative zero using LZ?R;LC?BR.
309 return Imm.isZero() || Imm.isNegZero();
310}
311
Richard Sandiford46af5a22013-05-30 09:45:42 +0000312bool SystemZTargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
313 bool *Fast) const {
314 // Unaligned accesses should never be slower than the expanded version.
315 // We check specifically for aligned accesses in the few cases where
316 // they are required.
317 if (Fast)
318 *Fast = true;
319 return true;
320}
321
Richard Sandiford791bea42013-07-31 12:58:26 +0000322bool SystemZTargetLowering::isLegalAddressingMode(const AddrMode &AM,
323 Type *Ty) const {
324 // Punt on globals for now, although they can be used in limited
325 // RELATIVE LONG cases.
326 if (AM.BaseGV)
327 return false;
328
329 // Require a 20-bit signed offset.
330 if (!isInt<20>(AM.BaseOffs))
331 return false;
332
333 // Indexing is OK but no scale factor can be applied.
334 return AM.Scale == 0 || AM.Scale == 1;
335}
336
Richard Sandiford709bda62013-08-19 12:42:31 +0000337bool SystemZTargetLowering::isTruncateFree(Type *FromType, Type *ToType) const {
338 if (!FromType->isIntegerTy() || !ToType->isIntegerTy())
339 return false;
340 unsigned FromBits = FromType->getPrimitiveSizeInBits();
341 unsigned ToBits = ToType->getPrimitiveSizeInBits();
342 return FromBits > ToBits;
343}
344
345bool SystemZTargetLowering::isTruncateFree(EVT FromVT, EVT ToVT) const {
346 if (!FromVT.isInteger() || !ToVT.isInteger())
347 return false;
348 unsigned FromBits = FromVT.getSizeInBits();
349 unsigned ToBits = ToVT.getSizeInBits();
350 return FromBits > ToBits;
351}
352
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000353//===----------------------------------------------------------------------===//
354// Inline asm support
355//===----------------------------------------------------------------------===//
356
357TargetLowering::ConstraintType
358SystemZTargetLowering::getConstraintType(const std::string &Constraint) const {
359 if (Constraint.size() == 1) {
360 switch (Constraint[0]) {
361 case 'a': // Address register
362 case 'd': // Data register (equivalent to 'r')
363 case 'f': // Floating-point register
Richard Sandiford0755c932013-10-01 11:26:28 +0000364 case 'h': // High-part register
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000365 case 'r': // General-purpose register
366 return C_RegisterClass;
367
368 case 'Q': // Memory with base and unsigned 12-bit displacement
369 case 'R': // Likewise, plus an index
370 case 'S': // Memory with base and signed 20-bit displacement
371 case 'T': // Likewise, plus an index
372 case 'm': // Equivalent to 'T'.
373 return C_Memory;
374
375 case 'I': // Unsigned 8-bit constant
376 case 'J': // Unsigned 12-bit constant
377 case 'K': // Signed 16-bit constant
378 case 'L': // Signed 20-bit displacement (on all targets we support)
379 case 'M': // 0x7fffffff
380 return C_Other;
381
382 default:
383 break;
384 }
385 }
386 return TargetLowering::getConstraintType(Constraint);
387}
388
389TargetLowering::ConstraintWeight SystemZTargetLowering::
390getSingleConstraintMatchWeight(AsmOperandInfo &info,
391 const char *constraint) const {
392 ConstraintWeight weight = CW_Invalid;
393 Value *CallOperandVal = info.CallOperandVal;
394 // If we don't have a value, we can't do a match,
395 // but allow it at the lowest weight.
396 if (CallOperandVal == NULL)
397 return CW_Default;
398 Type *type = CallOperandVal->getType();
399 // Look at the constraint type.
400 switch (*constraint) {
401 default:
402 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
403 break;
404
405 case 'a': // Address register
406 case 'd': // Data register (equivalent to 'r')
Richard Sandiford0755c932013-10-01 11:26:28 +0000407 case 'h': // High-part register
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000408 case 'r': // General-purpose register
409 if (CallOperandVal->getType()->isIntegerTy())
410 weight = CW_Register;
411 break;
412
413 case 'f': // Floating-point register
414 if (type->isFloatingPointTy())
415 weight = CW_Register;
416 break;
417
418 case 'I': // Unsigned 8-bit constant
419 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal))
420 if (isUInt<8>(C->getZExtValue()))
421 weight = CW_Constant;
422 break;
423
424 case 'J': // Unsigned 12-bit constant
425 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal))
426 if (isUInt<12>(C->getZExtValue()))
427 weight = CW_Constant;
428 break;
429
430 case 'K': // Signed 16-bit constant
431 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal))
432 if (isInt<16>(C->getSExtValue()))
433 weight = CW_Constant;
434 break;
435
436 case 'L': // Signed 20-bit displacement (on all targets we support)
437 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal))
438 if (isInt<20>(C->getSExtValue()))
439 weight = CW_Constant;
440 break;
441
442 case 'M': // 0x7fffffff
443 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal))
444 if (C->getZExtValue() == 0x7fffffff)
445 weight = CW_Constant;
446 break;
447 }
448 return weight;
449}
450
Richard Sandifordb8204052013-07-12 09:08:12 +0000451// Parse a "{tNNN}" register constraint for which the register type "t"
452// has already been verified. MC is the class associated with "t" and
453// Map maps 0-based register numbers to LLVM register numbers.
454static std::pair<unsigned, const TargetRegisterClass *>
455parseRegisterNumber(const std::string &Constraint,
456 const TargetRegisterClass *RC, const unsigned *Map) {
457 assert(*(Constraint.end()-1) == '}' && "Missing '}'");
458 if (isdigit(Constraint[2])) {
459 std::string Suffix(Constraint.data() + 2, Constraint.size() - 2);
460 unsigned Index = atoi(Suffix.c_str());
461 if (Index < 16 && Map[Index])
462 return std::make_pair(Map[Index], RC);
463 }
464 return std::make_pair(0u, static_cast<TargetRegisterClass*>(0));
465}
466
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000467std::pair<unsigned, const TargetRegisterClass *> SystemZTargetLowering::
Chad Rosier295bd432013-06-22 18:37:38 +0000468getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000469 if (Constraint.size() == 1) {
470 // GCC Constraint Letters
471 switch (Constraint[0]) {
472 default: break;
473 case 'd': // Data register (equivalent to 'r')
474 case 'r': // General-purpose register
475 if (VT == MVT::i64)
476 return std::make_pair(0U, &SystemZ::GR64BitRegClass);
477 else if (VT == MVT::i128)
478 return std::make_pair(0U, &SystemZ::GR128BitRegClass);
479 return std::make_pair(0U, &SystemZ::GR32BitRegClass);
480
481 case 'a': // Address register
482 if (VT == MVT::i64)
483 return std::make_pair(0U, &SystemZ::ADDR64BitRegClass);
484 else if (VT == MVT::i128)
485 return std::make_pair(0U, &SystemZ::ADDR128BitRegClass);
486 return std::make_pair(0U, &SystemZ::ADDR32BitRegClass);
487
Richard Sandiford0755c932013-10-01 11:26:28 +0000488 case 'h': // High-part register (an LLVM extension)
489 return std::make_pair(0U, &SystemZ::GRH32BitRegClass);
490
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000491 case 'f': // Floating-point register
492 if (VT == MVT::f64)
493 return std::make_pair(0U, &SystemZ::FP64BitRegClass);
494 else if (VT == MVT::f128)
495 return std::make_pair(0U, &SystemZ::FP128BitRegClass);
496 return std::make_pair(0U, &SystemZ::FP32BitRegClass);
497 }
498 }
Richard Sandifordb8204052013-07-12 09:08:12 +0000499 if (Constraint[0] == '{') {
500 // We need to override the default register parsing for GPRs and FPRs
501 // because the interpretation depends on VT. The internal names of
502 // the registers are also different from the external names
503 // (F0D and F0S instead of F0, etc.).
504 if (Constraint[1] == 'r') {
505 if (VT == MVT::i32)
506 return parseRegisterNumber(Constraint, &SystemZ::GR32BitRegClass,
507 SystemZMC::GR32Regs);
508 if (VT == MVT::i128)
509 return parseRegisterNumber(Constraint, &SystemZ::GR128BitRegClass,
510 SystemZMC::GR128Regs);
511 return parseRegisterNumber(Constraint, &SystemZ::GR64BitRegClass,
512 SystemZMC::GR64Regs);
513 }
514 if (Constraint[1] == 'f') {
515 if (VT == MVT::f32)
516 return parseRegisterNumber(Constraint, &SystemZ::FP32BitRegClass,
517 SystemZMC::FP32Regs);
518 if (VT == MVT::f128)
519 return parseRegisterNumber(Constraint, &SystemZ::FP128BitRegClass,
520 SystemZMC::FP128Regs);
521 return parseRegisterNumber(Constraint, &SystemZ::FP64BitRegClass,
522 SystemZMC::FP64Regs);
523 }
524 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000525 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
526}
527
528void SystemZTargetLowering::
529LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
530 std::vector<SDValue> &Ops,
531 SelectionDAG &DAG) const {
532 // Only support length 1 constraints for now.
533 if (Constraint.length() == 1) {
534 switch (Constraint[0]) {
535 case 'I': // Unsigned 8-bit constant
536 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
537 if (isUInt<8>(C->getZExtValue()))
538 Ops.push_back(DAG.getTargetConstant(C->getZExtValue(),
539 Op.getValueType()));
540 return;
541
542 case 'J': // Unsigned 12-bit constant
543 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
544 if (isUInt<12>(C->getZExtValue()))
545 Ops.push_back(DAG.getTargetConstant(C->getZExtValue(),
546 Op.getValueType()));
547 return;
548
549 case 'K': // Signed 16-bit constant
550 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
551 if (isInt<16>(C->getSExtValue()))
552 Ops.push_back(DAG.getTargetConstant(C->getSExtValue(),
553 Op.getValueType()));
554 return;
555
556 case 'L': // Signed 20-bit displacement (on all targets we support)
557 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
558 if (isInt<20>(C->getSExtValue()))
559 Ops.push_back(DAG.getTargetConstant(C->getSExtValue(),
560 Op.getValueType()));
561 return;
562
563 case 'M': // 0x7fffffff
564 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
565 if (C->getZExtValue() == 0x7fffffff)
566 Ops.push_back(DAG.getTargetConstant(C->getZExtValue(),
567 Op.getValueType()));
568 return;
569 }
570 }
571 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
572}
573
574//===----------------------------------------------------------------------===//
575// Calling conventions
576//===----------------------------------------------------------------------===//
577
578#include "SystemZGenCallingConv.inc"
579
Richard Sandiford709bda62013-08-19 12:42:31 +0000580bool SystemZTargetLowering::allowTruncateForTailCall(Type *FromType,
581 Type *ToType) const {
582 return isTruncateFree(FromType, ToType);
583}
584
585bool SystemZTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
586 if (!CI->isTailCall())
587 return false;
588 return true;
589}
590
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000591// Value is a value that has been passed to us in the location described by VA
592// (and so has type VA.getLocVT()). Convert Value to VA.getValVT(), chaining
593// any loads onto Chain.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000594static SDValue convertLocVTToValVT(SelectionDAG &DAG, SDLoc DL,
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000595 CCValAssign &VA, SDValue Chain,
596 SDValue Value) {
597 // If the argument has been promoted from a smaller type, insert an
598 // assertion to capture this.
599 if (VA.getLocInfo() == CCValAssign::SExt)
600 Value = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), Value,
601 DAG.getValueType(VA.getValVT()));
602 else if (VA.getLocInfo() == CCValAssign::ZExt)
603 Value = DAG.getNode(ISD::AssertZext, DL, VA.getLocVT(), Value,
604 DAG.getValueType(VA.getValVT()));
605
606 if (VA.isExtInLoc())
607 Value = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), Value);
608 else if (VA.getLocInfo() == CCValAssign::Indirect)
609 Value = DAG.getLoad(VA.getValVT(), DL, Chain, Value,
610 MachinePointerInfo(), false, false, false, 0);
611 else
612 assert(VA.getLocInfo() == CCValAssign::Full && "Unsupported getLocInfo");
613 return Value;
614}
615
616// Value is a value of type VA.getValVT() that we need to copy into
617// the location described by VA. Return a copy of Value converted to
618// VA.getValVT(). The caller is responsible for handling indirect values.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000619static SDValue convertValVTToLocVT(SelectionDAG &DAG, SDLoc DL,
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000620 CCValAssign &VA, SDValue Value) {
621 switch (VA.getLocInfo()) {
622 case CCValAssign::SExt:
623 return DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), Value);
624 case CCValAssign::ZExt:
625 return DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Value);
626 case CCValAssign::AExt:
627 return DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), Value);
628 case CCValAssign::Full:
629 return Value;
630 default:
631 llvm_unreachable("Unhandled getLocInfo()");
632 }
633}
634
635SDValue SystemZTargetLowering::
636LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
637 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000638 SDLoc DL, SelectionDAG &DAG,
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000639 SmallVectorImpl<SDValue> &InVals) const {
640 MachineFunction &MF = DAG.getMachineFunction();
641 MachineFrameInfo *MFI = MF.getFrameInfo();
642 MachineRegisterInfo &MRI = MF.getRegInfo();
643 SystemZMachineFunctionInfo *FuncInfo =
644 MF.getInfo<SystemZMachineFunctionInfo>();
645 const SystemZFrameLowering *TFL =
646 static_cast<const SystemZFrameLowering *>(TM.getFrameLowering());
647
648 // Assign locations to all of the incoming arguments.
649 SmallVector<CCValAssign, 16> ArgLocs;
650 CCState CCInfo(CallConv, IsVarArg, MF, TM, ArgLocs, *DAG.getContext());
651 CCInfo.AnalyzeFormalArguments(Ins, CC_SystemZ);
652
653 unsigned NumFixedGPRs = 0;
654 unsigned NumFixedFPRs = 0;
655 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
656 SDValue ArgValue;
657 CCValAssign &VA = ArgLocs[I];
658 EVT LocVT = VA.getLocVT();
659 if (VA.isRegLoc()) {
660 // Arguments passed in registers
661 const TargetRegisterClass *RC;
662 switch (LocVT.getSimpleVT().SimpleTy) {
663 default:
664 // Integers smaller than i64 should be promoted to i64.
665 llvm_unreachable("Unexpected argument type");
666 case MVT::i32:
667 NumFixedGPRs += 1;
668 RC = &SystemZ::GR32BitRegClass;
669 break;
670 case MVT::i64:
671 NumFixedGPRs += 1;
672 RC = &SystemZ::GR64BitRegClass;
673 break;
674 case MVT::f32:
675 NumFixedFPRs += 1;
676 RC = &SystemZ::FP32BitRegClass;
677 break;
678 case MVT::f64:
679 NumFixedFPRs += 1;
680 RC = &SystemZ::FP64BitRegClass;
681 break;
682 }
683
684 unsigned VReg = MRI.createVirtualRegister(RC);
685 MRI.addLiveIn(VA.getLocReg(), VReg);
686 ArgValue = DAG.getCopyFromReg(Chain, DL, VReg, LocVT);
687 } else {
688 assert(VA.isMemLoc() && "Argument not register or memory");
689
690 // Create the frame index object for this incoming parameter.
691 int FI = MFI->CreateFixedObject(LocVT.getSizeInBits() / 8,
692 VA.getLocMemOffset(), true);
693
694 // Create the SelectionDAG nodes corresponding to a load
695 // from this parameter. Unpromoted ints and floats are
696 // passed as right-justified 8-byte values.
697 EVT PtrVT = getPointerTy();
698 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
699 if (VA.getLocVT() == MVT::i32 || VA.getLocVT() == MVT::f32)
700 FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4));
701 ArgValue = DAG.getLoad(LocVT, DL, Chain, FIN,
702 MachinePointerInfo::getFixedStack(FI),
703 false, false, false, 0);
704 }
705
706 // Convert the value of the argument register into the value that's
707 // being passed.
708 InVals.push_back(convertLocVTToValVT(DAG, DL, VA, Chain, ArgValue));
709 }
710
711 if (IsVarArg) {
712 // Save the number of non-varargs registers for later use by va_start, etc.
713 FuncInfo->setVarArgsFirstGPR(NumFixedGPRs);
714 FuncInfo->setVarArgsFirstFPR(NumFixedFPRs);
715
716 // Likewise the address (in the form of a frame index) of where the
717 // first stack vararg would be. The 1-byte size here is arbitrary.
718 int64_t StackSize = CCInfo.getNextStackOffset();
719 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize, true));
720
721 // ...and a similar frame index for the caller-allocated save area
722 // that will be used to store the incoming registers.
723 int64_t RegSaveOffset = TFL->getOffsetOfLocalArea();
724 unsigned RegSaveIndex = MFI->CreateFixedObject(1, RegSaveOffset, true);
725 FuncInfo->setRegSaveFrameIndex(RegSaveIndex);
726
727 // Store the FPR varargs in the reserved frame slots. (We store the
728 // GPRs as part of the prologue.)
729 if (NumFixedFPRs < SystemZ::NumArgFPRs) {
730 SDValue MemOps[SystemZ::NumArgFPRs];
731 for (unsigned I = NumFixedFPRs; I < SystemZ::NumArgFPRs; ++I) {
732 unsigned Offset = TFL->getRegSpillOffset(SystemZ::ArgFPRs[I]);
733 int FI = MFI->CreateFixedObject(8, RegSaveOffset + Offset, true);
734 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
735 unsigned VReg = MF.addLiveIn(SystemZ::ArgFPRs[I],
736 &SystemZ::FP64BitRegClass);
737 SDValue ArgValue = DAG.getCopyFromReg(Chain, DL, VReg, MVT::f64);
738 MemOps[I] = DAG.getStore(ArgValue.getValue(1), DL, ArgValue, FIN,
739 MachinePointerInfo::getFixedStack(FI),
740 false, false, 0);
741
742 }
743 // Join the stores, which are independent of one another.
744 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
745 &MemOps[NumFixedFPRs],
746 SystemZ::NumArgFPRs - NumFixedFPRs);
747 }
748 }
749
750 return Chain;
751}
752
Richard Sandiford709bda62013-08-19 12:42:31 +0000753static bool canUseSiblingCall(CCState ArgCCInfo,
754 SmallVectorImpl<CCValAssign> &ArgLocs) {
755 // Punt if there are any indirect or stack arguments, or if the call
756 // needs the call-saved argument register R6.
757 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
758 CCValAssign &VA = ArgLocs[I];
759 if (VA.getLocInfo() == CCValAssign::Indirect)
760 return false;
761 if (!VA.isRegLoc())
762 return false;
763 unsigned Reg = VA.getLocReg();
Richard Sandiford0755c932013-10-01 11:26:28 +0000764 if (Reg == SystemZ::R6H || Reg == SystemZ::R6L || Reg == SystemZ::R6D)
Richard Sandiford709bda62013-08-19 12:42:31 +0000765 return false;
766 }
767 return true;
768}
769
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000770SDValue
771SystemZTargetLowering::LowerCall(CallLoweringInfo &CLI,
772 SmallVectorImpl<SDValue> &InVals) const {
773 SelectionDAG &DAG = CLI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000774 SDLoc &DL = CLI.DL;
Craig Topperb94011f2013-07-14 04:42:23 +0000775 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
776 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
777 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000778 SDValue Chain = CLI.Chain;
779 SDValue Callee = CLI.Callee;
Richard Sandiford709bda62013-08-19 12:42:31 +0000780 bool &IsTailCall = CLI.IsTailCall;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000781 CallingConv::ID CallConv = CLI.CallConv;
782 bool IsVarArg = CLI.IsVarArg;
783 MachineFunction &MF = DAG.getMachineFunction();
784 EVT PtrVT = getPointerTy();
785
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000786 // Analyze the operands of the call, assigning locations to each operand.
787 SmallVector<CCValAssign, 16> ArgLocs;
788 CCState ArgCCInfo(CallConv, IsVarArg, MF, TM, ArgLocs, *DAG.getContext());
789 ArgCCInfo.AnalyzeCallOperands(Outs, CC_SystemZ);
790
Richard Sandiford709bda62013-08-19 12:42:31 +0000791 // We don't support GuaranteedTailCallOpt, only automatically-detected
792 // sibling calls.
793 if (IsTailCall && !canUseSiblingCall(ArgCCInfo, ArgLocs))
794 IsTailCall = false;
795
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000796 // Get a count of how many bytes are to be pushed on the stack.
797 unsigned NumBytes = ArgCCInfo.getNextStackOffset();
798
799 // Mark the start of the call.
Richard Sandiford709bda62013-08-19 12:42:31 +0000800 if (!IsTailCall)
801 Chain = DAG.getCALLSEQ_START(Chain, DAG.getConstant(NumBytes, PtrVT, true),
802 DL);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000803
804 // Copy argument values to their designated locations.
805 SmallVector<std::pair<unsigned, SDValue>, 9> RegsToPass;
806 SmallVector<SDValue, 8> MemOpChains;
807 SDValue StackPtr;
808 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
809 CCValAssign &VA = ArgLocs[I];
810 SDValue ArgValue = OutVals[I];
811
812 if (VA.getLocInfo() == CCValAssign::Indirect) {
813 // Store the argument in a stack slot and pass its address.
814 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
815 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
816 MemOpChains.push_back(DAG.getStore(Chain, DL, ArgValue, SpillSlot,
817 MachinePointerInfo::getFixedStack(FI),
818 false, false, 0));
819 ArgValue = SpillSlot;
820 } else
821 ArgValue = convertValVTToLocVT(DAG, DL, VA, ArgValue);
822
823 if (VA.isRegLoc())
824 // Queue up the argument copies and emit them at the end.
825 RegsToPass.push_back(std::make_pair(VA.getLocReg(), ArgValue));
826 else {
827 assert(VA.isMemLoc() && "Argument not register or memory");
828
829 // Work out the address of the stack slot. Unpromoted ints and
830 // floats are passed as right-justified 8-byte values.
831 if (!StackPtr.getNode())
832 StackPtr = DAG.getCopyFromReg(Chain, DL, SystemZ::R15D, PtrVT);
833 unsigned Offset = SystemZMC::CallFrameSize + VA.getLocMemOffset();
834 if (VA.getLocVT() == MVT::i32 || VA.getLocVT() == MVT::f32)
835 Offset += 4;
836 SDValue Address = DAG.getNode(ISD::ADD, DL, PtrVT, StackPtr,
837 DAG.getIntPtrConstant(Offset));
838
839 // Emit the store.
840 MemOpChains.push_back(DAG.getStore(Chain, DL, ArgValue, Address,
841 MachinePointerInfo(),
842 false, false, 0));
843 }
844 }
845
846 // Join the stores, which are independent of one another.
847 if (!MemOpChains.empty())
848 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
849 &MemOpChains[0], MemOpChains.size());
850
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000851 // Accept direct calls by converting symbolic call addresses to the
Richard Sandiford709bda62013-08-19 12:42:31 +0000852 // associated Target* opcodes. Force %r1 to be used for indirect
853 // tail calls.
854 SDValue Glue;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000855 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
856 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), DL, PtrVT);
857 Callee = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Callee);
858 } else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) {
859 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT);
860 Callee = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Callee);
Richard Sandiford709bda62013-08-19 12:42:31 +0000861 } else if (IsTailCall) {
862 Chain = DAG.getCopyToReg(Chain, DL, SystemZ::R1D, Callee, Glue);
863 Glue = Chain.getValue(1);
864 Callee = DAG.getRegister(SystemZ::R1D, Callee.getValueType());
865 }
866
867 // Build a sequence of copy-to-reg nodes, chained and glued together.
868 for (unsigned I = 0, E = RegsToPass.size(); I != E; ++I) {
869 Chain = DAG.getCopyToReg(Chain, DL, RegsToPass[I].first,
870 RegsToPass[I].second, Glue);
871 Glue = Chain.getValue(1);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000872 }
873
874 // The first call operand is the chain and the second is the target address.
875 SmallVector<SDValue, 8> Ops;
876 Ops.push_back(Chain);
877 Ops.push_back(Callee);
878
879 // Add argument registers to the end of the list so that they are
880 // known live into the call.
881 for (unsigned I = 0, E = RegsToPass.size(); I != E; ++I)
882 Ops.push_back(DAG.getRegister(RegsToPass[I].first,
883 RegsToPass[I].second.getValueType()));
884
885 // Glue the call to the argument copies, if any.
886 if (Glue.getNode())
887 Ops.push_back(Glue);
888
889 // Emit the call.
890 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Richard Sandiford709bda62013-08-19 12:42:31 +0000891 if (IsTailCall)
892 return DAG.getNode(SystemZISD::SIBCALL, DL, NodeTys, &Ops[0], Ops.size());
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000893 Chain = DAG.getNode(SystemZISD::CALL, DL, NodeTys, &Ops[0], Ops.size());
894 Glue = Chain.getValue(1);
895
896 // Mark the end of the call, which is glued to the call itself.
897 Chain = DAG.getCALLSEQ_END(Chain,
898 DAG.getConstant(NumBytes, PtrVT, true),
899 DAG.getConstant(0, PtrVT, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +0000900 Glue, DL);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000901 Glue = Chain.getValue(1);
902
903 // Assign locations to each value returned by this call.
904 SmallVector<CCValAssign, 16> RetLocs;
905 CCState RetCCInfo(CallConv, IsVarArg, MF, TM, RetLocs, *DAG.getContext());
906 RetCCInfo.AnalyzeCallResult(Ins, RetCC_SystemZ);
907
908 // Copy all of the result registers out of their specified physreg.
909 for (unsigned I = 0, E = RetLocs.size(); I != E; ++I) {
910 CCValAssign &VA = RetLocs[I];
911
912 // Copy the value out, gluing the copy to the end of the call sequence.
913 SDValue RetValue = DAG.getCopyFromReg(Chain, DL, VA.getLocReg(),
914 VA.getLocVT(), Glue);
915 Chain = RetValue.getValue(1);
916 Glue = RetValue.getValue(2);
917
918 // Convert the value of the return register into the value that's
919 // being returned.
920 InVals.push_back(convertLocVTToValVT(DAG, DL, VA, Chain, RetValue));
921 }
922
923 return Chain;
924}
925
926SDValue
927SystemZTargetLowering::LowerReturn(SDValue Chain,
928 CallingConv::ID CallConv, bool IsVarArg,
929 const SmallVectorImpl<ISD::OutputArg> &Outs,
930 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000931 SDLoc DL, SelectionDAG &DAG) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000932 MachineFunction &MF = DAG.getMachineFunction();
933
934 // Assign locations to each returned value.
935 SmallVector<CCValAssign, 16> RetLocs;
936 CCState RetCCInfo(CallConv, IsVarArg, MF, TM, RetLocs, *DAG.getContext());
937 RetCCInfo.AnalyzeReturn(Outs, RetCC_SystemZ);
938
939 // Quick exit for void returns
940 if (RetLocs.empty())
941 return DAG.getNode(SystemZISD::RET_FLAG, DL, MVT::Other, Chain);
942
943 // Copy the result values into the output registers.
944 SDValue Glue;
945 SmallVector<SDValue, 4> RetOps;
946 RetOps.push_back(Chain);
947 for (unsigned I = 0, E = RetLocs.size(); I != E; ++I) {
948 CCValAssign &VA = RetLocs[I];
949 SDValue RetValue = OutVals[I];
950
951 // Make the return register live on exit.
952 assert(VA.isRegLoc() && "Can only return in registers!");
953
954 // Promote the value as required.
955 RetValue = convertValVTToLocVT(DAG, DL, VA, RetValue);
956
957 // Chain and glue the copies together.
958 unsigned Reg = VA.getLocReg();
959 Chain = DAG.getCopyToReg(Chain, DL, Reg, RetValue, Glue);
960 Glue = Chain.getValue(1);
961 RetOps.push_back(DAG.getRegister(Reg, VA.getLocVT()));
962 }
963
964 // Update chain and glue.
965 RetOps[0] = Chain;
966 if (Glue.getNode())
967 RetOps.push_back(Glue);
968
969 return DAG.getNode(SystemZISD::RET_FLAG, DL, MVT::Other,
970 RetOps.data(), RetOps.size());
971}
972
Richard Sandiford9afe6132013-12-10 10:36:34 +0000973SDValue SystemZTargetLowering::
974prepareVolatileOrAtomicLoad(SDValue Chain, SDLoc DL, SelectionDAG &DAG) const {
975 return DAG.getNode(SystemZISD::SERIALIZE, DL, MVT::Other, Chain);
976}
977
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000978// CC is a comparison that will be implemented using an integer or
979// floating-point comparison. Return the condition code mask for
980// a branch on true. In the integer case, CCMASK_CMP_UO is set for
981// unsigned comparisons and clear for signed ones. In the floating-point
982// case, CCMASK_CMP_UO has its normal mask meaning (unordered).
983static unsigned CCMaskForCondCode(ISD::CondCode CC) {
984#define CONV(X) \
985 case ISD::SET##X: return SystemZ::CCMASK_CMP_##X; \
986 case ISD::SETO##X: return SystemZ::CCMASK_CMP_##X; \
987 case ISD::SETU##X: return SystemZ::CCMASK_CMP_UO | SystemZ::CCMASK_CMP_##X
988
989 switch (CC) {
990 default:
991 llvm_unreachable("Invalid integer condition!");
992
993 CONV(EQ);
994 CONV(NE);
995 CONV(GT);
996 CONV(GE);
997 CONV(LT);
998 CONV(LE);
999
1000 case ISD::SETO: return SystemZ::CCMASK_CMP_O;
1001 case ISD::SETUO: return SystemZ::CCMASK_CMP_UO;
1002 }
1003#undef CONV
1004}
1005
Richard Sandifordf722a8e302013-10-16 11:10:55 +00001006// Return a sequence for getting a 1 from an IPM result when CC has a
1007// value in CCMask and a 0 when CC has a value in CCValid & ~CCMask.
1008// The handling of CC values outside CCValid doesn't matter.
1009static IPMConversion getIPMConversion(unsigned CCValid, unsigned CCMask) {
1010 // Deal with cases where the result can be taken directly from a bit
1011 // of the IPM result.
1012 if (CCMask == (CCValid & (SystemZ::CCMASK_1 | SystemZ::CCMASK_3)))
1013 return IPMConversion(0, 0, SystemZ::IPM_CC);
1014 if (CCMask == (CCValid & (SystemZ::CCMASK_2 | SystemZ::CCMASK_3)))
1015 return IPMConversion(0, 0, SystemZ::IPM_CC + 1);
1016
1017 // Deal with cases where we can add a value to force the sign bit
1018 // to contain the right value. Putting the bit in 31 means we can
1019 // use SRL rather than RISBG(L), and also makes it easier to get a
1020 // 0/-1 value, so it has priority over the other tests below.
1021 //
1022 // These sequences rely on the fact that the upper two bits of the
1023 // IPM result are zero.
1024 uint64_t TopBit = uint64_t(1) << 31;
1025 if (CCMask == (CCValid & SystemZ::CCMASK_0))
1026 return IPMConversion(0, -(1 << SystemZ::IPM_CC), 31);
1027 if (CCMask == (CCValid & (SystemZ::CCMASK_0 | SystemZ::CCMASK_1)))
1028 return IPMConversion(0, -(2 << SystemZ::IPM_CC), 31);
1029 if (CCMask == (CCValid & (SystemZ::CCMASK_0
1030 | SystemZ::CCMASK_1
1031 | SystemZ::CCMASK_2)))
1032 return IPMConversion(0, -(3 << SystemZ::IPM_CC), 31);
1033 if (CCMask == (CCValid & SystemZ::CCMASK_3))
1034 return IPMConversion(0, TopBit - (3 << SystemZ::IPM_CC), 31);
1035 if (CCMask == (CCValid & (SystemZ::CCMASK_1
1036 | SystemZ::CCMASK_2
1037 | SystemZ::CCMASK_3)))
1038 return IPMConversion(0, TopBit - (1 << SystemZ::IPM_CC), 31);
1039
1040 // Next try inverting the value and testing a bit. 0/1 could be
1041 // handled this way too, but we dealt with that case above.
1042 if (CCMask == (CCValid & (SystemZ::CCMASK_0 | SystemZ::CCMASK_2)))
1043 return IPMConversion(-1, 0, SystemZ::IPM_CC);
1044
1045 // Handle cases where adding a value forces a non-sign bit to contain
1046 // the right value.
1047 if (CCMask == (CCValid & (SystemZ::CCMASK_1 | SystemZ::CCMASK_2)))
1048 return IPMConversion(0, 1 << SystemZ::IPM_CC, SystemZ::IPM_CC + 1);
1049 if (CCMask == (CCValid & (SystemZ::CCMASK_0 | SystemZ::CCMASK_3)))
1050 return IPMConversion(0, -(1 << SystemZ::IPM_CC), SystemZ::IPM_CC + 1);
1051
1052 // The remaing cases are 1, 2, 0/1/3 and 0/2/3. All these are
1053 // can be done by inverting the low CC bit and applying one of the
1054 // sign-based extractions above.
1055 if (CCMask == (CCValid & SystemZ::CCMASK_1))
1056 return IPMConversion(1 << SystemZ::IPM_CC, -(1 << SystemZ::IPM_CC), 31);
1057 if (CCMask == (CCValid & SystemZ::CCMASK_2))
1058 return IPMConversion(1 << SystemZ::IPM_CC,
1059 TopBit - (3 << SystemZ::IPM_CC), 31);
1060 if (CCMask == (CCValid & (SystemZ::CCMASK_0
1061 | SystemZ::CCMASK_1
1062 | SystemZ::CCMASK_3)))
1063 return IPMConversion(1 << SystemZ::IPM_CC, -(3 << SystemZ::IPM_CC), 31);
1064 if (CCMask == (CCValid & (SystemZ::CCMASK_0
1065 | SystemZ::CCMASK_2
1066 | SystemZ::CCMASK_3)))
1067 return IPMConversion(1 << SystemZ::IPM_CC,
1068 TopBit - (1 << SystemZ::IPM_CC), 31);
1069
1070 llvm_unreachable("Unexpected CC combination");
1071}
1072
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001073// If a comparison described by IsUnsigned, CCMask, CmpOp0 and CmpOp1
Richard Sandiforda0757082013-08-01 10:29:45 +00001074// can be converted to a comparison against zero, adjust the operands
1075// as necessary.
1076static void adjustZeroCmp(SelectionDAG &DAG, bool &IsUnsigned,
1077 SDValue &CmpOp0, SDValue &CmpOp1,
1078 unsigned &CCMask) {
1079 if (IsUnsigned)
1080 return;
1081
1082 ConstantSDNode *ConstOp1 = dyn_cast<ConstantSDNode>(CmpOp1.getNode());
1083 if (!ConstOp1)
1084 return;
1085
1086 int64_t Value = ConstOp1->getSExtValue();
1087 if ((Value == -1 && CCMask == SystemZ::CCMASK_CMP_GT) ||
1088 (Value == -1 && CCMask == SystemZ::CCMASK_CMP_LE) ||
1089 (Value == 1 && CCMask == SystemZ::CCMASK_CMP_LT) ||
1090 (Value == 1 && CCMask == SystemZ::CCMASK_CMP_GE)) {
1091 CCMask ^= SystemZ::CCMASK_CMP_EQ;
1092 CmpOp1 = DAG.getConstant(0, CmpOp1.getValueType());
1093 }
1094}
1095
1096// If a comparison described by IsUnsigned, CCMask, CmpOp0 and CmpOp1
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001097// is suitable for CLI(Y), CHHSI or CLHHSI, adjust the operands as necessary.
1098static void adjustSubwordCmp(SelectionDAG &DAG, bool &IsUnsigned,
1099 SDValue &CmpOp0, SDValue &CmpOp1,
1100 unsigned &CCMask) {
1101 // For us to make any changes, it must a comparison between a single-use
1102 // load and a constant.
1103 if (!CmpOp0.hasOneUse() ||
1104 CmpOp0.getOpcode() != ISD::LOAD ||
1105 CmpOp1.getOpcode() != ISD::Constant)
1106 return;
1107
1108 // We must have an 8- or 16-bit load.
1109 LoadSDNode *Load = cast<LoadSDNode>(CmpOp0);
1110 unsigned NumBits = Load->getMemoryVT().getStoreSizeInBits();
1111 if (NumBits != 8 && NumBits != 16)
1112 return;
1113
1114 // The load must be an extending one and the constant must be within the
1115 // range of the unextended value.
1116 ConstantSDNode *Constant = cast<ConstantSDNode>(CmpOp1);
1117 uint64_t Value = Constant->getZExtValue();
1118 uint64_t Mask = (1 << NumBits) - 1;
1119 if (Load->getExtensionType() == ISD::SEXTLOAD) {
1120 int64_t SignedValue = Constant->getSExtValue();
Aaron Ballmanb4284e62013-05-16 16:03:36 +00001121 if (uint64_t(SignedValue) + (1ULL << (NumBits - 1)) > Mask)
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001122 return;
1123 // Unsigned comparison between two sign-extended values is equivalent
1124 // to unsigned comparison between two zero-extended values.
1125 if (IsUnsigned)
1126 Value &= Mask;
1127 else if (CCMask == SystemZ::CCMASK_CMP_EQ ||
1128 CCMask == SystemZ::CCMASK_CMP_NE)
1129 // Any choice of IsUnsigned is OK for equality comparisons.
1130 // We could use either CHHSI or CLHHSI for 16-bit comparisons,
1131 // but since we use CLHHSI for zero extensions, it seems better
1132 // to be consistent and do the same here.
1133 Value &= Mask, IsUnsigned = true;
1134 else if (NumBits == 8) {
1135 // Try to treat the comparison as unsigned, so that we can use CLI.
1136 // Adjust CCMask and Value as necessary.
1137 if (Value == 0 && CCMask == SystemZ::CCMASK_CMP_LT)
1138 // Test whether the high bit of the byte is set.
1139 Value = 127, CCMask = SystemZ::CCMASK_CMP_GT, IsUnsigned = true;
Richard Sandiforda0757082013-08-01 10:29:45 +00001140 else if (Value == 0 && CCMask == SystemZ::CCMASK_CMP_GE)
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001141 // Test whether the high bit of the byte is clear.
1142 Value = 128, CCMask = SystemZ::CCMASK_CMP_LT, IsUnsigned = true;
1143 else
1144 // No instruction exists for this combination.
1145 return;
1146 }
1147 } else if (Load->getExtensionType() == ISD::ZEXTLOAD) {
1148 if (Value > Mask)
1149 return;
1150 // Signed comparison between two zero-extended values is equivalent
1151 // to unsigned comparison.
1152 IsUnsigned = true;
1153 } else
1154 return;
1155
1156 // Make sure that the first operand is an i32 of the right extension type.
1157 ISD::LoadExtType ExtType = IsUnsigned ? ISD::ZEXTLOAD : ISD::SEXTLOAD;
1158 if (CmpOp0.getValueType() != MVT::i32 ||
1159 Load->getExtensionType() != ExtType)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001160 CmpOp0 = DAG.getExtLoad(ExtType, SDLoc(Load), MVT::i32,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001161 Load->getChain(), Load->getBasePtr(),
1162 Load->getPointerInfo(), Load->getMemoryVT(),
1163 Load->isVolatile(), Load->isNonTemporal(),
1164 Load->getAlignment());
1165
1166 // Make sure that the second operand is an i32 with the right value.
1167 if (CmpOp1.getValueType() != MVT::i32 ||
1168 Value != Constant->getZExtValue())
1169 CmpOp1 = DAG.getConstant(Value, MVT::i32);
1170}
1171
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001172// Return true if Op is either an unextended load, or a load suitable
1173// for integer register-memory comparisons of type ICmpType.
1174static bool isNaturalMemoryOperand(SDValue Op, unsigned ICmpType) {
Richard Sandiford24e597b2013-08-23 11:27:19 +00001175 LoadSDNode *Load = dyn_cast<LoadSDNode>(Op.getNode());
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001176 if (Load) {
1177 // There are no instructions to compare a register with a memory byte.
1178 if (Load->getMemoryVT() == MVT::i8)
1179 return false;
1180 // Otherwise decide on extension type.
Richard Sandiford24e597b2013-08-23 11:27:19 +00001181 switch (Load->getExtensionType()) {
1182 case ISD::NON_EXTLOAD:
Richard Sandiford24e597b2013-08-23 11:27:19 +00001183 return true;
1184 case ISD::SEXTLOAD:
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001185 return ICmpType != SystemZICMP::UnsignedOnly;
Richard Sandiford24e597b2013-08-23 11:27:19 +00001186 case ISD::ZEXTLOAD:
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001187 return ICmpType != SystemZICMP::SignedOnly;
Richard Sandiford24e597b2013-08-23 11:27:19 +00001188 default:
1189 break;
1190 }
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001191 }
Richard Sandiford24e597b2013-08-23 11:27:19 +00001192 return false;
1193}
1194
1195// Return true if it is better to swap comparison operands Op0 and Op1.
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001196// ICmpType is the type of an integer comparison.
Richard Sandiford24e597b2013-08-23 11:27:19 +00001197static bool shouldSwapCmpOperands(SDValue Op0, SDValue Op1,
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001198 unsigned ICmpType) {
Richard Sandiford24e597b2013-08-23 11:27:19 +00001199 // Leave f128 comparisons alone, since they have no memory forms.
1200 if (Op0.getValueType() == MVT::f128)
1201 return false;
1202
1203 // Always keep a floating-point constant second, since comparisons with
1204 // zero can use LOAD TEST and comparisons with other constants make a
1205 // natural memory operand.
1206 if (isa<ConstantFPSDNode>(Op1))
1207 return false;
1208
1209 // Never swap comparisons with zero since there are many ways to optimize
1210 // those later.
1211 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
1212 if (COp1 && COp1->getZExtValue() == 0)
1213 return false;
1214
Richard Sandiford7b4118a2013-12-06 09:56:50 +00001215 // Also keep natural memory operands second if the loaded value is
1216 // only used here. Several comparisons have memory forms.
1217 if (isNaturalMemoryOperand(Op1, ICmpType) && Op1.hasOneUse())
1218 return false;
1219
Richard Sandiford24e597b2013-08-23 11:27:19 +00001220 // Look for cases where Cmp0 is a single-use load and Cmp1 isn't.
1221 // In that case we generally prefer the memory to be second.
Richard Sandiford7b4118a2013-12-06 09:56:50 +00001222 if (isNaturalMemoryOperand(Op0, ICmpType) && Op0.hasOneUse()) {
Richard Sandiford24e597b2013-08-23 11:27:19 +00001223 // The only exceptions are when the second operand is a constant and
1224 // we can use things like CHHSI.
1225 if (!COp1)
1226 return true;
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001227 // The unsigned memory-immediate instructions can handle 16-bit
1228 // unsigned integers.
1229 if (ICmpType != SystemZICMP::SignedOnly &&
1230 isUInt<16>(COp1->getZExtValue()))
1231 return false;
1232 // The signed memory-immediate instructions can handle 16-bit
1233 // signed integers.
1234 if (ICmpType != SystemZICMP::UnsignedOnly &&
1235 isInt<16>(COp1->getSExtValue()))
1236 return false;
Richard Sandiford24e597b2013-08-23 11:27:19 +00001237 return true;
1238 }
Richard Sandiford7b4118a2013-12-06 09:56:50 +00001239
1240 // Try to promote the use of CGFR and CLGFR.
1241 unsigned Opcode0 = Op0.getOpcode();
1242 if (ICmpType != SystemZICMP::UnsignedOnly && Opcode0 == ISD::SIGN_EXTEND)
1243 return true;
1244 if (ICmpType != SystemZICMP::SignedOnly && Opcode0 == ISD::ZERO_EXTEND)
1245 return true;
1246 if (ICmpType != SystemZICMP::SignedOnly &&
1247 Opcode0 == ISD::AND &&
1248 Op0.getOperand(1).getOpcode() == ISD::Constant &&
1249 cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue() == 0xffffffff)
1250 return true;
1251
Richard Sandiford24e597b2013-08-23 11:27:19 +00001252 return false;
1253}
1254
Richard Sandiford030c1652013-09-13 09:09:50 +00001255// Return true if shift operation N has an in-range constant shift value.
1256// Store it in ShiftVal if so.
1257static bool isSimpleShift(SDValue N, unsigned &ShiftVal) {
1258 ConstantSDNode *Shift = dyn_cast<ConstantSDNode>(N.getOperand(1));
1259 if (!Shift)
1260 return false;
1261
1262 uint64_t Amount = Shift->getZExtValue();
1263 if (Amount >= N.getValueType().getSizeInBits())
1264 return false;
1265
1266 ShiftVal = Amount;
1267 return true;
1268}
1269
1270// Check whether an AND with Mask is suitable for a TEST UNDER MASK
1271// instruction and whether the CC value is descriptive enough to handle
1272// a comparison of type Opcode between the AND result and CmpVal.
1273// CCMask says which comparison result is being tested and BitSize is
1274// the number of bits in the operands. If TEST UNDER MASK can be used,
1275// return the corresponding CC mask, otherwise return 0.
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001276static unsigned getTestUnderMaskCond(unsigned BitSize, unsigned CCMask,
1277 uint64_t Mask, uint64_t CmpVal,
1278 unsigned ICmpType) {
Richard Sandiford113c8702013-09-03 15:38:35 +00001279 assert(Mask != 0 && "ANDs with zero should have been removed by now");
1280
Richard Sandiford030c1652013-09-13 09:09:50 +00001281 // Check whether the mask is suitable for TMHH, TMHL, TMLH or TMLL.
1282 if (!SystemZ::isImmLL(Mask) && !SystemZ::isImmLH(Mask) &&
1283 !SystemZ::isImmHL(Mask) && !SystemZ::isImmHH(Mask))
1284 return 0;
1285
Richard Sandiford113c8702013-09-03 15:38:35 +00001286 // Work out the masks for the lowest and highest bits.
1287 unsigned HighShift = 63 - countLeadingZeros(Mask);
1288 uint64_t High = uint64_t(1) << HighShift;
1289 uint64_t Low = uint64_t(1) << countTrailingZeros(Mask);
1290
1291 // Signed ordered comparisons are effectively unsigned if the sign
1292 // bit is dropped.
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001293 bool EffectivelyUnsigned = (ICmpType != SystemZICMP::SignedOnly);
Richard Sandiford113c8702013-09-03 15:38:35 +00001294
1295 // Check for equality comparisons with 0, or the equivalent.
1296 if (CmpVal == 0) {
1297 if (CCMask == SystemZ::CCMASK_CMP_EQ)
1298 return SystemZ::CCMASK_TM_ALL_0;
1299 if (CCMask == SystemZ::CCMASK_CMP_NE)
1300 return SystemZ::CCMASK_TM_SOME_1;
1301 }
1302 if (EffectivelyUnsigned && CmpVal <= Low) {
1303 if (CCMask == SystemZ::CCMASK_CMP_LT)
1304 return SystemZ::CCMASK_TM_ALL_0;
1305 if (CCMask == SystemZ::CCMASK_CMP_GE)
1306 return SystemZ::CCMASK_TM_SOME_1;
1307 }
1308 if (EffectivelyUnsigned && CmpVal < Low) {
1309 if (CCMask == SystemZ::CCMASK_CMP_LE)
1310 return SystemZ::CCMASK_TM_ALL_0;
1311 if (CCMask == SystemZ::CCMASK_CMP_GT)
1312 return SystemZ::CCMASK_TM_SOME_1;
1313 }
1314
1315 // Check for equality comparisons with the mask, or the equivalent.
1316 if (CmpVal == Mask) {
1317 if (CCMask == SystemZ::CCMASK_CMP_EQ)
1318 return SystemZ::CCMASK_TM_ALL_1;
1319 if (CCMask == SystemZ::CCMASK_CMP_NE)
1320 return SystemZ::CCMASK_TM_SOME_0;
1321 }
1322 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) {
1323 if (CCMask == SystemZ::CCMASK_CMP_GT)
1324 return SystemZ::CCMASK_TM_ALL_1;
1325 if (CCMask == SystemZ::CCMASK_CMP_LE)
1326 return SystemZ::CCMASK_TM_SOME_0;
1327 }
1328 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) {
1329 if (CCMask == SystemZ::CCMASK_CMP_GE)
1330 return SystemZ::CCMASK_TM_ALL_1;
1331 if (CCMask == SystemZ::CCMASK_CMP_LT)
1332 return SystemZ::CCMASK_TM_SOME_0;
1333 }
1334
1335 // Check for ordered comparisons with the top bit.
1336 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) {
1337 if (CCMask == SystemZ::CCMASK_CMP_LE)
1338 return SystemZ::CCMASK_TM_MSB_0;
1339 if (CCMask == SystemZ::CCMASK_CMP_GT)
1340 return SystemZ::CCMASK_TM_MSB_1;
1341 }
1342 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) {
1343 if (CCMask == SystemZ::CCMASK_CMP_LT)
1344 return SystemZ::CCMASK_TM_MSB_0;
1345 if (CCMask == SystemZ::CCMASK_CMP_GE)
1346 return SystemZ::CCMASK_TM_MSB_1;
1347 }
1348
1349 // If there are just two bits, we can do equality checks for Low and High
1350 // as well.
1351 if (Mask == Low + High) {
1352 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low)
1353 return SystemZ::CCMASK_TM_MIXED_MSB_0;
1354 if (CCMask == SystemZ::CCMASK_CMP_NE && CmpVal == Low)
1355 return SystemZ::CCMASK_TM_MIXED_MSB_0 ^ SystemZ::CCMASK_ANY;
1356 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == High)
1357 return SystemZ::CCMASK_TM_MIXED_MSB_1;
1358 if (CCMask == SystemZ::CCMASK_CMP_NE && CmpVal == High)
1359 return SystemZ::CCMASK_TM_MIXED_MSB_1 ^ SystemZ::CCMASK_ANY;
1360 }
1361
1362 // Looks like we've exhausted our options.
1363 return 0;
1364}
1365
Richard Sandiforda9eb9972013-09-10 10:20:32 +00001366// See whether the comparison (Opcode CmpOp0, CmpOp1, ICmpType) can be
1367// implemented as a TEST UNDER MASK instruction when the condition being
1368// tested is as described by CCValid and CCMask. Update the arguments
1369// with the TM version if so.
Richard Sandiford030c1652013-09-13 09:09:50 +00001370static void adjustForTestUnderMask(SelectionDAG &DAG, unsigned &Opcode,
1371 SDValue &CmpOp0, SDValue &CmpOp1,
1372 unsigned &CCValid, unsigned &CCMask,
1373 unsigned &ICmpType) {
Richard Sandiford113c8702013-09-03 15:38:35 +00001374 // Check that we have a comparison with a constant.
Richard Sandiford35b9be22013-08-28 10:31:43 +00001375 ConstantSDNode *ConstCmpOp1 = dyn_cast<ConstantSDNode>(CmpOp1);
Richard Sandiford113c8702013-09-03 15:38:35 +00001376 if (!ConstCmpOp1)
Richard Sandiford35b9be22013-08-28 10:31:43 +00001377 return;
Richard Sandiford030c1652013-09-13 09:09:50 +00001378 uint64_t CmpVal = ConstCmpOp1->getZExtValue();
Richard Sandiford35b9be22013-08-28 10:31:43 +00001379
1380 // Check whether the nonconstant input is an AND with a constant mask.
1381 if (CmpOp0.getOpcode() != ISD::AND)
1382 return;
1383 SDValue AndOp0 = CmpOp0.getOperand(0);
1384 SDValue AndOp1 = CmpOp0.getOperand(1);
1385 ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(AndOp1.getNode());
1386 if (!Mask)
1387 return;
Richard Sandiford35b9be22013-08-28 10:31:43 +00001388 uint64_t MaskVal = Mask->getZExtValue();
Richard Sandiford35b9be22013-08-28 10:31:43 +00001389
Richard Sandiford113c8702013-09-03 15:38:35 +00001390 // Check whether the combination of mask, comparison value and comparison
1391 // type are suitable.
1392 unsigned BitSize = CmpOp0.getValueType().getSizeInBits();
Richard Sandiford030c1652013-09-13 09:09:50 +00001393 unsigned NewCCMask, ShiftVal;
1394 if (ICmpType != SystemZICMP::SignedOnly &&
1395 AndOp0.getOpcode() == ISD::SHL &&
1396 isSimpleShift(AndOp0, ShiftVal) &&
1397 (NewCCMask = getTestUnderMaskCond(BitSize, CCMask, MaskVal >> ShiftVal,
1398 CmpVal >> ShiftVal,
1399 SystemZICMP::Any))) {
1400 AndOp0 = AndOp0.getOperand(0);
1401 AndOp1 = DAG.getConstant(MaskVal >> ShiftVal, AndOp0.getValueType());
1402 } else if (ICmpType != SystemZICMP::SignedOnly &&
1403 AndOp0.getOpcode() == ISD::SRL &&
1404 isSimpleShift(AndOp0, ShiftVal) &&
1405 (NewCCMask = getTestUnderMaskCond(BitSize, CCMask,
1406 MaskVal << ShiftVal,
1407 CmpVal << ShiftVal,
1408 SystemZICMP::UnsignedOnly))) {
1409 AndOp0 = AndOp0.getOperand(0);
1410 AndOp1 = DAG.getConstant(MaskVal << ShiftVal, AndOp0.getValueType());
1411 } else {
1412 NewCCMask = getTestUnderMaskCond(BitSize, CCMask, MaskVal, CmpVal,
1413 ICmpType);
1414 if (!NewCCMask)
1415 return;
1416 }
Richard Sandiford113c8702013-09-03 15:38:35 +00001417
Richard Sandiford35b9be22013-08-28 10:31:43 +00001418 // Go ahead and make the change.
1419 Opcode = SystemZISD::TM;
1420 CmpOp0 = AndOp0;
1421 CmpOp1 = AndOp1;
Richard Sandiforda9eb9972013-09-10 10:20:32 +00001422 ICmpType = (bool(NewCCMask & SystemZ::CCMASK_TM_MIXED_MSB_0) !=
1423 bool(NewCCMask & SystemZ::CCMASK_TM_MIXED_MSB_1));
Richard Sandiford35b9be22013-08-28 10:31:43 +00001424 CCValid = SystemZ::CCMASK_TM;
Richard Sandiford113c8702013-09-03 15:38:35 +00001425 CCMask = NewCCMask;
Richard Sandiford35b9be22013-08-28 10:31:43 +00001426}
1427
Richard Sandiford3d768e32013-07-31 12:30:20 +00001428// Return a target node that compares CmpOp0 with CmpOp1 and stores a
1429// 2-bit result in CC. Set CCValid to the CCMASK_* of all possible
1430// 2-bit results and CCMask to the subset of those results that are
1431// associated with Cond.
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001432static SDValue emitCmp(const SystemZTargetMachine &TM, SelectionDAG &DAG,
1433 SDLoc DL, SDValue CmpOp0, SDValue CmpOp1,
1434 ISD::CondCode Cond, unsigned &CCValid,
Richard Sandiford3d768e32013-07-31 12:30:20 +00001435 unsigned &CCMask) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001436 bool IsUnsigned = false;
Richard Sandiford3d768e32013-07-31 12:30:20 +00001437 CCMask = CCMaskForCondCode(Cond);
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001438 unsigned Opcode, ICmpType = 0;
1439 if (CmpOp0.getValueType().isFloatingPoint()) {
Richard Sandiford3d768e32013-07-31 12:30:20 +00001440 CCValid = SystemZ::CCMASK_FCMP;
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001441 Opcode = SystemZISD::FCMP;
1442 } else {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001443 IsUnsigned = CCMask & SystemZ::CCMASK_CMP_UO;
Richard Sandiford3d768e32013-07-31 12:30:20 +00001444 CCValid = SystemZ::CCMASK_ICMP;
1445 CCMask &= CCValid;
Richard Sandiforda0757082013-08-01 10:29:45 +00001446 adjustZeroCmp(DAG, IsUnsigned, CmpOp0, CmpOp1, CCMask);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001447 adjustSubwordCmp(DAG, IsUnsigned, CmpOp0, CmpOp1, CCMask);
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001448 Opcode = SystemZISD::ICMP;
1449 // Choose the type of comparison. Equality and inequality tests can
1450 // use either signed or unsigned comparisons. The choice also doesn't
1451 // matter if both sign bits are known to be clear. In those cases we
1452 // want to give the main isel code the freedom to choose whichever
1453 // form fits best.
1454 if (CCMask == SystemZ::CCMASK_CMP_EQ ||
1455 CCMask == SystemZ::CCMASK_CMP_NE ||
1456 (DAG.SignBitIsZero(CmpOp0) && DAG.SignBitIsZero(CmpOp1)))
1457 ICmpType = SystemZICMP::Any;
1458 else if (IsUnsigned)
1459 ICmpType = SystemZICMP::UnsignedOnly;
1460 else
1461 ICmpType = SystemZICMP::SignedOnly;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001462 }
1463
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001464 if (shouldSwapCmpOperands(CmpOp0, CmpOp1, ICmpType)) {
Richard Sandiford24e597b2013-08-23 11:27:19 +00001465 std::swap(CmpOp0, CmpOp1);
1466 CCMask = ((CCMask & SystemZ::CCMASK_CMP_EQ) |
1467 (CCMask & SystemZ::CCMASK_CMP_GT ? SystemZ::CCMASK_CMP_LT : 0) |
1468 (CCMask & SystemZ::CCMASK_CMP_LT ? SystemZ::CCMASK_CMP_GT : 0) |
1469 (CCMask & SystemZ::CCMASK_CMP_UO));
1470 }
1471
Richard Sandiford030c1652013-09-13 09:09:50 +00001472 adjustForTestUnderMask(DAG, Opcode, CmpOp0, CmpOp1, CCValid, CCMask,
1473 ICmpType);
Richard Sandiforda9eb9972013-09-10 10:20:32 +00001474 if (Opcode == SystemZISD::ICMP || Opcode == SystemZISD::TM)
Richard Sandiford5bc670b2013-09-06 11:51:39 +00001475 return DAG.getNode(Opcode, DL, MVT::Glue, CmpOp0, CmpOp1,
1476 DAG.getConstant(ICmpType, MVT::i32));
Richard Sandiford35b9be22013-08-28 10:31:43 +00001477 return DAG.getNode(Opcode, DL, MVT::Glue, CmpOp0, CmpOp1);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001478}
1479
Richard Sandiford7d86e472013-08-21 09:34:56 +00001480// Implement a 32-bit *MUL_LOHI operation by extending both operands to
1481// 64 bits. Extend is the extension type to use. Store the high part
1482// in Hi and the low part in Lo.
1483static void lowerMUL_LOHI32(SelectionDAG &DAG, SDLoc DL,
1484 unsigned Extend, SDValue Op0, SDValue Op1,
1485 SDValue &Hi, SDValue &Lo) {
1486 Op0 = DAG.getNode(Extend, DL, MVT::i64, Op0);
1487 Op1 = DAG.getNode(Extend, DL, MVT::i64, Op1);
1488 SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, Op0, Op1);
1489 Hi = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul, DAG.getConstant(32, MVT::i64));
1490 Hi = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Hi);
1491 Lo = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Mul);
1492}
1493
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001494// Lower a binary operation that produces two VT results, one in each
1495// half of a GR128 pair. Op0 and Op1 are the VT operands to the operation,
1496// Extend extends Op0 to a GR128, and Opcode performs the GR128 operation
1497// on the extended Op0 and (unextended) Op1. Store the even register result
1498// in Even and the odd register result in Odd.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001499static void lowerGR128Binary(SelectionDAG &DAG, SDLoc DL, EVT VT,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001500 unsigned Extend, unsigned Opcode,
1501 SDValue Op0, SDValue Op1,
1502 SDValue &Even, SDValue &Odd) {
1503 SDNode *In128 = DAG.getMachineNode(Extend, DL, MVT::Untyped, Op0);
1504 SDValue Result = DAG.getNode(Opcode, DL, MVT::Untyped,
1505 SDValue(In128, 0), Op1);
1506 bool Is32Bit = is32Bit(VT);
Richard Sandifordd8163202013-09-13 09:12:44 +00001507 Even = DAG.getTargetExtractSubreg(SystemZ::even128(Is32Bit), DL, VT, Result);
1508 Odd = DAG.getTargetExtractSubreg(SystemZ::odd128(Is32Bit), DL, VT, Result);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001509}
1510
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001511// Return an i32 value that is 1 if the CC value produced by Glue is
1512// in the mask CCMask and 0 otherwise. CC is known to have a value
1513// in CCValid, so other values can be ignored.
1514static SDValue emitSETCC(SelectionDAG &DAG, SDLoc DL, SDValue Glue,
1515 unsigned CCValid, unsigned CCMask) {
Richard Sandifordf722a8e302013-10-16 11:10:55 +00001516 IPMConversion Conversion = getIPMConversion(CCValid, CCMask);
1517 SDValue Result = DAG.getNode(SystemZISD::IPM, DL, MVT::i32, Glue);
1518
1519 if (Conversion.XORValue)
1520 Result = DAG.getNode(ISD::XOR, DL, MVT::i32, Result,
1521 DAG.getConstant(Conversion.XORValue, MVT::i32));
1522
1523 if (Conversion.AddValue)
1524 Result = DAG.getNode(ISD::ADD, DL, MVT::i32, Result,
1525 DAG.getConstant(Conversion.AddValue, MVT::i32));
1526
1527 // The SHR/AND sequence should get optimized to an RISBG.
1528 Result = DAG.getNode(ISD::SRL, DL, MVT::i32, Result,
1529 DAG.getConstant(Conversion.Bit, MVT::i32));
1530 if (Conversion.Bit != 31)
1531 Result = DAG.getNode(ISD::AND, DL, MVT::i32, Result,
1532 DAG.getConstant(1, MVT::i32));
1533 return Result;
1534}
1535
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001536SDValue SystemZTargetLowering::lowerSETCC(SDValue Op,
1537 SelectionDAG &DAG) const {
1538 SDValue CmpOp0 = Op.getOperand(0);
1539 SDValue CmpOp1 = Op.getOperand(1);
1540 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
1541 SDLoc DL(Op);
1542
1543 unsigned CCValid, CCMask;
1544 SDValue Glue = emitCmp(TM, DAG, DL, CmpOp0, CmpOp1, CC, CCValid, CCMask);
1545 return emitSETCC(DAG, DL, Glue, CCValid, CCMask);
1546}
1547
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001548SDValue SystemZTargetLowering::lowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
1549 SDValue Chain = Op.getOperand(0);
1550 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1551 SDValue CmpOp0 = Op.getOperand(2);
1552 SDValue CmpOp1 = Op.getOperand(3);
1553 SDValue Dest = Op.getOperand(4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001554 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001555
Richard Sandiford3d768e32013-07-31 12:30:20 +00001556 unsigned CCValid, CCMask;
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001557 SDValue Glue = emitCmp(TM, DAG, DL, CmpOp0, CmpOp1, CC, CCValid, CCMask);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001558 return DAG.getNode(SystemZISD::BR_CCMASK, DL, Op.getValueType(),
Richard Sandiford3d768e32013-07-31 12:30:20 +00001559 Chain, DAG.getConstant(CCValid, MVT::i32),
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001560 DAG.getConstant(CCMask, MVT::i32), Dest, Glue);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001561}
1562
1563SDValue SystemZTargetLowering::lowerSELECT_CC(SDValue Op,
1564 SelectionDAG &DAG) const {
1565 SDValue CmpOp0 = Op.getOperand(0);
1566 SDValue CmpOp1 = Op.getOperand(1);
1567 SDValue TrueOp = Op.getOperand(2);
1568 SDValue FalseOp = Op.getOperand(3);
1569 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001570 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001571
Richard Sandiford3d768e32013-07-31 12:30:20 +00001572 unsigned CCValid, CCMask;
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001573 SDValue Glue = emitCmp(TM, DAG, DL, CmpOp0, CmpOp1, CC, CCValid, CCMask);
1574
1575 // Special case for handling -1/0 results. The shifts we use here
1576 // should get optimized with the IPM conversion sequence.
1577 ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp);
1578 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp);
1579 if (TrueC && FalseC) {
1580 int64_t TrueVal = TrueC->getSExtValue();
1581 int64_t FalseVal = FalseC->getSExtValue();
1582 if ((TrueVal == -1 && FalseVal == 0) || (TrueVal == 0 && FalseVal == -1)) {
1583 // Invert the condition if we want -1 on false.
1584 if (TrueVal == 0)
1585 CCMask ^= CCValid;
1586 SDValue Result = emitSETCC(DAG, DL, Glue, CCValid, CCMask);
1587 EVT VT = Op.getValueType();
1588 // Extend the result to VT. Upper bits are ignored.
1589 if (!is32Bit(VT))
1590 Result = DAG.getNode(ISD::ANY_EXTEND, DL, VT, Result);
1591 // Sign-extend from the low bit.
1592 SDValue ShAmt = DAG.getConstant(VT.getSizeInBits() - 1, MVT::i32);
1593 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, Result, ShAmt);
1594 return DAG.getNode(ISD::SRA, DL, VT, Shl, ShAmt);
1595 }
1596 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001597
Richard Sandiford3d768e32013-07-31 12:30:20 +00001598 SmallVector<SDValue, 5> Ops;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001599 Ops.push_back(TrueOp);
1600 Ops.push_back(FalseOp);
Richard Sandiford3d768e32013-07-31 12:30:20 +00001601 Ops.push_back(DAG.getConstant(CCValid, MVT::i32));
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001602 Ops.push_back(DAG.getConstant(CCMask, MVT::i32));
Richard Sandiford48ef6ab2013-12-06 09:53:09 +00001603 Ops.push_back(Glue);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001604
1605 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
1606 return DAG.getNode(SystemZISD::SELECT_CCMASK, DL, VTs, &Ops[0], Ops.size());
1607}
1608
1609SDValue SystemZTargetLowering::lowerGlobalAddress(GlobalAddressSDNode *Node,
1610 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001611 SDLoc DL(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001612 const GlobalValue *GV = Node->getGlobal();
1613 int64_t Offset = Node->getOffset();
1614 EVT PtrVT = getPointerTy();
1615 Reloc::Model RM = TM.getRelocationModel();
1616 CodeModel::Model CM = TM.getCodeModel();
1617
1618 SDValue Result;
1619 if (Subtarget.isPC32DBLSymbol(GV, RM, CM)) {
Richard Sandiford54b36912013-09-27 15:14:04 +00001620 // Assign anchors at 1<<12 byte boundaries.
1621 uint64_t Anchor = Offset & ~uint64_t(0xfff);
1622 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor);
1623 Result = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Result);
1624
1625 // The offset can be folded into the address if it is aligned to a halfword.
1626 Offset -= Anchor;
1627 if (Offset != 0 && (Offset & 1) == 0) {
1628 SDValue Full = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor + Offset);
1629 Result = DAG.getNode(SystemZISD::PCREL_OFFSET, DL, PtrVT, Full, Result);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001630 Offset = 0;
1631 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001632 } else {
1633 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, SystemZII::MO_GOT);
1634 Result = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Result);
1635 Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
1636 MachinePointerInfo::getGOT(), false, false, false, 0);
1637 }
1638
1639 // If there was a non-zero offset that we didn't fold, create an explicit
1640 // addition for it.
1641 if (Offset != 0)
1642 Result = DAG.getNode(ISD::ADD, DL, PtrVT, Result,
1643 DAG.getConstant(Offset, PtrVT));
1644
1645 return Result;
1646}
1647
1648SDValue SystemZTargetLowering::lowerGlobalTLSAddress(GlobalAddressSDNode *Node,
1649 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001650 SDLoc DL(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001651 const GlobalValue *GV = Node->getGlobal();
1652 EVT PtrVT = getPointerTy();
1653 TLSModel::Model model = TM.getTLSModel(GV);
1654
1655 if (model != TLSModel::LocalExec)
1656 llvm_unreachable("only local-exec TLS mode supported");
1657
1658 // The high part of the thread pointer is in access register 0.
1659 SDValue TPHi = DAG.getNode(SystemZISD::EXTRACT_ACCESS, DL, MVT::i32,
1660 DAG.getConstant(0, MVT::i32));
1661 TPHi = DAG.getNode(ISD::ANY_EXTEND, DL, PtrVT, TPHi);
1662
1663 // The low part of the thread pointer is in access register 1.
1664 SDValue TPLo = DAG.getNode(SystemZISD::EXTRACT_ACCESS, DL, MVT::i32,
1665 DAG.getConstant(1, MVT::i32));
1666 TPLo = DAG.getNode(ISD::ZERO_EXTEND, DL, PtrVT, TPLo);
1667
1668 // Merge them into a single 64-bit address.
1669 SDValue TPHiShifted = DAG.getNode(ISD::SHL, DL, PtrVT, TPHi,
1670 DAG.getConstant(32, PtrVT));
1671 SDValue TP = DAG.getNode(ISD::OR, DL, PtrVT, TPHiShifted, TPLo);
1672
1673 // Get the offset of GA from the thread pointer.
1674 SystemZConstantPoolValue *CPV =
1675 SystemZConstantPoolValue::Create(GV, SystemZCP::NTPOFF);
1676
1677 // Force the offset into the constant pool and load it from there.
1678 SDValue CPAddr = DAG.getConstantPool(CPV, PtrVT, 8);
1679 SDValue Offset = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(),
1680 CPAddr, MachinePointerInfo::getConstantPool(),
1681 false, false, false, 0);
1682
1683 // Add the base and offset together.
1684 return DAG.getNode(ISD::ADD, DL, PtrVT, TP, Offset);
1685}
1686
1687SDValue SystemZTargetLowering::lowerBlockAddress(BlockAddressSDNode *Node,
1688 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001689 SDLoc DL(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001690 const BlockAddress *BA = Node->getBlockAddress();
1691 int64_t Offset = Node->getOffset();
1692 EVT PtrVT = getPointerTy();
1693
1694 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT, Offset);
1695 Result = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Result);
1696 return Result;
1697}
1698
1699SDValue SystemZTargetLowering::lowerJumpTable(JumpTableSDNode *JT,
1700 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001701 SDLoc DL(JT);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001702 EVT PtrVT = getPointerTy();
1703 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
1704
1705 // Use LARL to load the address of the table.
1706 return DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Result);
1707}
1708
1709SDValue SystemZTargetLowering::lowerConstantPool(ConstantPoolSDNode *CP,
1710 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001711 SDLoc DL(CP);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001712 EVT PtrVT = getPointerTy();
1713
1714 SDValue Result;
1715 if (CP->isMachineConstantPoolEntry())
1716 Result = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
1717 CP->getAlignment());
1718 else
1719 Result = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
1720 CP->getAlignment(), CP->getOffset());
1721
1722 // Use LARL to load the address of the constant pool entry.
1723 return DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Result);
1724}
1725
1726SDValue SystemZTargetLowering::lowerBITCAST(SDValue Op,
1727 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001728 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001729 SDValue In = Op.getOperand(0);
1730 EVT InVT = In.getValueType();
1731 EVT ResVT = Op.getValueType();
1732
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001733 if (InVT == MVT::i32 && ResVT == MVT::f32) {
Richard Sandifordf6377fb2013-10-01 14:31:11 +00001734 SDValue In64;
1735 if (Subtarget.hasHighWord()) {
1736 SDNode *U64 = DAG.getMachineNode(TargetOpcode::IMPLICIT_DEF, DL,
1737 MVT::i64);
1738 In64 = DAG.getTargetInsertSubreg(SystemZ::subreg_h32, DL,
1739 MVT::i64, SDValue(U64, 0), In);
1740 } else {
1741 In64 = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, In);
1742 In64 = DAG.getNode(ISD::SHL, DL, MVT::i64, In64,
1743 DAG.getConstant(32, MVT::i64));
1744 }
1745 SDValue Out64 = DAG.getNode(ISD::BITCAST, DL, MVT::f64, In64);
Richard Sandiford87a44362013-09-30 10:28:35 +00001746 return DAG.getTargetExtractSubreg(SystemZ::subreg_h32,
Richard Sandifordd8163202013-09-13 09:12:44 +00001747 DL, MVT::f32, Out64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001748 }
1749 if (InVT == MVT::f32 && ResVT == MVT::i32) {
1750 SDNode *U64 = DAG.getMachineNode(TargetOpcode::IMPLICIT_DEF, DL, MVT::f64);
Richard Sandiford87a44362013-09-30 10:28:35 +00001751 SDValue In64 = DAG.getTargetInsertSubreg(SystemZ::subreg_h32, DL,
Richard Sandifordd8163202013-09-13 09:12:44 +00001752 MVT::f64, SDValue(U64, 0), In);
1753 SDValue Out64 = DAG.getNode(ISD::BITCAST, DL, MVT::i64, In64);
Richard Sandifordf6377fb2013-10-01 14:31:11 +00001754 if (Subtarget.hasHighWord())
1755 return DAG.getTargetExtractSubreg(SystemZ::subreg_h32, DL,
1756 MVT::i32, Out64);
1757 SDValue Shift = DAG.getNode(ISD::SRL, DL, MVT::i64, Out64,
1758 DAG.getConstant(32, MVT::i64));
1759 return DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Shift);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001760 }
1761 llvm_unreachable("Unexpected bitcast combination");
1762}
1763
1764SDValue SystemZTargetLowering::lowerVASTART(SDValue Op,
1765 SelectionDAG &DAG) const {
1766 MachineFunction &MF = DAG.getMachineFunction();
1767 SystemZMachineFunctionInfo *FuncInfo =
1768 MF.getInfo<SystemZMachineFunctionInfo>();
1769 EVT PtrVT = getPointerTy();
1770
1771 SDValue Chain = Op.getOperand(0);
1772 SDValue Addr = Op.getOperand(1);
1773 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001774 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001775
1776 // The initial values of each field.
1777 const unsigned NumFields = 4;
1778 SDValue Fields[NumFields] = {
1779 DAG.getConstant(FuncInfo->getVarArgsFirstGPR(), PtrVT),
1780 DAG.getConstant(FuncInfo->getVarArgsFirstFPR(), PtrVT),
1781 DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT),
1782 DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), PtrVT)
1783 };
1784
1785 // Store each field into its respective slot.
1786 SDValue MemOps[NumFields];
1787 unsigned Offset = 0;
1788 for (unsigned I = 0; I < NumFields; ++I) {
1789 SDValue FieldAddr = Addr;
1790 if (Offset != 0)
1791 FieldAddr = DAG.getNode(ISD::ADD, DL, PtrVT, FieldAddr,
1792 DAG.getIntPtrConstant(Offset));
1793 MemOps[I] = DAG.getStore(Chain, DL, Fields[I], FieldAddr,
1794 MachinePointerInfo(SV, Offset),
1795 false, false, 0);
1796 Offset += 8;
1797 }
1798 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps, NumFields);
1799}
1800
1801SDValue SystemZTargetLowering::lowerVACOPY(SDValue Op,
1802 SelectionDAG &DAG) const {
1803 SDValue Chain = Op.getOperand(0);
1804 SDValue DstPtr = Op.getOperand(1);
1805 SDValue SrcPtr = Op.getOperand(2);
1806 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
1807 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001808 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001809
1810 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr, DAG.getIntPtrConstant(32),
1811 /*Align*/8, /*isVolatile*/false, /*AlwaysInline*/false,
1812 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
1813}
1814
1815SDValue SystemZTargetLowering::
1816lowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
1817 SDValue Chain = Op.getOperand(0);
1818 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001819 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001820
1821 unsigned SPReg = getStackPointerRegisterToSaveRestore();
1822
1823 // Get a reference to the stack pointer.
1824 SDValue OldSP = DAG.getCopyFromReg(Chain, DL, SPReg, MVT::i64);
1825
1826 // Get the new stack pointer value.
1827 SDValue NewSP = DAG.getNode(ISD::SUB, DL, MVT::i64, OldSP, Size);
1828
1829 // Copy the new stack pointer back.
1830 Chain = DAG.getCopyToReg(Chain, DL, SPReg, NewSP);
1831
1832 // The allocated data lives above the 160 bytes allocated for the standard
1833 // frame, plus any outgoing stack arguments. We don't know how much that
1834 // amounts to yet, so emit a special ADJDYNALLOC placeholder.
1835 SDValue ArgAdjust = DAG.getNode(SystemZISD::ADJDYNALLOC, DL, MVT::i64);
1836 SDValue Result = DAG.getNode(ISD::ADD, DL, MVT::i64, NewSP, ArgAdjust);
1837
1838 SDValue Ops[2] = { Result, Chain };
1839 return DAG.getMergeValues(Ops, 2, DL);
1840}
1841
Richard Sandiford7d86e472013-08-21 09:34:56 +00001842SDValue SystemZTargetLowering::lowerSMUL_LOHI(SDValue Op,
1843 SelectionDAG &DAG) const {
1844 EVT VT = Op.getValueType();
1845 SDLoc DL(Op);
1846 SDValue Ops[2];
1847 if (is32Bit(VT))
1848 // Just do a normal 64-bit multiplication and extract the results.
1849 // We define this so that it can be used for constant division.
1850 lowerMUL_LOHI32(DAG, DL, ISD::SIGN_EXTEND, Op.getOperand(0),
1851 Op.getOperand(1), Ops[1], Ops[0]);
1852 else {
1853 // Do a full 128-bit multiplication based on UMUL_LOHI64:
1854 //
1855 // (ll * rl) + ((lh * rl) << 64) + ((ll * rh) << 64)
1856 //
1857 // but using the fact that the upper halves are either all zeros
1858 // or all ones:
1859 //
1860 // (ll * rl) - ((lh & rl) << 64) - ((ll & rh) << 64)
1861 //
1862 // and grouping the right terms together since they are quicker than the
1863 // multiplication:
1864 //
1865 // (ll * rl) - (((lh & rl) + (ll & rh)) << 64)
1866 SDValue C63 = DAG.getConstant(63, MVT::i64);
1867 SDValue LL = Op.getOperand(0);
1868 SDValue RL = Op.getOperand(1);
1869 SDValue LH = DAG.getNode(ISD::SRA, DL, VT, LL, C63);
1870 SDValue RH = DAG.getNode(ISD::SRA, DL, VT, RL, C63);
1871 // UMUL_LOHI64 returns the low result in the odd register and the high
1872 // result in the even register. SMUL_LOHI is defined to return the
1873 // low half first, so the results are in reverse order.
1874 lowerGR128Binary(DAG, DL, VT, SystemZ::AEXT128_64, SystemZISD::UMUL_LOHI64,
1875 LL, RL, Ops[1], Ops[0]);
1876 SDValue NegLLTimesRH = DAG.getNode(ISD::AND, DL, VT, LL, RH);
1877 SDValue NegLHTimesRL = DAG.getNode(ISD::AND, DL, VT, LH, RL);
1878 SDValue NegSum = DAG.getNode(ISD::ADD, DL, VT, NegLLTimesRH, NegLHTimesRL);
1879 Ops[1] = DAG.getNode(ISD::SUB, DL, VT, Ops[1], NegSum);
1880 }
1881 return DAG.getMergeValues(Ops, 2, DL);
1882}
1883
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001884SDValue SystemZTargetLowering::lowerUMUL_LOHI(SDValue Op,
1885 SelectionDAG &DAG) const {
1886 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001887 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001888 SDValue Ops[2];
Richard Sandiford7d86e472013-08-21 09:34:56 +00001889 if (is32Bit(VT))
1890 // Just do a normal 64-bit multiplication and extract the results.
1891 // We define this so that it can be used for constant division.
1892 lowerMUL_LOHI32(DAG, DL, ISD::ZERO_EXTEND, Op.getOperand(0),
1893 Op.getOperand(1), Ops[1], Ops[0]);
1894 else
1895 // UMUL_LOHI64 returns the low result in the odd register and the high
1896 // result in the even register. UMUL_LOHI is defined to return the
1897 // low half first, so the results are in reverse order.
1898 lowerGR128Binary(DAG, DL, VT, SystemZ::AEXT128_64, SystemZISD::UMUL_LOHI64,
1899 Op.getOperand(0), Op.getOperand(1), Ops[1], Ops[0]);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001900 return DAG.getMergeValues(Ops, 2, DL);
1901}
1902
1903SDValue SystemZTargetLowering::lowerSDIVREM(SDValue Op,
1904 SelectionDAG &DAG) const {
1905 SDValue Op0 = Op.getOperand(0);
1906 SDValue Op1 = Op.getOperand(1);
1907 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001908 SDLoc DL(Op);
Richard Sandiforde6e78852013-07-02 15:40:22 +00001909 unsigned Opcode;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001910
1911 // We use DSGF for 32-bit division.
1912 if (is32Bit(VT)) {
1913 Op0 = DAG.getNode(ISD::SIGN_EXTEND, DL, MVT::i64, Op0);
Richard Sandiforde6e78852013-07-02 15:40:22 +00001914 Opcode = SystemZISD::SDIVREM32;
1915 } else if (DAG.ComputeNumSignBits(Op1) > 32) {
1916 Op1 = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Op1);
1917 Opcode = SystemZISD::SDIVREM32;
1918 } else
1919 Opcode = SystemZISD::SDIVREM64;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001920
1921 // DSG(F) takes a 64-bit dividend, so the even register in the GR128
1922 // input is "don't care". The instruction returns the remainder in
1923 // the even register and the quotient in the odd register.
1924 SDValue Ops[2];
Richard Sandiforde6e78852013-07-02 15:40:22 +00001925 lowerGR128Binary(DAG, DL, VT, SystemZ::AEXT128_64, Opcode,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001926 Op0, Op1, Ops[1], Ops[0]);
1927 return DAG.getMergeValues(Ops, 2, DL);
1928}
1929
1930SDValue SystemZTargetLowering::lowerUDIVREM(SDValue Op,
1931 SelectionDAG &DAG) const {
1932 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001933 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001934
1935 // DL(G) uses a double-width dividend, so we need to clear the even
1936 // register in the GR128 input. The instruction returns the remainder
1937 // in the even register and the quotient in the odd register.
1938 SDValue Ops[2];
1939 if (is32Bit(VT))
1940 lowerGR128Binary(DAG, DL, VT, SystemZ::ZEXT128_32, SystemZISD::UDIVREM32,
1941 Op.getOperand(0), Op.getOperand(1), Ops[1], Ops[0]);
1942 else
1943 lowerGR128Binary(DAG, DL, VT, SystemZ::ZEXT128_64, SystemZISD::UDIVREM64,
1944 Op.getOperand(0), Op.getOperand(1), Ops[1], Ops[0]);
1945 return DAG.getMergeValues(Ops, 2, DL);
1946}
1947
1948SDValue SystemZTargetLowering::lowerOR(SDValue Op, SelectionDAG &DAG) const {
1949 assert(Op.getValueType() == MVT::i64 && "Should be 64-bit operation");
1950
1951 // Get the known-zero masks for each operand.
1952 SDValue Ops[] = { Op.getOperand(0), Op.getOperand(1) };
1953 APInt KnownZero[2], KnownOne[2];
1954 DAG.ComputeMaskedBits(Ops[0], KnownZero[0], KnownOne[0]);
1955 DAG.ComputeMaskedBits(Ops[1], KnownZero[1], KnownOne[1]);
1956
1957 // See if the upper 32 bits of one operand and the lower 32 bits of the
1958 // other are known zero. They are the low and high operands respectively.
1959 uint64_t Masks[] = { KnownZero[0].getZExtValue(),
1960 KnownZero[1].getZExtValue() };
1961 unsigned High, Low;
1962 if ((Masks[0] >> 32) == 0xffffffff && uint32_t(Masks[1]) == 0xffffffff)
1963 High = 1, Low = 0;
1964 else if ((Masks[1] >> 32) == 0xffffffff && uint32_t(Masks[0]) == 0xffffffff)
1965 High = 0, Low = 1;
1966 else
1967 return Op;
1968
1969 SDValue LowOp = Ops[Low];
1970 SDValue HighOp = Ops[High];
1971
1972 // If the high part is a constant, we're better off using IILH.
1973 if (HighOp.getOpcode() == ISD::Constant)
1974 return Op;
1975
1976 // If the low part is a constant that is outside the range of LHI,
1977 // then we're better off using IILF.
1978 if (LowOp.getOpcode() == ISD::Constant) {
1979 int64_t Value = int32_t(cast<ConstantSDNode>(LowOp)->getZExtValue());
1980 if (!isInt<16>(Value))
1981 return Op;
1982 }
1983
1984 // Check whether the high part is an AND that doesn't change the
1985 // high 32 bits and just masks out low bits. We can skip it if so.
1986 if (HighOp.getOpcode() == ISD::AND &&
1987 HighOp.getOperand(1).getOpcode() == ISD::Constant) {
Richard Sandifordccc2a7c2013-12-03 11:01:54 +00001988 SDValue HighOp0 = HighOp.getOperand(0);
1989 uint64_t Mask = cast<ConstantSDNode>(HighOp.getOperand(1))->getZExtValue();
1990 if (DAG.MaskedValueIsZero(HighOp0, APInt(64, ~(Mask | 0xffffffff))))
1991 HighOp = HighOp0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001992 }
1993
1994 // Take advantage of the fact that all GR32 operations only change the
1995 // low 32 bits by truncating Low to an i32 and inserting it directly
1996 // using a subreg. The interesting cases are those where the truncation
1997 // can be folded.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001998 SDLoc DL(Op);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001999 SDValue Low32 = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, LowOp);
Richard Sandiford87a44362013-09-30 10:28:35 +00002000 return DAG.getTargetInsertSubreg(SystemZ::subreg_l32, DL,
Richard Sandifordd8163202013-09-13 09:12:44 +00002001 MVT::i64, HighOp, Low32);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002002}
2003
2004// Op is an 8-, 16-bit or 32-bit ATOMIC_LOAD_* operation. Lower the first
2005// two into the fullword ATOMIC_LOADW_* operation given by Opcode.
2006SDValue SystemZTargetLowering::lowerATOMIC_LOAD(SDValue Op,
2007 SelectionDAG &DAG,
2008 unsigned Opcode) const {
2009 AtomicSDNode *Node = cast<AtomicSDNode>(Op.getNode());
2010
2011 // 32-bit operations need no code outside the main loop.
2012 EVT NarrowVT = Node->getMemoryVT();
2013 EVT WideVT = MVT::i32;
2014 if (NarrowVT == WideVT)
2015 return Op;
2016
2017 int64_t BitSize = NarrowVT.getSizeInBits();
2018 SDValue ChainIn = Node->getChain();
2019 SDValue Addr = Node->getBasePtr();
2020 SDValue Src2 = Node->getVal();
2021 MachineMemOperand *MMO = Node->getMemOperand();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002022 SDLoc DL(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002023 EVT PtrVT = Addr.getValueType();
2024
2025 // Convert atomic subtracts of constants into additions.
2026 if (Opcode == SystemZISD::ATOMIC_LOADW_SUB)
2027 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Src2)) {
2028 Opcode = SystemZISD::ATOMIC_LOADW_ADD;
2029 Src2 = DAG.getConstant(-Const->getSExtValue(), Src2.getValueType());
2030 }
2031
2032 // Get the address of the containing word.
2033 SDValue AlignedAddr = DAG.getNode(ISD::AND, DL, PtrVT, Addr,
2034 DAG.getConstant(-4, PtrVT));
2035
2036 // Get the number of bits that the word must be rotated left in order
2037 // to bring the field to the top bits of a GR32.
2038 SDValue BitShift = DAG.getNode(ISD::SHL, DL, PtrVT, Addr,
2039 DAG.getConstant(3, PtrVT));
2040 BitShift = DAG.getNode(ISD::TRUNCATE, DL, WideVT, BitShift);
2041
2042 // Get the complementing shift amount, for rotating a field in the top
2043 // bits back to its proper position.
2044 SDValue NegBitShift = DAG.getNode(ISD::SUB, DL, WideVT,
2045 DAG.getConstant(0, WideVT), BitShift);
2046
2047 // Extend the source operand to 32 bits and prepare it for the inner loop.
2048 // ATOMIC_SWAPW uses RISBG to rotate the field left, but all other
2049 // operations require the source to be shifted in advance. (This shift
2050 // can be folded if the source is constant.) For AND and NAND, the lower
2051 // bits must be set, while for other opcodes they should be left clear.
2052 if (Opcode != SystemZISD::ATOMIC_SWAPW)
2053 Src2 = DAG.getNode(ISD::SHL, DL, WideVT, Src2,
2054 DAG.getConstant(32 - BitSize, WideVT));
2055 if (Opcode == SystemZISD::ATOMIC_LOADW_AND ||
2056 Opcode == SystemZISD::ATOMIC_LOADW_NAND)
2057 Src2 = DAG.getNode(ISD::OR, DL, WideVT, Src2,
2058 DAG.getConstant(uint32_t(-1) >> BitSize, WideVT));
2059
2060 // Construct the ATOMIC_LOADW_* node.
2061 SDVTList VTList = DAG.getVTList(WideVT, MVT::Other);
2062 SDValue Ops[] = { ChainIn, AlignedAddr, Src2, BitShift, NegBitShift,
2063 DAG.getConstant(BitSize, WideVT) };
2064 SDValue AtomicOp = DAG.getMemIntrinsicNode(Opcode, DL, VTList, Ops,
2065 array_lengthof(Ops),
2066 NarrowVT, MMO);
2067
2068 // Rotate the result of the final CS so that the field is in the lower
2069 // bits of a GR32, then truncate it.
2070 SDValue ResultShift = DAG.getNode(ISD::ADD, DL, WideVT, BitShift,
2071 DAG.getConstant(BitSize, WideVT));
2072 SDValue Result = DAG.getNode(ISD::ROTL, DL, WideVT, AtomicOp, ResultShift);
2073
2074 SDValue RetOps[2] = { Result, AtomicOp.getValue(1) };
2075 return DAG.getMergeValues(RetOps, 2, DL);
2076}
2077
2078// Node is an 8- or 16-bit ATOMIC_CMP_SWAP operation. Lower the first two
2079// into a fullword ATOMIC_CMP_SWAPW operation.
2080SDValue SystemZTargetLowering::lowerATOMIC_CMP_SWAP(SDValue Op,
2081 SelectionDAG &DAG) const {
2082 AtomicSDNode *Node = cast<AtomicSDNode>(Op.getNode());
2083
2084 // We have native support for 32-bit compare and swap.
2085 EVT NarrowVT = Node->getMemoryVT();
2086 EVT WideVT = MVT::i32;
2087 if (NarrowVT == WideVT)
2088 return Op;
2089
2090 int64_t BitSize = NarrowVT.getSizeInBits();
2091 SDValue ChainIn = Node->getOperand(0);
2092 SDValue Addr = Node->getOperand(1);
2093 SDValue CmpVal = Node->getOperand(2);
2094 SDValue SwapVal = Node->getOperand(3);
2095 MachineMemOperand *MMO = Node->getMemOperand();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002096 SDLoc DL(Node);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002097 EVT PtrVT = Addr.getValueType();
2098
2099 // Get the address of the containing word.
2100 SDValue AlignedAddr = DAG.getNode(ISD::AND, DL, PtrVT, Addr,
2101 DAG.getConstant(-4, PtrVT));
2102
2103 // Get the number of bits that the word must be rotated left in order
2104 // to bring the field to the top bits of a GR32.
2105 SDValue BitShift = DAG.getNode(ISD::SHL, DL, PtrVT, Addr,
2106 DAG.getConstant(3, PtrVT));
2107 BitShift = DAG.getNode(ISD::TRUNCATE, DL, WideVT, BitShift);
2108
2109 // Get the complementing shift amount, for rotating a field in the top
2110 // bits back to its proper position.
2111 SDValue NegBitShift = DAG.getNode(ISD::SUB, DL, WideVT,
2112 DAG.getConstant(0, WideVT), BitShift);
2113
2114 // Construct the ATOMIC_CMP_SWAPW node.
2115 SDVTList VTList = DAG.getVTList(WideVT, MVT::Other);
2116 SDValue Ops[] = { ChainIn, AlignedAddr, CmpVal, SwapVal, BitShift,
2117 NegBitShift, DAG.getConstant(BitSize, WideVT) };
2118 SDValue AtomicOp = DAG.getMemIntrinsicNode(SystemZISD::ATOMIC_CMP_SWAPW, DL,
2119 VTList, Ops, array_lengthof(Ops),
2120 NarrowVT, MMO);
2121 return AtomicOp;
2122}
2123
2124SDValue SystemZTargetLowering::lowerSTACKSAVE(SDValue Op,
2125 SelectionDAG &DAG) const {
2126 MachineFunction &MF = DAG.getMachineFunction();
2127 MF.getInfo<SystemZMachineFunctionInfo>()->setManipulatesSP(true);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002128 return DAG.getCopyFromReg(Op.getOperand(0), SDLoc(Op),
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002129 SystemZ::R15D, Op.getValueType());
2130}
2131
2132SDValue SystemZTargetLowering::lowerSTACKRESTORE(SDValue Op,
2133 SelectionDAG &DAG) const {
2134 MachineFunction &MF = DAG.getMachineFunction();
2135 MF.getInfo<SystemZMachineFunctionInfo>()->setManipulatesSP(true);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002136 return DAG.getCopyToReg(Op.getOperand(0), SDLoc(Op),
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002137 SystemZ::R15D, Op.getOperand(1));
2138}
2139
Richard Sandiford03481332013-08-23 11:36:42 +00002140SDValue SystemZTargetLowering::lowerPREFETCH(SDValue Op,
2141 SelectionDAG &DAG) const {
2142 bool IsData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2143 if (!IsData)
2144 // Just preserve the chain.
2145 return Op.getOperand(0);
2146
2147 bool IsWrite = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
2148 unsigned Code = IsWrite ? SystemZ::PFD_WRITE : SystemZ::PFD_READ;
2149 MemIntrinsicSDNode *Node = cast<MemIntrinsicSDNode>(Op.getNode());
2150 SDValue Ops[] = {
2151 Op.getOperand(0),
2152 DAG.getConstant(Code, MVT::i32),
2153 Op.getOperand(1)
2154 };
2155 return DAG.getMemIntrinsicNode(SystemZISD::PREFETCH, SDLoc(Op),
2156 Node->getVTList(), Ops, array_lengthof(Ops),
2157 Node->getMemoryVT(), Node->getMemOperand());
2158}
2159
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002160SDValue SystemZTargetLowering::LowerOperation(SDValue Op,
2161 SelectionDAG &DAG) const {
2162 switch (Op.getOpcode()) {
2163 case ISD::BR_CC:
2164 return lowerBR_CC(Op, DAG);
2165 case ISD::SELECT_CC:
2166 return lowerSELECT_CC(Op, DAG);
Richard Sandifordf722a8e302013-10-16 11:10:55 +00002167 case ISD::SETCC:
2168 return lowerSETCC(Op, DAG);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002169 case ISD::GlobalAddress:
2170 return lowerGlobalAddress(cast<GlobalAddressSDNode>(Op), DAG);
2171 case ISD::GlobalTLSAddress:
2172 return lowerGlobalTLSAddress(cast<GlobalAddressSDNode>(Op), DAG);
2173 case ISD::BlockAddress:
2174 return lowerBlockAddress(cast<BlockAddressSDNode>(Op), DAG);
2175 case ISD::JumpTable:
2176 return lowerJumpTable(cast<JumpTableSDNode>(Op), DAG);
2177 case ISD::ConstantPool:
2178 return lowerConstantPool(cast<ConstantPoolSDNode>(Op), DAG);
2179 case ISD::BITCAST:
2180 return lowerBITCAST(Op, DAG);
2181 case ISD::VASTART:
2182 return lowerVASTART(Op, DAG);
2183 case ISD::VACOPY:
2184 return lowerVACOPY(Op, DAG);
2185 case ISD::DYNAMIC_STACKALLOC:
2186 return lowerDYNAMIC_STACKALLOC(Op, DAG);
Richard Sandiford7d86e472013-08-21 09:34:56 +00002187 case ISD::SMUL_LOHI:
2188 return lowerSMUL_LOHI(Op, DAG);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002189 case ISD::UMUL_LOHI:
2190 return lowerUMUL_LOHI(Op, DAG);
2191 case ISD::SDIVREM:
2192 return lowerSDIVREM(Op, DAG);
2193 case ISD::UDIVREM:
2194 return lowerUDIVREM(Op, DAG);
2195 case ISD::OR:
2196 return lowerOR(Op, DAG);
2197 case ISD::ATOMIC_SWAP:
2198 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_SWAPW);
2199 case ISD::ATOMIC_LOAD_ADD:
2200 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_ADD);
2201 case ISD::ATOMIC_LOAD_SUB:
2202 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_SUB);
2203 case ISD::ATOMIC_LOAD_AND:
2204 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_AND);
2205 case ISD::ATOMIC_LOAD_OR:
2206 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_OR);
2207 case ISD::ATOMIC_LOAD_XOR:
2208 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_XOR);
2209 case ISD::ATOMIC_LOAD_NAND:
2210 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_NAND);
2211 case ISD::ATOMIC_LOAD_MIN:
2212 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_MIN);
2213 case ISD::ATOMIC_LOAD_MAX:
2214 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_MAX);
2215 case ISD::ATOMIC_LOAD_UMIN:
2216 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_UMIN);
2217 case ISD::ATOMIC_LOAD_UMAX:
2218 return lowerATOMIC_LOAD(Op, DAG, SystemZISD::ATOMIC_LOADW_UMAX);
2219 case ISD::ATOMIC_CMP_SWAP:
2220 return lowerATOMIC_CMP_SWAP(Op, DAG);
2221 case ISD::STACKSAVE:
2222 return lowerSTACKSAVE(Op, DAG);
2223 case ISD::STACKRESTORE:
2224 return lowerSTACKRESTORE(Op, DAG);
Richard Sandiford03481332013-08-23 11:36:42 +00002225 case ISD::PREFETCH:
2226 return lowerPREFETCH(Op, DAG);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002227 default:
2228 llvm_unreachable("Unexpected node to lower");
2229 }
2230}
2231
2232const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const {
2233#define OPCODE(NAME) case SystemZISD::NAME: return "SystemZISD::" #NAME
2234 switch (Opcode) {
2235 OPCODE(RET_FLAG);
2236 OPCODE(CALL);
Richard Sandiford709bda62013-08-19 12:42:31 +00002237 OPCODE(SIBCALL);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002238 OPCODE(PCREL_WRAPPER);
Richard Sandiford54b36912013-09-27 15:14:04 +00002239 OPCODE(PCREL_OFFSET);
Richard Sandiford5bc670b2013-09-06 11:51:39 +00002240 OPCODE(ICMP);
2241 OPCODE(FCMP);
Richard Sandiford35b9be22013-08-28 10:31:43 +00002242 OPCODE(TM);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002243 OPCODE(BR_CCMASK);
2244 OPCODE(SELECT_CCMASK);
2245 OPCODE(ADJDYNALLOC);
2246 OPCODE(EXTRACT_ACCESS);
2247 OPCODE(UMUL_LOHI64);
2248 OPCODE(SDIVREM64);
2249 OPCODE(UDIVREM32);
2250 OPCODE(UDIVREM64);
Richard Sandifordd131ff82013-07-08 09:35:23 +00002251 OPCODE(MVC);
Richard Sandiford5e318f02013-08-27 09:54:29 +00002252 OPCODE(MVC_LOOP);
Richard Sandiford178273a2013-09-05 10:36:45 +00002253 OPCODE(NC);
2254 OPCODE(NC_LOOP);
2255 OPCODE(OC);
2256 OPCODE(OC_LOOP);
2257 OPCODE(XC);
2258 OPCODE(XC_LOOP);
Richard Sandiford761703a2013-08-12 10:17:33 +00002259 OPCODE(CLC);
Richard Sandiford5e318f02013-08-27 09:54:29 +00002260 OPCODE(CLC_LOOP);
Richard Sandifordca232712013-08-16 11:21:54 +00002261 OPCODE(STRCMP);
Richard Sandifordbb83a502013-08-16 11:29:37 +00002262 OPCODE(STPCPY);
Richard Sandiford0dec06a2013-08-16 11:41:43 +00002263 OPCODE(SEARCH_STRING);
Richard Sandiford564681c2013-08-12 10:28:10 +00002264 OPCODE(IPM);
Richard Sandiford9afe6132013-12-10 10:36:34 +00002265 OPCODE(SERIALIZE);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002266 OPCODE(ATOMIC_SWAPW);
2267 OPCODE(ATOMIC_LOADW_ADD);
2268 OPCODE(ATOMIC_LOADW_SUB);
2269 OPCODE(ATOMIC_LOADW_AND);
2270 OPCODE(ATOMIC_LOADW_OR);
2271 OPCODE(ATOMIC_LOADW_XOR);
2272 OPCODE(ATOMIC_LOADW_NAND);
2273 OPCODE(ATOMIC_LOADW_MIN);
2274 OPCODE(ATOMIC_LOADW_MAX);
2275 OPCODE(ATOMIC_LOADW_UMIN);
2276 OPCODE(ATOMIC_LOADW_UMAX);
2277 OPCODE(ATOMIC_CMP_SWAPW);
Richard Sandiford03481332013-08-23 11:36:42 +00002278 OPCODE(PREFETCH);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002279 }
2280 return NULL;
2281#undef OPCODE
2282}
2283
2284//===----------------------------------------------------------------------===//
2285// Custom insertion
2286//===----------------------------------------------------------------------===//
2287
2288// Create a new basic block after MBB.
2289static MachineBasicBlock *emitBlockAfter(MachineBasicBlock *MBB) {
2290 MachineFunction &MF = *MBB->getParent();
2291 MachineBasicBlock *NewMBB = MF.CreateMachineBasicBlock(MBB->getBasicBlock());
2292 MF.insert(llvm::next(MachineFunction::iterator(MBB)), NewMBB);
2293 return NewMBB;
2294}
2295
Richard Sandifordbe133a82013-08-28 09:01:51 +00002296// Split MBB after MI and return the new block (the one that contains
2297// instructions after MI).
2298static MachineBasicBlock *splitBlockAfter(MachineInstr *MI,
2299 MachineBasicBlock *MBB) {
2300 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
2301 NewMBB->splice(NewMBB->begin(), MBB,
2302 llvm::next(MachineBasicBlock::iterator(MI)),
2303 MBB->end());
2304 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2305 return NewMBB;
2306}
2307
Richard Sandiford5e318f02013-08-27 09:54:29 +00002308// Split MBB before MI and return the new block (the one that contains MI).
2309static MachineBasicBlock *splitBlockBefore(MachineInstr *MI,
2310 MachineBasicBlock *MBB) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002311 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
Richard Sandiford5e318f02013-08-27 09:54:29 +00002312 NewMBB->splice(NewMBB->begin(), MBB, MI, MBB->end());
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002313 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2314 return NewMBB;
2315}
2316
Richard Sandiford5e318f02013-08-27 09:54:29 +00002317// Force base value Base into a register before MI. Return the register.
2318static unsigned forceReg(MachineInstr *MI, MachineOperand &Base,
2319 const SystemZInstrInfo *TII) {
2320 if (Base.isReg())
2321 return Base.getReg();
2322
2323 MachineBasicBlock *MBB = MI->getParent();
2324 MachineFunction &MF = *MBB->getParent();
2325 MachineRegisterInfo &MRI = MF.getRegInfo();
2326
2327 unsigned Reg = MRI.createVirtualRegister(&SystemZ::ADDR64BitRegClass);
2328 BuildMI(*MBB, MI, MI->getDebugLoc(), TII->get(SystemZ::LA), Reg)
2329 .addOperand(Base).addImm(0).addReg(0);
2330 return Reg;
2331}
2332
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002333// Implement EmitInstrWithCustomInserter for pseudo Select* instruction MI.
2334MachineBasicBlock *
2335SystemZTargetLowering::emitSelect(MachineInstr *MI,
2336 MachineBasicBlock *MBB) const {
2337 const SystemZInstrInfo *TII = TM.getInstrInfo();
2338
2339 unsigned DestReg = MI->getOperand(0).getReg();
2340 unsigned TrueReg = MI->getOperand(1).getReg();
2341 unsigned FalseReg = MI->getOperand(2).getReg();
Richard Sandiford3d768e32013-07-31 12:30:20 +00002342 unsigned CCValid = MI->getOperand(3).getImm();
2343 unsigned CCMask = MI->getOperand(4).getImm();
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002344 DebugLoc DL = MI->getDebugLoc();
2345
2346 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002347 MachineBasicBlock *JoinMBB = splitBlockBefore(MI, MBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002348 MachineBasicBlock *FalseMBB = emitBlockAfter(StartMBB);
2349
2350 // StartMBB:
Richard Sandiford0fb90ab2013-05-28 10:41:11 +00002351 // BRC CCMask, JoinMBB
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002352 // # fallthrough to FalseMBB
2353 MBB = StartMBB;
Richard Sandiford3d768e32013-07-31 12:30:20 +00002354 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2355 .addImm(CCValid).addImm(CCMask).addMBB(JoinMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002356 MBB->addSuccessor(JoinMBB);
2357 MBB->addSuccessor(FalseMBB);
2358
2359 // FalseMBB:
2360 // # fallthrough to JoinMBB
2361 MBB = FalseMBB;
2362 MBB->addSuccessor(JoinMBB);
2363
2364 // JoinMBB:
2365 // %Result = phi [ %FalseReg, FalseMBB ], [ %TrueReg, StartMBB ]
2366 // ...
2367 MBB = JoinMBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002368 BuildMI(*MBB, MI, DL, TII->get(SystemZ::PHI), DestReg)
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002369 .addReg(TrueReg).addMBB(StartMBB)
2370 .addReg(FalseReg).addMBB(FalseMBB);
2371
2372 MI->eraseFromParent();
2373 return JoinMBB;
2374}
2375
Richard Sandifordb86a8342013-06-27 09:27:40 +00002376// Implement EmitInstrWithCustomInserter for pseudo CondStore* instruction MI.
2377// StoreOpcode is the store to use and Invert says whether the store should
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002378// happen when the condition is false rather than true. If a STORE ON
2379// CONDITION is available, STOCOpcode is its opcode, otherwise it is 0.
Richard Sandifordb86a8342013-06-27 09:27:40 +00002380MachineBasicBlock *
2381SystemZTargetLowering::emitCondStore(MachineInstr *MI,
2382 MachineBasicBlock *MBB,
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002383 unsigned StoreOpcode, unsigned STOCOpcode,
2384 bool Invert) const {
Richard Sandifordb86a8342013-06-27 09:27:40 +00002385 const SystemZInstrInfo *TII = TM.getInstrInfo();
2386
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002387 unsigned SrcReg = MI->getOperand(0).getReg();
2388 MachineOperand Base = MI->getOperand(1);
2389 int64_t Disp = MI->getOperand(2).getImm();
2390 unsigned IndexReg = MI->getOperand(3).getReg();
Richard Sandiford3d768e32013-07-31 12:30:20 +00002391 unsigned CCValid = MI->getOperand(4).getImm();
2392 unsigned CCMask = MI->getOperand(5).getImm();
Richard Sandifordb86a8342013-06-27 09:27:40 +00002393 DebugLoc DL = MI->getDebugLoc();
2394
2395 StoreOpcode = TII->getOpcodeForOffset(StoreOpcode, Disp);
2396
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002397 // Use STOCOpcode if possible. We could use different store patterns in
2398 // order to avoid matching the index register, but the performance trade-offs
2399 // might be more complicated in that case.
2400 if (STOCOpcode && !IndexReg && TM.getSubtargetImpl()->hasLoadStoreOnCond()) {
2401 if (Invert)
Richard Sandiford3d768e32013-07-31 12:30:20 +00002402 CCMask ^= CCValid;
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002403 BuildMI(*MBB, MI, DL, TII->get(STOCOpcode))
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +00002404 .addReg(SrcReg).addOperand(Base).addImm(Disp)
2405 .addImm(CCValid).addImm(CCMask);
Richard Sandiforda68e6f52013-07-25 08:57:02 +00002406 MI->eraseFromParent();
2407 return MBB;
2408 }
2409
Richard Sandifordb86a8342013-06-27 09:27:40 +00002410 // Get the condition needed to branch around the store.
2411 if (!Invert)
Richard Sandiford3d768e32013-07-31 12:30:20 +00002412 CCMask ^= CCValid;
Richard Sandifordb86a8342013-06-27 09:27:40 +00002413
2414 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002415 MachineBasicBlock *JoinMBB = splitBlockBefore(MI, MBB);
Richard Sandifordb86a8342013-06-27 09:27:40 +00002416 MachineBasicBlock *FalseMBB = emitBlockAfter(StartMBB);
2417
2418 // StartMBB:
2419 // BRC CCMask, JoinMBB
2420 // # fallthrough to FalseMBB
Richard Sandifordb86a8342013-06-27 09:27:40 +00002421 MBB = StartMBB;
Richard Sandiford3d768e32013-07-31 12:30:20 +00002422 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2423 .addImm(CCValid).addImm(CCMask).addMBB(JoinMBB);
Richard Sandifordb86a8342013-06-27 09:27:40 +00002424 MBB->addSuccessor(JoinMBB);
2425 MBB->addSuccessor(FalseMBB);
2426
2427 // FalseMBB:
2428 // store %SrcReg, %Disp(%Index,%Base)
2429 // # fallthrough to JoinMBB
2430 MBB = FalseMBB;
2431 BuildMI(MBB, DL, TII->get(StoreOpcode))
2432 .addReg(SrcReg).addOperand(Base).addImm(Disp).addReg(IndexReg);
2433 MBB->addSuccessor(JoinMBB);
2434
2435 MI->eraseFromParent();
2436 return JoinMBB;
2437}
2438
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002439// Implement EmitInstrWithCustomInserter for pseudo ATOMIC_LOAD{,W}_*
2440// or ATOMIC_SWAP{,W} instruction MI. BinOpcode is the instruction that
2441// performs the binary operation elided by "*", or 0 for ATOMIC_SWAP{,W}.
2442// BitSize is the width of the field in bits, or 0 if this is a partword
2443// ATOMIC_LOADW_* or ATOMIC_SWAPW instruction, in which case the bitsize
2444// is one of the operands. Invert says whether the field should be
2445// inverted after performing BinOpcode (e.g. for NAND).
2446MachineBasicBlock *
2447SystemZTargetLowering::emitAtomicLoadBinary(MachineInstr *MI,
2448 MachineBasicBlock *MBB,
2449 unsigned BinOpcode,
2450 unsigned BitSize,
2451 bool Invert) const {
2452 const SystemZInstrInfo *TII = TM.getInstrInfo();
2453 MachineFunction &MF = *MBB->getParent();
2454 MachineRegisterInfo &MRI = MF.getRegInfo();
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002455 bool IsSubWord = (BitSize < 32);
2456
2457 // Extract the operands. Base can be a register or a frame index.
2458 // Src2 can be a register or immediate.
2459 unsigned Dest = MI->getOperand(0).getReg();
2460 MachineOperand Base = earlyUseOperand(MI->getOperand(1));
2461 int64_t Disp = MI->getOperand(2).getImm();
2462 MachineOperand Src2 = earlyUseOperand(MI->getOperand(3));
2463 unsigned BitShift = (IsSubWord ? MI->getOperand(4).getReg() : 0);
2464 unsigned NegBitShift = (IsSubWord ? MI->getOperand(5).getReg() : 0);
2465 DebugLoc DL = MI->getDebugLoc();
2466 if (IsSubWord)
2467 BitSize = MI->getOperand(6).getImm();
2468
2469 // Subword operations use 32-bit registers.
2470 const TargetRegisterClass *RC = (BitSize <= 32 ?
2471 &SystemZ::GR32BitRegClass :
2472 &SystemZ::GR64BitRegClass);
2473 unsigned LOpcode = BitSize <= 32 ? SystemZ::L : SystemZ::LG;
2474 unsigned CSOpcode = BitSize <= 32 ? SystemZ::CS : SystemZ::CSG;
2475
2476 // Get the right opcodes for the displacement.
2477 LOpcode = TII->getOpcodeForOffset(LOpcode, Disp);
2478 CSOpcode = TII->getOpcodeForOffset(CSOpcode, Disp);
2479 assert(LOpcode && CSOpcode && "Displacement out of range");
2480
2481 // Create virtual registers for temporary results.
2482 unsigned OrigVal = MRI.createVirtualRegister(RC);
2483 unsigned OldVal = MRI.createVirtualRegister(RC);
2484 unsigned NewVal = (BinOpcode || IsSubWord ?
2485 MRI.createVirtualRegister(RC) : Src2.getReg());
2486 unsigned RotatedOldVal = (IsSubWord ? MRI.createVirtualRegister(RC) : OldVal);
2487 unsigned RotatedNewVal = (IsSubWord ? MRI.createVirtualRegister(RC) : NewVal);
2488
2489 // Insert a basic block for the main loop.
2490 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002491 MachineBasicBlock *DoneMBB = splitBlockBefore(MI, MBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002492 MachineBasicBlock *LoopMBB = emitBlockAfter(StartMBB);
2493
2494 // StartMBB:
2495 // ...
2496 // %OrigVal = L Disp(%Base)
2497 // # fall through to LoopMMB
2498 MBB = StartMBB;
2499 BuildMI(MBB, DL, TII->get(LOpcode), OrigVal)
2500 .addOperand(Base).addImm(Disp).addReg(0);
2501 MBB->addSuccessor(LoopMBB);
2502
2503 // LoopMBB:
2504 // %OldVal = phi [ %OrigVal, StartMBB ], [ %Dest, LoopMBB ]
2505 // %RotatedOldVal = RLL %OldVal, 0(%BitShift)
2506 // %RotatedNewVal = OP %RotatedOldVal, %Src2
2507 // %NewVal = RLL %RotatedNewVal, 0(%NegBitShift)
2508 // %Dest = CS %OldVal, %NewVal, Disp(%Base)
2509 // JNE LoopMBB
2510 // # fall through to DoneMMB
2511 MBB = LoopMBB;
2512 BuildMI(MBB, DL, TII->get(SystemZ::PHI), OldVal)
2513 .addReg(OrigVal).addMBB(StartMBB)
2514 .addReg(Dest).addMBB(LoopMBB);
2515 if (IsSubWord)
2516 BuildMI(MBB, DL, TII->get(SystemZ::RLL), RotatedOldVal)
2517 .addReg(OldVal).addReg(BitShift).addImm(0);
2518 if (Invert) {
2519 // Perform the operation normally and then invert every bit of the field.
2520 unsigned Tmp = MRI.createVirtualRegister(RC);
2521 BuildMI(MBB, DL, TII->get(BinOpcode), Tmp)
2522 .addReg(RotatedOldVal).addOperand(Src2);
2523 if (BitSize < 32)
2524 // XILF with the upper BitSize bits set.
Richard Sandiford652784e2013-09-25 11:11:53 +00002525 BuildMI(MBB, DL, TII->get(SystemZ::XILF), RotatedNewVal)
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002526 .addReg(Tmp).addImm(uint32_t(~0 << (32 - BitSize)));
2527 else if (BitSize == 32)
2528 // XILF with every bit set.
Richard Sandiford652784e2013-09-25 11:11:53 +00002529 BuildMI(MBB, DL, TII->get(SystemZ::XILF), RotatedNewVal)
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002530 .addReg(Tmp).addImm(~uint32_t(0));
2531 else {
2532 // Use LCGR and add -1 to the result, which is more compact than
2533 // an XILF, XILH pair.
2534 unsigned Tmp2 = MRI.createVirtualRegister(RC);
2535 BuildMI(MBB, DL, TII->get(SystemZ::LCGR), Tmp2).addReg(Tmp);
2536 BuildMI(MBB, DL, TII->get(SystemZ::AGHI), RotatedNewVal)
2537 .addReg(Tmp2).addImm(-1);
2538 }
2539 } else if (BinOpcode)
2540 // A simply binary operation.
2541 BuildMI(MBB, DL, TII->get(BinOpcode), RotatedNewVal)
2542 .addReg(RotatedOldVal).addOperand(Src2);
2543 else if (IsSubWord)
2544 // Use RISBG to rotate Src2 into position and use it to replace the
2545 // field in RotatedOldVal.
2546 BuildMI(MBB, DL, TII->get(SystemZ::RISBG32), RotatedNewVal)
2547 .addReg(RotatedOldVal).addReg(Src2.getReg())
2548 .addImm(32).addImm(31 + BitSize).addImm(32 - BitSize);
2549 if (IsSubWord)
2550 BuildMI(MBB, DL, TII->get(SystemZ::RLL), NewVal)
2551 .addReg(RotatedNewVal).addReg(NegBitShift).addImm(0);
2552 BuildMI(MBB, DL, TII->get(CSOpcode), Dest)
2553 .addReg(OldVal).addReg(NewVal).addOperand(Base).addImm(Disp);
Richard Sandiford3d768e32013-07-31 12:30:20 +00002554 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2555 .addImm(SystemZ::CCMASK_CS).addImm(SystemZ::CCMASK_CS_NE).addMBB(LoopMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002556 MBB->addSuccessor(LoopMBB);
2557 MBB->addSuccessor(DoneMBB);
2558
2559 MI->eraseFromParent();
2560 return DoneMBB;
2561}
2562
2563// Implement EmitInstrWithCustomInserter for pseudo
2564// ATOMIC_LOAD{,W}_{,U}{MIN,MAX} instruction MI. CompareOpcode is the
2565// instruction that should be used to compare the current field with the
2566// minimum or maximum value. KeepOldMask is the BRC condition-code mask
2567// for when the current field should be kept. BitSize is the width of
2568// the field in bits, or 0 if this is a partword ATOMIC_LOADW_* instruction.
2569MachineBasicBlock *
2570SystemZTargetLowering::emitAtomicLoadMinMax(MachineInstr *MI,
2571 MachineBasicBlock *MBB,
2572 unsigned CompareOpcode,
2573 unsigned KeepOldMask,
2574 unsigned BitSize) const {
2575 const SystemZInstrInfo *TII = TM.getInstrInfo();
2576 MachineFunction &MF = *MBB->getParent();
2577 MachineRegisterInfo &MRI = MF.getRegInfo();
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002578 bool IsSubWord = (BitSize < 32);
2579
2580 // Extract the operands. Base can be a register or a frame index.
2581 unsigned Dest = MI->getOperand(0).getReg();
2582 MachineOperand Base = earlyUseOperand(MI->getOperand(1));
2583 int64_t Disp = MI->getOperand(2).getImm();
2584 unsigned Src2 = MI->getOperand(3).getReg();
2585 unsigned BitShift = (IsSubWord ? MI->getOperand(4).getReg() : 0);
2586 unsigned NegBitShift = (IsSubWord ? MI->getOperand(5).getReg() : 0);
2587 DebugLoc DL = MI->getDebugLoc();
2588 if (IsSubWord)
2589 BitSize = MI->getOperand(6).getImm();
2590
2591 // Subword operations use 32-bit registers.
2592 const TargetRegisterClass *RC = (BitSize <= 32 ?
2593 &SystemZ::GR32BitRegClass :
2594 &SystemZ::GR64BitRegClass);
2595 unsigned LOpcode = BitSize <= 32 ? SystemZ::L : SystemZ::LG;
2596 unsigned CSOpcode = BitSize <= 32 ? SystemZ::CS : SystemZ::CSG;
2597
2598 // Get the right opcodes for the displacement.
2599 LOpcode = TII->getOpcodeForOffset(LOpcode, Disp);
2600 CSOpcode = TII->getOpcodeForOffset(CSOpcode, Disp);
2601 assert(LOpcode && CSOpcode && "Displacement out of range");
2602
2603 // Create virtual registers for temporary results.
2604 unsigned OrigVal = MRI.createVirtualRegister(RC);
2605 unsigned OldVal = MRI.createVirtualRegister(RC);
2606 unsigned NewVal = MRI.createVirtualRegister(RC);
2607 unsigned RotatedOldVal = (IsSubWord ? MRI.createVirtualRegister(RC) : OldVal);
2608 unsigned RotatedAltVal = (IsSubWord ? MRI.createVirtualRegister(RC) : Src2);
2609 unsigned RotatedNewVal = (IsSubWord ? MRI.createVirtualRegister(RC) : NewVal);
2610
2611 // Insert 3 basic blocks for the loop.
2612 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002613 MachineBasicBlock *DoneMBB = splitBlockBefore(MI, MBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002614 MachineBasicBlock *LoopMBB = emitBlockAfter(StartMBB);
2615 MachineBasicBlock *UseAltMBB = emitBlockAfter(LoopMBB);
2616 MachineBasicBlock *UpdateMBB = emitBlockAfter(UseAltMBB);
2617
2618 // StartMBB:
2619 // ...
2620 // %OrigVal = L Disp(%Base)
2621 // # fall through to LoopMMB
2622 MBB = StartMBB;
2623 BuildMI(MBB, DL, TII->get(LOpcode), OrigVal)
2624 .addOperand(Base).addImm(Disp).addReg(0);
2625 MBB->addSuccessor(LoopMBB);
2626
2627 // LoopMBB:
2628 // %OldVal = phi [ %OrigVal, StartMBB ], [ %Dest, UpdateMBB ]
2629 // %RotatedOldVal = RLL %OldVal, 0(%BitShift)
2630 // CompareOpcode %RotatedOldVal, %Src2
Richard Sandiford312425f2013-05-20 14:23:08 +00002631 // BRC KeepOldMask, UpdateMBB
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002632 MBB = LoopMBB;
2633 BuildMI(MBB, DL, TII->get(SystemZ::PHI), OldVal)
2634 .addReg(OrigVal).addMBB(StartMBB)
2635 .addReg(Dest).addMBB(UpdateMBB);
2636 if (IsSubWord)
2637 BuildMI(MBB, DL, TII->get(SystemZ::RLL), RotatedOldVal)
2638 .addReg(OldVal).addReg(BitShift).addImm(0);
Richard Sandiford8a757bb2013-07-31 12:11:07 +00002639 BuildMI(MBB, DL, TII->get(CompareOpcode))
2640 .addReg(RotatedOldVal).addReg(Src2);
2641 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
Richard Sandiford3d768e32013-07-31 12:30:20 +00002642 .addImm(SystemZ::CCMASK_ICMP).addImm(KeepOldMask).addMBB(UpdateMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002643 MBB->addSuccessor(UpdateMBB);
2644 MBB->addSuccessor(UseAltMBB);
2645
2646 // UseAltMBB:
2647 // %RotatedAltVal = RISBG %RotatedOldVal, %Src2, 32, 31 + BitSize, 0
2648 // # fall through to UpdateMMB
2649 MBB = UseAltMBB;
2650 if (IsSubWord)
2651 BuildMI(MBB, DL, TII->get(SystemZ::RISBG32), RotatedAltVal)
2652 .addReg(RotatedOldVal).addReg(Src2)
2653 .addImm(32).addImm(31 + BitSize).addImm(0);
2654 MBB->addSuccessor(UpdateMBB);
2655
2656 // UpdateMBB:
2657 // %RotatedNewVal = PHI [ %RotatedOldVal, LoopMBB ],
2658 // [ %RotatedAltVal, UseAltMBB ]
2659 // %NewVal = RLL %RotatedNewVal, 0(%NegBitShift)
2660 // %Dest = CS %OldVal, %NewVal, Disp(%Base)
2661 // JNE LoopMBB
2662 // # fall through to DoneMMB
2663 MBB = UpdateMBB;
2664 BuildMI(MBB, DL, TII->get(SystemZ::PHI), RotatedNewVal)
2665 .addReg(RotatedOldVal).addMBB(LoopMBB)
2666 .addReg(RotatedAltVal).addMBB(UseAltMBB);
2667 if (IsSubWord)
2668 BuildMI(MBB, DL, TII->get(SystemZ::RLL), NewVal)
2669 .addReg(RotatedNewVal).addReg(NegBitShift).addImm(0);
2670 BuildMI(MBB, DL, TII->get(CSOpcode), Dest)
2671 .addReg(OldVal).addReg(NewVal).addOperand(Base).addImm(Disp);
Richard Sandiford3d768e32013-07-31 12:30:20 +00002672 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2673 .addImm(SystemZ::CCMASK_CS).addImm(SystemZ::CCMASK_CS_NE).addMBB(LoopMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002674 MBB->addSuccessor(LoopMBB);
2675 MBB->addSuccessor(DoneMBB);
2676
2677 MI->eraseFromParent();
2678 return DoneMBB;
2679}
2680
2681// Implement EmitInstrWithCustomInserter for pseudo ATOMIC_CMP_SWAPW
2682// instruction MI.
2683MachineBasicBlock *
2684SystemZTargetLowering::emitAtomicCmpSwapW(MachineInstr *MI,
2685 MachineBasicBlock *MBB) const {
2686 const SystemZInstrInfo *TII = TM.getInstrInfo();
2687 MachineFunction &MF = *MBB->getParent();
2688 MachineRegisterInfo &MRI = MF.getRegInfo();
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002689
2690 // Extract the operands. Base can be a register or a frame index.
2691 unsigned Dest = MI->getOperand(0).getReg();
2692 MachineOperand Base = earlyUseOperand(MI->getOperand(1));
2693 int64_t Disp = MI->getOperand(2).getImm();
2694 unsigned OrigCmpVal = MI->getOperand(3).getReg();
2695 unsigned OrigSwapVal = MI->getOperand(4).getReg();
2696 unsigned BitShift = MI->getOperand(5).getReg();
2697 unsigned NegBitShift = MI->getOperand(6).getReg();
2698 int64_t BitSize = MI->getOperand(7).getImm();
2699 DebugLoc DL = MI->getDebugLoc();
2700
2701 const TargetRegisterClass *RC = &SystemZ::GR32BitRegClass;
2702
2703 // Get the right opcodes for the displacement.
2704 unsigned LOpcode = TII->getOpcodeForOffset(SystemZ::L, Disp);
2705 unsigned CSOpcode = TII->getOpcodeForOffset(SystemZ::CS, Disp);
2706 assert(LOpcode && CSOpcode && "Displacement out of range");
2707
2708 // Create virtual registers for temporary results.
2709 unsigned OrigOldVal = MRI.createVirtualRegister(RC);
2710 unsigned OldVal = MRI.createVirtualRegister(RC);
2711 unsigned CmpVal = MRI.createVirtualRegister(RC);
2712 unsigned SwapVal = MRI.createVirtualRegister(RC);
2713 unsigned StoreVal = MRI.createVirtualRegister(RC);
2714 unsigned RetryOldVal = MRI.createVirtualRegister(RC);
2715 unsigned RetryCmpVal = MRI.createVirtualRegister(RC);
2716 unsigned RetrySwapVal = MRI.createVirtualRegister(RC);
2717
2718 // Insert 2 basic blocks for the loop.
2719 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002720 MachineBasicBlock *DoneMBB = splitBlockBefore(MI, MBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002721 MachineBasicBlock *LoopMBB = emitBlockAfter(StartMBB);
2722 MachineBasicBlock *SetMBB = emitBlockAfter(LoopMBB);
2723
2724 // StartMBB:
2725 // ...
2726 // %OrigOldVal = L Disp(%Base)
2727 // # fall through to LoopMMB
2728 MBB = StartMBB;
2729 BuildMI(MBB, DL, TII->get(LOpcode), OrigOldVal)
2730 .addOperand(Base).addImm(Disp).addReg(0);
2731 MBB->addSuccessor(LoopMBB);
2732
2733 // LoopMBB:
2734 // %OldVal = phi [ %OrigOldVal, EntryBB ], [ %RetryOldVal, SetMBB ]
2735 // %CmpVal = phi [ %OrigCmpVal, EntryBB ], [ %RetryCmpVal, SetMBB ]
2736 // %SwapVal = phi [ %OrigSwapVal, EntryBB ], [ %RetrySwapVal, SetMBB ]
2737 // %Dest = RLL %OldVal, BitSize(%BitShift)
2738 // ^^ The low BitSize bits contain the field
2739 // of interest.
2740 // %RetryCmpVal = RISBG32 %CmpVal, %Dest, 32, 63-BitSize, 0
2741 // ^^ Replace the upper 32-BitSize bits of the
2742 // comparison value with those that we loaded,
2743 // so that we can use a full word comparison.
Richard Sandiford8a757bb2013-07-31 12:11:07 +00002744 // CR %Dest, %RetryCmpVal
2745 // JNE DoneMBB
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002746 // # Fall through to SetMBB
2747 MBB = LoopMBB;
2748 BuildMI(MBB, DL, TII->get(SystemZ::PHI), OldVal)
2749 .addReg(OrigOldVal).addMBB(StartMBB)
2750 .addReg(RetryOldVal).addMBB(SetMBB);
2751 BuildMI(MBB, DL, TII->get(SystemZ::PHI), CmpVal)
2752 .addReg(OrigCmpVal).addMBB(StartMBB)
2753 .addReg(RetryCmpVal).addMBB(SetMBB);
2754 BuildMI(MBB, DL, TII->get(SystemZ::PHI), SwapVal)
2755 .addReg(OrigSwapVal).addMBB(StartMBB)
2756 .addReg(RetrySwapVal).addMBB(SetMBB);
2757 BuildMI(MBB, DL, TII->get(SystemZ::RLL), Dest)
2758 .addReg(OldVal).addReg(BitShift).addImm(BitSize);
2759 BuildMI(MBB, DL, TII->get(SystemZ::RISBG32), RetryCmpVal)
2760 .addReg(CmpVal).addReg(Dest).addImm(32).addImm(63 - BitSize).addImm(0);
Richard Sandiford8a757bb2013-07-31 12:11:07 +00002761 BuildMI(MBB, DL, TII->get(SystemZ::CR))
2762 .addReg(Dest).addReg(RetryCmpVal);
2763 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
Richard Sandiford3d768e32013-07-31 12:30:20 +00002764 .addImm(SystemZ::CCMASK_ICMP)
2765 .addImm(SystemZ::CCMASK_CMP_NE).addMBB(DoneMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002766 MBB->addSuccessor(DoneMBB);
2767 MBB->addSuccessor(SetMBB);
2768
2769 // SetMBB:
2770 // %RetrySwapVal = RISBG32 %SwapVal, %Dest, 32, 63-BitSize, 0
2771 // ^^ Replace the upper 32-BitSize bits of the new
2772 // value with those that we loaded.
2773 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
2774 // ^^ Rotate the new field to its proper position.
2775 // %RetryOldVal = CS %Dest, %StoreVal, Disp(%Base)
2776 // JNE LoopMBB
2777 // # fall through to ExitMMB
2778 MBB = SetMBB;
2779 BuildMI(MBB, DL, TII->get(SystemZ::RISBG32), RetrySwapVal)
2780 .addReg(SwapVal).addReg(Dest).addImm(32).addImm(63 - BitSize).addImm(0);
2781 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
2782 .addReg(RetrySwapVal).addReg(NegBitShift).addImm(-BitSize);
2783 BuildMI(MBB, DL, TII->get(CSOpcode), RetryOldVal)
2784 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp);
Richard Sandiford3d768e32013-07-31 12:30:20 +00002785 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2786 .addImm(SystemZ::CCMASK_CS).addImm(SystemZ::CCMASK_CS_NE).addMBB(LoopMBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002787 MBB->addSuccessor(LoopMBB);
2788 MBB->addSuccessor(DoneMBB);
2789
2790 MI->eraseFromParent();
2791 return DoneMBB;
2792}
2793
2794// Emit an extension from a GR32 or GR64 to a GR128. ClearEven is true
2795// if the high register of the GR128 value must be cleared or false if
Richard Sandiford87a44362013-09-30 10:28:35 +00002796// it's "don't care". SubReg is subreg_l32 when extending a GR32
2797// and subreg_l64 when extending a GR64.
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002798MachineBasicBlock *
2799SystemZTargetLowering::emitExt128(MachineInstr *MI,
2800 MachineBasicBlock *MBB,
2801 bool ClearEven, unsigned SubReg) const {
2802 const SystemZInstrInfo *TII = TM.getInstrInfo();
2803 MachineFunction &MF = *MBB->getParent();
2804 MachineRegisterInfo &MRI = MF.getRegInfo();
2805 DebugLoc DL = MI->getDebugLoc();
2806
2807 unsigned Dest = MI->getOperand(0).getReg();
2808 unsigned Src = MI->getOperand(1).getReg();
2809 unsigned In128 = MRI.createVirtualRegister(&SystemZ::GR128BitRegClass);
2810
2811 BuildMI(*MBB, MI, DL, TII->get(TargetOpcode::IMPLICIT_DEF), In128);
2812 if (ClearEven) {
2813 unsigned NewIn128 = MRI.createVirtualRegister(&SystemZ::GR128BitRegClass);
2814 unsigned Zero64 = MRI.createVirtualRegister(&SystemZ::GR64BitRegClass);
2815
2816 BuildMI(*MBB, MI, DL, TII->get(SystemZ::LLILL), Zero64)
2817 .addImm(0);
2818 BuildMI(*MBB, MI, DL, TII->get(TargetOpcode::INSERT_SUBREG), NewIn128)
Richard Sandiford87a44362013-09-30 10:28:35 +00002819 .addReg(In128).addReg(Zero64).addImm(SystemZ::subreg_h64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00002820 In128 = NewIn128;
2821 }
2822 BuildMI(*MBB, MI, DL, TII->get(TargetOpcode::INSERT_SUBREG), Dest)
2823 .addReg(In128).addReg(Src).addImm(SubReg);
2824
2825 MI->eraseFromParent();
2826 return MBB;
2827}
2828
Richard Sandifordd131ff82013-07-08 09:35:23 +00002829MachineBasicBlock *
Richard Sandiford564681c2013-08-12 10:28:10 +00002830SystemZTargetLowering::emitMemMemWrapper(MachineInstr *MI,
2831 MachineBasicBlock *MBB,
2832 unsigned Opcode) const {
Richard Sandifordd131ff82013-07-08 09:35:23 +00002833 const SystemZInstrInfo *TII = TM.getInstrInfo();
Richard Sandiford5e318f02013-08-27 09:54:29 +00002834 MachineFunction &MF = *MBB->getParent();
2835 MachineRegisterInfo &MRI = MF.getRegInfo();
Richard Sandifordd131ff82013-07-08 09:35:23 +00002836 DebugLoc DL = MI->getDebugLoc();
2837
Richard Sandiford5e318f02013-08-27 09:54:29 +00002838 MachineOperand DestBase = earlyUseOperand(MI->getOperand(0));
Richard Sandifordd131ff82013-07-08 09:35:23 +00002839 uint64_t DestDisp = MI->getOperand(1).getImm();
Richard Sandiford5e318f02013-08-27 09:54:29 +00002840 MachineOperand SrcBase = earlyUseOperand(MI->getOperand(2));
Richard Sandifordd131ff82013-07-08 09:35:23 +00002841 uint64_t SrcDisp = MI->getOperand(3).getImm();
2842 uint64_t Length = MI->getOperand(4).getImm();
2843
Richard Sandifordbe133a82013-08-28 09:01:51 +00002844 // When generating more than one CLC, all but the last will need to
2845 // branch to the end when a difference is found.
2846 MachineBasicBlock *EndMBB = (Length > 256 && Opcode == SystemZ::CLC ?
2847 splitBlockAfter(MI, MBB) : 0);
2848
Richard Sandiford5e318f02013-08-27 09:54:29 +00002849 // Check for the loop form, in which operand 5 is the trip count.
2850 if (MI->getNumExplicitOperands() > 5) {
2851 bool HaveSingleBase = DestBase.isIdenticalTo(SrcBase);
2852
2853 uint64_t StartCountReg = MI->getOperand(5).getReg();
2854 uint64_t StartSrcReg = forceReg(MI, SrcBase, TII);
2855 uint64_t StartDestReg = (HaveSingleBase ? StartSrcReg :
2856 forceReg(MI, DestBase, TII));
2857
2858 const TargetRegisterClass *RC = &SystemZ::ADDR64BitRegClass;
2859 uint64_t ThisSrcReg = MRI.createVirtualRegister(RC);
2860 uint64_t ThisDestReg = (HaveSingleBase ? ThisSrcReg :
2861 MRI.createVirtualRegister(RC));
2862 uint64_t NextSrcReg = MRI.createVirtualRegister(RC);
2863 uint64_t NextDestReg = (HaveSingleBase ? NextSrcReg :
2864 MRI.createVirtualRegister(RC));
2865
2866 RC = &SystemZ::GR64BitRegClass;
2867 uint64_t ThisCountReg = MRI.createVirtualRegister(RC);
2868 uint64_t NextCountReg = MRI.createVirtualRegister(RC);
2869
2870 MachineBasicBlock *StartMBB = MBB;
2871 MachineBasicBlock *DoneMBB = splitBlockBefore(MI, MBB);
2872 MachineBasicBlock *LoopMBB = emitBlockAfter(StartMBB);
Richard Sandifordbe133a82013-08-28 09:01:51 +00002873 MachineBasicBlock *NextMBB = (EndMBB ? emitBlockAfter(LoopMBB) : LoopMBB);
Richard Sandiford5e318f02013-08-27 09:54:29 +00002874
2875 // StartMBB:
2876 // # fall through to LoopMMB
2877 MBB->addSuccessor(LoopMBB);
2878
2879 // LoopMBB:
2880 // %ThisDestReg = phi [ %StartDestReg, StartMBB ],
Richard Sandifordbe133a82013-08-28 09:01:51 +00002881 // [ %NextDestReg, NextMBB ]
Richard Sandiford5e318f02013-08-27 09:54:29 +00002882 // %ThisSrcReg = phi [ %StartSrcReg, StartMBB ],
Richard Sandifordbe133a82013-08-28 09:01:51 +00002883 // [ %NextSrcReg, NextMBB ]
Richard Sandiford5e318f02013-08-27 09:54:29 +00002884 // %ThisCountReg = phi [ %StartCountReg, StartMBB ],
Richard Sandifordbe133a82013-08-28 09:01:51 +00002885 // [ %NextCountReg, NextMBB ]
2886 // ( PFD 2, 768+DestDisp(%ThisDestReg) )
Richard Sandiford5e318f02013-08-27 09:54:29 +00002887 // Opcode DestDisp(256,%ThisDestReg), SrcDisp(%ThisSrcReg)
Richard Sandifordbe133a82013-08-28 09:01:51 +00002888 // ( JLH EndMBB )
2889 //
2890 // The prefetch is used only for MVC. The JLH is used only for CLC.
2891 MBB = LoopMBB;
2892
2893 BuildMI(MBB, DL, TII->get(SystemZ::PHI), ThisDestReg)
2894 .addReg(StartDestReg).addMBB(StartMBB)
2895 .addReg(NextDestReg).addMBB(NextMBB);
2896 if (!HaveSingleBase)
2897 BuildMI(MBB, DL, TII->get(SystemZ::PHI), ThisSrcReg)
2898 .addReg(StartSrcReg).addMBB(StartMBB)
2899 .addReg(NextSrcReg).addMBB(NextMBB);
2900 BuildMI(MBB, DL, TII->get(SystemZ::PHI), ThisCountReg)
2901 .addReg(StartCountReg).addMBB(StartMBB)
2902 .addReg(NextCountReg).addMBB(NextMBB);
2903 if (Opcode == SystemZ::MVC)
2904 BuildMI(MBB, DL, TII->get(SystemZ::PFD))
2905 .addImm(SystemZ::PFD_WRITE)
2906 .addReg(ThisDestReg).addImm(DestDisp + 768).addReg(0);
2907 BuildMI(MBB, DL, TII->get(Opcode))
2908 .addReg(ThisDestReg).addImm(DestDisp).addImm(256)
2909 .addReg(ThisSrcReg).addImm(SrcDisp);
2910 if (EndMBB) {
2911 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2912 .addImm(SystemZ::CCMASK_ICMP).addImm(SystemZ::CCMASK_CMP_NE)
2913 .addMBB(EndMBB);
2914 MBB->addSuccessor(EndMBB);
2915 MBB->addSuccessor(NextMBB);
2916 }
2917
2918 // NextMBB:
Richard Sandiford5e318f02013-08-27 09:54:29 +00002919 // %NextDestReg = LA 256(%ThisDestReg)
2920 // %NextSrcReg = LA 256(%ThisSrcReg)
2921 // %NextCountReg = AGHI %ThisCountReg, -1
2922 // CGHI %NextCountReg, 0
2923 // JLH LoopMBB
2924 // # fall through to DoneMMB
2925 //
2926 // The AGHI, CGHI and JLH should be converted to BRCTG by later passes.
Richard Sandifordbe133a82013-08-28 09:01:51 +00002927 MBB = NextMBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00002928
Richard Sandiford5e318f02013-08-27 09:54:29 +00002929 BuildMI(MBB, DL, TII->get(SystemZ::LA), NextDestReg)
2930 .addReg(ThisDestReg).addImm(256).addReg(0);
2931 if (!HaveSingleBase)
2932 BuildMI(MBB, DL, TII->get(SystemZ::LA), NextSrcReg)
2933 .addReg(ThisSrcReg).addImm(256).addReg(0);
2934 BuildMI(MBB, DL, TII->get(SystemZ::AGHI), NextCountReg)
2935 .addReg(ThisCountReg).addImm(-1);
2936 BuildMI(MBB, DL, TII->get(SystemZ::CGHI))
2937 .addReg(NextCountReg).addImm(0);
2938 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2939 .addImm(SystemZ::CCMASK_ICMP).addImm(SystemZ::CCMASK_CMP_NE)
2940 .addMBB(LoopMBB);
2941 MBB->addSuccessor(LoopMBB);
2942 MBB->addSuccessor(DoneMBB);
2943
2944 DestBase = MachineOperand::CreateReg(NextDestReg, false);
2945 SrcBase = MachineOperand::CreateReg(NextSrcReg, false);
2946 Length &= 255;
2947 MBB = DoneMBB;
2948 }
2949 // Handle any remaining bytes with straight-line code.
2950 while (Length > 0) {
2951 uint64_t ThisLength = std::min(Length, uint64_t(256));
2952 // The previous iteration might have created out-of-range displacements.
2953 // Apply them using LAY if so.
2954 if (!isUInt<12>(DestDisp)) {
2955 unsigned Reg = MRI.createVirtualRegister(&SystemZ::ADDR64BitRegClass);
2956 BuildMI(*MBB, MI, MI->getDebugLoc(), TII->get(SystemZ::LAY), Reg)
2957 .addOperand(DestBase).addImm(DestDisp).addReg(0);
2958 DestBase = MachineOperand::CreateReg(Reg, false);
2959 DestDisp = 0;
2960 }
2961 if (!isUInt<12>(SrcDisp)) {
2962 unsigned Reg = MRI.createVirtualRegister(&SystemZ::ADDR64BitRegClass);
2963 BuildMI(*MBB, MI, MI->getDebugLoc(), TII->get(SystemZ::LAY), Reg)
2964 .addOperand(SrcBase).addImm(SrcDisp).addReg(0);
2965 SrcBase = MachineOperand::CreateReg(Reg, false);
2966 SrcDisp = 0;
2967 }
2968 BuildMI(*MBB, MI, DL, TII->get(Opcode))
2969 .addOperand(DestBase).addImm(DestDisp).addImm(ThisLength)
2970 .addOperand(SrcBase).addImm(SrcDisp);
2971 DestDisp += ThisLength;
2972 SrcDisp += ThisLength;
2973 Length -= ThisLength;
Richard Sandifordbe133a82013-08-28 09:01:51 +00002974 // If there's another CLC to go, branch to the end if a difference
2975 // was found.
2976 if (EndMBB && Length > 0) {
2977 MachineBasicBlock *NextMBB = splitBlockBefore(MI, MBB);
2978 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
2979 .addImm(SystemZ::CCMASK_ICMP).addImm(SystemZ::CCMASK_CMP_NE)
2980 .addMBB(EndMBB);
2981 MBB->addSuccessor(EndMBB);
2982 MBB->addSuccessor(NextMBB);
2983 MBB = NextMBB;
2984 }
2985 }
2986 if (EndMBB) {
2987 MBB->addSuccessor(EndMBB);
2988 MBB = EndMBB;
2989 MBB->addLiveIn(SystemZ::CC);
Richard Sandiford5e318f02013-08-27 09:54:29 +00002990 }
Richard Sandifordd131ff82013-07-08 09:35:23 +00002991
2992 MI->eraseFromParent();
2993 return MBB;
2994}
2995
Richard Sandifordca232712013-08-16 11:21:54 +00002996// Decompose string pseudo-instruction MI into a loop that continually performs
2997// Opcode until CC != 3.
2998MachineBasicBlock *
2999SystemZTargetLowering::emitStringWrapper(MachineInstr *MI,
3000 MachineBasicBlock *MBB,
3001 unsigned Opcode) const {
3002 const SystemZInstrInfo *TII = TM.getInstrInfo();
3003 MachineFunction &MF = *MBB->getParent();
3004 MachineRegisterInfo &MRI = MF.getRegInfo();
3005 DebugLoc DL = MI->getDebugLoc();
3006
3007 uint64_t End1Reg = MI->getOperand(0).getReg();
3008 uint64_t Start1Reg = MI->getOperand(1).getReg();
3009 uint64_t Start2Reg = MI->getOperand(2).getReg();
3010 uint64_t CharReg = MI->getOperand(3).getReg();
3011
3012 const TargetRegisterClass *RC = &SystemZ::GR64BitRegClass;
3013 uint64_t This1Reg = MRI.createVirtualRegister(RC);
3014 uint64_t This2Reg = MRI.createVirtualRegister(RC);
3015 uint64_t End2Reg = MRI.createVirtualRegister(RC);
3016
3017 MachineBasicBlock *StartMBB = MBB;
Richard Sandiford5e318f02013-08-27 09:54:29 +00003018 MachineBasicBlock *DoneMBB = splitBlockBefore(MI, MBB);
Richard Sandifordca232712013-08-16 11:21:54 +00003019 MachineBasicBlock *LoopMBB = emitBlockAfter(StartMBB);
3020
3021 // StartMBB:
Richard Sandifordca232712013-08-16 11:21:54 +00003022 // # fall through to LoopMMB
Richard Sandifordca232712013-08-16 11:21:54 +00003023 MBB->addSuccessor(LoopMBB);
3024
3025 // LoopMBB:
3026 // %This1Reg = phi [ %Start1Reg, StartMBB ], [ %End1Reg, LoopMBB ]
3027 // %This2Reg = phi [ %Start2Reg, StartMBB ], [ %End2Reg, LoopMBB ]
Richard Sandiford7789b082013-09-30 08:48:38 +00003028 // R0L = %CharReg
3029 // %End1Reg, %End2Reg = CLST %This1Reg, %This2Reg -- uses R0L
Richard Sandifordca232712013-08-16 11:21:54 +00003030 // JO LoopMBB
3031 // # fall through to DoneMMB
Richard Sandiford6f6d5512013-08-20 09:38:48 +00003032 //
Richard Sandiford7789b082013-09-30 08:48:38 +00003033 // The load of R0L can be hoisted by post-RA LICM.
Richard Sandifordca232712013-08-16 11:21:54 +00003034 MBB = LoopMBB;
Richard Sandifordca232712013-08-16 11:21:54 +00003035
3036 BuildMI(MBB, DL, TII->get(SystemZ::PHI), This1Reg)
3037 .addReg(Start1Reg).addMBB(StartMBB)
3038 .addReg(End1Reg).addMBB(LoopMBB);
3039 BuildMI(MBB, DL, TII->get(SystemZ::PHI), This2Reg)
3040 .addReg(Start2Reg).addMBB(StartMBB)
3041 .addReg(End2Reg).addMBB(LoopMBB);
Richard Sandiford7789b082013-09-30 08:48:38 +00003042 BuildMI(MBB, DL, TII->get(TargetOpcode::COPY), SystemZ::R0L).addReg(CharReg);
Richard Sandifordca232712013-08-16 11:21:54 +00003043 BuildMI(MBB, DL, TII->get(Opcode))
3044 .addReg(End1Reg, RegState::Define).addReg(End2Reg, RegState::Define)
3045 .addReg(This1Reg).addReg(This2Reg);
3046 BuildMI(MBB, DL, TII->get(SystemZ::BRC))
3047 .addImm(SystemZ::CCMASK_ANY).addImm(SystemZ::CCMASK_3).addMBB(LoopMBB);
3048 MBB->addSuccessor(LoopMBB);
3049 MBB->addSuccessor(DoneMBB);
3050
3051 DoneMBB->addLiveIn(SystemZ::CC);
3052
3053 MI->eraseFromParent();
3054 return DoneMBB;
3055}
3056
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003057MachineBasicBlock *SystemZTargetLowering::
3058EmitInstrWithCustomInserter(MachineInstr *MI, MachineBasicBlock *MBB) const {
3059 switch (MI->getOpcode()) {
Richard Sandiford7c5c0ea2013-10-01 13:10:16 +00003060 case SystemZ::Select32Mux:
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003061 case SystemZ::Select32:
3062 case SystemZ::SelectF32:
3063 case SystemZ::Select64:
3064 case SystemZ::SelectF64:
3065 case SystemZ::SelectF128:
3066 return emitSelect(MI, MBB);
3067
Richard Sandiford2896d042013-10-01 14:33:55 +00003068 case SystemZ::CondStore8Mux:
3069 return emitCondStore(MI, MBB, SystemZ::STCMux, 0, false);
3070 case SystemZ::CondStore8MuxInv:
3071 return emitCondStore(MI, MBB, SystemZ::STCMux, 0, true);
3072 case SystemZ::CondStore16Mux:
3073 return emitCondStore(MI, MBB, SystemZ::STHMux, 0, false);
3074 case SystemZ::CondStore16MuxInv:
3075 return emitCondStore(MI, MBB, SystemZ::STHMux, 0, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003076 case SystemZ::CondStore8:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003077 return emitCondStore(MI, MBB, SystemZ::STC, 0, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003078 case SystemZ::CondStore8Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003079 return emitCondStore(MI, MBB, SystemZ::STC, 0, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003080 case SystemZ::CondStore16:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003081 return emitCondStore(MI, MBB, SystemZ::STH, 0, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003082 case SystemZ::CondStore16Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003083 return emitCondStore(MI, MBB, SystemZ::STH, 0, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003084 case SystemZ::CondStore32:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003085 return emitCondStore(MI, MBB, SystemZ::ST, SystemZ::STOC, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003086 case SystemZ::CondStore32Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003087 return emitCondStore(MI, MBB, SystemZ::ST, SystemZ::STOC, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003088 case SystemZ::CondStore64:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003089 return emitCondStore(MI, MBB, SystemZ::STG, SystemZ::STOCG, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003090 case SystemZ::CondStore64Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003091 return emitCondStore(MI, MBB, SystemZ::STG, SystemZ::STOCG, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003092 case SystemZ::CondStoreF32:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003093 return emitCondStore(MI, MBB, SystemZ::STE, 0, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003094 case SystemZ::CondStoreF32Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003095 return emitCondStore(MI, MBB, SystemZ::STE, 0, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003096 case SystemZ::CondStoreF64:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003097 return emitCondStore(MI, MBB, SystemZ::STD, 0, false);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003098 case SystemZ::CondStoreF64Inv:
Richard Sandiforda68e6f52013-07-25 08:57:02 +00003099 return emitCondStore(MI, MBB, SystemZ::STD, 0, true);
Richard Sandifordb86a8342013-06-27 09:27:40 +00003100
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003101 case SystemZ::AEXT128_64:
Richard Sandiford87a44362013-09-30 10:28:35 +00003102 return emitExt128(MI, MBB, false, SystemZ::subreg_l64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003103 case SystemZ::ZEXT128_32:
Richard Sandiford87a44362013-09-30 10:28:35 +00003104 return emitExt128(MI, MBB, true, SystemZ::subreg_l32);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003105 case SystemZ::ZEXT128_64:
Richard Sandiford87a44362013-09-30 10:28:35 +00003106 return emitExt128(MI, MBB, true, SystemZ::subreg_l64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003107
3108 case SystemZ::ATOMIC_SWAPW:
3109 return emitAtomicLoadBinary(MI, MBB, 0, 0);
3110 case SystemZ::ATOMIC_SWAP_32:
3111 return emitAtomicLoadBinary(MI, MBB, 0, 32);
3112 case SystemZ::ATOMIC_SWAP_64:
3113 return emitAtomicLoadBinary(MI, MBB, 0, 64);
3114
3115 case SystemZ::ATOMIC_LOADW_AR:
3116 return emitAtomicLoadBinary(MI, MBB, SystemZ::AR, 0);
3117 case SystemZ::ATOMIC_LOADW_AFI:
3118 return emitAtomicLoadBinary(MI, MBB, SystemZ::AFI, 0);
3119 case SystemZ::ATOMIC_LOAD_AR:
3120 return emitAtomicLoadBinary(MI, MBB, SystemZ::AR, 32);
3121 case SystemZ::ATOMIC_LOAD_AHI:
3122 return emitAtomicLoadBinary(MI, MBB, SystemZ::AHI, 32);
3123 case SystemZ::ATOMIC_LOAD_AFI:
3124 return emitAtomicLoadBinary(MI, MBB, SystemZ::AFI, 32);
3125 case SystemZ::ATOMIC_LOAD_AGR:
3126 return emitAtomicLoadBinary(MI, MBB, SystemZ::AGR, 64);
3127 case SystemZ::ATOMIC_LOAD_AGHI:
3128 return emitAtomicLoadBinary(MI, MBB, SystemZ::AGHI, 64);
3129 case SystemZ::ATOMIC_LOAD_AGFI:
3130 return emitAtomicLoadBinary(MI, MBB, SystemZ::AGFI, 64);
3131
3132 case SystemZ::ATOMIC_LOADW_SR:
3133 return emitAtomicLoadBinary(MI, MBB, SystemZ::SR, 0);
3134 case SystemZ::ATOMIC_LOAD_SR:
3135 return emitAtomicLoadBinary(MI, MBB, SystemZ::SR, 32);
3136 case SystemZ::ATOMIC_LOAD_SGR:
3137 return emitAtomicLoadBinary(MI, MBB, SystemZ::SGR, 64);
3138
3139 case SystemZ::ATOMIC_LOADW_NR:
3140 return emitAtomicLoadBinary(MI, MBB, SystemZ::NR, 0);
3141 case SystemZ::ATOMIC_LOADW_NILH:
Richard Sandiford652784e2013-09-25 11:11:53 +00003142 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH, 0);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003143 case SystemZ::ATOMIC_LOAD_NR:
3144 return emitAtomicLoadBinary(MI, MBB, SystemZ::NR, 32);
Richard Sandiford652784e2013-09-25 11:11:53 +00003145 case SystemZ::ATOMIC_LOAD_NILL:
3146 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILL, 32);
3147 case SystemZ::ATOMIC_LOAD_NILH:
3148 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH, 32);
3149 case SystemZ::ATOMIC_LOAD_NILF:
3150 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILF, 32);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003151 case SystemZ::ATOMIC_LOAD_NGR:
3152 return emitAtomicLoadBinary(MI, MBB, SystemZ::NGR, 64);
Richard Sandiford652784e2013-09-25 11:11:53 +00003153 case SystemZ::ATOMIC_LOAD_NILL64:
3154 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILL64, 64);
3155 case SystemZ::ATOMIC_LOAD_NILH64:
3156 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH64, 64);
Richard Sandiford70284282013-10-01 14:20:41 +00003157 case SystemZ::ATOMIC_LOAD_NIHL64:
3158 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHL64, 64);
3159 case SystemZ::ATOMIC_LOAD_NIHH64:
3160 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHH64, 64);
Richard Sandiford652784e2013-09-25 11:11:53 +00003161 case SystemZ::ATOMIC_LOAD_NILF64:
3162 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILF64, 64);
Richard Sandiford70284282013-10-01 14:20:41 +00003163 case SystemZ::ATOMIC_LOAD_NIHF64:
3164 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHF64, 64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003165
3166 case SystemZ::ATOMIC_LOADW_OR:
3167 return emitAtomicLoadBinary(MI, MBB, SystemZ::OR, 0);
3168 case SystemZ::ATOMIC_LOADW_OILH:
Richard Sandiford652784e2013-09-25 11:11:53 +00003169 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILH, 0);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003170 case SystemZ::ATOMIC_LOAD_OR:
3171 return emitAtomicLoadBinary(MI, MBB, SystemZ::OR, 32);
Richard Sandiford652784e2013-09-25 11:11:53 +00003172 case SystemZ::ATOMIC_LOAD_OILL:
3173 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILL, 32);
3174 case SystemZ::ATOMIC_LOAD_OILH:
3175 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILH, 32);
3176 case SystemZ::ATOMIC_LOAD_OILF:
3177 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILF, 32);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003178 case SystemZ::ATOMIC_LOAD_OGR:
3179 return emitAtomicLoadBinary(MI, MBB, SystemZ::OGR, 64);
Richard Sandiford652784e2013-09-25 11:11:53 +00003180 case SystemZ::ATOMIC_LOAD_OILL64:
3181 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILL64, 64);
3182 case SystemZ::ATOMIC_LOAD_OILH64:
3183 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILH64, 64);
Richard Sandiford6e96ac62013-10-01 13:22:41 +00003184 case SystemZ::ATOMIC_LOAD_OIHL64:
3185 return emitAtomicLoadBinary(MI, MBB, SystemZ::OIHL64, 64);
3186 case SystemZ::ATOMIC_LOAD_OIHH64:
3187 return emitAtomicLoadBinary(MI, MBB, SystemZ::OIHH64, 64);
Richard Sandiford652784e2013-09-25 11:11:53 +00003188 case SystemZ::ATOMIC_LOAD_OILF64:
3189 return emitAtomicLoadBinary(MI, MBB, SystemZ::OILF64, 64);
Richard Sandiford6e96ac62013-10-01 13:22:41 +00003190 case SystemZ::ATOMIC_LOAD_OIHF64:
3191 return emitAtomicLoadBinary(MI, MBB, SystemZ::OIHF64, 64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003192
3193 case SystemZ::ATOMIC_LOADW_XR:
3194 return emitAtomicLoadBinary(MI, MBB, SystemZ::XR, 0);
3195 case SystemZ::ATOMIC_LOADW_XILF:
Richard Sandiford652784e2013-09-25 11:11:53 +00003196 return emitAtomicLoadBinary(MI, MBB, SystemZ::XILF, 0);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003197 case SystemZ::ATOMIC_LOAD_XR:
3198 return emitAtomicLoadBinary(MI, MBB, SystemZ::XR, 32);
Richard Sandiford652784e2013-09-25 11:11:53 +00003199 case SystemZ::ATOMIC_LOAD_XILF:
3200 return emitAtomicLoadBinary(MI, MBB, SystemZ::XILF, 32);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003201 case SystemZ::ATOMIC_LOAD_XGR:
3202 return emitAtomicLoadBinary(MI, MBB, SystemZ::XGR, 64);
Richard Sandiford652784e2013-09-25 11:11:53 +00003203 case SystemZ::ATOMIC_LOAD_XILF64:
3204 return emitAtomicLoadBinary(MI, MBB, SystemZ::XILF64, 64);
Richard Sandiford5718dac2013-10-01 14:08:44 +00003205 case SystemZ::ATOMIC_LOAD_XIHF64:
3206 return emitAtomicLoadBinary(MI, MBB, SystemZ::XIHF64, 64);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003207
3208 case SystemZ::ATOMIC_LOADW_NRi:
3209 return emitAtomicLoadBinary(MI, MBB, SystemZ::NR, 0, true);
3210 case SystemZ::ATOMIC_LOADW_NILHi:
Richard Sandiford652784e2013-09-25 11:11:53 +00003211 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH, 0, true);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003212 case SystemZ::ATOMIC_LOAD_NRi:
3213 return emitAtomicLoadBinary(MI, MBB, SystemZ::NR, 32, true);
Richard Sandiford652784e2013-09-25 11:11:53 +00003214 case SystemZ::ATOMIC_LOAD_NILLi:
3215 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILL, 32, true);
3216 case SystemZ::ATOMIC_LOAD_NILHi:
3217 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH, 32, true);
3218 case SystemZ::ATOMIC_LOAD_NILFi:
3219 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILF, 32, true);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003220 case SystemZ::ATOMIC_LOAD_NGRi:
3221 return emitAtomicLoadBinary(MI, MBB, SystemZ::NGR, 64, true);
Richard Sandiford652784e2013-09-25 11:11:53 +00003222 case SystemZ::ATOMIC_LOAD_NILL64i:
3223 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILL64, 64, true);
3224 case SystemZ::ATOMIC_LOAD_NILH64i:
3225 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILH64, 64, true);
Richard Sandiford70284282013-10-01 14:20:41 +00003226 case SystemZ::ATOMIC_LOAD_NIHL64i:
3227 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHL64, 64, true);
3228 case SystemZ::ATOMIC_LOAD_NIHH64i:
3229 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHH64, 64, true);
Richard Sandiford652784e2013-09-25 11:11:53 +00003230 case SystemZ::ATOMIC_LOAD_NILF64i:
3231 return emitAtomicLoadBinary(MI, MBB, SystemZ::NILF64, 64, true);
Richard Sandiford70284282013-10-01 14:20:41 +00003232 case SystemZ::ATOMIC_LOAD_NIHF64i:
3233 return emitAtomicLoadBinary(MI, MBB, SystemZ::NIHF64, 64, true);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003234
3235 case SystemZ::ATOMIC_LOADW_MIN:
3236 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CR,
3237 SystemZ::CCMASK_CMP_LE, 0);
3238 case SystemZ::ATOMIC_LOAD_MIN_32:
3239 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CR,
3240 SystemZ::CCMASK_CMP_LE, 32);
3241 case SystemZ::ATOMIC_LOAD_MIN_64:
3242 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CGR,
3243 SystemZ::CCMASK_CMP_LE, 64);
3244
3245 case SystemZ::ATOMIC_LOADW_MAX:
3246 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CR,
3247 SystemZ::CCMASK_CMP_GE, 0);
3248 case SystemZ::ATOMIC_LOAD_MAX_32:
3249 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CR,
3250 SystemZ::CCMASK_CMP_GE, 32);
3251 case SystemZ::ATOMIC_LOAD_MAX_64:
3252 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CGR,
3253 SystemZ::CCMASK_CMP_GE, 64);
3254
3255 case SystemZ::ATOMIC_LOADW_UMIN:
3256 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLR,
3257 SystemZ::CCMASK_CMP_LE, 0);
3258 case SystemZ::ATOMIC_LOAD_UMIN_32:
3259 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLR,
3260 SystemZ::CCMASK_CMP_LE, 32);
3261 case SystemZ::ATOMIC_LOAD_UMIN_64:
3262 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLGR,
3263 SystemZ::CCMASK_CMP_LE, 64);
3264
3265 case SystemZ::ATOMIC_LOADW_UMAX:
3266 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLR,
3267 SystemZ::CCMASK_CMP_GE, 0);
3268 case SystemZ::ATOMIC_LOAD_UMAX_32:
3269 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLR,
3270 SystemZ::CCMASK_CMP_GE, 32);
3271 case SystemZ::ATOMIC_LOAD_UMAX_64:
3272 return emitAtomicLoadMinMax(MI, MBB, SystemZ::CLGR,
3273 SystemZ::CCMASK_CMP_GE, 64);
3274
3275 case SystemZ::ATOMIC_CMP_SWAPW:
3276 return emitAtomicCmpSwapW(MI, MBB);
Richard Sandiford5e318f02013-08-27 09:54:29 +00003277 case SystemZ::MVCSequence:
3278 case SystemZ::MVCLoop:
Richard Sandiford564681c2013-08-12 10:28:10 +00003279 return emitMemMemWrapper(MI, MBB, SystemZ::MVC);
Richard Sandiford178273a2013-09-05 10:36:45 +00003280 case SystemZ::NCSequence:
3281 case SystemZ::NCLoop:
3282 return emitMemMemWrapper(MI, MBB, SystemZ::NC);
3283 case SystemZ::OCSequence:
3284 case SystemZ::OCLoop:
3285 return emitMemMemWrapper(MI, MBB, SystemZ::OC);
3286 case SystemZ::XCSequence:
3287 case SystemZ::XCLoop:
3288 return emitMemMemWrapper(MI, MBB, SystemZ::XC);
Richard Sandiford5e318f02013-08-27 09:54:29 +00003289 case SystemZ::CLCSequence:
3290 case SystemZ::CLCLoop:
Richard Sandiford564681c2013-08-12 10:28:10 +00003291 return emitMemMemWrapper(MI, MBB, SystemZ::CLC);
Richard Sandifordca232712013-08-16 11:21:54 +00003292 case SystemZ::CLSTLoop:
3293 return emitStringWrapper(MI, MBB, SystemZ::CLST);
Richard Sandifordbb83a502013-08-16 11:29:37 +00003294 case SystemZ::MVSTLoop:
3295 return emitStringWrapper(MI, MBB, SystemZ::MVST);
Richard Sandiford0dec06a2013-08-16 11:41:43 +00003296 case SystemZ::SRSTLoop:
3297 return emitStringWrapper(MI, MBB, SystemZ::SRST);
Ulrich Weigand5f613df2013-05-06 16:15:19 +00003298 default:
3299 llvm_unreachable("Unexpected instr type to insert");
3300 }
3301}