blob: 53e6ab6e359ce4c4fcd9a8eff8af4fd219e401bf [file] [log] [blame]
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001//===-- X86FastISel.cpp - X86 FastISel 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 defines the X86-specific support for the FastISel class. Much
11// of the target-specific code is generated by tablegen in the file
12// X86GenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86.h"
17#include "X86CallingConv.h"
18#include "X86InstrBuilder.h"
19#include "X86InstrInfo.h"
20#include "X86MachineFunctionInfo.h"
21#include "X86RegisterInfo.h"
22#include "X86Subtarget.h"
23#include "X86TargetMachine.h"
24#include "llvm/Analysis/BranchProbabilityInfo.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000025#include "llvm/CodeGen/FastISel.h"
26#include "llvm/CodeGen/FunctionLoweringInfo.h"
27#include "llvm/CodeGen/MachineConstantPool.h"
28#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineRegisterInfo.h"
30#include "llvm/IR/CallSite.h"
31#include "llvm/IR/CallingConv.h"
Reid Kleckner28865802016-04-14 18:29:59 +000032#include "llvm/IR/DebugInfo.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000033#include "llvm/IR/DerivedTypes.h"
34#include "llvm/IR/GetElementPtrTypeIterator.h"
35#include "llvm/IR/GlobalAlias.h"
36#include "llvm/IR/GlobalVariable.h"
37#include "llvm/IR/Instructions.h"
38#include "llvm/IR/IntrinsicInst.h"
39#include "llvm/IR/Operator.h"
David Majnemerca194852015-02-10 22:00:34 +000040#include "llvm/MC/MCAsmInfo.h"
Rafael Espindolace4c2bc2015-06-23 12:21:54 +000041#include "llvm/MC/MCSymbol.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000042#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Target/TargetOptions.h"
44using namespace llvm;
45
46namespace {
47
48class X86FastISel final : public FastISel {
49 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
50 /// make the right decision when generating code for different targets.
51 const X86Subtarget *Subtarget;
52
53 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
54 /// floating point ops.
55 /// When SSE is available, use it for f32 operations.
56 /// When SSE2 is available, use it for f64 operations.
57 bool X86ScalarSSEf64;
58 bool X86ScalarSSEf32;
59
60public:
61 explicit X86FastISel(FunctionLoweringInfo &funcInfo,
62 const TargetLibraryInfo *libInfo)
Eric Christophera1c535b2015-02-02 23:03:45 +000063 : FastISel(funcInfo, libInfo) {
64 Subtarget = &funcInfo.MF->getSubtarget<X86Subtarget>();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000065 X86ScalarSSEf64 = Subtarget->hasSSE2();
66 X86ScalarSSEf32 = Subtarget->hasSSE1();
67 }
68
69 bool fastSelectInstruction(const Instruction *I) override;
70
71 /// \brief The specified machine instr operand is a vreg, and that
72 /// vreg is being provided by the specified load instruction. If possible,
73 /// try to fold the load as an operand to the instruction, returning true if
74 /// possible.
75 bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
76 const LoadInst *LI) override;
77
78 bool fastLowerArguments() override;
79 bool fastLowerCall(CallLoweringInfo &CLI) override;
80 bool fastLowerIntrinsicCall(const IntrinsicInst *II) override;
81
82#include "X86GenFastISel.inc"
83
84private:
Benjamin Kramerbdc49562016-06-12 15:39:02 +000085 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT,
86 const DebugLoc &DL);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000087
Pete Cooperd0dae3e2015-05-05 23:41:53 +000088 bool X86FastEmitLoad(EVT VT, X86AddressMode &AM, MachineMemOperand *MMO,
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +000089 unsigned &ResultReg, unsigned Alignment = 1);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000090
Pete Cooperd0dae3e2015-05-05 23:41:53 +000091 bool X86FastEmitStore(EVT VT, const Value *Val, X86AddressMode &AM,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000092 MachineMemOperand *MMO = nullptr, bool Aligned = false);
93 bool X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
Pete Cooperd0dae3e2015-05-05 23:41:53 +000094 X86AddressMode &AM,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000095 MachineMemOperand *MMO = nullptr, bool Aligned = false);
96
97 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
98 unsigned &ResultReg);
99
100 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
101 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
102
103 bool X86SelectLoad(const Instruction *I);
104
105 bool X86SelectStore(const Instruction *I);
106
107 bool X86SelectRet(const Instruction *I);
108
109 bool X86SelectCmp(const Instruction *I);
110
111 bool X86SelectZExt(const Instruction *I);
112
113 bool X86SelectBranch(const Instruction *I);
114
115 bool X86SelectShift(const Instruction *I);
116
117 bool X86SelectDivRem(const Instruction *I);
118
119 bool X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I);
120
121 bool X86FastEmitSSESelect(MVT RetVT, const Instruction *I);
122
123 bool X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I);
124
125 bool X86SelectSelect(const Instruction *I);
126
127 bool X86SelectTrunc(const Instruction *I);
128
Andrea Di Biagio62622d22015-02-10 12:04:41 +0000129 bool X86SelectFPExtOrFPTrunc(const Instruction *I, unsigned Opc,
130 const TargetRegisterClass *RC);
131
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000132 bool X86SelectFPExt(const Instruction *I);
133 bool X86SelectFPTrunc(const Instruction *I);
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +0000134 bool X86SelectSIToFP(const Instruction *I);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000135
136 const X86InstrInfo *getInstrInfo() const {
Eric Christophera1c535b2015-02-02 23:03:45 +0000137 return Subtarget->getInstrInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000138 }
139 const X86TargetMachine *getTargetMachine() const {
140 return static_cast<const X86TargetMachine *>(&TM);
141 }
142
143 bool handleConstantAddresses(const Value *V, X86AddressMode &AM);
144
145 unsigned X86MaterializeInt(const ConstantInt *CI, MVT VT);
146 unsigned X86MaterializeFP(const ConstantFP *CFP, MVT VT);
147 unsigned X86MaterializeGV(const GlobalValue *GV, MVT VT);
148 unsigned fastMaterializeConstant(const Constant *C) override;
149
150 unsigned fastMaterializeAlloca(const AllocaInst *C) override;
151
152 unsigned fastMaterializeFloatZero(const ConstantFP *CF) override;
153
154 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
155 /// computed in an SSE register, not on the X87 floating point stack.
156 bool isScalarFPTypeInSSEReg(EVT VT) const {
157 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
158 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
159 }
160
161 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
162
163 bool IsMemcpySmall(uint64_t Len);
164
165 bool TryEmitSmallMemcpy(X86AddressMode DestAM,
166 X86AddressMode SrcAM, uint64_t Len);
167
168 bool foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
169 const Value *Cond);
Pete Cooperd0dae3e2015-05-05 23:41:53 +0000170
171 const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB,
172 X86AddressMode &AM);
Craig Topper7ef6ea32016-12-05 04:51:31 +0000173
174 unsigned fastEmitInst_rrrr(unsigned MachineInstOpcode,
175 const TargetRegisterClass *RC, unsigned Op0,
176 bool Op0IsKill, unsigned Op1, bool Op1IsKill,
177 unsigned Op2, bool Op2IsKill, unsigned Op3,
178 bool Op3IsKill);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000179};
180
181} // end anonymous namespace.
182
183static std::pair<X86::CondCode, bool>
184getX86ConditionCode(CmpInst::Predicate Predicate) {
185 X86::CondCode CC = X86::COND_INVALID;
186 bool NeedSwap = false;
187 switch (Predicate) {
188 default: break;
189 // Floating-point Predicates
190 case CmpInst::FCMP_UEQ: CC = X86::COND_E; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000191 case CmpInst::FCMP_OLT: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000192 case CmpInst::FCMP_OGT: CC = X86::COND_A; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000193 case CmpInst::FCMP_OLE: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000194 case CmpInst::FCMP_OGE: CC = X86::COND_AE; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000195 case CmpInst::FCMP_UGT: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000196 case CmpInst::FCMP_ULT: CC = X86::COND_B; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000197 case CmpInst::FCMP_UGE: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000198 case CmpInst::FCMP_ULE: CC = X86::COND_BE; break;
199 case CmpInst::FCMP_ONE: CC = X86::COND_NE; break;
200 case CmpInst::FCMP_UNO: CC = X86::COND_P; break;
201 case CmpInst::FCMP_ORD: CC = X86::COND_NP; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000202 case CmpInst::FCMP_OEQ: LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000203 case CmpInst::FCMP_UNE: CC = X86::COND_INVALID; break;
204
205 // Integer Predicates
206 case CmpInst::ICMP_EQ: CC = X86::COND_E; break;
207 case CmpInst::ICMP_NE: CC = X86::COND_NE; break;
208 case CmpInst::ICMP_UGT: CC = X86::COND_A; break;
209 case CmpInst::ICMP_UGE: CC = X86::COND_AE; break;
210 case CmpInst::ICMP_ULT: CC = X86::COND_B; break;
211 case CmpInst::ICMP_ULE: CC = X86::COND_BE; break;
212 case CmpInst::ICMP_SGT: CC = X86::COND_G; break;
213 case CmpInst::ICMP_SGE: CC = X86::COND_GE; break;
214 case CmpInst::ICMP_SLT: CC = X86::COND_L; break;
215 case CmpInst::ICMP_SLE: CC = X86::COND_LE; break;
216 }
217
218 return std::make_pair(CC, NeedSwap);
219}
220
221static std::pair<unsigned, bool>
222getX86SSEConditionCode(CmpInst::Predicate Predicate) {
223 unsigned CC;
224 bool NeedSwap = false;
225
226 // SSE Condition code mapping:
227 // 0 - EQ
228 // 1 - LT
229 // 2 - LE
230 // 3 - UNORD
231 // 4 - NEQ
232 // 5 - NLT
233 // 6 - NLE
234 // 7 - ORD
235 switch (Predicate) {
236 default: llvm_unreachable("Unexpected predicate");
237 case CmpInst::FCMP_OEQ: CC = 0; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000238 case CmpInst::FCMP_OGT: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000239 case CmpInst::FCMP_OLT: CC = 1; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000240 case CmpInst::FCMP_OGE: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000241 case CmpInst::FCMP_OLE: CC = 2; break;
242 case CmpInst::FCMP_UNO: CC = 3; break;
243 case CmpInst::FCMP_UNE: CC = 4; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000244 case CmpInst::FCMP_ULE: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000245 case CmpInst::FCMP_UGE: CC = 5; break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000246 case CmpInst::FCMP_ULT: NeedSwap = true; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000247 case CmpInst::FCMP_UGT: CC = 6; break;
248 case CmpInst::FCMP_ORD: CC = 7; break;
249 case CmpInst::FCMP_UEQ:
250 case CmpInst::FCMP_ONE: CC = 8; break;
251 }
252
253 return std::make_pair(CC, NeedSwap);
254}
255
Pete Cooperd0dae3e2015-05-05 23:41:53 +0000256/// \brief Adds a complex addressing mode to the given machine instr builder.
257/// Note, this will constrain the index register. If its not possible to
258/// constrain the given index register, then a new one will be created. The
259/// IndexReg field of the addressing mode will be updated to match in this case.
260const MachineInstrBuilder &
261X86FastISel::addFullAddress(const MachineInstrBuilder &MIB,
262 X86AddressMode &AM) {
263 // First constrain the index register. It needs to be a GR64_NOSP.
264 AM.IndexReg = constrainOperandRegClass(MIB->getDesc(), AM.IndexReg,
265 MIB->getNumOperands() +
266 X86::AddrIndexReg);
267 return ::addFullAddress(MIB, AM);
268}
269
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000270/// \brief Check if it is possible to fold the condition from the XALU intrinsic
271/// into the user. The condition code will only be updated on success.
272bool X86FastISel::foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
273 const Value *Cond) {
274 if (!isa<ExtractValueInst>(Cond))
275 return false;
276
277 const auto *EV = cast<ExtractValueInst>(Cond);
278 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
279 return false;
280
281 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
282 MVT RetVT;
283 const Function *Callee = II->getCalledFunction();
284 Type *RetTy =
285 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U);
286 if (!isTypeLegal(RetTy, RetVT))
287 return false;
288
289 if (RetVT != MVT::i32 && RetVT != MVT::i64)
290 return false;
291
292 X86::CondCode TmpCC;
293 switch (II->getIntrinsicID()) {
294 default: return false;
295 case Intrinsic::sadd_with_overflow:
296 case Intrinsic::ssub_with_overflow:
297 case Intrinsic::smul_with_overflow:
298 case Intrinsic::umul_with_overflow: TmpCC = X86::COND_O; break;
299 case Intrinsic::uadd_with_overflow:
300 case Intrinsic::usub_with_overflow: TmpCC = X86::COND_B; break;
301 }
302
303 // Check if both instructions are in the same basic block.
304 if (II->getParent() != I->getParent())
305 return false;
306
307 // Make sure nothing is in the way
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000308 BasicBlock::const_iterator Start(I);
309 BasicBlock::const_iterator End(II);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000310 for (auto Itr = std::prev(Start); Itr != End; --Itr) {
311 // We only expect extractvalue instructions between the intrinsic and the
312 // instruction to be selected.
313 if (!isa<ExtractValueInst>(Itr))
314 return false;
315
316 // Check that the extractvalue operand comes from the intrinsic.
317 const auto *EVI = cast<ExtractValueInst>(Itr);
318 if (EVI->getAggregateOperand() != II)
319 return false;
320 }
321
322 CC = TmpCC;
323 return true;
324}
325
326bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000327 EVT evt = TLI.getValueType(DL, Ty, /*HandleUnknown=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000328 if (evt == MVT::Other || !evt.isSimple())
329 // Unhandled type. Halt "fast" selection and bail.
330 return false;
331
332 VT = evt.getSimpleVT();
333 // For now, require SSE/SSE2 for performing floating-point operations,
334 // since x87 requires additional work.
335 if (VT == MVT::f64 && !X86ScalarSSEf64)
336 return false;
337 if (VT == MVT::f32 && !X86ScalarSSEf32)
338 return false;
339 // Similarly, no f80 support yet.
340 if (VT == MVT::f80)
341 return false;
342 // We only handle legal types. For example, on x86-32 the instruction
343 // selector contains all of the 64-bit instructions from x86-64,
344 // under the assumption that i64 won't be used if the target doesn't
345 // support it.
346 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
347}
348
349#include "X86GenCallingConv.inc"
350
351/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
352/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
353/// Return true and the result register by reference if it is possible.
Pete Cooperd0dae3e2015-05-05 23:41:53 +0000354bool X86FastISel::X86FastEmitLoad(EVT VT, X86AddressMode &AM,
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000355 MachineMemOperand *MMO, unsigned &ResultReg,
356 unsigned Alignment) {
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000357 bool HasSSE41 = Subtarget->hasSSE41();
Craig Topperca9c0802016-06-02 04:19:45 +0000358 bool HasAVX = Subtarget->hasAVX();
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000359 bool HasAVX2 = Subtarget->hasAVX2();
Craig Topperdfc4fc92016-09-05 23:58:40 +0000360 bool HasAVX512 = Subtarget->hasAVX512();
361 bool HasVLX = Subtarget->hasVLX();
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000362 bool IsNonTemporal = MMO && MMO->isNonTemporal();
363
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000364 // Get opcode and regclass of the output for the given load instruction.
365 unsigned Opc = 0;
366 const TargetRegisterClass *RC = nullptr;
367 switch (VT.getSimpleVT().SimpleTy) {
368 default: return false;
369 case MVT::i1:
370 case MVT::i8:
371 Opc = X86::MOV8rm;
372 RC = &X86::GR8RegClass;
373 break;
374 case MVT::i16:
375 Opc = X86::MOV16rm;
376 RC = &X86::GR16RegClass;
377 break;
378 case MVT::i32:
379 Opc = X86::MOV32rm;
380 RC = &X86::GR32RegClass;
381 break;
382 case MVT::i64:
383 // Must be in x86-64 mode.
384 Opc = X86::MOV64rm;
385 RC = &X86::GR64RegClass;
386 break;
387 case MVT::f32:
388 if (X86ScalarSSEf32) {
Craig Topperdfc4fc92016-09-05 23:58:40 +0000389 Opc = HasAVX512 ? X86::VMOVSSZrm : HasAVX ? X86::VMOVSSrm : X86::MOVSSrm;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000390 RC = &X86::FR32RegClass;
391 } else {
392 Opc = X86::LD_Fp32m;
393 RC = &X86::RFP32RegClass;
394 }
395 break;
396 case MVT::f64:
397 if (X86ScalarSSEf64) {
Craig Topperdfc4fc92016-09-05 23:58:40 +0000398 Opc = HasAVX512 ? X86::VMOVSDZrm : HasAVX ? X86::VMOVSDrm : X86::MOVSDrm;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000399 RC = &X86::FR64RegClass;
400 } else {
401 Opc = X86::LD_Fp64m;
402 RC = &X86::RFP64RegClass;
403 }
404 break;
405 case MVT::f80:
406 // No f80 support yet.
407 return false;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000408 case MVT::v4f32:
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000409 if (IsNonTemporal && Alignment >= 16 && HasSSE41)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000410 Opc = HasVLX ? X86::VMOVNTDQAZ128rm :
411 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000412 else if (Alignment >= 16)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000413 Opc = HasVLX ? X86::VMOVAPSZ128rm :
414 HasAVX ? X86::VMOVAPSrm : X86::MOVAPSrm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000415 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000416 Opc = HasVLX ? X86::VMOVUPSZ128rm :
417 HasAVX ? X86::VMOVUPSrm : X86::MOVUPSrm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000418 RC = &X86::VR128RegClass;
419 break;
420 case MVT::v2f64:
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000421 if (IsNonTemporal && Alignment >= 16 && HasSSE41)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000422 Opc = HasVLX ? X86::VMOVNTDQAZ128rm :
423 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000424 else if (Alignment >= 16)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000425 Opc = HasVLX ? X86::VMOVAPDZ128rm :
426 HasAVX ? X86::VMOVAPDrm : X86::MOVAPDrm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000427 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000428 Opc = HasVLX ? X86::VMOVUPDZ128rm :
429 HasAVX ? X86::VMOVUPDrm : X86::MOVUPDrm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000430 RC = &X86::VR128RegClass;
431 break;
432 case MVT::v4i32:
433 case MVT::v2i64:
434 case MVT::v8i16:
435 case MVT::v16i8:
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000436 if (IsNonTemporal && Alignment >= 16)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000437 Opc = HasVLX ? X86::VMOVNTDQAZ128rm :
438 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000439 else if (Alignment >= 16)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000440 Opc = HasVLX ? X86::VMOVDQA64Z128rm :
441 HasAVX ? X86::VMOVDQArm : X86::MOVDQArm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000442 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000443 Opc = HasVLX ? X86::VMOVDQU64Z128rm :
444 HasAVX ? X86::VMOVDQUrm : X86::MOVDQUrm;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +0000445 RC = &X86::VR128RegClass;
446 break;
Craig Topperca9c0802016-06-02 04:19:45 +0000447 case MVT::v8f32:
448 assert(HasAVX);
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000449 if (IsNonTemporal && Alignment >= 32 && HasAVX2)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000450 Opc = HasVLX ? X86::VMOVNTDQAZ256rm : X86::VMOVNTDQAYrm;
451 else if (Alignment >= 32)
452 Opc = HasVLX ? X86::VMOVAPSZ256rm : X86::VMOVAPSYrm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000453 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000454 Opc = HasVLX ? X86::VMOVUPSZ256rm : X86::VMOVUPSYrm;
Craig Topperca9c0802016-06-02 04:19:45 +0000455 RC = &X86::VR256RegClass;
456 break;
457 case MVT::v4f64:
458 assert(HasAVX);
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000459 if (IsNonTemporal && Alignment >= 32 && HasAVX2)
460 Opc = X86::VMOVNTDQAYrm;
Craig Topperdfc4fc92016-09-05 23:58:40 +0000461 else if (Alignment >= 32)
462 Opc = HasVLX ? X86::VMOVAPDZ256rm : X86::VMOVAPDYrm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000463 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000464 Opc = HasVLX ? X86::VMOVUPDZ256rm : X86::VMOVUPDYrm;
Craig Topperca9c0802016-06-02 04:19:45 +0000465 RC = &X86::VR256RegClass;
466 break;
467 case MVT::v8i32:
468 case MVT::v4i64:
469 case MVT::v16i16:
470 case MVT::v32i8:
471 assert(HasAVX);
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000472 if (IsNonTemporal && Alignment >= 32 && HasAVX2)
473 Opc = X86::VMOVNTDQAYrm;
Craig Topperdfc4fc92016-09-05 23:58:40 +0000474 else if (Alignment >= 32)
475 Opc = HasVLX ? X86::VMOVDQA64Z256rm : X86::VMOVDQAYrm;
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000476 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000477 Opc = HasVLX ? X86::VMOVDQU64Z256rm : X86::VMOVDQUYrm;
Craig Topperca9c0802016-06-02 04:19:45 +0000478 RC = &X86::VR256RegClass;
479 break;
Craig Topper048a08a2016-06-02 04:51:37 +0000480 case MVT::v16f32:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000481 assert(HasAVX512);
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000482 if (IsNonTemporal && Alignment >= 64)
483 Opc = X86::VMOVNTDQAZrm;
484 else
485 Opc = (Alignment >= 64) ? X86::VMOVAPSZrm : X86::VMOVUPSZrm;
Craig Topper048a08a2016-06-02 04:51:37 +0000486 RC = &X86::VR512RegClass;
487 break;
488 case MVT::v8f64:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000489 assert(HasAVX512);
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000490 if (IsNonTemporal && Alignment >= 64)
491 Opc = X86::VMOVNTDQAZrm;
492 else
493 Opc = (Alignment >= 64) ? X86::VMOVAPDZrm : X86::VMOVUPDZrm;
Craig Topper048a08a2016-06-02 04:51:37 +0000494 RC = &X86::VR512RegClass;
495 break;
496 case MVT::v8i64:
497 case MVT::v16i32:
498 case MVT::v32i16:
499 case MVT::v64i8:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000500 assert(HasAVX512);
Craig Topper048a08a2016-06-02 04:51:37 +0000501 // Note: There are a lot more choices based on type with AVX-512, but
502 // there's really no advantage when the load isn't masked.
Simon Pilgrim35c06a02016-06-07 13:47:23 +0000503 if (IsNonTemporal && Alignment >= 64)
504 Opc = X86::VMOVNTDQAZrm;
505 else
506 Opc = (Alignment >= 64) ? X86::VMOVDQA64Zrm : X86::VMOVDQU64Zrm;
Craig Topper048a08a2016-06-02 04:51:37 +0000507 RC = &X86::VR512RegClass;
508 break;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000509 }
510
511 ResultReg = createResultReg(RC);
512 MachineInstrBuilder MIB =
513 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
514 addFullAddress(MIB, AM);
515 if (MMO)
516 MIB->addMemOperand(*FuncInfo.MF, MMO);
517 return true;
518}
519
520/// X86FastEmitStore - Emit a machine instruction to store a value Val of
521/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
522/// and a displacement offset, or a GlobalAddress,
523/// i.e. V. Return true if it is possible.
524bool X86FastISel::X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
Pete Cooperd0dae3e2015-05-05 23:41:53 +0000525 X86AddressMode &AM,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000526 MachineMemOperand *MMO, bool Aligned) {
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000527 bool HasSSE2 = Subtarget->hasSSE2();
Simon Pilgrim5b65f282015-10-17 13:04:42 +0000528 bool HasSSE4A = Subtarget->hasSSE4A();
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000529 bool HasAVX = Subtarget->hasAVX();
Craig Topperdfc4fc92016-09-05 23:58:40 +0000530 bool HasAVX512 = Subtarget->hasAVX512();
531 bool HasVLX = Subtarget->hasVLX();
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000532 bool IsNonTemporal = MMO && MMO->isNonTemporal();
533
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000534 // Get opcode and regclass of the output for the given store instruction.
535 unsigned Opc = 0;
536 switch (VT.getSimpleVT().SimpleTy) {
537 case MVT::f80: // No f80 support yet.
538 default: return false;
539 case MVT::i1: {
540 // Mask out all but lowest bit.
541 unsigned AndResult = createResultReg(&X86::GR8RegClass);
542 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
543 TII.get(X86::AND8ri), AndResult)
544 .addReg(ValReg, getKillRegState(ValIsKill)).addImm(1);
545 ValReg = AndResult;
Justin Bognerb03fd122016-08-17 05:10:15 +0000546 LLVM_FALLTHROUGH; // handle i1 as i8.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000547 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000548 case MVT::i8: Opc = X86::MOV8mr; break;
549 case MVT::i16: Opc = X86::MOV16mr; break;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000550 case MVT::i32:
551 Opc = (IsNonTemporal && HasSSE2) ? X86::MOVNTImr : X86::MOV32mr;
552 break;
553 case MVT::i64:
554 // Must be in x86-64 mode.
555 Opc = (IsNonTemporal && HasSSE2) ? X86::MOVNTI_64mr : X86::MOV64mr;
556 break;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000557 case MVT::f32:
Simon Pilgrim5b65f282015-10-17 13:04:42 +0000558 if (X86ScalarSSEf32) {
559 if (IsNonTemporal && HasSSE4A)
560 Opc = X86::MOVNTSS;
561 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000562 Opc = HasAVX512 ? X86::VMOVSSZmr :
563 HasAVX ? X86::VMOVSSmr : X86::MOVSSmr;
Simon Pilgrim5b65f282015-10-17 13:04:42 +0000564 } else
565 Opc = X86::ST_Fp32m;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000566 break;
567 case MVT::f64:
Simon Pilgrim5b65f282015-10-17 13:04:42 +0000568 if (X86ScalarSSEf32) {
569 if (IsNonTemporal && HasSSE4A)
570 Opc = X86::MOVNTSD;
571 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000572 Opc = HasAVX512 ? X86::VMOVSDZmr :
573 HasAVX ? X86::VMOVSDmr : X86::MOVSDmr;
Simon Pilgrim5b65f282015-10-17 13:04:42 +0000574 } else
575 Opc = X86::ST_Fp64m;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000576 break;
577 case MVT::v4f32:
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000578 if (Aligned) {
579 if (IsNonTemporal)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000580 Opc = HasVLX ? X86::VMOVNTPSZ128mr :
581 HasAVX ? X86::VMOVNTPSmr : X86::MOVNTPSmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000582 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000583 Opc = HasVLX ? X86::VMOVAPSZ128mr :
584 HasAVX ? X86::VMOVAPSmr : X86::MOVAPSmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000585 } else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000586 Opc = HasVLX ? X86::VMOVUPSZ128mr :
587 HasAVX ? X86::VMOVUPSmr : X86::MOVUPSmr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000588 break;
589 case MVT::v2f64:
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000590 if (Aligned) {
591 if (IsNonTemporal)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000592 Opc = HasVLX ? X86::VMOVNTPDZ128mr :
593 HasAVX ? X86::VMOVNTPDmr : X86::MOVNTPDmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000594 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000595 Opc = HasVLX ? X86::VMOVAPDZ128mr :
596 HasAVX ? X86::VMOVAPDmr : X86::MOVAPDmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000597 } else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000598 Opc = HasVLX ? X86::VMOVUPDZ128mr :
599 HasAVX ? X86::VMOVUPDmr : X86::MOVUPDmr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000600 break;
601 case MVT::v4i32:
602 case MVT::v2i64:
603 case MVT::v8i16:
604 case MVT::v16i8:
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000605 if (Aligned) {
606 if (IsNonTemporal)
Craig Topperdfc4fc92016-09-05 23:58:40 +0000607 Opc = HasVLX ? X86::VMOVNTDQZ128mr :
608 HasAVX ? X86::VMOVNTDQmr : X86::MOVNTDQmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000609 else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000610 Opc = HasVLX ? X86::VMOVDQA64Z128mr :
611 HasAVX ? X86::VMOVDQAmr : X86::MOVDQAmr;
Andrea Di Biagioc47edbe2015-10-14 10:03:13 +0000612 } else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000613 Opc = HasVLX ? X86::VMOVDQU64Z128mr :
614 HasAVX ? X86::VMOVDQUmr : X86::MOVDQUmr;
Craig Topperca9c0802016-06-02 04:19:45 +0000615 break;
616 case MVT::v8f32:
617 assert(HasAVX);
Craig Topperdfc4fc92016-09-05 23:58:40 +0000618 if (Aligned) {
619 if (IsNonTemporal)
620 Opc = HasVLX ? X86::VMOVNTPSZ256mr : X86::VMOVNTPSYmr;
621 else
622 Opc = HasVLX ? X86::VMOVAPSZ256mr : X86::VMOVAPSYmr;
623 } else
624 Opc = HasVLX ? X86::VMOVUPSZ256mr : X86::VMOVUPSYmr;
Craig Topperca9c0802016-06-02 04:19:45 +0000625 break;
626 case MVT::v4f64:
627 assert(HasAVX);
628 if (Aligned) {
Craig Topperdfc4fc92016-09-05 23:58:40 +0000629 if (IsNonTemporal)
630 Opc = HasVLX ? X86::VMOVNTPDZ256mr : X86::VMOVNTPDYmr;
631 else
632 Opc = HasVLX ? X86::VMOVAPDZ256mr : X86::VMOVAPDYmr;
Craig Topperca9c0802016-06-02 04:19:45 +0000633 } else
Craig Topperdfc4fc92016-09-05 23:58:40 +0000634 Opc = HasVLX ? X86::VMOVUPDZ256mr : X86::VMOVUPDYmr;
Craig Topperca9c0802016-06-02 04:19:45 +0000635 break;
636 case MVT::v8i32:
637 case MVT::v4i64:
638 case MVT::v16i16:
639 case MVT::v32i8:
640 assert(HasAVX);
Craig Topperdfc4fc92016-09-05 23:58:40 +0000641 if (Aligned) {
642 if (IsNonTemporal)
643 Opc = HasVLX ? X86::VMOVNTDQZ256mr : X86::VMOVNTDQYmr;
644 else
645 Opc = HasVLX ? X86::VMOVDQA64Z256mr : X86::VMOVDQAYmr;
646 } else
647 Opc = HasVLX ? X86::VMOVDQU64Z256mr : X86::VMOVDQUYmr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000648 break;
Craig Topper048a08a2016-06-02 04:51:37 +0000649 case MVT::v16f32:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000650 assert(HasAVX512);
Craig Topper048a08a2016-06-02 04:51:37 +0000651 if (Aligned)
652 Opc = IsNonTemporal ? X86::VMOVNTPSZmr : X86::VMOVAPSZmr;
653 else
654 Opc = X86::VMOVUPSZmr;
655 break;
656 case MVT::v8f64:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000657 assert(HasAVX512);
Craig Topper048a08a2016-06-02 04:51:37 +0000658 if (Aligned) {
659 Opc = IsNonTemporal ? X86::VMOVNTPDZmr : X86::VMOVAPDZmr;
660 } else
661 Opc = X86::VMOVUPDZmr;
662 break;
663 case MVT::v8i64:
664 case MVT::v16i32:
665 case MVT::v32i16:
666 case MVT::v64i8:
Craig Topperdfc4fc92016-09-05 23:58:40 +0000667 assert(HasAVX512);
Craig Topper048a08a2016-06-02 04:51:37 +0000668 // Note: There are a lot more choices based on type with AVX-512, but
669 // there's really no advantage when the store isn't masked.
670 if (Aligned)
671 Opc = IsNonTemporal ? X86::VMOVNTDQZmr : X86::VMOVDQA64Zmr;
672 else
673 Opc = X86::VMOVDQU64Zmr;
674 break;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000675 }
676
Quentin Colombetbf200682016-04-27 22:33:42 +0000677 const MCInstrDesc &Desc = TII.get(Opc);
678 // Some of the instructions in the previous switch use FR128 instead
679 // of FR32 for ValReg. Make sure the register we feed the instruction
680 // matches its register class constraints.
681 // Note: This is fine to do a copy from FR32 to FR128, this is the
682 // same registers behind the scene and actually why it did not trigger
683 // any bugs before.
684 ValReg = constrainOperandRegClass(Desc, ValReg, Desc.getNumOperands() - 1);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000685 MachineInstrBuilder MIB =
Quentin Colombetbf200682016-04-27 22:33:42 +0000686 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, Desc);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000687 addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill));
688 if (MMO)
689 MIB->addMemOperand(*FuncInfo.MF, MMO);
690
691 return true;
692}
693
694bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
Pete Cooperd0dae3e2015-05-05 23:41:53 +0000695 X86AddressMode &AM,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000696 MachineMemOperand *MMO, bool Aligned) {
697 // Handle 'null' like i32/i64 0.
698 if (isa<ConstantPointerNull>(Val))
699 Val = Constant::getNullValue(DL.getIntPtrType(Val->getContext()));
700
701 // If this is a store of a simple constant, fold the constant into the store.
702 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
703 unsigned Opc = 0;
704 bool Signed = true;
705 switch (VT.getSimpleVT().SimpleTy) {
706 default: break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000707 case MVT::i1:
708 Signed = false;
709 LLVM_FALLTHROUGH; // Handle as i8.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000710 case MVT::i8: Opc = X86::MOV8mi; break;
711 case MVT::i16: Opc = X86::MOV16mi; break;
712 case MVT::i32: Opc = X86::MOV32mi; break;
713 case MVT::i64:
714 // Must be a 32-bit sign extended value.
715 if (isInt<32>(CI->getSExtValue()))
716 Opc = X86::MOV64mi32;
717 break;
718 }
719
720 if (Opc) {
721 MachineInstrBuilder MIB =
722 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc));
723 addFullAddress(MIB, AM).addImm(Signed ? (uint64_t) CI->getSExtValue()
724 : CI->getZExtValue());
725 if (MMO)
726 MIB->addMemOperand(*FuncInfo.MF, MMO);
727 return true;
728 }
729 }
730
731 unsigned ValReg = getRegForValue(Val);
732 if (ValReg == 0)
733 return false;
734
735 bool ValKill = hasTrivialKill(Val);
736 return X86FastEmitStore(VT, ValReg, ValKill, AM, MMO, Aligned);
737}
738
739/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
740/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
741/// ISD::SIGN_EXTEND).
742bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
743 unsigned Src, EVT SrcVT,
744 unsigned &ResultReg) {
745 unsigned RR = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
746 Src, /*TODO: Kill=*/false);
747 if (RR == 0)
748 return false;
749
750 ResultReg = RR;
751 return true;
752}
753
754bool X86FastISel::handleConstantAddresses(const Value *V, X86AddressMode &AM) {
755 // Handle constant address.
756 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
757 // Can't handle alternate code models yet.
758 if (TM.getCodeModel() != CodeModel::Small)
759 return false;
760
761 // Can't handle TLS yet.
762 if (GV->isThreadLocal())
763 return false;
764
765 // RIP-relative addresses can't have additional register operands, so if
766 // we've already folded stuff into the addressing mode, just force the
767 // global value into its own register, which we can use as the basereg.
768 if (!Subtarget->isPICStyleRIPRel() ||
769 (AM.Base.Reg == 0 && AM.IndexReg == 0)) {
770 // Okay, we've committed to selecting this global. Set up the address.
771 AM.GV = GV;
772
773 // Allow the subtarget to classify the global.
Rafael Espindolaab03eb02016-05-19 22:07:57 +0000774 unsigned char GVFlags = Subtarget->classifyGlobalReference(GV);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000775
776 // If this reference is relative to the pic base, set it now.
777 if (isGlobalRelativeToPICBase(GVFlags)) {
778 // FIXME: How do we know Base.Reg is free??
779 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
780 }
781
782 // Unless the ABI requires an extra load, return a direct reference to
783 // the global.
784 if (!isGlobalStubReference(GVFlags)) {
785 if (Subtarget->isPICStyleRIPRel()) {
786 // Use rip-relative addressing if we can. Above we verified that the
787 // base and index registers are unused.
788 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
789 AM.Base.Reg = X86::RIP;
790 }
791 AM.GVOpFlags = GVFlags;
792 return true;
793 }
794
795 // Ok, we need to do a load from a stub. If we've already loaded from
796 // this stub, reuse the loaded pointer, otherwise emit the load now.
797 DenseMap<const Value *, unsigned>::iterator I = LocalValueMap.find(V);
798 unsigned LoadReg;
799 if (I != LocalValueMap.end() && I->second != 0) {
800 LoadReg = I->second;
801 } else {
802 // Issue load from stub.
803 unsigned Opc = 0;
804 const TargetRegisterClass *RC = nullptr;
805 X86AddressMode StubAM;
806 StubAM.Base.Reg = AM.Base.Reg;
807 StubAM.GV = GV;
808 StubAM.GVOpFlags = GVFlags;
809
810 // Prepare for inserting code in the local-value area.
811 SavePoint SaveInsertPt = enterLocalValueArea();
812
Mehdi Amini44ede332015-07-09 02:09:04 +0000813 if (TLI.getPointerTy(DL) == MVT::i64) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000814 Opc = X86::MOV64rm;
815 RC = &X86::GR64RegClass;
816
817 if (Subtarget->isPICStyleRIPRel())
818 StubAM.Base.Reg = X86::RIP;
819 } else {
820 Opc = X86::MOV32rm;
821 RC = &X86::GR32RegClass;
822 }
823
824 LoadReg = createResultReg(RC);
825 MachineInstrBuilder LoadMI =
826 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), LoadReg);
827 addFullAddress(LoadMI, StubAM);
828
829 // Ok, back to normal mode.
830 leaveLocalValueArea(SaveInsertPt);
831
832 // Prevent loading GV stub multiple times in same MBB.
833 LocalValueMap[V] = LoadReg;
834 }
835
836 // Now construct the final address. Note that the Disp, Scale,
837 // and Index values may already be set here.
838 AM.Base.Reg = LoadReg;
839 AM.GV = nullptr;
840 return true;
841 }
842 }
843
844 // If all else fails, try to materialize the value in a register.
845 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
846 if (AM.Base.Reg == 0) {
847 AM.Base.Reg = getRegForValue(V);
848 return AM.Base.Reg != 0;
849 }
850 if (AM.IndexReg == 0) {
851 assert(AM.Scale == 1 && "Scale with no index!");
852 AM.IndexReg = getRegForValue(V);
853 return AM.IndexReg != 0;
854 }
855 }
856
857 return false;
858}
859
860/// X86SelectAddress - Attempt to fill in an address from the given value.
861///
862bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
863 SmallVector<const Value *, 32> GEPs;
864redo_gep:
865 const User *U = nullptr;
866 unsigned Opcode = Instruction::UserOp1;
867 if (const Instruction *I = dyn_cast<Instruction>(V)) {
868 // Don't walk into other basic blocks; it's possible we haven't
869 // visited them yet, so the instructions may not yet be assigned
870 // virtual registers.
871 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) ||
872 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
873 Opcode = I->getOpcode();
874 U = I;
875 }
876 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
877 Opcode = C->getOpcode();
878 U = C;
879 }
880
881 if (PointerType *Ty = dyn_cast<PointerType>(V->getType()))
882 if (Ty->getAddressSpace() > 255)
883 // Fast instruction selection doesn't support the special
884 // address spaces.
885 return false;
886
887 switch (Opcode) {
888 default: break;
889 case Instruction::BitCast:
890 // Look past bitcasts.
891 return X86SelectAddress(U->getOperand(0), AM);
892
893 case Instruction::IntToPtr:
894 // Look past no-op inttoptrs.
Mehdi Amini44ede332015-07-09 02:09:04 +0000895 if (TLI.getValueType(DL, U->getOperand(0)->getType()) ==
896 TLI.getPointerTy(DL))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000897 return X86SelectAddress(U->getOperand(0), AM);
898 break;
899
900 case Instruction::PtrToInt:
901 // Look past no-op ptrtoints.
Mehdi Amini44ede332015-07-09 02:09:04 +0000902 if (TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000903 return X86SelectAddress(U->getOperand(0), AM);
904 break;
905
906 case Instruction::Alloca: {
907 // Do static allocas.
908 const AllocaInst *A = cast<AllocaInst>(V);
909 DenseMap<const AllocaInst *, int>::iterator SI =
910 FuncInfo.StaticAllocaMap.find(A);
911 if (SI != FuncInfo.StaticAllocaMap.end()) {
912 AM.BaseType = X86AddressMode::FrameIndexBase;
913 AM.Base.FrameIndex = SI->second;
914 return true;
915 }
916 break;
917 }
918
919 case Instruction::Add: {
920 // Adds of constants are common and easy enough.
921 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
922 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
923 // They have to fit in the 32-bit signed displacement field though.
924 if (isInt<32>(Disp)) {
925 AM.Disp = (uint32_t)Disp;
926 return X86SelectAddress(U->getOperand(0), AM);
927 }
928 }
929 break;
930 }
931
932 case Instruction::GetElementPtr: {
933 X86AddressMode SavedAM = AM;
934
935 // Pattern-match simple GEPs.
936 uint64_t Disp = (int32_t)AM.Disp;
937 unsigned IndexReg = AM.IndexReg;
938 unsigned Scale = AM.Scale;
939 gep_type_iterator GTI = gep_type_begin(U);
940 // Iterate through the indices, folding what we can. Constants can be
941 // folded, and one dynamic index can be handled, if the scale is supported.
942 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
943 i != e; ++i, ++GTI) {
944 const Value *Op = *i;
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000945 if (StructType *STy = GTI.getStructTypeOrNull()) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000946 const StructLayout *SL = DL.getStructLayout(STy);
947 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
948 continue;
949 }
950
951 // A array/variable index is always of the form i*S where S is the
952 // constant scale size. See if we can push the scale into immediates.
953 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
954 for (;;) {
955 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
956 // Constant-offset addressing.
957 Disp += CI->getSExtValue() * S;
958 break;
959 }
960 if (canFoldAddIntoGEP(U, Op)) {
961 // A compatible add with a constant operand. Fold the constant.
962 ConstantInt *CI =
963 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
964 Disp += CI->getSExtValue() * S;
965 // Iterate on the other operand.
966 Op = cast<AddOperator>(Op)->getOperand(0);
967 continue;
968 }
969 if (IndexReg == 0 &&
970 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
971 (S == 1 || S == 2 || S == 4 || S == 8)) {
972 // Scaled-index addressing.
973 Scale = S;
974 IndexReg = getRegForGEPIndex(Op).first;
975 if (IndexReg == 0)
976 return false;
977 break;
978 }
979 // Unsupported.
980 goto unsupported_gep;
981 }
982 }
983
984 // Check for displacement overflow.
985 if (!isInt<32>(Disp))
986 break;
987
988 AM.IndexReg = IndexReg;
989 AM.Scale = Scale;
990 AM.Disp = (uint32_t)Disp;
991 GEPs.push_back(V);
992
993 if (const GetElementPtrInst *GEP =
994 dyn_cast<GetElementPtrInst>(U->getOperand(0))) {
995 // Ok, the GEP indices were covered by constant-offset and scaled-index
996 // addressing. Update the address state and move on to examining the base.
997 V = GEP;
998 goto redo_gep;
999 } else if (X86SelectAddress(U->getOperand(0), AM)) {
1000 return true;
1001 }
1002
1003 // If we couldn't merge the gep value into this addr mode, revert back to
1004 // our address and just match the value instead of completely failing.
1005 AM = SavedAM;
1006
David Majnemerd7708772016-06-24 04:05:21 +00001007 for (const Value *I : reverse(GEPs))
1008 if (handleConstantAddresses(I, AM))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001009 return true;
1010
1011 return false;
1012 unsupported_gep:
1013 // Ok, the GEP indices weren't all covered.
1014 break;
1015 }
1016 }
1017
1018 return handleConstantAddresses(V, AM);
1019}
1020
1021/// X86SelectCallAddress - Attempt to fill in an address from the given value.
1022///
1023bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) {
1024 const User *U = nullptr;
1025 unsigned Opcode = Instruction::UserOp1;
1026 const Instruction *I = dyn_cast<Instruction>(V);
1027 // Record if the value is defined in the same basic block.
1028 //
1029 // This information is crucial to know whether or not folding an
1030 // operand is valid.
1031 // Indeed, FastISel generates or reuses a virtual register for all
1032 // operands of all instructions it selects. Obviously, the definition and
1033 // its uses must use the same virtual register otherwise the produced
1034 // code is incorrect.
1035 // Before instruction selection, FunctionLoweringInfo::set sets the virtual
1036 // registers for values that are alive across basic blocks. This ensures
1037 // that the values are consistently set between across basic block, even
1038 // if different instruction selection mechanisms are used (e.g., a mix of
1039 // SDISel and FastISel).
1040 // For values local to a basic block, the instruction selection process
1041 // generates these virtual registers with whatever method is appropriate
1042 // for its needs. In particular, FastISel and SDISel do not share the way
1043 // local virtual registers are set.
1044 // Therefore, this is impossible (or at least unsafe) to share values
1045 // between basic blocks unless they use the same instruction selection
1046 // method, which is not guarantee for X86.
1047 // Moreover, things like hasOneUse could not be used accurately, if we
1048 // allow to reference values across basic blocks whereas they are not
1049 // alive across basic blocks initially.
1050 bool InMBB = true;
1051 if (I) {
1052 Opcode = I->getOpcode();
1053 U = I;
1054 InMBB = I->getParent() == FuncInfo.MBB->getBasicBlock();
1055 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
1056 Opcode = C->getOpcode();
1057 U = C;
1058 }
1059
1060 switch (Opcode) {
1061 default: break;
1062 case Instruction::BitCast:
1063 // Look past bitcasts if its operand is in the same BB.
1064 if (InMBB)
1065 return X86SelectCallAddress(U->getOperand(0), AM);
1066 break;
1067
1068 case Instruction::IntToPtr:
1069 // Look past no-op inttoptrs if its operand is in the same BB.
1070 if (InMBB &&
Mehdi Amini44ede332015-07-09 02:09:04 +00001071 TLI.getValueType(DL, U->getOperand(0)->getType()) ==
1072 TLI.getPointerTy(DL))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001073 return X86SelectCallAddress(U->getOperand(0), AM);
1074 break;
1075
1076 case Instruction::PtrToInt:
1077 // Look past no-op ptrtoints if its operand is in the same BB.
Mehdi Amini44ede332015-07-09 02:09:04 +00001078 if (InMBB && TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001079 return X86SelectCallAddress(U->getOperand(0), AM);
1080 break;
1081 }
1082
1083 // Handle constant address.
1084 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1085 // Can't handle alternate code models yet.
1086 if (TM.getCodeModel() != CodeModel::Small)
1087 return false;
1088
1089 // RIP-relative addresses can't have additional register operands.
1090 if (Subtarget->isPICStyleRIPRel() &&
1091 (AM.Base.Reg != 0 || AM.IndexReg != 0))
1092 return false;
1093
1094 // Can't handle DLL Import.
1095 if (GV->hasDLLImportStorageClass())
1096 return false;
1097
1098 // Can't handle TLS.
1099 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
1100 if (GVar->isThreadLocal())
1101 return false;
1102
1103 // Okay, we've committed to selecting this global. Set up the basic address.
1104 AM.GV = GV;
1105
1106 // No ABI requires an extra load for anything other than DLLImport, which
1107 // we rejected above. Return a direct reference to the global.
1108 if (Subtarget->isPICStyleRIPRel()) {
1109 // Use rip-relative addressing if we can. Above we verified that the
1110 // base and index registers are unused.
1111 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
1112 AM.Base.Reg = X86::RIP;
Rafael Espindolac7e98132016-05-20 12:20:10 +00001113 } else {
1114 AM.GVOpFlags = Subtarget->classifyLocalReference(nullptr);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001115 }
1116
1117 return true;
1118 }
1119
1120 // If all else fails, try to materialize the value in a register.
1121 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
1122 if (AM.Base.Reg == 0) {
1123 AM.Base.Reg = getRegForValue(V);
1124 return AM.Base.Reg != 0;
1125 }
1126 if (AM.IndexReg == 0) {
1127 assert(AM.Scale == 1 && "Scale with no index!");
1128 AM.IndexReg = getRegForValue(V);
1129 return AM.IndexReg != 0;
1130 }
1131 }
1132
1133 return false;
1134}
1135
1136
1137/// X86SelectStore - Select and emit code to implement store instructions.
1138bool X86FastISel::X86SelectStore(const Instruction *I) {
1139 // Atomic stores need special handling.
1140 const StoreInst *S = cast<StoreInst>(I);
1141
1142 if (S->isAtomic())
1143 return false;
1144
Manman Ren57518142016-04-11 21:08:06 +00001145 const Value *PtrV = I->getOperand(1);
1146 if (TLI.supportSwiftError()) {
1147 // Swifterror values can come from either a function parameter with
1148 // swifterror attribute or an alloca with swifterror attribute.
1149 if (const Argument *Arg = dyn_cast<Argument>(PtrV)) {
1150 if (Arg->hasSwiftErrorAttr())
1151 return false;
1152 }
1153
1154 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) {
1155 if (Alloca->isSwiftError())
1156 return false;
1157 }
1158 }
1159
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001160 const Value *Val = S->getValueOperand();
1161 const Value *Ptr = S->getPointerOperand();
1162
1163 MVT VT;
1164 if (!isTypeLegal(Val->getType(), VT, /*AllowI1=*/true))
1165 return false;
1166
1167 unsigned Alignment = S->getAlignment();
1168 unsigned ABIAlignment = DL.getABITypeAlignment(Val->getType());
1169 if (Alignment == 0) // Ensure that codegen never sees alignment 0
1170 Alignment = ABIAlignment;
1171 bool Aligned = Alignment >= ABIAlignment;
1172
1173 X86AddressMode AM;
1174 if (!X86SelectAddress(Ptr, AM))
1175 return false;
1176
1177 return X86FastEmitStore(VT, Val, AM, createMachineMemOperandFor(I), Aligned);
1178}
1179
1180/// X86SelectRet - Select and emit code to implement ret instructions.
1181bool X86FastISel::X86SelectRet(const Instruction *I) {
1182 const ReturnInst *Ret = cast<ReturnInst>(I);
1183 const Function &F = *I->getParent()->getParent();
1184 const X86MachineFunctionInfo *X86MFInfo =
1185 FuncInfo.MF->getInfo<X86MachineFunctionInfo>();
1186
1187 if (!FuncInfo.CanLowerReturn)
1188 return false;
1189
Manman Ren57518142016-04-11 21:08:06 +00001190 if (TLI.supportSwiftError() &&
1191 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError))
1192 return false;
1193
Manman Rened967f32016-01-12 01:08:46 +00001194 if (TLI.supportSplitCSR(FuncInfo.MF))
1195 return false;
1196
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001197 CallingConv::ID CC = F.getCallingConv();
1198 if (CC != CallingConv::C &&
1199 CC != CallingConv::Fast &&
1200 CC != CallingConv::X86_FastCall &&
Nico Weberecdf45b2016-07-14 13:54:26 +00001201 CC != CallingConv::X86_StdCall &&
Nico Weberc7bf6462016-07-12 01:30:35 +00001202 CC != CallingConv::X86_ThisCall &&
Nico Weber8d66df12016-07-15 20:18:37 +00001203 CC != CallingConv::X86_64_SysV &&
1204 CC != CallingConv::X86_64_Win64)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001205 return false;
1206
Nico Weberc7bf6462016-07-12 01:30:35 +00001207 // Don't handle popping bytes if they don't fit the ret's immediate.
1208 if (!isUInt<16>(X86MFInfo->getBytesToPopOnReturn()))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001209 return false;
1210
1211 // fastcc with -tailcallopt is intended to provide a guaranteed
1212 // tail call optimization. Fastisel doesn't know how to do that.
1213 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
1214 return false;
1215
1216 // Let SDISel handle vararg functions.
1217 if (F.isVarArg())
1218 return false;
1219
1220 // Build a list of return value registers.
1221 SmallVector<unsigned, 4> RetRegs;
1222
1223 if (Ret->getNumOperands() > 0) {
1224 SmallVector<ISD::OutputArg, 4> Outs;
Mehdi Amini44ede332015-07-09 02:09:04 +00001225 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI, DL);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001226
1227 // Analyze operands of the call, assigning locations to each operand.
1228 SmallVector<CCValAssign, 16> ValLocs;
1229 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext());
1230 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1231
1232 const Value *RV = Ret->getOperand(0);
1233 unsigned Reg = getRegForValue(RV);
1234 if (Reg == 0)
1235 return false;
1236
1237 // Only handle a single return value for now.
1238 if (ValLocs.size() != 1)
1239 return false;
1240
1241 CCValAssign &VA = ValLocs[0];
1242
1243 // Don't bother handling odd stuff for now.
1244 if (VA.getLocInfo() != CCValAssign::Full)
1245 return false;
1246 // Only handle register returns for now.
1247 if (!VA.isRegLoc())
1248 return false;
1249
1250 // The calling-convention tables for x87 returns don't tell
1251 // the whole story.
1252 if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
1253 return false;
1254
1255 unsigned SrcReg = Reg + VA.getValNo();
Mehdi Amini44ede332015-07-09 02:09:04 +00001256 EVT SrcVT = TLI.getValueType(DL, RV->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001257 EVT DstVT = VA.getValVT();
1258 // Special handling for extended integers.
1259 if (SrcVT != DstVT) {
1260 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
1261 return false;
1262
1263 if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
1264 return false;
1265
1266 assert(DstVT == MVT::i32 && "X86 should always ext to i32");
1267
1268 if (SrcVT == MVT::i1) {
1269 if (Outs[0].Flags.isSExt())
1270 return false;
1271 SrcReg = fastEmitZExtFromI1(MVT::i8, SrcReg, /*TODO: Kill=*/false);
1272 SrcVT = MVT::i8;
1273 }
1274 unsigned Op = Outs[0].Flags.isZExt() ? ISD::ZERO_EXTEND :
1275 ISD::SIGN_EXTEND;
1276 SrcReg = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Op,
1277 SrcReg, /*TODO: Kill=*/false);
1278 }
1279
1280 // Make the copy.
1281 unsigned DstReg = VA.getLocReg();
1282 const TargetRegisterClass *SrcRC = MRI.getRegClass(SrcReg);
1283 // Avoid a cross-class copy. This is very unlikely.
1284 if (!SrcRC->contains(DstReg))
1285 return false;
1286 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1287 TII.get(TargetOpcode::COPY), DstReg).addReg(SrcReg);
1288
1289 // Add register to return instruction.
1290 RetRegs.push_back(VA.getLocReg());
1291 }
1292
Manman Ren1c3f65a2016-04-26 18:08:06 +00001293 // Swift calling convention does not require we copy the sret argument
1294 // into %rax/%eax for the return, and SRetReturnReg is not set for Swift.
1295
Dimitry Andric227b9282016-01-03 17:22:03 +00001296 // All x86 ABIs require that for returning structs by value we copy
1297 // the sret argument into %rax/%eax (depending on ABI) for the return.
1298 // We saved the argument into a virtual register in the entry block,
Michael Kuperstein2ea81ba2015-12-28 14:39:21 +00001299 // so now we copy the value out and into %rax/%eax.
Manman Ren1c3f65a2016-04-26 18:08:06 +00001300 if (F.hasStructRetAttr() && CC != CallingConv::Swift) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001301 unsigned Reg = X86MFInfo->getSRetReturnReg();
1302 assert(Reg &&
1303 "SRetReturnReg should have been set in LowerFormalArguments()!");
1304 unsigned RetReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
1305 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1306 TII.get(TargetOpcode::COPY), RetReg).addReg(Reg);
1307 RetRegs.push_back(RetReg);
1308 }
1309
1310 // Now emit the RET.
Nico Weberc7bf6462016-07-12 01:30:35 +00001311 MachineInstrBuilder MIB;
1312 if (X86MFInfo->getBytesToPopOnReturn()) {
1313 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1314 TII.get(Subtarget->is64Bit() ? X86::RETIQ : X86::RETIL))
1315 .addImm(X86MFInfo->getBytesToPopOnReturn());
1316 } else {
1317 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1318 TII.get(Subtarget->is64Bit() ? X86::RETQ : X86::RETL));
1319 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001320 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
1321 MIB.addReg(RetRegs[i], RegState::Implicit);
1322 return true;
1323}
1324
1325/// X86SelectLoad - Select and emit code to implement load instructions.
1326///
1327bool X86FastISel::X86SelectLoad(const Instruction *I) {
1328 const LoadInst *LI = cast<LoadInst>(I);
1329
1330 // Atomic loads need special handling.
1331 if (LI->isAtomic())
1332 return false;
1333
Manman Ren57518142016-04-11 21:08:06 +00001334 const Value *SV = I->getOperand(0);
1335 if (TLI.supportSwiftError()) {
1336 // Swifterror values can come from either a function parameter with
1337 // swifterror attribute or an alloca with swifterror attribute.
1338 if (const Argument *Arg = dyn_cast<Argument>(SV)) {
1339 if (Arg->hasSwiftErrorAttr())
1340 return false;
1341 }
1342
1343 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) {
1344 if (Alloca->isSwiftError())
1345 return false;
1346 }
1347 }
1348
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001349 MVT VT;
1350 if (!isTypeLegal(LI->getType(), VT, /*AllowI1=*/true))
1351 return false;
1352
1353 const Value *Ptr = LI->getPointerOperand();
1354
1355 X86AddressMode AM;
1356 if (!X86SelectAddress(Ptr, AM))
1357 return false;
1358
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +00001359 unsigned Alignment = LI->getAlignment();
1360 unsigned ABIAlignment = DL.getABITypeAlignment(LI->getType());
1361 if (Alignment == 0) // Ensure that codegen never sees alignment 0
1362 Alignment = ABIAlignment;
1363
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001364 unsigned ResultReg = 0;
Andrea Di Biagio8f7feec2015-03-26 11:29:02 +00001365 if (!X86FastEmitLoad(VT, AM, createMachineMemOperandFor(LI), ResultReg,
1366 Alignment))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001367 return false;
1368
1369 updateValueMap(I, ResultReg);
1370 return true;
1371}
1372
1373static unsigned X86ChooseCmpOpcode(EVT VT, const X86Subtarget *Subtarget) {
1374 bool HasAVX = Subtarget->hasAVX();
1375 bool X86ScalarSSEf32 = Subtarget->hasSSE1();
1376 bool X86ScalarSSEf64 = Subtarget->hasSSE2();
1377
1378 switch (VT.getSimpleVT().SimpleTy) {
1379 default: return 0;
1380 case MVT::i8: return X86::CMP8rr;
1381 case MVT::i16: return X86::CMP16rr;
1382 case MVT::i32: return X86::CMP32rr;
1383 case MVT::i64: return X86::CMP64rr;
1384 case MVT::f32:
1385 return X86ScalarSSEf32 ? (HasAVX ? X86::VUCOMISSrr : X86::UCOMISSrr) : 0;
1386 case MVT::f64:
1387 return X86ScalarSSEf64 ? (HasAVX ? X86::VUCOMISDrr : X86::UCOMISDrr) : 0;
1388 }
1389}
1390
Rafael Espindola19141f22015-03-16 14:05:49 +00001391/// If we have a comparison with RHS as the RHS of the comparison, return an
1392/// opcode that works for the compare (e.g. CMP32ri) otherwise return 0.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001393static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
Rafael Espindola933f51a2015-03-16 14:25:08 +00001394 int64_t Val = RHSC->getSExtValue();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001395 switch (VT.getSimpleVT().SimpleTy) {
1396 // Otherwise, we can't fold the immediate into this comparison.
Rafael Espindola19141f22015-03-16 14:05:49 +00001397 default:
1398 return 0;
1399 case MVT::i8:
1400 return X86::CMP8ri;
1401 case MVT::i16:
Rafael Espindola933f51a2015-03-16 14:25:08 +00001402 if (isInt<8>(Val))
1403 return X86::CMP16ri8;
Rafael Espindola19141f22015-03-16 14:05:49 +00001404 return X86::CMP16ri;
1405 case MVT::i32:
Rafael Espindola933f51a2015-03-16 14:25:08 +00001406 if (isInt<8>(Val))
1407 return X86::CMP32ri8;
Rafael Espindola19141f22015-03-16 14:05:49 +00001408 return X86::CMP32ri;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001409 case MVT::i64:
Rafael Espindola933f51a2015-03-16 14:25:08 +00001410 if (isInt<8>(Val))
1411 return X86::CMP64ri8;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001412 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
1413 // field.
Rafael Espindola933f51a2015-03-16 14:25:08 +00001414 if (isInt<32>(Val))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001415 return X86::CMP64ri32;
1416 return 0;
1417 }
1418}
1419
Benjamin Kramerbdc49562016-06-12 15:39:02 +00001420bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1, EVT VT,
1421 const DebugLoc &CurDbgLoc) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001422 unsigned Op0Reg = getRegForValue(Op0);
1423 if (Op0Reg == 0) return false;
1424
1425 // Handle 'null' like i32/i64 0.
1426 if (isa<ConstantPointerNull>(Op1))
1427 Op1 = Constant::getNullValue(DL.getIntPtrType(Op0->getContext()));
1428
1429 // We have two options: compare with register or immediate. If the RHS of
1430 // the compare is an immediate that we can fold into this compare, use
1431 // CMPri, otherwise use CMPrr.
1432 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
1433 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
1434 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareImmOpc))
1435 .addReg(Op0Reg)
1436 .addImm(Op1C->getSExtValue());
1437 return true;
1438 }
1439 }
1440
1441 unsigned CompareOpc = X86ChooseCmpOpcode(VT, Subtarget);
1442 if (CompareOpc == 0) return false;
1443
1444 unsigned Op1Reg = getRegForValue(Op1);
1445 if (Op1Reg == 0) return false;
1446 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareOpc))
1447 .addReg(Op0Reg)
1448 .addReg(Op1Reg);
1449
1450 return true;
1451}
1452
1453bool X86FastISel::X86SelectCmp(const Instruction *I) {
1454 const CmpInst *CI = cast<CmpInst>(I);
1455
1456 MVT VT;
1457 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
1458 return false;
1459
Elena Demikhovskyad0a56f2016-07-06 14:15:43 +00001460 if (I->getType()->isIntegerTy(1) && Subtarget->hasAVX512())
1461 return false;
1462
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001463 // Try to optimize or fold the cmp.
1464 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1465 unsigned ResultReg = 0;
1466 switch (Predicate) {
1467 default: break;
1468 case CmpInst::FCMP_FALSE: {
1469 ResultReg = createResultReg(&X86::GR32RegClass);
1470 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV32r0),
1471 ResultReg);
1472 ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultReg, /*Kill=*/true,
1473 X86::sub_8bit);
1474 if (!ResultReg)
1475 return false;
1476 break;
1477 }
1478 case CmpInst::FCMP_TRUE: {
1479 ResultReg = createResultReg(&X86::GR8RegClass);
1480 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
1481 ResultReg).addImm(1);
1482 break;
1483 }
1484 }
1485
1486 if (ResultReg) {
1487 updateValueMap(I, ResultReg);
1488 return true;
1489 }
1490
1491 const Value *LHS = CI->getOperand(0);
1492 const Value *RHS = CI->getOperand(1);
1493
1494 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1495 // We don't have to materialize a zero constant for this case and can just use
1496 // %x again on the RHS.
1497 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1498 const auto *RHSC = dyn_cast<ConstantFP>(RHS);
1499 if (RHSC && RHSC->isNullValue())
1500 RHS = LHS;
1501 }
1502
1503 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
Craig Topper428169a2016-09-05 07:14:21 +00001504 static const uint16_t SETFOpcTable[2][3] = {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001505 { X86::SETEr, X86::SETNPr, X86::AND8rr },
1506 { X86::SETNEr, X86::SETPr, X86::OR8rr }
1507 };
Craig Topper428169a2016-09-05 07:14:21 +00001508 const uint16_t *SETFOpc = nullptr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001509 switch (Predicate) {
1510 default: break;
1511 case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break;
1512 case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break;
1513 }
1514
1515 ResultReg = createResultReg(&X86::GR8RegClass);
1516 if (SETFOpc) {
1517 if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc()))
1518 return false;
1519
1520 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1521 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1522 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1523 FlagReg1);
1524 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1525 FlagReg2);
1526 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[2]),
1527 ResultReg).addReg(FlagReg1).addReg(FlagReg2);
1528 updateValueMap(I, ResultReg);
1529 return true;
1530 }
1531
1532 X86::CondCode CC;
1533 bool SwapArgs;
1534 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
1535 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1536 unsigned Opc = X86::getSETFromCond(CC);
1537
1538 if (SwapArgs)
1539 std::swap(LHS, RHS);
1540
1541 // Emit a compare of LHS/RHS.
1542 if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc()))
1543 return false;
1544
1545 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
1546 updateValueMap(I, ResultReg);
1547 return true;
1548}
1549
1550bool X86FastISel::X86SelectZExt(const Instruction *I) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001551 EVT DstVT = TLI.getValueType(DL, I->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001552 if (!TLI.isTypeLegal(DstVT))
1553 return false;
1554
1555 unsigned ResultReg = getRegForValue(I->getOperand(0));
1556 if (ResultReg == 0)
1557 return false;
1558
1559 // Handle zero-extension from i1 to i8, which is common.
Mehdi Amini44ede332015-07-09 02:09:04 +00001560 MVT SrcVT = TLI.getSimpleValueType(DL, I->getOperand(0)->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001561 if (SrcVT.SimpleTy == MVT::i1) {
1562 // Set the high bits to zero.
1563 ResultReg = fastEmitZExtFromI1(MVT::i8, ResultReg, /*TODO: Kill=*/false);
1564 SrcVT = MVT::i8;
1565
1566 if (ResultReg == 0)
1567 return false;
1568 }
1569
1570 if (DstVT == MVT::i64) {
1571 // Handle extension to 64-bits via sub-register shenanigans.
1572 unsigned MovInst;
1573
1574 switch (SrcVT.SimpleTy) {
1575 case MVT::i8: MovInst = X86::MOVZX32rr8; break;
1576 case MVT::i16: MovInst = X86::MOVZX32rr16; break;
1577 case MVT::i32: MovInst = X86::MOV32rr; break;
1578 default: llvm_unreachable("Unexpected zext to i64 source type");
1579 }
1580
1581 unsigned Result32 = createResultReg(&X86::GR32RegClass);
1582 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovInst), Result32)
1583 .addReg(ResultReg);
1584
1585 ResultReg = createResultReg(&X86::GR64RegClass);
1586 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::SUBREG_TO_REG),
1587 ResultReg)
1588 .addImm(0).addReg(Result32).addImm(X86::sub_32bit);
1589 } else if (DstVT != MVT::i8) {
1590 ResultReg = fastEmit_r(MVT::i8, DstVT.getSimpleVT(), ISD::ZERO_EXTEND,
1591 ResultReg, /*Kill=*/true);
1592 if (ResultReg == 0)
1593 return false;
1594 }
1595
1596 updateValueMap(I, ResultReg);
1597 return true;
1598}
1599
1600bool X86FastISel::X86SelectBranch(const Instruction *I) {
1601 // Unconditional branches are selected by tablegen-generated code.
1602 // Handle a conditional branch.
1603 const BranchInst *BI = cast<BranchInst>(I);
1604 MachineBasicBlock *TrueMBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1605 MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
1606
1607 // Fold the common case of a conditional branch with a comparison
1608 // in the same block (values defined on other blocks may not have
1609 // initialized registers).
1610 X86::CondCode CC;
1611 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
1612 if (CI->hasOneUse() && CI->getParent() == I->getParent()) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001613 EVT VT = TLI.getValueType(DL, CI->getOperand(0)->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001614
1615 // Try to optimize or fold the cmp.
1616 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1617 switch (Predicate) {
1618 default: break;
1619 case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true;
1620 case CmpInst::FCMP_TRUE: fastEmitBranch(TrueMBB, DbgLoc); return true;
1621 }
1622
1623 const Value *CmpLHS = CI->getOperand(0);
1624 const Value *CmpRHS = CI->getOperand(1);
1625
1626 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x,
1627 // 0.0.
1628 // We don't have to materialize a zero constant for this case and can just
1629 // use %x again on the RHS.
1630 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1631 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
1632 if (CmpRHSC && CmpRHSC->isNullValue())
1633 CmpRHS = CmpLHS;
1634 }
1635
1636 // Try to take advantage of fallthrough opportunities.
1637 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1638 std::swap(TrueMBB, FalseMBB);
1639 Predicate = CmpInst::getInversePredicate(Predicate);
1640 }
1641
1642 // FCMP_OEQ and FCMP_UNE cannot be expressed with a single flag/condition
1643 // code check. Instead two branch instructions are required to check all
1644 // the flags. First we change the predicate to a supported condition code,
1645 // which will be the first branch. Later one we will emit the second
1646 // branch.
1647 bool NeedExtraBranch = false;
1648 switch (Predicate) {
1649 default: break;
1650 case CmpInst::FCMP_OEQ:
Justin Bognerb03fd122016-08-17 05:10:15 +00001651 std::swap(TrueMBB, FalseMBB);
1652 LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001653 case CmpInst::FCMP_UNE:
1654 NeedExtraBranch = true;
1655 Predicate = CmpInst::FCMP_ONE;
1656 break;
1657 }
1658
1659 bool SwapArgs;
1660 unsigned BranchOpc;
1661 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
1662 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1663
1664 BranchOpc = X86::GetCondBranchFromCond(CC);
1665 if (SwapArgs)
1666 std::swap(CmpLHS, CmpRHS);
1667
1668 // Emit a compare of the LHS and RHS, setting the flags.
1669 if (!X86FastEmitCompare(CmpLHS, CmpRHS, VT, CI->getDebugLoc()))
1670 return false;
1671
1672 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
1673 .addMBB(TrueMBB);
1674
1675 // X86 requires a second branch to handle UNE (and OEQ, which is mapped
1676 // to UNE above).
1677 if (NeedExtraBranch) {
1678 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JP_1))
1679 .addMBB(TrueMBB);
1680 }
1681
Matthias Braun17af6072015-08-26 01:38:00 +00001682 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001683 return true;
1684 }
1685 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1686 // Handle things like "%cond = trunc i32 %X to i1 / br i1 %cond", which
1687 // typically happen for _Bool and C++ bools.
1688 MVT SourceVT;
1689 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1690 isTypeLegal(TI->getOperand(0)->getType(), SourceVT)) {
1691 unsigned TestOpc = 0;
1692 switch (SourceVT.SimpleTy) {
1693 default: break;
1694 case MVT::i8: TestOpc = X86::TEST8ri; break;
1695 case MVT::i16: TestOpc = X86::TEST16ri; break;
1696 case MVT::i32: TestOpc = X86::TEST32ri; break;
1697 case MVT::i64: TestOpc = X86::TEST64ri32; break;
1698 }
1699 if (TestOpc) {
1700 unsigned OpReg = getRegForValue(TI->getOperand(0));
1701 if (OpReg == 0) return false;
Guy Blank9ae797a2016-08-21 08:02:27 +00001702
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001703 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TestOpc))
1704 .addReg(OpReg).addImm(1);
1705
1706 unsigned JmpOpc = X86::JNE_1;
1707 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1708 std::swap(TrueMBB, FalseMBB);
1709 JmpOpc = X86::JE_1;
1710 }
1711
1712 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(JmpOpc))
1713 .addMBB(TrueMBB);
Matthias Braun17af6072015-08-26 01:38:00 +00001714
1715 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001716 return true;
1717 }
1718 }
1719 } else if (foldX86XALUIntrinsic(CC, BI, BI->getCondition())) {
1720 // Fake request the condition, otherwise the intrinsic might be completely
1721 // optimized away.
1722 unsigned TmpReg = getRegForValue(BI->getCondition());
1723 if (TmpReg == 0)
1724 return false;
1725
1726 unsigned BranchOpc = X86::GetCondBranchFromCond(CC);
1727
1728 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
1729 .addMBB(TrueMBB);
Matthias Braun17af6072015-08-26 01:38:00 +00001730 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001731 return true;
1732 }
1733
1734 // Otherwise do a clumsy setcc and re-test it.
1735 // Note that i1 essentially gets ANY_EXTEND'ed to i8 where it isn't used
1736 // in an explicit cast, so make sure to handle that correctly.
1737 unsigned OpReg = getRegForValue(BI->getCondition());
1738 if (OpReg == 0) return false;
1739
Guy Blank2bdc74a2016-09-28 11:22:17 +00001740 // In case OpReg is a K register, COPY to a GPR
1741 if (MRI.getRegClass(OpReg) == &X86::VK1RegClass) {
1742 unsigned KOpReg = OpReg;
1743 OpReg = createResultReg(&X86::GR8RegClass);
1744 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1745 TII.get(TargetOpcode::COPY), OpReg)
1746 .addReg(KOpReg);
1747 }
1748 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1749 .addReg(OpReg)
1750 .addImm(1);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001751 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JNE_1))
1752 .addMBB(TrueMBB);
Matthias Braun17af6072015-08-26 01:38:00 +00001753 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001754 return true;
1755}
1756
1757bool X86FastISel::X86SelectShift(const Instruction *I) {
1758 unsigned CReg = 0, OpReg = 0;
1759 const TargetRegisterClass *RC = nullptr;
1760 if (I->getType()->isIntegerTy(8)) {
1761 CReg = X86::CL;
1762 RC = &X86::GR8RegClass;
1763 switch (I->getOpcode()) {
1764 case Instruction::LShr: OpReg = X86::SHR8rCL; break;
1765 case Instruction::AShr: OpReg = X86::SAR8rCL; break;
1766 case Instruction::Shl: OpReg = X86::SHL8rCL; break;
1767 default: return false;
1768 }
1769 } else if (I->getType()->isIntegerTy(16)) {
1770 CReg = X86::CX;
1771 RC = &X86::GR16RegClass;
1772 switch (I->getOpcode()) {
1773 case Instruction::LShr: OpReg = X86::SHR16rCL; break;
1774 case Instruction::AShr: OpReg = X86::SAR16rCL; break;
1775 case Instruction::Shl: OpReg = X86::SHL16rCL; break;
1776 default: return false;
1777 }
1778 } else if (I->getType()->isIntegerTy(32)) {
1779 CReg = X86::ECX;
1780 RC = &X86::GR32RegClass;
1781 switch (I->getOpcode()) {
1782 case Instruction::LShr: OpReg = X86::SHR32rCL; break;
1783 case Instruction::AShr: OpReg = X86::SAR32rCL; break;
1784 case Instruction::Shl: OpReg = X86::SHL32rCL; break;
1785 default: return false;
1786 }
1787 } else if (I->getType()->isIntegerTy(64)) {
1788 CReg = X86::RCX;
1789 RC = &X86::GR64RegClass;
1790 switch (I->getOpcode()) {
1791 case Instruction::LShr: OpReg = X86::SHR64rCL; break;
1792 case Instruction::AShr: OpReg = X86::SAR64rCL; break;
1793 case Instruction::Shl: OpReg = X86::SHL64rCL; break;
1794 default: return false;
1795 }
1796 } else {
1797 return false;
1798 }
1799
1800 MVT VT;
1801 if (!isTypeLegal(I->getType(), VT))
1802 return false;
1803
1804 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1805 if (Op0Reg == 0) return false;
1806
1807 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1808 if (Op1Reg == 0) return false;
1809 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
1810 CReg).addReg(Op1Reg);
1811
1812 // The shift instruction uses X86::CL. If we defined a super-register
1813 // of X86::CL, emit a subreg KILL to precisely describe what we're doing here.
1814 if (CReg != X86::CL)
1815 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1816 TII.get(TargetOpcode::KILL), X86::CL)
1817 .addReg(CReg, RegState::Kill);
1818
1819 unsigned ResultReg = createResultReg(RC);
1820 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(OpReg), ResultReg)
1821 .addReg(Op0Reg);
1822 updateValueMap(I, ResultReg);
1823 return true;
1824}
1825
1826bool X86FastISel::X86SelectDivRem(const Instruction *I) {
1827 const static unsigned NumTypes = 4; // i8, i16, i32, i64
1828 const static unsigned NumOps = 4; // SDiv, SRem, UDiv, URem
1829 const static bool S = true; // IsSigned
1830 const static bool U = false; // !IsSigned
1831 const static unsigned Copy = TargetOpcode::COPY;
1832 // For the X86 DIV/IDIV instruction, in most cases the dividend
1833 // (numerator) must be in a specific register pair highreg:lowreg,
1834 // producing the quotient in lowreg and the remainder in highreg.
1835 // For most data types, to set up the instruction, the dividend is
1836 // copied into lowreg, and lowreg is sign-extended or zero-extended
1837 // into highreg. The exception is i8, where the dividend is defined
1838 // as a single register rather than a register pair, and we
1839 // therefore directly sign-extend or zero-extend the dividend into
1840 // lowreg, instead of copying, and ignore the highreg.
1841 const static struct DivRemEntry {
1842 // The following portion depends only on the data type.
1843 const TargetRegisterClass *RC;
1844 unsigned LowInReg; // low part of the register pair
1845 unsigned HighInReg; // high part of the register pair
1846 // The following portion depends on both the data type and the operation.
1847 struct DivRemResult {
1848 unsigned OpDivRem; // The specific DIV/IDIV opcode to use.
1849 unsigned OpSignExtend; // Opcode for sign-extending lowreg into
1850 // highreg, or copying a zero into highreg.
1851 unsigned OpCopy; // Opcode for copying dividend into lowreg, or
1852 // zero/sign-extending into lowreg for i8.
1853 unsigned DivRemResultReg; // Register containing the desired result.
1854 bool IsOpSigned; // Whether to use signed or unsigned form.
1855 } ResultTable[NumOps];
1856 } OpTable[NumTypes] = {
1857 { &X86::GR8RegClass, X86::AX, 0, {
1858 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AL, S }, // SDiv
1859 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AH, S }, // SRem
1860 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AL, U }, // UDiv
1861 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AH, U }, // URem
1862 }
1863 }, // i8
1864 { &X86::GR16RegClass, X86::AX, X86::DX, {
1865 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv
1866 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem
1867 { X86::DIV16r, X86::MOV32r0, Copy, X86::AX, U }, // UDiv
1868 { X86::DIV16r, X86::MOV32r0, Copy, X86::DX, U }, // URem
1869 }
1870 }, // i16
1871 { &X86::GR32RegClass, X86::EAX, X86::EDX, {
1872 { X86::IDIV32r, X86::CDQ, Copy, X86::EAX, S }, // SDiv
1873 { X86::IDIV32r, X86::CDQ, Copy, X86::EDX, S }, // SRem
1874 { X86::DIV32r, X86::MOV32r0, Copy, X86::EAX, U }, // UDiv
1875 { X86::DIV32r, X86::MOV32r0, Copy, X86::EDX, U }, // URem
1876 }
1877 }, // i32
1878 { &X86::GR64RegClass, X86::RAX, X86::RDX, {
1879 { X86::IDIV64r, X86::CQO, Copy, X86::RAX, S }, // SDiv
1880 { X86::IDIV64r, X86::CQO, Copy, X86::RDX, S }, // SRem
1881 { X86::DIV64r, X86::MOV32r0, Copy, X86::RAX, U }, // UDiv
1882 { X86::DIV64r, X86::MOV32r0, Copy, X86::RDX, U }, // URem
1883 }
1884 }, // i64
1885 };
1886
1887 MVT VT;
1888 if (!isTypeLegal(I->getType(), VT))
1889 return false;
1890
1891 unsigned TypeIndex, OpIndex;
1892 switch (VT.SimpleTy) {
1893 default: return false;
1894 case MVT::i8: TypeIndex = 0; break;
1895 case MVT::i16: TypeIndex = 1; break;
1896 case MVT::i32: TypeIndex = 2; break;
1897 case MVT::i64: TypeIndex = 3;
1898 if (!Subtarget->is64Bit())
1899 return false;
1900 break;
1901 }
1902
1903 switch (I->getOpcode()) {
1904 default: llvm_unreachable("Unexpected div/rem opcode");
1905 case Instruction::SDiv: OpIndex = 0; break;
1906 case Instruction::SRem: OpIndex = 1; break;
1907 case Instruction::UDiv: OpIndex = 2; break;
1908 case Instruction::URem: OpIndex = 3; break;
1909 }
1910
1911 const DivRemEntry &TypeEntry = OpTable[TypeIndex];
1912 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex];
1913 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1914 if (Op0Reg == 0)
1915 return false;
1916 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1917 if (Op1Reg == 0)
1918 return false;
1919
1920 // Move op0 into low-order input register.
1921 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1922 TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg);
1923 // Zero-extend or sign-extend into high-order input register.
1924 if (OpEntry.OpSignExtend) {
1925 if (OpEntry.IsOpSigned)
1926 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1927 TII.get(OpEntry.OpSignExtend));
1928 else {
1929 unsigned Zero32 = createResultReg(&X86::GR32RegClass);
1930 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1931 TII.get(X86::MOV32r0), Zero32);
1932
1933 // Copy the zero into the appropriate sub/super/identical physical
1934 // register. Unfortunately the operations needed are not uniform enough
1935 // to fit neatly into the table above.
1936 if (VT.SimpleTy == MVT::i16) {
1937 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1938 TII.get(Copy), TypeEntry.HighInReg)
1939 .addReg(Zero32, 0, X86::sub_16bit);
1940 } else if (VT.SimpleTy == MVT::i32) {
1941 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1942 TII.get(Copy), TypeEntry.HighInReg)
1943 .addReg(Zero32);
1944 } else if (VT.SimpleTy == MVT::i64) {
1945 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1946 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg)
1947 .addImm(0).addReg(Zero32).addImm(X86::sub_32bit);
1948 }
1949 }
1950 }
1951 // Generate the DIV/IDIV instruction.
1952 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1953 TII.get(OpEntry.OpDivRem)).addReg(Op1Reg);
1954 // For i8 remainder, we can't reference AH directly, as we'll end
1955 // up with bogus copies like %R9B = COPY %AH. Reference AX
1956 // instead to prevent AH references in a REX instruction.
1957 //
1958 // The current assumption of the fast register allocator is that isel
1959 // won't generate explicit references to the GPR8_NOREX registers. If
1960 // the allocator and/or the backend get enhanced to be more robust in
1961 // that regard, this can be, and should be, removed.
1962 unsigned ResultReg = 0;
1963 if ((I->getOpcode() == Instruction::SRem ||
1964 I->getOpcode() == Instruction::URem) &&
1965 OpEntry.DivRemResultReg == X86::AH && Subtarget->is64Bit()) {
1966 unsigned SourceSuperReg = createResultReg(&X86::GR16RegClass);
1967 unsigned ResultSuperReg = createResultReg(&X86::GR16RegClass);
1968 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1969 TII.get(Copy), SourceSuperReg).addReg(X86::AX);
1970
1971 // Shift AX right by 8 bits instead of using AH.
1972 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::SHR16ri),
1973 ResultSuperReg).addReg(SourceSuperReg).addImm(8);
1974
1975 // Now reference the 8-bit subreg of the result.
1976 ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultSuperReg,
1977 /*Kill=*/true, X86::sub_8bit);
1978 }
1979 // Copy the result out of the physreg if we haven't already.
1980 if (!ResultReg) {
1981 ResultReg = createResultReg(TypeEntry.RC);
1982 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Copy), ResultReg)
1983 .addReg(OpEntry.DivRemResultReg);
1984 }
1985 updateValueMap(I, ResultReg);
1986
1987 return true;
1988}
1989
1990/// \brief Emit a conditional move instruction (if the are supported) to lower
1991/// the select.
1992bool X86FastISel::X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I) {
1993 // Check if the subtarget supports these instructions.
1994 if (!Subtarget->hasCMov())
1995 return false;
1996
1997 // FIXME: Add support for i8.
1998 if (RetVT < MVT::i16 || RetVT > MVT::i64)
1999 return false;
2000
2001 const Value *Cond = I->getOperand(0);
2002 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
2003 bool NeedTest = true;
2004 X86::CondCode CC = X86::COND_NE;
2005
2006 // Optimize conditions coming from a compare if both instructions are in the
2007 // same basic block (values defined in other basic blocks may not have
2008 // initialized registers).
2009 const auto *CI = dyn_cast<CmpInst>(Cond);
2010 if (CI && (CI->getParent() == I->getParent())) {
2011 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2012
2013 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
Craig Topper428169a2016-09-05 07:14:21 +00002014 static const uint16_t SETFOpcTable[2][3] = {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002015 { X86::SETNPr, X86::SETEr , X86::TEST8rr },
2016 { X86::SETPr, X86::SETNEr, X86::OR8rr }
2017 };
Craig Topper428169a2016-09-05 07:14:21 +00002018 const uint16_t *SETFOpc = nullptr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002019 switch (Predicate) {
2020 default: break;
2021 case CmpInst::FCMP_OEQ:
2022 SETFOpc = &SETFOpcTable[0][0];
2023 Predicate = CmpInst::ICMP_NE;
2024 break;
2025 case CmpInst::FCMP_UNE:
2026 SETFOpc = &SETFOpcTable[1][0];
2027 Predicate = CmpInst::ICMP_NE;
2028 break;
2029 }
2030
2031 bool NeedSwap;
2032 std::tie(CC, NeedSwap) = getX86ConditionCode(Predicate);
2033 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
2034
2035 const Value *CmpLHS = CI->getOperand(0);
2036 const Value *CmpRHS = CI->getOperand(1);
2037 if (NeedSwap)
2038 std::swap(CmpLHS, CmpRHS);
2039
Mehdi Amini44ede332015-07-09 02:09:04 +00002040 EVT CmpVT = TLI.getValueType(DL, CmpLHS->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002041 // Emit a compare of the LHS and RHS, setting the flags.
2042 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT, CI->getDebugLoc()))
2043 return false;
2044
2045 if (SETFOpc) {
2046 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
2047 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
2048 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
2049 FlagReg1);
2050 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
2051 FlagReg2);
2052 auto const &II = TII.get(SETFOpc[2]);
2053 if (II.getNumDefs()) {
2054 unsigned TmpReg = createResultReg(&X86::GR8RegClass);
2055 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, TmpReg)
2056 .addReg(FlagReg2).addReg(FlagReg1);
2057 } else {
2058 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
2059 .addReg(FlagReg2).addReg(FlagReg1);
2060 }
2061 }
2062 NeedTest = false;
2063 } else if (foldX86XALUIntrinsic(CC, I, Cond)) {
2064 // Fake request the condition, otherwise the intrinsic might be completely
2065 // optimized away.
2066 unsigned TmpReg = getRegForValue(Cond);
2067 if (TmpReg == 0)
2068 return false;
2069
2070 NeedTest = false;
2071 }
2072
2073 if (NeedTest) {
2074 // Selects operate on i1, however, CondReg is 8 bits width and may contain
2075 // garbage. Indeed, only the less significant bit is supposed to be
2076 // accurate. If we read more than the lsb, we may see non-zero values
2077 // whereas lsb is zero. Therefore, we have to truncate Op0Reg to i1 for
2078 // the select. This is achieved by performing TEST against 1.
2079 unsigned CondReg = getRegForValue(Cond);
2080 if (CondReg == 0)
2081 return false;
2082 bool CondIsKill = hasTrivialKill(Cond);
2083
Guy Blank2bdc74a2016-09-28 11:22:17 +00002084 // In case OpReg is a K register, COPY to a GPR
2085 if (MRI.getRegClass(CondReg) == &X86::VK1RegClass) {
2086 unsigned KCondReg = CondReg;
2087 CondReg = createResultReg(&X86::GR8RegClass);
Guy Blank9ae797a2016-08-21 08:02:27 +00002088 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Guy Blank2bdc74a2016-09-28 11:22:17 +00002089 TII.get(TargetOpcode::COPY), CondReg)
2090 .addReg(KCondReg, getKillRegState(CondIsKill));
2091 }
2092 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
2093 .addReg(CondReg, getKillRegState(CondIsKill))
2094 .addImm(1);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002095 }
2096
2097 const Value *LHS = I->getOperand(1);
2098 const Value *RHS = I->getOperand(2);
2099
2100 unsigned RHSReg = getRegForValue(RHS);
2101 bool RHSIsKill = hasTrivialKill(RHS);
2102
2103 unsigned LHSReg = getRegForValue(LHS);
2104 bool LHSIsKill = hasTrivialKill(LHS);
2105
2106 if (!LHSReg || !RHSReg)
2107 return false;
2108
2109 unsigned Opc = X86::getCMovFromCond(CC, RC->getSize());
2110 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill,
2111 LHSReg, LHSIsKill);
2112 updateValueMap(I, ResultReg);
2113 return true;
2114}
2115
Sanjay Patel302404b2015-03-05 21:46:54 +00002116/// \brief Emit SSE or AVX instructions to lower the select.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002117///
2118/// Try to use SSE1/SSE2 instructions to simulate a select without branches.
2119/// This lowers fp selects into a CMP/AND/ANDN/OR sequence when the necessary
Sanjay Patel302404b2015-03-05 21:46:54 +00002120/// SSE instructions are available. If AVX is available, try to use a VBLENDV.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002121bool X86FastISel::X86FastEmitSSESelect(MVT RetVT, const Instruction *I) {
2122 // Optimize conditions coming from a compare if both instructions are in the
2123 // same basic block (values defined in other basic blocks may not have
2124 // initialized registers).
2125 const auto *CI = dyn_cast<FCmpInst>(I->getOperand(0));
2126 if (!CI || (CI->getParent() != I->getParent()))
2127 return false;
2128
2129 if (I->getType() != CI->getOperand(0)->getType() ||
2130 !((Subtarget->hasSSE1() && RetVT == MVT::f32) ||
2131 (Subtarget->hasSSE2() && RetVT == MVT::f64)))
2132 return false;
2133
2134 const Value *CmpLHS = CI->getOperand(0);
2135 const Value *CmpRHS = CI->getOperand(1);
2136 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2137
2138 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
2139 // We don't have to materialize a zero constant for this case and can just use
2140 // %x again on the RHS.
2141 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
2142 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
2143 if (CmpRHSC && CmpRHSC->isNullValue())
2144 CmpRHS = CmpLHS;
2145 }
2146
2147 unsigned CC;
2148 bool NeedSwap;
2149 std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate);
2150 if (CC > 7)
2151 return false;
2152
2153 if (NeedSwap)
2154 std::swap(CmpLHS, CmpRHS);
2155
Sanjay Patel302404b2015-03-05 21:46:54 +00002156 // Choose the SSE instruction sequence based on data type (float or double).
Craig Topper428169a2016-09-05 07:14:21 +00002157 static const uint16_t OpcTable[2][4] = {
Sanjay Patel302404b2015-03-05 21:46:54 +00002158 { X86::CMPSSrr, X86::FsANDPSrr, X86::FsANDNPSrr, X86::FsORPSrr },
2159 { X86::CMPSDrr, X86::FsANDPDrr, X86::FsANDNPDrr, X86::FsORPDrr }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002160 };
2161
Craig Topper428169a2016-09-05 07:14:21 +00002162 const uint16_t *Opc = nullptr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002163 switch (RetVT.SimpleTy) {
2164 default: return false;
Sanjay Patel302404b2015-03-05 21:46:54 +00002165 case MVT::f32: Opc = &OpcTable[0][0]; break;
2166 case MVT::f64: Opc = &OpcTable[1][0]; break;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002167 }
2168
2169 const Value *LHS = I->getOperand(1);
2170 const Value *RHS = I->getOperand(2);
2171
2172 unsigned LHSReg = getRegForValue(LHS);
2173 bool LHSIsKill = hasTrivialKill(LHS);
2174
2175 unsigned RHSReg = getRegForValue(RHS);
2176 bool RHSIsKill = hasTrivialKill(RHS);
2177
2178 unsigned CmpLHSReg = getRegForValue(CmpLHS);
2179 bool CmpLHSIsKill = hasTrivialKill(CmpLHS);
2180
2181 unsigned CmpRHSReg = getRegForValue(CmpRHS);
2182 bool CmpRHSIsKill = hasTrivialKill(CmpRHS);
2183
2184 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS)
2185 return false;
2186
2187 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
Sanjay Patel302404b2015-03-05 21:46:54 +00002188 unsigned ResultReg;
Craig Topper7ef6ea32016-12-05 04:51:31 +00002189
2190 if (Subtarget->hasAVX512()) {
2191 // If we have AVX512 we can use a mask compare and masked movss/sd.
2192 const TargetRegisterClass *VR128X = &X86::VR128XRegClass;
2193 const TargetRegisterClass *VK1 = &X86::VK1RegClass;
2194
2195 unsigned CmpOpcode =
2196 (RetVT.SimpleTy == MVT::f32) ? X86::VCMPSSZrr : X86::VCMPSDZrr;
2197 unsigned CmpReg = fastEmitInst_rri(CmpOpcode, VK1, CmpLHSReg, CmpLHSIsKill,
2198 CmpRHSReg, CmpRHSIsKill, CC);
2199
2200 // Need an IMPLICIT_DEF for the input that is used to generate the upper
2201 // bits of the result register since its not based on any of the inputs.
2202 unsigned ImplicitDefReg = createResultReg(VR128X);
2203 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2204 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2205
2206 // Place RHSReg is the passthru of the masked movss/sd operation and put
2207 // LHS in the input. The mask input comes from the compare.
2208 unsigned MovOpcode =
2209 (RetVT.SimpleTy == MVT::f32) ? X86::VMOVSSZrrk : X86::VMOVSDZrrk;
2210 unsigned MovReg = fastEmitInst_rrrr(MovOpcode, VR128X, RHSReg, RHSIsKill,
2211 CmpReg, true, ImplicitDefReg, true,
2212 LHSReg, LHSIsKill);
2213
2214 ResultReg = createResultReg(RC);
2215 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2216 TII.get(TargetOpcode::COPY), ResultReg).addReg(MovReg);
2217
2218 } else if (Subtarget->hasAVX()) {
Matthias Braun818c78d2015-08-31 18:25:11 +00002219 const TargetRegisterClass *VR128 = &X86::VR128RegClass;
2220
Sanjay Patel302404b2015-03-05 21:46:54 +00002221 // If we have AVX, create 1 blendv instead of 3 logic instructions.
2222 // Blendv was introduced with SSE 4.1, but the 2 register form implicitly
2223 // uses XMM0 as the selection register. That may need just as many
2224 // instructions as the AND/ANDN/OR sequence due to register moves, so
2225 // don't bother.
2226 unsigned CmpOpcode =
2227 (RetVT.SimpleTy == MVT::f32) ? X86::VCMPSSrr : X86::VCMPSDrr;
2228 unsigned BlendOpcode =
2229 (RetVT.SimpleTy == MVT::f32) ? X86::VBLENDVPSrr : X86::VBLENDVPDrr;
2230
Craig Topper7ef6ea32016-12-05 04:51:31 +00002231 unsigned CmpReg = fastEmitInst_rri(CmpOpcode, RC, CmpLHSReg, CmpLHSIsKill,
Sanjay Patel302404b2015-03-05 21:46:54 +00002232 CmpRHSReg, CmpRHSIsKill, CC);
Matthias Braun818c78d2015-08-31 18:25:11 +00002233 unsigned VBlendReg = fastEmitInst_rrr(BlendOpcode, VR128, RHSReg, RHSIsKill,
2234 LHSReg, LHSIsKill, CmpReg, true);
2235 ResultReg = createResultReg(RC);
2236 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2237 TII.get(TargetOpcode::COPY), ResultReg).addReg(VBlendReg);
Sanjay Patel302404b2015-03-05 21:46:54 +00002238 } else {
2239 unsigned CmpReg = fastEmitInst_rri(Opc[0], RC, CmpLHSReg, CmpLHSIsKill,
2240 CmpRHSReg, CmpRHSIsKill, CC);
2241 unsigned AndReg = fastEmitInst_rr(Opc[1], RC, CmpReg, /*IsKill=*/false,
2242 LHSReg, LHSIsKill);
2243 unsigned AndNReg = fastEmitInst_rr(Opc[2], RC, CmpReg, /*IsKill=*/true,
2244 RHSReg, RHSIsKill);
2245 ResultReg = fastEmitInst_rr(Opc[3], RC, AndNReg, /*IsKill=*/true,
2246 AndReg, /*IsKill=*/true);
2247 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002248 updateValueMap(I, ResultReg);
2249 return true;
2250}
2251
2252bool X86FastISel::X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I) {
2253 // These are pseudo CMOV instructions and will be later expanded into control-
2254 // flow.
2255 unsigned Opc;
2256 switch (RetVT.SimpleTy) {
2257 default: return false;
2258 case MVT::i8: Opc = X86::CMOV_GR8; break;
2259 case MVT::i16: Opc = X86::CMOV_GR16; break;
2260 case MVT::i32: Opc = X86::CMOV_GR32; break;
2261 case MVT::f32: Opc = X86::CMOV_FR32; break;
2262 case MVT::f64: Opc = X86::CMOV_FR64; break;
2263 }
2264
2265 const Value *Cond = I->getOperand(0);
2266 X86::CondCode CC = X86::COND_NE;
2267
2268 // Optimize conditions coming from a compare if both instructions are in the
2269 // same basic block (values defined in other basic blocks may not have
2270 // initialized registers).
2271 const auto *CI = dyn_cast<CmpInst>(Cond);
2272 if (CI && (CI->getParent() == I->getParent())) {
2273 bool NeedSwap;
2274 std::tie(CC, NeedSwap) = getX86ConditionCode(CI->getPredicate());
2275 if (CC > X86::LAST_VALID_COND)
2276 return false;
2277
2278 const Value *CmpLHS = CI->getOperand(0);
2279 const Value *CmpRHS = CI->getOperand(1);
2280
2281 if (NeedSwap)
2282 std::swap(CmpLHS, CmpRHS);
2283
Mehdi Amini44ede332015-07-09 02:09:04 +00002284 EVT CmpVT = TLI.getValueType(DL, CmpLHS->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002285 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT, CI->getDebugLoc()))
2286 return false;
2287 } else {
2288 unsigned CondReg = getRegForValue(Cond);
2289 if (CondReg == 0)
2290 return false;
2291 bool CondIsKill = hasTrivialKill(Cond);
Guy Blank9ae797a2016-08-21 08:02:27 +00002292
Guy Blank2bdc74a2016-09-28 11:22:17 +00002293 // In case OpReg is a K register, COPY to a GPR
2294 if (MRI.getRegClass(CondReg) == &X86::VK1RegClass) {
2295 unsigned KCondReg = CondReg;
2296 CondReg = createResultReg(&X86::GR8RegClass);
Guy Blank9ae797a2016-08-21 08:02:27 +00002297 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Guy Blank2bdc74a2016-09-28 11:22:17 +00002298 TII.get(TargetOpcode::COPY), CondReg)
2299 .addReg(KCondReg, getKillRegState(CondIsKill));
2300 }
2301 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
2302 .addReg(CondReg, getKillRegState(CondIsKill))
2303 .addImm(1);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002304 }
2305
2306 const Value *LHS = I->getOperand(1);
2307 const Value *RHS = I->getOperand(2);
2308
2309 unsigned LHSReg = getRegForValue(LHS);
2310 bool LHSIsKill = hasTrivialKill(LHS);
2311
2312 unsigned RHSReg = getRegForValue(RHS);
2313 bool RHSIsKill = hasTrivialKill(RHS);
2314
2315 if (!LHSReg || !RHSReg)
2316 return false;
2317
2318 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
2319
2320 unsigned ResultReg =
2321 fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC);
2322 updateValueMap(I, ResultReg);
2323 return true;
2324}
2325
2326bool X86FastISel::X86SelectSelect(const Instruction *I) {
2327 MVT RetVT;
2328 if (!isTypeLegal(I->getType(), RetVT))
2329 return false;
2330
2331 // Check if we can fold the select.
2332 if (const auto *CI = dyn_cast<CmpInst>(I->getOperand(0))) {
2333 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2334 const Value *Opnd = nullptr;
2335 switch (Predicate) {
2336 default: break;
2337 case CmpInst::FCMP_FALSE: Opnd = I->getOperand(2); break;
2338 case CmpInst::FCMP_TRUE: Opnd = I->getOperand(1); break;
2339 }
2340 // No need for a select anymore - this is an unconditional move.
2341 if (Opnd) {
2342 unsigned OpReg = getRegForValue(Opnd);
2343 if (OpReg == 0)
2344 return false;
2345 bool OpIsKill = hasTrivialKill(Opnd);
2346 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
2347 unsigned ResultReg = createResultReg(RC);
2348 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2349 TII.get(TargetOpcode::COPY), ResultReg)
2350 .addReg(OpReg, getKillRegState(OpIsKill));
2351 updateValueMap(I, ResultReg);
2352 return true;
2353 }
2354 }
2355
2356 // First try to use real conditional move instructions.
2357 if (X86FastEmitCMoveSelect(RetVT, I))
2358 return true;
2359
2360 // Try to use a sequence of SSE instructions to simulate a conditional move.
2361 if (X86FastEmitSSESelect(RetVT, I))
2362 return true;
2363
2364 // Fall-back to pseudo conditional move instructions, which will be later
2365 // converted to control-flow.
2366 if (X86FastEmitPseudoSelect(RetVT, I))
2367 return true;
2368
2369 return false;
2370}
2371
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002372bool X86FastISel::X86SelectSIToFP(const Instruction *I) {
Andrea Di Biagio98c36702015-04-20 11:56:59 +00002373 // The target-independent selection algorithm in FastISel already knows how
2374 // to select a SINT_TO_FP if the target is SSE but not AVX.
2375 // Early exit if the subtarget doesn't have AVX.
2376 if (!Subtarget->hasAVX())
2377 return false;
2378
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002379 if (!I->getOperand(0)->getType()->isIntegerTy(32))
2380 return false;
2381
2382 // Select integer to float/double conversion.
2383 unsigned OpReg = getRegForValue(I->getOperand(0));
2384 if (OpReg == 0)
2385 return false;
2386
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002387 const TargetRegisterClass *RC = nullptr;
2388 unsigned Opcode;
2389
Andrea Di Biagiodf93ccf2015-03-04 14:23:25 +00002390 if (I->getType()->isDoubleTy()) {
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002391 // sitofp int -> double
Andrea Di Biagiodf93ccf2015-03-04 14:23:25 +00002392 Opcode = X86::VCVTSI2SDrr;
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002393 RC = &X86::FR64RegClass;
Andrea Di Biagiodf93ccf2015-03-04 14:23:25 +00002394 } else if (I->getType()->isFloatTy()) {
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002395 // sitofp int -> float
Andrea Di Biagiodf93ccf2015-03-04 14:23:25 +00002396 Opcode = X86::VCVTSI2SSrr;
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002397 RC = &X86::FR32RegClass;
2398 } else
2399 return false;
2400
Andrea Di Biagiodf93ccf2015-03-04 14:23:25 +00002401 unsigned ImplicitDefReg = createResultReg(RC);
2402 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2403 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2404 unsigned ResultReg =
2405 fastEmitInst_rr(Opcode, RC, ImplicitDefReg, true, OpReg, false);
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00002406 updateValueMap(I, ResultReg);
2407 return true;
2408}
2409
Andrea Di Biagio62622d22015-02-10 12:04:41 +00002410// Helper method used by X86SelectFPExt and X86SelectFPTrunc.
2411bool X86FastISel::X86SelectFPExtOrFPTrunc(const Instruction *I,
2412 unsigned TargetOpc,
2413 const TargetRegisterClass *RC) {
2414 assert((I->getOpcode() == Instruction::FPExt ||
2415 I->getOpcode() == Instruction::FPTrunc) &&
2416 "Instruction must be an FPExt or FPTrunc!");
2417
2418 unsigned OpReg = getRegForValue(I->getOperand(0));
2419 if (OpReg == 0)
2420 return false;
2421
2422 unsigned ResultReg = createResultReg(RC);
2423 MachineInstrBuilder MIB;
2424 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpc),
2425 ResultReg);
2426 if (Subtarget->hasAVX())
2427 MIB.addReg(OpReg);
2428 MIB.addReg(OpReg);
2429 updateValueMap(I, ResultReg);
2430 return true;
2431}
2432
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002433bool X86FastISel::X86SelectFPExt(const Instruction *I) {
Andrea Di Biagio62622d22015-02-10 12:04:41 +00002434 if (X86ScalarSSEf64 && I->getType()->isDoubleTy() &&
2435 I->getOperand(0)->getType()->isFloatTy()) {
2436 // fpext from float to double.
2437 unsigned Opc = Subtarget->hasAVX() ? X86::VCVTSS2SDrr : X86::CVTSS2SDrr;
2438 return X86SelectFPExtOrFPTrunc(I, Opc, &X86::FR64RegClass);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002439 }
2440
2441 return false;
2442}
2443
2444bool X86FastISel::X86SelectFPTrunc(const Instruction *I) {
Andrea Di Biagio62622d22015-02-10 12:04:41 +00002445 if (X86ScalarSSEf64 && I->getType()->isFloatTy() &&
2446 I->getOperand(0)->getType()->isDoubleTy()) {
2447 // fptrunc from double to float.
2448 unsigned Opc = Subtarget->hasAVX() ? X86::VCVTSD2SSrr : X86::CVTSD2SSrr;
2449 return X86SelectFPExtOrFPTrunc(I, Opc, &X86::FR32RegClass);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002450 }
2451
2452 return false;
2453}
2454
2455bool X86FastISel::X86SelectTrunc(const Instruction *I) {
Mehdi Amini44ede332015-07-09 02:09:04 +00002456 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType());
2457 EVT DstVT = TLI.getValueType(DL, I->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002458
2459 // This code only handles truncation to byte.
2460 if (DstVT != MVT::i8 && DstVT != MVT::i1)
2461 return false;
2462 if (!TLI.isTypeLegal(SrcVT))
2463 return false;
2464
2465 unsigned InputReg = getRegForValue(I->getOperand(0));
2466 if (!InputReg)
2467 // Unhandled operand. Halt "fast" selection and bail.
2468 return false;
2469
2470 if (SrcVT == MVT::i8) {
2471 // Truncate from i8 to i1; no code needed.
2472 updateValueMap(I, InputReg);
2473 return true;
2474 }
2475
Pete Cooper7f7c9f12015-05-08 18:29:42 +00002476 bool KillInputReg = false;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002477 if (!Subtarget->is64Bit()) {
2478 // If we're on x86-32; we can't extract an i8 from a general register.
2479 // First issue a copy to GR16_ABCD or GR32_ABCD.
2480 const TargetRegisterClass *CopyRC =
2481 (SrcVT == MVT::i16) ? &X86::GR16_ABCDRegClass : &X86::GR32_ABCDRegClass;
2482 unsigned CopyReg = createResultReg(CopyRC);
2483 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2484 TII.get(TargetOpcode::COPY), CopyReg).addReg(InputReg);
2485 InputReg = CopyReg;
Pete Cooper7f7c9f12015-05-08 18:29:42 +00002486 KillInputReg = true;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002487 }
2488
2489 // Issue an extract_subreg.
2490 unsigned ResultReg = fastEmitInst_extractsubreg(MVT::i8,
Pete Cooper7f7c9f12015-05-08 18:29:42 +00002491 InputReg, KillInputReg,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002492 X86::sub_8bit);
2493 if (!ResultReg)
2494 return false;
2495
2496 updateValueMap(I, ResultReg);
2497 return true;
2498}
2499
2500bool X86FastISel::IsMemcpySmall(uint64_t Len) {
2501 return Len <= (Subtarget->is64Bit() ? 32 : 16);
2502}
2503
2504bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
2505 X86AddressMode SrcAM, uint64_t Len) {
2506
2507 // Make sure we don't bloat code by inlining very large memcpy's.
2508 if (!IsMemcpySmall(Len))
2509 return false;
2510
2511 bool i64Legal = Subtarget->is64Bit();
2512
2513 // We don't care about alignment here since we just emit integer accesses.
2514 while (Len) {
2515 MVT VT;
2516 if (Len >= 8 && i64Legal)
2517 VT = MVT::i64;
2518 else if (Len >= 4)
2519 VT = MVT::i32;
2520 else if (Len >= 2)
2521 VT = MVT::i16;
2522 else
2523 VT = MVT::i8;
2524
2525 unsigned Reg;
2526 bool RV = X86FastEmitLoad(VT, SrcAM, nullptr, Reg);
2527 RV &= X86FastEmitStore(VT, Reg, /*Kill=*/true, DestAM);
2528 assert(RV && "Failed to emit load or store??");
2529
2530 unsigned Size = VT.getSizeInBits()/8;
2531 Len -= Size;
2532 DestAM.Disp += Size;
2533 SrcAM.Disp += Size;
2534 }
2535
2536 return true;
2537}
2538
2539bool X86FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
2540 // FIXME: Handle more intrinsics.
2541 switch (II->getIntrinsicID()) {
2542 default: return false;
Andrea Di Biagio70351782015-02-20 19:37:14 +00002543 case Intrinsic::convert_from_fp16:
2544 case Intrinsic::convert_to_fp16: {
Eric Christopher824f42f2015-05-12 01:26:05 +00002545 if (Subtarget->useSoftFloat() || !Subtarget->hasF16C())
Andrea Di Biagio70351782015-02-20 19:37:14 +00002546 return false;
2547
2548 const Value *Op = II->getArgOperand(0);
2549 unsigned InputReg = getRegForValue(Op);
2550 if (InputReg == 0)
2551 return false;
2552
2553 // F16C only allows converting from float to half and from half to float.
2554 bool IsFloatToHalf = II->getIntrinsicID() == Intrinsic::convert_to_fp16;
2555 if (IsFloatToHalf) {
2556 if (!Op->getType()->isFloatTy())
2557 return false;
2558 } else {
2559 if (!II->getType()->isFloatTy())
2560 return false;
2561 }
2562
2563 unsigned ResultReg = 0;
2564 const TargetRegisterClass *RC = TLI.getRegClassFor(MVT::v8i16);
2565 if (IsFloatToHalf) {
2566 // 'InputReg' is implicitly promoted from register class FR32 to
2567 // register class VR128 by method 'constrainOperandRegClass' which is
2568 // directly called by 'fastEmitInst_ri'.
2569 // Instruction VCVTPS2PHrr takes an extra immediate operand which is
Ahmed Bougacha68a8efa2016-02-02 01:44:03 +00002570 // used to provide rounding control: use MXCSR.RC, encoded as 0b100.
2571 // It's consistent with the other FP instructions, which are usually
2572 // controlled by MXCSR.
2573 InputReg = fastEmitInst_ri(X86::VCVTPS2PHrr, RC, InputReg, false, 4);
Andrea Di Biagio70351782015-02-20 19:37:14 +00002574
2575 // Move the lower 32-bits of ResultReg to another register of class GR32.
2576 ResultReg = createResultReg(&X86::GR32RegClass);
2577 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2578 TII.get(X86::VMOVPDI2DIrr), ResultReg)
2579 .addReg(InputReg, RegState::Kill);
2580
2581 // The result value is in the lower 16-bits of ResultReg.
2582 unsigned RegIdx = X86::sub_16bit;
2583 ResultReg = fastEmitInst_extractsubreg(MVT::i16, ResultReg, true, RegIdx);
2584 } else {
2585 assert(Op->getType()->isIntegerTy(16) && "Expected a 16-bit integer!");
2586 // Explicitly sign-extend the input to 32-bit.
2587 InputReg = fastEmit_r(MVT::i16, MVT::i32, ISD::SIGN_EXTEND, InputReg,
2588 /*Kill=*/false);
2589
2590 // The following SCALAR_TO_VECTOR will be expanded into a VMOVDI2PDIrr.
2591 InputReg = fastEmit_r(MVT::i32, MVT::v4i32, ISD::SCALAR_TO_VECTOR,
2592 InputReg, /*Kill=*/true);
2593
2594 InputReg = fastEmitInst_r(X86::VCVTPH2PSrr, RC, InputReg, /*Kill=*/true);
2595
2596 // The result value is in the lower 32-bits of ResultReg.
2597 // Emit an explicit copy from register class VR128 to register class FR32.
2598 ResultReg = createResultReg(&X86::FR32RegClass);
2599 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2600 TII.get(TargetOpcode::COPY), ResultReg)
2601 .addReg(InputReg, RegState::Kill);
2602 }
2603
2604 updateValueMap(II, ResultReg);
2605 return true;
2606 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002607 case Intrinsic::frameaddress: {
David Majnemerca194852015-02-10 22:00:34 +00002608 MachineFunction *MF = FuncInfo.MF;
2609 if (MF->getTarget().getMCAsmInfo()->usesWindowsCFI())
2610 return false;
2611
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002612 Type *RetTy = II->getCalledFunction()->getReturnType();
2613
2614 MVT VT;
2615 if (!isTypeLegal(RetTy, VT))
2616 return false;
2617
2618 unsigned Opc;
2619 const TargetRegisterClass *RC = nullptr;
2620
2621 switch (VT.SimpleTy) {
2622 default: llvm_unreachable("Invalid result type for frameaddress.");
2623 case MVT::i32: Opc = X86::MOV32rm; RC = &X86::GR32RegClass; break;
2624 case MVT::i64: Opc = X86::MOV64rm; RC = &X86::GR64RegClass; break;
2625 }
2626
2627 // This needs to be set before we call getPtrSizedFrameRegister, otherwise
2628 // we get the wrong frame register.
Matthias Braun941a7052016-07-28 18:40:00 +00002629 MachineFrameInfo &MFI = MF->getFrameInfo();
2630 MFI.setFrameAddressIsTaken(true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002631
Eric Christophera1c535b2015-02-02 23:03:45 +00002632 const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
David Majnemerca194852015-02-10 22:00:34 +00002633 unsigned FrameReg = RegInfo->getPtrSizedFrameRegister(*MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002634 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
2635 (FrameReg == X86::EBP && VT == MVT::i32)) &&
2636 "Invalid Frame Register!");
2637
2638 // Always make a copy of the frame register to to a vreg first, so that we
2639 // never directly reference the frame register (the TwoAddressInstruction-
2640 // Pass doesn't like that).
2641 unsigned SrcReg = createResultReg(RC);
2642 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2643 TII.get(TargetOpcode::COPY), SrcReg).addReg(FrameReg);
2644
2645 // Now recursively load from the frame address.
2646 // movq (%rbp), %rax
2647 // movq (%rax), %rax
2648 // movq (%rax), %rax
2649 // ...
2650 unsigned DestReg;
2651 unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue();
2652 while (Depth--) {
2653 DestReg = createResultReg(RC);
2654 addDirectMem(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2655 TII.get(Opc), DestReg), SrcReg);
2656 SrcReg = DestReg;
2657 }
2658
2659 updateValueMap(II, SrcReg);
2660 return true;
2661 }
2662 case Intrinsic::memcpy: {
2663 const MemCpyInst *MCI = cast<MemCpyInst>(II);
2664 // Don't handle volatile or variable length memcpys.
2665 if (MCI->isVolatile())
2666 return false;
2667
2668 if (isa<ConstantInt>(MCI->getLength())) {
2669 // Small memcpy's are common enough that we want to do them
2670 // without a call if possible.
2671 uint64_t Len = cast<ConstantInt>(MCI->getLength())->getZExtValue();
2672 if (IsMemcpySmall(Len)) {
2673 X86AddressMode DestAM, SrcAM;
2674 if (!X86SelectAddress(MCI->getRawDest(), DestAM) ||
2675 !X86SelectAddress(MCI->getRawSource(), SrcAM))
2676 return false;
2677 TryEmitSmallMemcpy(DestAM, SrcAM, Len);
2678 return true;
2679 }
2680 }
2681
2682 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2683 if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth))
2684 return false;
2685
2686 if (MCI->getSourceAddressSpace() > 255 || MCI->getDestAddressSpace() > 255)
2687 return false;
2688
Pete Cooper67cf9a72015-11-19 05:56:52 +00002689 return lowerCallTo(II, "memcpy", II->getNumArgOperands() - 2);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002690 }
2691 case Intrinsic::memset: {
2692 const MemSetInst *MSI = cast<MemSetInst>(II);
2693
2694 if (MSI->isVolatile())
2695 return false;
2696
2697 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2698 if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth))
2699 return false;
2700
2701 if (MSI->getDestAddressSpace() > 255)
2702 return false;
2703
Pete Cooper67cf9a72015-11-19 05:56:52 +00002704 return lowerCallTo(II, "memset", II->getNumArgOperands() - 2);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002705 }
2706 case Intrinsic::stackprotector: {
2707 // Emit code to store the stack guard onto the stack.
Mehdi Amini44ede332015-07-09 02:09:04 +00002708 EVT PtrTy = TLI.getPointerTy(DL);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002709
2710 const Value *Op1 = II->getArgOperand(0); // The guard's value.
2711 const AllocaInst *Slot = cast<AllocaInst>(II->getArgOperand(1));
2712
2713 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]);
2714
2715 // Grab the frame index.
2716 X86AddressMode AM;
2717 if (!X86SelectAddress(Slot, AM)) return false;
2718 if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
2719 return true;
2720 }
2721 case Intrinsic::dbg_declare: {
2722 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
2723 X86AddressMode AM;
2724 assert(DI->getAddress() && "Null address should be checked earlier!");
2725 if (!X86SelectAddress(DI->getAddress(), AM))
2726 return false;
2727 const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
2728 // FIXME may need to add RegState::Debug to any registers produced,
2729 // although ESP/EBP should be the only ones at the moment.
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +00002730 assert(DI->getVariable()->isValidLocationForIntrinsic(DbgLoc) &&
2731 "Expected inlined-at fields to agree");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002732 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II), AM)
2733 .addImm(0)
2734 .addMetadata(DI->getVariable())
2735 .addMetadata(DI->getExpression());
2736 return true;
2737 }
2738 case Intrinsic::trap: {
2739 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TRAP));
2740 return true;
2741 }
2742 case Intrinsic::sqrt: {
2743 if (!Subtarget->hasSSE1())
2744 return false;
2745
2746 Type *RetTy = II->getCalledFunction()->getReturnType();
2747
2748 MVT VT;
2749 if (!isTypeLegal(RetTy, VT))
2750 return false;
2751
2752 // Unfortunately we can't use fastEmit_r, because the AVX version of FSQRT
2753 // is not generated by FastISel yet.
2754 // FIXME: Update this code once tablegen can handle it.
Craig Toppercf65c622016-03-02 04:42:31 +00002755 static const uint16_t SqrtOpc[2][2] = {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002756 {X86::SQRTSSr, X86::VSQRTSSr},
2757 {X86::SQRTSDr, X86::VSQRTSDr}
2758 };
2759 bool HasAVX = Subtarget->hasAVX();
2760 unsigned Opc;
2761 const TargetRegisterClass *RC;
2762 switch (VT.SimpleTy) {
2763 default: return false;
2764 case MVT::f32: Opc = SqrtOpc[0][HasAVX]; RC = &X86::FR32RegClass; break;
2765 case MVT::f64: Opc = SqrtOpc[1][HasAVX]; RC = &X86::FR64RegClass; break;
2766 }
2767
2768 const Value *SrcVal = II->getArgOperand(0);
2769 unsigned SrcReg = getRegForValue(SrcVal);
2770
2771 if (SrcReg == 0)
2772 return false;
2773
2774 unsigned ImplicitDefReg = 0;
2775 if (HasAVX) {
2776 ImplicitDefReg = createResultReg(RC);
2777 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2778 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2779 }
2780
2781 unsigned ResultReg = createResultReg(RC);
2782 MachineInstrBuilder MIB;
2783 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
2784 ResultReg);
2785
2786 if (ImplicitDefReg)
2787 MIB.addReg(ImplicitDefReg);
2788
2789 MIB.addReg(SrcReg);
2790
2791 updateValueMap(II, ResultReg);
2792 return true;
2793 }
2794 case Intrinsic::sadd_with_overflow:
2795 case Intrinsic::uadd_with_overflow:
2796 case Intrinsic::ssub_with_overflow:
2797 case Intrinsic::usub_with_overflow:
2798 case Intrinsic::smul_with_overflow:
2799 case Intrinsic::umul_with_overflow: {
2800 // This implements the basic lowering of the xalu with overflow intrinsics
2801 // into add/sub/mul followed by either seto or setb.
2802 const Function *Callee = II->getCalledFunction();
2803 auto *Ty = cast<StructType>(Callee->getReturnType());
2804 Type *RetTy = Ty->getTypeAtIndex(0U);
Zvi Rackover6f76f462016-11-15 13:50:35 +00002805 assert(Ty->getTypeAtIndex(1)->isIntegerTy() &&
2806 Ty->getTypeAtIndex(1)->getScalarSizeInBits() == 1 &&
2807 "Overflow value expected to be an i1");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002808
2809 MVT VT;
2810 if (!isTypeLegal(RetTy, VT))
2811 return false;
2812
2813 if (VT < MVT::i8 || VT > MVT::i64)
2814 return false;
2815
2816 const Value *LHS = II->getArgOperand(0);
2817 const Value *RHS = II->getArgOperand(1);
2818
2819 // Canonicalize immediate to the RHS.
2820 if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
2821 isCommutativeIntrinsic(II))
2822 std::swap(LHS, RHS);
2823
2824 bool UseIncDec = false;
2825 if (isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isOne())
2826 UseIncDec = true;
2827
2828 unsigned BaseOpc, CondOpc;
2829 switch (II->getIntrinsicID()) {
2830 default: llvm_unreachable("Unexpected intrinsic!");
2831 case Intrinsic::sadd_with_overflow:
2832 BaseOpc = UseIncDec ? unsigned(X86ISD::INC) : unsigned(ISD::ADD);
2833 CondOpc = X86::SETOr;
2834 break;
2835 case Intrinsic::uadd_with_overflow:
2836 BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break;
2837 case Intrinsic::ssub_with_overflow:
2838 BaseOpc = UseIncDec ? unsigned(X86ISD::DEC) : unsigned(ISD::SUB);
2839 CondOpc = X86::SETOr;
2840 break;
2841 case Intrinsic::usub_with_overflow:
2842 BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
2843 case Intrinsic::smul_with_overflow:
2844 BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
2845 case Intrinsic::umul_with_overflow:
2846 BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
2847 }
2848
2849 unsigned LHSReg = getRegForValue(LHS);
2850 if (LHSReg == 0)
2851 return false;
2852 bool LHSIsKill = hasTrivialKill(LHS);
2853
2854 unsigned ResultReg = 0;
2855 // Check if we have an immediate version.
2856 if (const auto *CI = dyn_cast<ConstantInt>(RHS)) {
Craig Topper66111882016-06-02 04:19:42 +00002857 static const uint16_t Opc[2][4] = {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002858 { X86::INC8r, X86::INC16r, X86::INC32r, X86::INC64r },
2859 { X86::DEC8r, X86::DEC16r, X86::DEC32r, X86::DEC64r }
2860 };
2861
2862 if (BaseOpc == X86ISD::INC || BaseOpc == X86ISD::DEC) {
2863 ResultReg = createResultReg(TLI.getRegClassFor(VT));
2864 bool IsDec = BaseOpc == X86ISD::DEC;
2865 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2866 TII.get(Opc[IsDec][VT.SimpleTy-MVT::i8]), ResultReg)
2867 .addReg(LHSReg, getKillRegState(LHSIsKill));
2868 } else
2869 ResultReg = fastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill,
2870 CI->getZExtValue());
2871 }
2872
2873 unsigned RHSReg;
2874 bool RHSIsKill;
2875 if (!ResultReg) {
2876 RHSReg = getRegForValue(RHS);
2877 if (RHSReg == 0)
2878 return false;
2879 RHSIsKill = hasTrivialKill(RHS);
2880 ResultReg = fastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg,
2881 RHSIsKill);
2882 }
2883
2884 // FastISel doesn't have a pattern for all X86::MUL*r and X86::IMUL*r. Emit
2885 // it manually.
2886 if (BaseOpc == X86ISD::UMUL && !ResultReg) {
Craig Toppercf65c622016-03-02 04:42:31 +00002887 static const uint16_t MULOpc[] =
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002888 { X86::MUL8r, X86::MUL16r, X86::MUL32r, X86::MUL64r };
Craig Toppercf65c622016-03-02 04:42:31 +00002889 static const MCPhysReg Reg[] = { X86::AL, X86::AX, X86::EAX, X86::RAX };
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002890 // First copy the first operand into RAX, which is an implicit input to
2891 // the X86::MUL*r instruction.
2892 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2893 TII.get(TargetOpcode::COPY), Reg[VT.SimpleTy-MVT::i8])
2894 .addReg(LHSReg, getKillRegState(LHSIsKill));
2895 ResultReg = fastEmitInst_r(MULOpc[VT.SimpleTy-MVT::i8],
2896 TLI.getRegClassFor(VT), RHSReg, RHSIsKill);
2897 } else if (BaseOpc == X86ISD::SMUL && !ResultReg) {
Craig Toppercf65c622016-03-02 04:42:31 +00002898 static const uint16_t MULOpc[] =
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002899 { X86::IMUL8r, X86::IMUL16rr, X86::IMUL32rr, X86::IMUL64rr };
2900 if (VT == MVT::i8) {
2901 // Copy the first operand into AL, which is an implicit input to the
2902 // X86::IMUL8r instruction.
2903 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2904 TII.get(TargetOpcode::COPY), X86::AL)
2905 .addReg(LHSReg, getKillRegState(LHSIsKill));
2906 ResultReg = fastEmitInst_r(MULOpc[0], TLI.getRegClassFor(VT), RHSReg,
2907 RHSIsKill);
2908 } else
2909 ResultReg = fastEmitInst_rr(MULOpc[VT.SimpleTy-MVT::i8],
2910 TLI.getRegClassFor(VT), LHSReg, LHSIsKill,
2911 RHSReg, RHSIsKill);
2912 }
2913
2914 if (!ResultReg)
2915 return false;
2916
Zvi Rackoverf0b9b57b2016-11-15 13:29:23 +00002917 // Assign to a GPR since the overflow return value is lowered to a SETcc.
2918 unsigned ResultReg2 = createResultReg(&X86::GR8RegClass);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002919 assert((ResultReg+1) == ResultReg2 && "Nonconsecutive result registers.");
2920 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CondOpc),
2921 ResultReg2);
2922
2923 updateValueMap(II, ResultReg, 2);
2924 return true;
2925 }
2926 case Intrinsic::x86_sse_cvttss2si:
2927 case Intrinsic::x86_sse_cvttss2si64:
2928 case Intrinsic::x86_sse2_cvttsd2si:
2929 case Intrinsic::x86_sse2_cvttsd2si64: {
2930 bool IsInputDouble;
2931 switch (II->getIntrinsicID()) {
2932 default: llvm_unreachable("Unexpected intrinsic.");
2933 case Intrinsic::x86_sse_cvttss2si:
2934 case Intrinsic::x86_sse_cvttss2si64:
2935 if (!Subtarget->hasSSE1())
2936 return false;
2937 IsInputDouble = false;
2938 break;
2939 case Intrinsic::x86_sse2_cvttsd2si:
2940 case Intrinsic::x86_sse2_cvttsd2si64:
2941 if (!Subtarget->hasSSE2())
2942 return false;
2943 IsInputDouble = true;
2944 break;
2945 }
2946
2947 Type *RetTy = II->getCalledFunction()->getReturnType();
2948 MVT VT;
2949 if (!isTypeLegal(RetTy, VT))
2950 return false;
2951
Craig Topper66111882016-06-02 04:19:42 +00002952 static const uint16_t CvtOpc[2][2][2] = {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002953 { { X86::CVTTSS2SIrr, X86::VCVTTSS2SIrr },
2954 { X86::CVTTSS2SI64rr, X86::VCVTTSS2SI64rr } },
2955 { { X86::CVTTSD2SIrr, X86::VCVTTSD2SIrr },
2956 { X86::CVTTSD2SI64rr, X86::VCVTTSD2SI64rr } }
2957 };
2958 bool HasAVX = Subtarget->hasAVX();
2959 unsigned Opc;
2960 switch (VT.SimpleTy) {
2961 default: llvm_unreachable("Unexpected result type.");
2962 case MVT::i32: Opc = CvtOpc[IsInputDouble][0][HasAVX]; break;
2963 case MVT::i64: Opc = CvtOpc[IsInputDouble][1][HasAVX]; break;
2964 }
2965
2966 // Check if we can fold insertelement instructions into the convert.
2967 const Value *Op = II->getArgOperand(0);
2968 while (auto *IE = dyn_cast<InsertElementInst>(Op)) {
2969 const Value *Index = IE->getOperand(2);
2970 if (!isa<ConstantInt>(Index))
2971 break;
2972 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
2973
2974 if (Idx == 0) {
2975 Op = IE->getOperand(1);
2976 break;
2977 }
2978 Op = IE->getOperand(0);
2979 }
2980
2981 unsigned Reg = getRegForValue(Op);
2982 if (Reg == 0)
2983 return false;
2984
2985 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
2986 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
2987 .addReg(Reg);
2988
2989 updateValueMap(II, ResultReg);
2990 return true;
2991 }
2992 }
2993}
2994
2995bool X86FastISel::fastLowerArguments() {
2996 if (!FuncInfo.CanLowerReturn)
2997 return false;
2998
2999 const Function *F = FuncInfo.Fn;
3000 if (F->isVarArg())
3001 return false;
3002
3003 CallingConv::ID CC = F->getCallingConv();
3004 if (CC != CallingConv::C)
3005 return false;
3006
3007 if (Subtarget->isCallingConvWin64(CC))
3008 return false;
3009
3010 if (!Subtarget->is64Bit())
3011 return false;
3012
3013 // Only handle simple cases. i.e. Up to 6 i32/i64 scalar arguments.
3014 unsigned GPRCnt = 0;
3015 unsigned FPRCnt = 0;
3016 unsigned Idx = 0;
3017 for (auto const &Arg : F->args()) {
3018 // The first argument is at index 1.
3019 ++Idx;
3020 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) ||
3021 F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
3022 F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
Manman Renf46262e2016-03-29 17:37:21 +00003023 F->getAttributes().hasAttribute(Idx, Attribute::SwiftSelf) ||
Manman Ren57518142016-04-11 21:08:06 +00003024 F->getAttributes().hasAttribute(Idx, Attribute::SwiftError) ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003025 F->getAttributes().hasAttribute(Idx, Attribute::Nest))
3026 return false;
3027
3028 Type *ArgTy = Arg.getType();
3029 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
3030 return false;
3031
Mehdi Amini44ede332015-07-09 02:09:04 +00003032 EVT ArgVT = TLI.getValueType(DL, ArgTy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003033 if (!ArgVT.isSimple()) return false;
3034 switch (ArgVT.getSimpleVT().SimpleTy) {
3035 default: return false;
3036 case MVT::i32:
3037 case MVT::i64:
3038 ++GPRCnt;
3039 break;
3040 case MVT::f32:
3041 case MVT::f64:
3042 if (!Subtarget->hasSSE1())
3043 return false;
3044 ++FPRCnt;
3045 break;
3046 }
3047
3048 if (GPRCnt > 6)
3049 return false;
3050
3051 if (FPRCnt > 8)
3052 return false;
3053 }
3054
3055 static const MCPhysReg GPR32ArgRegs[] = {
3056 X86::EDI, X86::ESI, X86::EDX, X86::ECX, X86::R8D, X86::R9D
3057 };
3058 static const MCPhysReg GPR64ArgRegs[] = {
3059 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8 , X86::R9
3060 };
3061 static const MCPhysReg XMMArgRegs[] = {
3062 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
3063 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
3064 };
3065
3066 unsigned GPRIdx = 0;
3067 unsigned FPRIdx = 0;
3068 for (auto const &Arg : F->args()) {
Mehdi Amini44ede332015-07-09 02:09:04 +00003069 MVT VT = TLI.getSimpleValueType(DL, Arg.getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003070 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
3071 unsigned SrcReg;
3072 switch (VT.SimpleTy) {
3073 default: llvm_unreachable("Unexpected value type.");
3074 case MVT::i32: SrcReg = GPR32ArgRegs[GPRIdx++]; break;
3075 case MVT::i64: SrcReg = GPR64ArgRegs[GPRIdx++]; break;
Justin Bognercd1d5aa2016-08-17 20:30:52 +00003076 case MVT::f32: LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003077 case MVT::f64: SrcReg = XMMArgRegs[FPRIdx++]; break;
3078 }
3079 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
3080 // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
3081 // Without this, EmitLiveInCopies may eliminate the livein if its only
3082 // use is a bitcast (which isn't turned into an instruction).
3083 unsigned ResultReg = createResultReg(RC);
3084 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3085 TII.get(TargetOpcode::COPY), ResultReg)
3086 .addReg(DstReg, getKillRegState(true));
3087 updateValueMap(&Arg, ResultReg);
3088 }
3089 return true;
3090}
3091
Nico Weberaf7e8462016-07-14 01:52:51 +00003092static unsigned computeBytesPoppedByCalleeForSRet(const X86Subtarget *Subtarget,
3093 CallingConv::ID CC,
3094 ImmutableCallSite *CS) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003095 if (Subtarget->is64Bit())
3096 return 0;
3097 if (Subtarget->getTargetTriple().isOSMSVCRT())
3098 return 0;
3099 if (CC == CallingConv::Fast || CC == CallingConv::GHC ||
3100 CC == CallingConv::HiPE)
3101 return 0;
Sanjoy Dasb11b4402015-11-04 20:33:45 +00003102
3103 if (CS)
3104 if (CS->arg_empty() || !CS->paramHasAttr(1, Attribute::StructRet) ||
Michael Kuperstein2ea81ba2015-12-28 14:39:21 +00003105 CS->paramHasAttr(1, Attribute::InReg) || Subtarget->isTargetMCU())
Sanjoy Dasb11b4402015-11-04 20:33:45 +00003106 return 0;
3107
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003108 return 4;
3109}
3110
3111bool X86FastISel::fastLowerCall(CallLoweringInfo &CLI) {
3112 auto &OutVals = CLI.OutVals;
3113 auto &OutFlags = CLI.OutFlags;
3114 auto &OutRegs = CLI.OutRegs;
3115 auto &Ins = CLI.Ins;
3116 auto &InRegs = CLI.InRegs;
3117 CallingConv::ID CC = CLI.CallConv;
3118 bool &IsTailCall = CLI.IsTailCall;
3119 bool IsVarArg = CLI.IsVarArg;
3120 const Value *Callee = CLI.Callee;
Rafael Espindolace4c2bc2015-06-23 12:21:54 +00003121 MCSymbol *Symbol = CLI.Symbol;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003122
3123 bool Is64Bit = Subtarget->is64Bit();
3124 bool IsWin64 = Subtarget->isCallingConvWin64(CC);
3125
3126 // Handle only C, fastcc, and webkit_js calling conventions for now.
3127 switch (CC) {
3128 default: return false;
3129 case CallingConv::C:
3130 case CallingConv::Fast:
3131 case CallingConv::WebKit_JS:
Manman Renf8bdd882016-04-05 22:41:47 +00003132 case CallingConv::Swift:
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003133 case CallingConv::X86_FastCall:
Nico Weberecdf45b2016-07-14 13:54:26 +00003134 case CallingConv::X86_StdCall:
Nico Weberaf7e8462016-07-14 01:52:51 +00003135 case CallingConv::X86_ThisCall:
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003136 case CallingConv::X86_64_Win64:
3137 case CallingConv::X86_64_SysV:
3138 break;
3139 }
3140
3141 // Allow SelectionDAG isel to handle tail calls.
3142 if (IsTailCall)
3143 return false;
3144
3145 // fastcc with -tailcallopt is intended to provide a guaranteed
3146 // tail call optimization. Fastisel doesn't know how to do that.
3147 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
3148 return false;
3149
3150 // Don't know how to handle Win64 varargs yet. Nothing special needed for
3151 // x86-32. Special handling for x86-64 is implemented.
3152 if (IsVarArg && IsWin64)
3153 return false;
3154
3155 // Don't know about inalloca yet.
3156 if (CLI.CS && CLI.CS->hasInAllocaArgument())
3157 return false;
3158
Manman Ren57518142016-04-11 21:08:06 +00003159 for (auto Flag : CLI.OutFlags)
3160 if (Flag.isSwiftError())
3161 return false;
3162
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003163 SmallVector<MVT, 16> OutVTs;
3164 SmallVector<unsigned, 16> ArgRegs;
3165
3166 // If this is a constant i1/i8/i16 argument, promote to i32 to avoid an extra
3167 // instruction. This is safe because it is common to all FastISel supported
3168 // calling conventions on x86.
3169 for (int i = 0, e = OutVals.size(); i != e; ++i) {
3170 Value *&Val = OutVals[i];
3171 ISD::ArgFlagsTy Flags = OutFlags[i];
3172 if (auto *CI = dyn_cast<ConstantInt>(Val)) {
3173 if (CI->getBitWidth() < 32) {
3174 if (Flags.isSExt())
3175 Val = ConstantExpr::getSExt(CI, Type::getInt32Ty(CI->getContext()));
3176 else
3177 Val = ConstantExpr::getZExt(CI, Type::getInt32Ty(CI->getContext()));
3178 }
3179 }
3180
3181 // Passing bools around ends up doing a trunc to i1 and passing it.
3182 // Codegen this as an argument + "and 1".
3183 MVT VT;
3184 auto *TI = dyn_cast<TruncInst>(Val);
3185 unsigned ResultReg;
3186 if (TI && TI->getType()->isIntegerTy(1) && CLI.CS &&
3187 (TI->getParent() == CLI.CS->getInstruction()->getParent()) &&
3188 TI->hasOneUse()) {
3189 Value *PrevVal = TI->getOperand(0);
3190 ResultReg = getRegForValue(PrevVal);
3191
3192 if (!ResultReg)
3193 return false;
3194
3195 if (!isTypeLegal(PrevVal->getType(), VT))
3196 return false;
3197
3198 ResultReg =
3199 fastEmit_ri(VT, VT, ISD::AND, ResultReg, hasTrivialKill(PrevVal), 1);
3200 } else {
3201 if (!isTypeLegal(Val->getType(), VT))
3202 return false;
3203 ResultReg = getRegForValue(Val);
3204 }
3205
3206 if (!ResultReg)
3207 return false;
3208
3209 ArgRegs.push_back(ResultReg);
3210 OutVTs.push_back(VT);
3211 }
3212
3213 // Analyze operands of the call, assigning locations to each operand.
3214 SmallVector<CCValAssign, 16> ArgLocs;
3215 CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, ArgLocs, CLI.RetTy->getContext());
3216
3217 // Allocate shadow area for Win64
3218 if (IsWin64)
3219 CCInfo.AllocateStack(32, 8);
3220
3221 CCInfo.AnalyzeCallOperands(OutVTs, OutFlags, CC_X86);
3222
3223 // Get a count of how many bytes are to be pushed on the stack.
Jeroen Ketema740f9d72015-09-29 10:12:57 +00003224 unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003225
3226 // Issue CALLSEQ_START
3227 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
3228 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
Michael Kuperstein13fbd452015-02-01 16:56:04 +00003229 .addImm(NumBytes).addImm(0);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003230
3231 // Walk the register/memloc assignments, inserting copies/loads.
Eric Christophera1c535b2015-02-02 23:03:45 +00003232 const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003233 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3234 CCValAssign const &VA = ArgLocs[i];
3235 const Value *ArgVal = OutVals[VA.getValNo()];
3236 MVT ArgVT = OutVTs[VA.getValNo()];
3237
3238 if (ArgVT == MVT::x86mmx)
3239 return false;
3240
3241 unsigned ArgReg = ArgRegs[VA.getValNo()];
3242
3243 // Promote the value if needed.
3244 switch (VA.getLocInfo()) {
3245 case CCValAssign::Full: break;
3246 case CCValAssign::SExt: {
3247 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
3248 "Unexpected extend");
David Majnemer2c5aeab2016-05-04 00:22:23 +00003249
3250 if (ArgVT.SimpleTy == MVT::i1)
3251 return false;
3252
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003253 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
3254 ArgVT, ArgReg);
3255 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
3256 ArgVT = VA.getLocVT();
3257 break;
3258 }
3259 case CCValAssign::ZExt: {
3260 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
3261 "Unexpected extend");
David Majnemer2c5aeab2016-05-04 00:22:23 +00003262
3263 // Handle zero-extension from i1 to i8, which is common.
3264 if (ArgVT.SimpleTy == MVT::i1) {
3265 // Set the high bits to zero.
3266 ArgReg = fastEmitZExtFromI1(MVT::i8, ArgReg, /*TODO: Kill=*/false);
3267 ArgVT = MVT::i8;
3268
3269 if (ArgReg == 0)
3270 return false;
3271 }
3272
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003273 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
3274 ArgVT, ArgReg);
3275 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
3276 ArgVT = VA.getLocVT();
3277 break;
3278 }
3279 case CCValAssign::AExt: {
3280 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
3281 "Unexpected extend");
3282 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), ArgReg,
3283 ArgVT, ArgReg);
3284 if (!Emitted)
3285 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
3286 ArgVT, ArgReg);
3287 if (!Emitted)
3288 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
3289 ArgVT, ArgReg);
3290
3291 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
3292 ArgVT = VA.getLocVT();
3293 break;
3294 }
3295 case CCValAssign::BCvt: {
3296 ArgReg = fastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, ArgReg,
3297 /*TODO: Kill=*/false);
3298 assert(ArgReg && "Failed to emit a bitcast!");
3299 ArgVT = VA.getLocVT();
3300 break;
3301 }
3302 case CCValAssign::VExt:
3303 // VExt has not been implemented, so this should be impossible to reach
3304 // for now. However, fallback to Selection DAG isel once implemented.
3305 return false;
3306 case CCValAssign::AExtUpper:
3307 case CCValAssign::SExtUpper:
3308 case CCValAssign::ZExtUpper:
3309 case CCValAssign::FPExt:
3310 llvm_unreachable("Unexpected loc info!");
3311 case CCValAssign::Indirect:
3312 // FIXME: Indirect doesn't need extending, but fast-isel doesn't fully
3313 // support this.
3314 return false;
3315 }
3316
3317 if (VA.isRegLoc()) {
3318 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3319 TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg);
3320 OutRegs.push_back(VA.getLocReg());
3321 } else {
3322 assert(VA.isMemLoc());
3323
3324 // Don't emit stores for undef values.
3325 if (isa<UndefValue>(ArgVal))
3326 continue;
3327
3328 unsigned LocMemOffset = VA.getLocMemOffset();
3329 X86AddressMode AM;
3330 AM.Base.Reg = RegInfo->getStackRegister();
3331 AM.Disp = LocMemOffset;
3332 ISD::ArgFlagsTy Flags = OutFlags[VA.getValNo()];
3333 unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType());
3334 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +00003335 MachinePointerInfo::getStack(*FuncInfo.MF, LocMemOffset),
3336 MachineMemOperand::MOStore, ArgVT.getStoreSize(), Alignment);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003337 if (Flags.isByVal()) {
3338 X86AddressMode SrcAM;
3339 SrcAM.Base.Reg = ArgReg;
3340 if (!TryEmitSmallMemcpy(AM, SrcAM, Flags.getByValSize()))
3341 return false;
3342 } else if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) {
3343 // If this is a really simple value, emit this with the Value* version
3344 // of X86FastEmitStore. If it isn't simple, we don't want to do this,
3345 // as it can cause us to reevaluate the argument.
3346 if (!X86FastEmitStore(ArgVT, ArgVal, AM, MMO))
3347 return false;
3348 } else {
3349 bool ValIsKill = hasTrivialKill(ArgVal);
3350 if (!X86FastEmitStore(ArgVT, ArgReg, ValIsKill, AM, MMO))
3351 return false;
3352 }
3353 }
3354 }
3355
3356 // ELF / PIC requires GOT in the EBX register before function calls via PLT
3357 // GOT pointer.
3358 if (Subtarget->isPICStyleGOT()) {
3359 unsigned Base = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
3360 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3361 TII.get(TargetOpcode::COPY), X86::EBX).addReg(Base);
3362 }
3363
3364 if (Is64Bit && IsVarArg && !IsWin64) {
3365 // From AMD64 ABI document:
3366 // For calls that may call functions that use varargs or stdargs
3367 // (prototype-less calls or calls to functions containing ellipsis (...) in
3368 // the declaration) %al is used as hidden argument to specify the number
3369 // of SSE registers used. The contents of %al do not need to match exactly
3370 // the number of registers, but must be an ubound on the number of SSE
3371 // registers used and is in the range 0 - 8 inclusive.
3372
3373 // Count the number of XMM registers allocated.
3374 static const MCPhysReg XMMArgRegs[] = {
3375 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
3376 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
3377 };
Tim Northover3b6b7ca2015-02-21 02:11:17 +00003378 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003379 assert((Subtarget->hasSSE1() || !NumXMMRegs)
3380 && "SSE registers cannot be used when SSE is disabled");
3381 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
3382 X86::AL).addImm(NumXMMRegs);
3383 }
3384
3385 // Materialize callee address in a register. FIXME: GV address can be
3386 // handled with a CALLpcrel32 instead.
3387 X86AddressMode CalleeAM;
3388 if (!X86SelectCallAddress(Callee, CalleeAM))
3389 return false;
3390
3391 unsigned CalleeOp = 0;
3392 const GlobalValue *GV = nullptr;
3393 if (CalleeAM.GV != nullptr) {
3394 GV = CalleeAM.GV;
3395 } else if (CalleeAM.Base.Reg != 0) {
3396 CalleeOp = CalleeAM.Base.Reg;
3397 } else
3398 return false;
3399
3400 // Issue the call.
3401 MachineInstrBuilder MIB;
3402 if (CalleeOp) {
3403 // Register-indirect call.
3404 unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r;
3405 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc))
3406 .addReg(CalleeOp);
3407 } else {
3408 // Direct call.
3409 assert(GV && "Not a direct call");
3410 unsigned CallOpc = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32;
3411
3412 // See if we need any target-specific flags on the GV operand.
Rafael Espindola46107b92016-05-19 18:49:29 +00003413 unsigned char OpFlags = Subtarget->classifyGlobalFunctionReference(GV);
Asaf Badouh89406d12016-04-20 08:32:57 +00003414 // Ignore NonLazyBind attribute in FastISel
3415 if (OpFlags == X86II::MO_GOTPCREL)
3416 OpFlags = 0;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003417
3418 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc));
Rafael Espindolace4c2bc2015-06-23 12:21:54 +00003419 if (Symbol)
3420 MIB.addSym(Symbol, OpFlags);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003421 else
3422 MIB.addGlobalAddress(GV, 0, OpFlags);
3423 }
3424
3425 // Add a register mask operand representing the call-preserved registers.
3426 // Proper defs for return values will be added by setPhysRegsDeadExcept().
Eric Christopher9deb75d2015-03-11 22:42:13 +00003427 MIB.addRegMask(TRI.getCallPreservedMask(*FuncInfo.MF, CC));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003428
3429 // Add an implicit use GOT pointer in EBX.
3430 if (Subtarget->isPICStyleGOT())
3431 MIB.addReg(X86::EBX, RegState::Implicit);
3432
3433 if (Is64Bit && IsVarArg && !IsWin64)
3434 MIB.addReg(X86::AL, RegState::Implicit);
3435
3436 // Add implicit physical register uses to the call.
3437 for (auto Reg : OutRegs)
3438 MIB.addReg(Reg, RegState::Implicit);
3439
3440 // Issue CALLSEQ_END
3441 unsigned NumBytesForCalleeToPop =
Nico Weberaf7e8462016-07-14 01:52:51 +00003442 X86::isCalleePop(CC, Subtarget->is64Bit(), IsVarArg,
3443 TM.Options.GuaranteedTailCallOpt)
3444 ? NumBytes // Callee pops everything.
3445 : computeBytesPoppedByCalleeForSRet(Subtarget, CC, CLI.CS);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003446 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
3447 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
3448 .addImm(NumBytes).addImm(NumBytesForCalleeToPop);
3449
3450 // Now handle call return values.
3451 SmallVector<CCValAssign, 16> RVLocs;
3452 CCState CCRetInfo(CC, IsVarArg, *FuncInfo.MF, RVLocs,
3453 CLI.RetTy->getContext());
3454 CCRetInfo.AnalyzeCallResult(Ins, RetCC_X86);
3455
3456 // Copy all of the result registers out of their specified physreg.
3457 unsigned ResultReg = FuncInfo.CreateRegs(CLI.RetTy);
3458 for (unsigned i = 0; i != RVLocs.size(); ++i) {
3459 CCValAssign &VA = RVLocs[i];
3460 EVT CopyVT = VA.getValVT();
3461 unsigned CopyReg = ResultReg + i;
3462
3463 // If this is x86-64, and we disabled SSE, we can't return FP values
3464 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
3465 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
3466 report_fatal_error("SSE register return with SSE disabled");
3467 }
3468
3469 // If we prefer to use the value in xmm registers, copy it out as f80 and
3470 // use a truncate to move it from fp stack reg to xmm reg.
3471 if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
3472 isScalarFPTypeInSSEReg(VA.getValVT())) {
3473 CopyVT = MVT::f80;
3474 CopyReg = createResultReg(&X86::RFP80RegClass);
3475 }
3476
3477 // Copy out the result.
3478 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3479 TII.get(TargetOpcode::COPY), CopyReg).addReg(VA.getLocReg());
3480 InRegs.push_back(VA.getLocReg());
3481
3482 // Round the f80 to the right size, which also moves it to the appropriate
3483 // xmm register. This is accomplished by storing the f80 value in memory
3484 // and then loading it back.
3485 if (CopyVT != VA.getValVT()) {
3486 EVT ResVT = VA.getValVT();
3487 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
3488 unsigned MemSize = ResVT.getSizeInBits()/8;
3489 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
3490 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3491 TII.get(Opc)), FI)
3492 .addReg(CopyReg);
3493 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
3494 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3495 TII.get(Opc), ResultReg + i), FI);
3496 }
3497 }
3498
3499 CLI.ResultReg = ResultReg;
3500 CLI.NumResultRegs = RVLocs.size();
3501 CLI.Call = MIB;
3502
3503 return true;
3504}
3505
3506bool
3507X86FastISel::fastSelectInstruction(const Instruction *I) {
3508 switch (I->getOpcode()) {
3509 default: break;
3510 case Instruction::Load:
3511 return X86SelectLoad(I);
3512 case Instruction::Store:
3513 return X86SelectStore(I);
3514 case Instruction::Ret:
3515 return X86SelectRet(I);
3516 case Instruction::ICmp:
3517 case Instruction::FCmp:
3518 return X86SelectCmp(I);
3519 case Instruction::ZExt:
3520 return X86SelectZExt(I);
3521 case Instruction::Br:
3522 return X86SelectBranch(I);
3523 case Instruction::LShr:
3524 case Instruction::AShr:
3525 case Instruction::Shl:
3526 return X86SelectShift(I);
3527 case Instruction::SDiv:
3528 case Instruction::UDiv:
3529 case Instruction::SRem:
3530 case Instruction::URem:
3531 return X86SelectDivRem(I);
3532 case Instruction::Select:
3533 return X86SelectSelect(I);
3534 case Instruction::Trunc:
3535 return X86SelectTrunc(I);
3536 case Instruction::FPExt:
3537 return X86SelectFPExt(I);
3538 case Instruction::FPTrunc:
3539 return X86SelectFPTrunc(I);
Andrea Di Biagioe7b58ee2015-02-17 23:40:58 +00003540 case Instruction::SIToFP:
3541 return X86SelectSIToFP(I);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003542 case Instruction::IntToPtr: // Deliberate fall-through.
3543 case Instruction::PtrToInt: {
Mehdi Amini44ede332015-07-09 02:09:04 +00003544 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType());
3545 EVT DstVT = TLI.getValueType(DL, I->getType());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003546 if (DstVT.bitsGT(SrcVT))
3547 return X86SelectZExt(I);
3548 if (DstVT.bitsLT(SrcVT))
3549 return X86SelectTrunc(I);
3550 unsigned Reg = getRegForValue(I->getOperand(0));
3551 if (Reg == 0) return false;
3552 updateValueMap(I, Reg);
3553 return true;
3554 }
Andrea Di Biagio77f62652015-10-02 16:08:05 +00003555 case Instruction::BitCast: {
3556 // Select SSE2/AVX bitcasts between 128/256 bit vector types.
3557 if (!Subtarget->hasSSE2())
3558 return false;
3559
3560 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType());
3561 EVT DstVT = TLI.getValueType(DL, I->getType());
3562
3563 if (!SrcVT.isSimple() || !DstVT.isSimple())
3564 return false;
3565
Craig Topperdb8467a2016-12-05 05:50:51 +00003566 MVT SVT = SrcVT.getSimpleVT();
3567 MVT DVT = DstVT.getSimpleVT();
3568
3569 if (!SVT.is128BitVector() &&
3570 !(Subtarget->hasAVX() && SVT.is256BitVector()) &&
3571 !(Subtarget->hasAVX512() && SVT.is512BitVector() &&
3572 (Subtarget->hasBWI() || (SVT.getScalarSizeInBits() >= 32 &&
3573 DVT.getScalarSizeInBits() >= 32))))
Andrea Di Biagio77f62652015-10-02 16:08:05 +00003574 return false;
3575
3576 unsigned Reg = getRegForValue(I->getOperand(0));
3577 if (Reg == 0)
3578 return false;
3579
3580 // No instruction is needed for conversion. Reuse the register used by
3581 // the fist operand.
3582 updateValueMap(I, Reg);
3583 return true;
3584 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003585 }
3586
3587 return false;
3588}
3589
3590unsigned X86FastISel::X86MaterializeInt(const ConstantInt *CI, MVT VT) {
3591 if (VT > MVT::i64)
3592 return 0;
3593
3594 uint64_t Imm = CI->getZExtValue();
3595 if (Imm == 0) {
3596 unsigned SrcReg = fastEmitInst_(X86::MOV32r0, &X86::GR32RegClass);
3597 switch (VT.SimpleTy) {
3598 default: llvm_unreachable("Unexpected value type");
3599 case MVT::i1:
3600 case MVT::i8:
3601 return fastEmitInst_extractsubreg(MVT::i8, SrcReg, /*Kill=*/true,
3602 X86::sub_8bit);
3603 case MVT::i16:
3604 return fastEmitInst_extractsubreg(MVT::i16, SrcReg, /*Kill=*/true,
3605 X86::sub_16bit);
3606 case MVT::i32:
3607 return SrcReg;
3608 case MVT::i64: {
3609 unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3610 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3611 TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3612 .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3613 return ResultReg;
3614 }
3615 }
3616 }
3617
3618 unsigned Opc = 0;
3619 switch (VT.SimpleTy) {
3620 default: llvm_unreachable("Unexpected value type");
Justin Bognercd1d5aa2016-08-17 20:30:52 +00003621 case MVT::i1: VT = MVT::i8; LLVM_FALLTHROUGH;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003622 case MVT::i8: Opc = X86::MOV8ri; break;
3623 case MVT::i16: Opc = X86::MOV16ri; break;
3624 case MVT::i32: Opc = X86::MOV32ri; break;
3625 case MVT::i64: {
3626 if (isUInt<32>(Imm))
3627 Opc = X86::MOV32ri;
3628 else if (isInt<32>(Imm))
3629 Opc = X86::MOV64ri32;
3630 else
3631 Opc = X86::MOV64ri;
3632 break;
3633 }
3634 }
3635 if (VT == MVT::i64 && Opc == X86::MOV32ri) {
3636 unsigned SrcReg = fastEmitInst_i(Opc, &X86::GR32RegClass, Imm);
3637 unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3638 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3639 TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3640 .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3641 return ResultReg;
3642 }
3643 return fastEmitInst_i(Opc, TLI.getRegClassFor(VT), Imm);
3644}
3645
3646unsigned X86FastISel::X86MaterializeFP(const ConstantFP *CFP, MVT VT) {
3647 if (CFP->isNullValue())
3648 return fastMaterializeFloatZero(CFP);
3649
3650 // Can't handle alternate code models yet.
3651 CodeModel::Model CM = TM.getCodeModel();
3652 if (CM != CodeModel::Small && CM != CodeModel::Large)
3653 return 0;
3654
3655 // Get opcode and regclass of the output for the given load instruction.
3656 unsigned Opc = 0;
3657 const TargetRegisterClass *RC = nullptr;
3658 switch (VT.SimpleTy) {
3659 default: return 0;
3660 case MVT::f32:
3661 if (X86ScalarSSEf32) {
3662 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
3663 RC = &X86::FR32RegClass;
3664 } else {
3665 Opc = X86::LD_Fp32m;
3666 RC = &X86::RFP32RegClass;
3667 }
3668 break;
3669 case MVT::f64:
3670 if (X86ScalarSSEf64) {
3671 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
3672 RC = &X86::FR64RegClass;
3673 } else {
3674 Opc = X86::LD_Fp64m;
3675 RC = &X86::RFP64RegClass;
3676 }
3677 break;
3678 case MVT::f80:
3679 // No f80 support yet.
3680 return 0;
3681 }
3682
3683 // MachineConstantPool wants an explicit alignment.
3684 unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
3685 if (Align == 0) {
3686 // Alignment of vector types. FIXME!
3687 Align = DL.getTypeAllocSize(CFP->getType());
3688 }
3689
3690 // x86-32 PIC requires a PIC base register for constant pools.
3691 unsigned PICBase = 0;
Rafael Espindolac7e98132016-05-20 12:20:10 +00003692 unsigned char OpFlag = Subtarget->classifyLocalReference(nullptr);
3693 if (OpFlag == X86II::MO_PIC_BASE_OFFSET)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003694 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
Rafael Espindolac7e98132016-05-20 12:20:10 +00003695 else if (OpFlag == X86II::MO_GOTOFF)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003696 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
Rafael Espindolac7e98132016-05-20 12:20:10 +00003697 else if (Subtarget->is64Bit() && TM.getCodeModel() == CodeModel::Small)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003698 PICBase = X86::RIP;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003699
3700 // Create the load from the constant pool.
3701 unsigned CPI = MCP.getConstantPoolIndex(CFP, Align);
3702 unsigned ResultReg = createResultReg(RC);
3703
3704 if (CM == CodeModel::Large) {
3705 unsigned AddrReg = createResultReg(&X86::GR64RegClass);
3706 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3707 AddrReg)
3708 .addConstantPoolIndex(CPI, 0, OpFlag);
3709 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3710 TII.get(Opc), ResultReg);
3711 addDirectMem(MIB, AddrReg);
3712 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
Alex Lorenze40c8a22015-08-11 23:09:45 +00003713 MachinePointerInfo::getConstantPool(*FuncInfo.MF),
3714 MachineMemOperand::MOLoad, DL.getPointerSize(), Align);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003715 MIB->addMemOperand(*FuncInfo.MF, MMO);
3716 return ResultReg;
3717 }
3718
3719 addConstantPoolReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3720 TII.get(Opc), ResultReg),
3721 CPI, PICBase, OpFlag);
3722 return ResultReg;
3723}
3724
3725unsigned X86FastISel::X86MaterializeGV(const GlobalValue *GV, MVT VT) {
3726 // Can't handle alternate code models yet.
3727 if (TM.getCodeModel() != CodeModel::Small)
3728 return 0;
3729
3730 // Materialize addresses with LEA/MOV instructions.
3731 X86AddressMode AM;
3732 if (X86SelectAddress(GV, AM)) {
3733 // If the expression is just a basereg, then we're done, otherwise we need
3734 // to emit an LEA.
3735 if (AM.BaseType == X86AddressMode::RegBase &&
3736 AM.IndexReg == 0 && AM.Disp == 0 && AM.GV == nullptr)
3737 return AM.Base.Reg;
3738
3739 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
3740 if (TM.getRelocationModel() == Reloc::Static &&
Mehdi Amini44ede332015-07-09 02:09:04 +00003741 TLI.getPointerTy(DL) == MVT::i64) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003742 // The displacement code could be more than 32 bits away so we need to use
3743 // an instruction with a 64 bit immediate
3744 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3745 ResultReg)
3746 .addGlobalAddress(GV);
3747 } else {
Mehdi Amini44ede332015-07-09 02:09:04 +00003748 unsigned Opc =
3749 TLI.getPointerTy(DL) == MVT::i32
3750 ? (Subtarget->isTarget64BitILP32() ? X86::LEA64_32r : X86::LEA32r)
3751 : X86::LEA64r;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003752 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3753 TII.get(Opc), ResultReg), AM);
3754 }
3755 return ResultReg;
3756 }
3757 return 0;
3758}
3759
3760unsigned X86FastISel::fastMaterializeConstant(const Constant *C) {
Mehdi Amini44ede332015-07-09 02:09:04 +00003761 EVT CEVT = TLI.getValueType(DL, C->getType(), true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003762
3763 // Only handle simple types.
3764 if (!CEVT.isSimple())
3765 return 0;
3766 MVT VT = CEVT.getSimpleVT();
3767
3768 if (const auto *CI = dyn_cast<ConstantInt>(C))
3769 return X86MaterializeInt(CI, VT);
3770 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
3771 return X86MaterializeFP(CFP, VT);
3772 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
3773 return X86MaterializeGV(GV, VT);
3774
3775 return 0;
3776}
3777
3778unsigned X86FastISel::fastMaterializeAlloca(const AllocaInst *C) {
3779 // Fail on dynamic allocas. At this point, getRegForValue has already
3780 // checked its CSE maps, so if we're here trying to handle a dynamic
3781 // alloca, we're not going to succeed. X86SelectAddress has a
3782 // check for dynamic allocas, because it's called directly from
3783 // various places, but targetMaterializeAlloca also needs a check
3784 // in order to avoid recursion between getRegForValue,
3785 // X86SelectAddrss, and targetMaterializeAlloca.
3786 if (!FuncInfo.StaticAllocaMap.count(C))
3787 return 0;
3788 assert(C->isStaticAlloca() && "dynamic alloca in the static alloca map?");
3789
3790 X86AddressMode AM;
3791 if (!X86SelectAddress(C, AM))
3792 return 0;
Mehdi Amini44ede332015-07-09 02:09:04 +00003793 unsigned Opc =
3794 TLI.getPointerTy(DL) == MVT::i32
3795 ? (Subtarget->isTarget64BitILP32() ? X86::LEA64_32r : X86::LEA32r)
3796 : X86::LEA64r;
3797 const TargetRegisterClass *RC = TLI.getRegClassFor(TLI.getPointerTy(DL));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003798 unsigned ResultReg = createResultReg(RC);
3799 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3800 TII.get(Opc), ResultReg), AM);
3801 return ResultReg;
3802}
3803
3804unsigned X86FastISel::fastMaterializeFloatZero(const ConstantFP *CF) {
3805 MVT VT;
3806 if (!isTypeLegal(CF->getType(), VT))
3807 return 0;
3808
3809 // Get opcode and regclass for the given zero.
3810 unsigned Opc = 0;
3811 const TargetRegisterClass *RC = nullptr;
3812 switch (VT.SimpleTy) {
3813 default: return 0;
3814 case MVT::f32:
3815 if (X86ScalarSSEf32) {
3816 Opc = X86::FsFLD0SS;
3817 RC = &X86::FR32RegClass;
3818 } else {
3819 Opc = X86::LD_Fp032;
3820 RC = &X86::RFP32RegClass;
3821 }
3822 break;
3823 case MVT::f64:
3824 if (X86ScalarSSEf64) {
3825 Opc = X86::FsFLD0SD;
3826 RC = &X86::FR64RegClass;
3827 } else {
3828 Opc = X86::LD_Fp064;
3829 RC = &X86::RFP64RegClass;
3830 }
3831 break;
3832 case MVT::f80:
3833 // No f80 support yet.
3834 return 0;
3835 }
3836
3837 unsigned ResultReg = createResultReg(RC);
3838 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
3839 return ResultReg;
3840}
3841
3842
3843bool X86FastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
3844 const LoadInst *LI) {
3845 const Value *Ptr = LI->getPointerOperand();
3846 X86AddressMode AM;
3847 if (!X86SelectAddress(Ptr, AM))
3848 return false;
3849
3850 const X86InstrInfo &XII = (const X86InstrInfo &)TII;
3851
3852 unsigned Size = DL.getTypeAllocSize(LI->getType());
3853 unsigned Alignment = LI->getAlignment();
3854
3855 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3856 Alignment = DL.getABITypeAlignment(LI->getType());
3857
3858 SmallVector<MachineOperand, 8> AddrOps;
3859 AM.getFullAddress(AddrOps);
3860
Keno Fischere70b31f2015-06-08 20:09:58 +00003861 MachineInstr *Result = XII.foldMemoryOperandImpl(
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00003862 *FuncInfo.MF, *MI, OpNo, AddrOps, FuncInfo.InsertPt, Size, Alignment,
Keno Fischere70b31f2015-06-08 20:09:58 +00003863 /*AllowCommute=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003864 if (!Result)
3865 return false;
3866
Pete Cooperd31583d2015-05-06 21:37:19 +00003867 // The index register could be in the wrong register class. Unfortunately,
3868 // foldMemoryOperandImpl could have commuted the instruction so its not enough
3869 // to just look at OpNo + the offset to the index reg. We actually need to
3870 // scan the instruction to find the index reg and see if its the correct reg
3871 // class.
Matthias Braune41e1462015-05-29 02:56:46 +00003872 unsigned OperandNo = 0;
3873 for (MachineInstr::mop_iterator I = Result->operands_begin(),
3874 E = Result->operands_end(); I != E; ++I, ++OperandNo) {
3875 MachineOperand &MO = *I;
3876 if (!MO.isReg() || MO.isDef() || MO.getReg() != AM.IndexReg)
Pete Cooperd31583d2015-05-06 21:37:19 +00003877 continue;
3878 // Found the index reg, now try to rewrite it.
Pete Cooperd31583d2015-05-06 21:37:19 +00003879 unsigned IndexReg = constrainOperandRegClass(Result->getDesc(),
Matthias Braune41e1462015-05-29 02:56:46 +00003880 MO.getReg(), OperandNo);
3881 if (IndexReg == MO.getReg())
Pete Cooperd31583d2015-05-06 21:37:19 +00003882 continue;
Matthias Braune41e1462015-05-29 02:56:46 +00003883 MO.setReg(IndexReg);
Pete Cooperd31583d2015-05-06 21:37:19 +00003884 }
3885
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003886 Result->addMemOperand(*FuncInfo.MF, createMachineMemOperandFor(LI));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003887 MI->eraseFromParent();
3888 return true;
3889}
3890
Craig Topper7ef6ea32016-12-05 04:51:31 +00003891unsigned X86FastISel::fastEmitInst_rrrr(unsigned MachineInstOpcode,
3892 const TargetRegisterClass *RC,
3893 unsigned Op0, bool Op0IsKill,
3894 unsigned Op1, bool Op1IsKill,
3895 unsigned Op2, bool Op2IsKill,
3896 unsigned Op3, bool Op3IsKill) {
3897 const MCInstrDesc &II = TII.get(MachineInstOpcode);
3898
3899 unsigned ResultReg = createResultReg(RC);
3900 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
3901 Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1);
3902 Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 2);
3903 Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 3);
3904
3905 if (II.getNumDefs() >= 1)
3906 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
3907 .addReg(Op0, getKillRegState(Op0IsKill))
3908 .addReg(Op1, getKillRegState(Op1IsKill))
3909 .addReg(Op2, getKillRegState(Op2IsKill))
3910 .addReg(Op3, getKillRegState(Op3IsKill));
3911 else {
3912 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
3913 .addReg(Op0, getKillRegState(Op0IsKill))
3914 .addReg(Op1, getKillRegState(Op1IsKill))
3915 .addReg(Op2, getKillRegState(Op2IsKill))
3916 .addReg(Op3, getKillRegState(Op3IsKill));
3917 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3918 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
3919 }
3920 return ResultReg;
3921}
3922
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00003923
3924namespace llvm {
3925 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo,
3926 const TargetLibraryInfo *libInfo) {
3927 return new X86FastISel(funcInfo, libInfo);
3928 }
3929}