blob: 0938eda9dadd9bee32e5ef3d688942d74bdec37d [file] [log] [blame]
Dan Gohmandaef7f42008-08-19 21:45:35 +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"
Juergen Ributzka9969d3e2013-11-08 23:28:16 +000017#include "X86CallingConv.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "X86InstrBuilder.h"
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +000019#include "X86InstrInfo.h"
Craig Topperc6d4efa2014-03-19 06:53:25 +000020#include "X86MachineFunctionInfo.h"
Evan Cheng8f23ec92008-09-03 01:04:47 +000021#include "X86RegisterInfo.h"
22#include "X86Subtarget.h"
Dan Gohman49e19e92008-08-22 00:20:26 +000023#include "X86TargetMachine.h"
Juergen Ributzka454d3742014-06-13 00:45:11 +000024#include "llvm/Analysis/BranchProbabilityInfo.h"
Dan Gohmand7b5ce32010-07-10 09:00:22 +000025#include "llvm/CodeGen/Analysis.h"
Evan Cheng24422d42008-09-03 00:03:49 +000026#include "llvm/CodeGen/FastISel.h"
Dan Gohman87fb4e82010-07-07 16:29:44 +000027#include "llvm/CodeGen/FunctionLoweringInfo.h"
Owen Anderson50288e32008-09-05 00:06:23 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Cheng6c8f55c2008-09-07 09:09:33 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Owen Anderson0673a8a2008-08-29 17:45:56 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000031#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/CallingConv.h"
33#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000034#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#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"
Torok Edwin56d06592009-07-11 20:10:48 +000040#include "llvm/Support/ErrorHandling.h"
Evan Chengd10089a2010-01-27 00:00:57 +000041#include "llvm/Target/TargetOptions.h"
Evan Cheng24422d42008-09-03 00:03:49 +000042using namespace llvm;
43
Chris Lattnerd5ac9d82009-03-08 18:44:31 +000044namespace {
Wesley Peck527da1b2010-11-23 03:31:01 +000045
Craig Topper26696312014-03-18 07:27:13 +000046class X86FastISel final : public FastISel {
Evan Cheng24422d42008-09-03 00:03:49 +000047 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
48 /// make the right decision when generating code for different targets.
49 const X86Subtarget *Subtarget;
Evan Cheng6c8f55c2008-09-07 09:09:33 +000050
Wesley Peck527da1b2010-11-23 03:31:01 +000051 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
Evan Cheng6c8f55c2008-09-07 09:09:33 +000052 /// floating point ops.
53 /// When SSE is available, use it for f32 operations.
54 /// When SSE2 is available, use it for f64 operations.
55 bool X86ScalarSSEf64;
56 bool X86ScalarSSEf32;
57
Evan Chenga41ee292008-09-03 06:44:39 +000058public:
Bob Wilson3e6fa462012-08-03 04:06:28 +000059 explicit X86FastISel(FunctionLoweringInfo &funcInfo,
60 const TargetLibraryInfo *libInfo)
61 : FastISel(funcInfo, libInfo) {
Evan Cheng8f23ec92008-09-03 01:04:47 +000062 Subtarget = &TM.getSubtarget<X86Subtarget>();
Craig Topperb0c0f722012-01-10 06:54:16 +000063 X86ScalarSSEf64 = Subtarget->hasSSE2();
64 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng8f23ec92008-09-03 01:04:47 +000065 }
Evan Cheng24422d42008-09-03 00:03:49 +000066
Craig Topper2d9361e2014-03-09 07:44:38 +000067 bool TargetSelectInstruction(const Instruction *I) override;
Evan Cheng24422d42008-09-03 00:03:49 +000068
Eli Bendersky90dd3e72013-04-19 22:29:18 +000069 /// \brief The specified machine instr operand is a vreg, and that
Chris Lattnereeba0c72010-09-05 02:18:34 +000070 /// vreg is being provided by the specified load instruction. If possible,
71 /// try to fold the load as an operand to the instruction, returning true if
72 /// possible.
Craig Topper2d9361e2014-03-09 07:44:38 +000073 bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
74 const LoadInst *LI) override;
Wesley Peck527da1b2010-11-23 03:31:01 +000075
Craig Topper2d9361e2014-03-09 07:44:38 +000076 bool FastLowerArguments() override;
Juergen Ributzka23d43312014-07-15 06:35:47 +000077 bool FastLowerCall(CallLoweringInfo &CLI) override;
Juergen Ributzka3566c082014-07-15 06:35:50 +000078 bool FastLowerIntrinsicCall(const IntrinsicInst *II) override;
Chad Rosiera92ef4b2013-02-25 21:59:35 +000079
Dan Gohmandaef7f42008-08-19 21:45:35 +000080#include "X86GenFastISel.inc"
Evan Chenga41ee292008-09-03 06:44:39 +000081
82private:
Dan Gohmanbcaf6812010-04-15 01:51:59 +000083 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT);
Wesley Peck527da1b2010-11-23 03:31:01 +000084
Juergen Ributzka349777d2014-06-12 23:27:57 +000085 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, MachineMemOperand *MMO,
86 unsigned &ResultReg);
Evan Chengf5bc7e52008-09-05 21:00:03 +000087
Craig Topper4f55b0e2013-07-17 05:57:45 +000088 bool X86FastEmitStore(EVT VT, const Value *Val, const X86AddressMode &AM,
Juergen Ributzka349777d2014-06-12 23:27:57 +000089 MachineMemOperand *MMO = nullptr, bool Aligned = false);
90 bool X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
91 const X86AddressMode &AM,
92 MachineMemOperand *MMO = nullptr, bool Aligned = false);
Evan Cheng6500d172008-09-08 06:35:17 +000093
Owen Anderson53aa7a92009-08-10 22:56:29 +000094 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
Evan Cheng6500d172008-09-08 06:35:17 +000095 unsigned &ResultReg);
Wesley Peck527da1b2010-11-23 03:31:01 +000096
Dan Gohmanbcaf6812010-04-15 01:51:59 +000097 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
98 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
Dan Gohman39d82f92008-09-10 20:11:02 +000099
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000100 bool X86SelectLoad(const Instruction *I);
Wesley Peck527da1b2010-11-23 03:31:01 +0000101
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000102 bool X86SelectStore(const Instruction *I);
Dan Gohman09fdbcf2008-09-04 23:26:51 +0000103
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000104 bool X86SelectRet(const Instruction *I);
105
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000106 bool X86SelectCmp(const Instruction *I);
Dan Gohmana5753b32008-09-05 01:06:14 +0000107
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000108 bool X86SelectZExt(const Instruction *I);
Dan Gohmana5753b32008-09-05 01:06:14 +0000109
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000110 bool X86SelectBranch(const Instruction *I);
Dan Gohman7d7a26df2008-09-05 18:30:08 +0000111
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000112 bool X86SelectShift(const Instruction *I);
Dan Gohman7d7a26df2008-09-05 18:30:08 +0000113
Eli Bendersky24a36eb2013-04-17 20:10:13 +0000114 bool X86SelectDivRem(const Instruction *I);
115
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000116 bool X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I);
Juergen Ributzka6ef06f92014-06-23 21:55:36 +0000117
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000118 bool X86FastEmitSSESelect(MVT RetVT, const Instruction *I);
Juergen Ributzka21d56082014-06-23 21:55:40 +0000119
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000120 bool X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I);
Juergen Ributzkaaed5c962014-06-23 21:55:44 +0000121
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000122 bool X86SelectSelect(const Instruction *I);
Evan Chengf5bc7e52008-09-05 21:00:03 +0000123
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000124 bool X86SelectTrunc(const Instruction *I);
Wesley Peck527da1b2010-11-23 03:31:01 +0000125
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000126 bool X86SelectFPExt(const Instruction *I);
127 bool X86SelectFPTrunc(const Instruction *I);
Dan Gohmanbf646f22008-09-10 21:02:08 +0000128
Dan Gohman3691d502008-09-25 15:24:26 +0000129 const X86InstrInfo *getInstrInfo() const {
Dan Gohman007a6bb2008-09-26 19:15:30 +0000130 return getTargetMachine()->getInstrInfo();
131 }
132 const X86TargetMachine *getTargetMachine() const {
133 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman3691d502008-09-25 15:24:26 +0000134 }
135
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000136 bool handleConstantAddresses(const Value *V, X86AddressMode &AM);
137
Craig Topper2d9361e2014-03-09 07:44:38 +0000138 unsigned TargetMaterializeConstant(const Constant *C) override;
Dan Gohman39d82f92008-09-10 20:11:02 +0000139
Craig Topper2d9361e2014-03-09 07:44:38 +0000140 unsigned TargetMaterializeAlloca(const AllocaInst *C) override;
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000141
Craig Topper2d9361e2014-03-09 07:44:38 +0000142 unsigned TargetMaterializeFloatZero(const ConstantFP *CF) override;
Eli Friedman406c4712011-04-27 22:41:55 +0000143
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000144 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
145 /// computed in an SSE register, not on the X87 floating point stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000146 bool isScalarFPTypeInSSEReg(EVT VT) const {
Owen Anderson9f944592009-08-11 20:47:22 +0000147 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
148 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000149 }
150
Chris Lattner229907c2011-07-18 04:54:35 +0000151 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
Eli Friedmanbcc69142011-04-27 01:45:07 +0000152
Eli Friedman60afcc22011-05-20 22:21:04 +0000153 bool IsMemcpySmall(uint64_t Len);
154
Eli Friedmanbcc69142011-04-27 01:45:07 +0000155 bool TryEmitSmallMemcpy(X86AddressMode DestAM,
156 X86AddressMode SrcAM, uint64_t Len);
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000157
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000158 bool foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
159 const Value *Cond);
Evan Cheng24422d42008-09-03 00:03:49 +0000160};
Wesley Peck527da1b2010-11-23 03:31:01 +0000161
Chris Lattnerd5ac9d82009-03-08 18:44:31 +0000162} // end anonymous namespace.
Dan Gohmand58f3e32008-08-28 23:21:34 +0000163
Juergen Ributzkaaa602092014-06-17 21:55:43 +0000164static CmpInst::Predicate optimizeCmpPredicate(const CmpInst *CI) {
165 // If both operands are the same, then try to optimize or fold the cmp.
166 CmpInst::Predicate Predicate = CI->getPredicate();
167 if (CI->getOperand(0) != CI->getOperand(1))
168 return Predicate;
169
170 switch (Predicate) {
171 default: llvm_unreachable("Invalid predicate!");
172 case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break;
173 case CmpInst::FCMP_OEQ: Predicate = CmpInst::FCMP_ORD; break;
174 case CmpInst::FCMP_OGT: Predicate = CmpInst::FCMP_FALSE; break;
175 case CmpInst::FCMP_OGE: Predicate = CmpInst::FCMP_ORD; break;
176 case CmpInst::FCMP_OLT: Predicate = CmpInst::FCMP_FALSE; break;
177 case CmpInst::FCMP_OLE: Predicate = CmpInst::FCMP_ORD; break;
178 case CmpInst::FCMP_ONE: Predicate = CmpInst::FCMP_FALSE; break;
179 case CmpInst::FCMP_ORD: Predicate = CmpInst::FCMP_ORD; break;
180 case CmpInst::FCMP_UNO: Predicate = CmpInst::FCMP_UNO; break;
181 case CmpInst::FCMP_UEQ: Predicate = CmpInst::FCMP_TRUE; break;
182 case CmpInst::FCMP_UGT: Predicate = CmpInst::FCMP_UNO; break;
183 case CmpInst::FCMP_UGE: Predicate = CmpInst::FCMP_TRUE; break;
184 case CmpInst::FCMP_ULT: Predicate = CmpInst::FCMP_UNO; break;
185 case CmpInst::FCMP_ULE: Predicate = CmpInst::FCMP_TRUE; break;
186 case CmpInst::FCMP_UNE: Predicate = CmpInst::FCMP_UNO; break;
187 case CmpInst::FCMP_TRUE: Predicate = CmpInst::FCMP_TRUE; break;
188
189 case CmpInst::ICMP_EQ: Predicate = CmpInst::FCMP_TRUE; break;
190 case CmpInst::ICMP_NE: Predicate = CmpInst::FCMP_FALSE; break;
191 case CmpInst::ICMP_UGT: Predicate = CmpInst::FCMP_FALSE; break;
192 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break;
193 case CmpInst::ICMP_ULT: Predicate = CmpInst::FCMP_FALSE; break;
194 case CmpInst::ICMP_ULE: Predicate = CmpInst::FCMP_TRUE; break;
195 case CmpInst::ICMP_SGT: Predicate = CmpInst::FCMP_FALSE; break;
196 case CmpInst::ICMP_SGE: Predicate = CmpInst::FCMP_TRUE; break;
197 case CmpInst::ICMP_SLT: Predicate = CmpInst::FCMP_FALSE; break;
198 case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break;
199 }
200
201 return Predicate;
202}
203
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +0000204static std::pair<X86::CondCode, bool>
Craig Topper9f62d802014-06-27 05:18:21 +0000205getX86ConditionCode(CmpInst::Predicate Predicate) {
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +0000206 X86::CondCode CC = X86::COND_INVALID;
207 bool NeedSwap = false;
208 switch (Predicate) {
209 default: break;
210 // Floating-point Predicates
211 case CmpInst::FCMP_UEQ: CC = X86::COND_E; break;
212 case CmpInst::FCMP_OLT: NeedSwap = true; // fall-through
213 case CmpInst::FCMP_OGT: CC = X86::COND_A; break;
214 case CmpInst::FCMP_OLE: NeedSwap = true; // fall-through
215 case CmpInst::FCMP_OGE: CC = X86::COND_AE; break;
216 case CmpInst::FCMP_UGT: NeedSwap = true; // fall-through
217 case CmpInst::FCMP_ULT: CC = X86::COND_B; break;
218 case CmpInst::FCMP_UGE: NeedSwap = true; // fall-through
219 case CmpInst::FCMP_ULE: CC = X86::COND_BE; break;
220 case CmpInst::FCMP_ONE: CC = X86::COND_NE; break;
221 case CmpInst::FCMP_UNO: CC = X86::COND_P; break;
222 case CmpInst::FCMP_ORD: CC = X86::COND_NP; break;
223 case CmpInst::FCMP_OEQ: // fall-through
224 case CmpInst::FCMP_UNE: CC = X86::COND_INVALID; break;
225
226 // Integer Predicates
227 case CmpInst::ICMP_EQ: CC = X86::COND_E; break;
228 case CmpInst::ICMP_NE: CC = X86::COND_NE; break;
229 case CmpInst::ICMP_UGT: CC = X86::COND_A; break;
230 case CmpInst::ICMP_UGE: CC = X86::COND_AE; break;
231 case CmpInst::ICMP_ULT: CC = X86::COND_B; break;
232 case CmpInst::ICMP_ULE: CC = X86::COND_BE; break;
233 case CmpInst::ICMP_SGT: CC = X86::COND_G; break;
234 case CmpInst::ICMP_SGE: CC = X86::COND_GE; break;
235 case CmpInst::ICMP_SLT: CC = X86::COND_L; break;
236 case CmpInst::ICMP_SLE: CC = X86::COND_LE; break;
237 }
238
239 return std::make_pair(CC, NeedSwap);
240}
241
Juergen Ributzka21d56082014-06-23 21:55:40 +0000242static std::pair<unsigned, bool>
Juergen Ributzka345589e2014-06-27 17:16:34 +0000243getX86SSEConditionCode(CmpInst::Predicate Predicate) {
Juergen Ributzka21d56082014-06-23 21:55:40 +0000244 unsigned CC;
245 bool NeedSwap = false;
246
247 // SSE Condition code mapping:
248 // 0 - EQ
249 // 1 - LT
250 // 2 - LE
251 // 3 - UNORD
252 // 4 - NEQ
253 // 5 - NLT
254 // 6 - NLE
255 // 7 - ORD
256 switch (Predicate) {
257 default: llvm_unreachable("Unexpected predicate");
258 case CmpInst::FCMP_OEQ: CC = 0; break;
259 case CmpInst::FCMP_OGT: NeedSwap = true; // fall-through
260 case CmpInst::FCMP_OLT: CC = 1; break;
261 case CmpInst::FCMP_OGE: NeedSwap = true; // fall-through
262 case CmpInst::FCMP_OLE: CC = 2; break;
263 case CmpInst::FCMP_UNO: CC = 3; break;
264 case CmpInst::FCMP_UNE: CC = 4; break;
265 case CmpInst::FCMP_ULE: NeedSwap = true; // fall-through
266 case CmpInst::FCMP_UGE: CC = 5; break;
267 case CmpInst::FCMP_ULT: NeedSwap = true; // fall-through
268 case CmpInst::FCMP_UGT: CC = 6; break;
269 case CmpInst::FCMP_ORD: CC = 7; break;
270 case CmpInst::FCMP_UEQ:
271 case CmpInst::FCMP_ONE: CC = 8; break;
272 }
273
274 return std::make_pair(CC, NeedSwap);
275}
276
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000277/// \brief Check if it is possible to fold the condition from the XALU intrinsic
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000278/// into the user. The condition code will only be updated on success.
279bool X86FastISel::foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
280 const Value *Cond) {
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000281 if (!isa<ExtractValueInst>(Cond))
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000282 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000283
284 const auto *EV = cast<ExtractValueInst>(Cond);
285 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000286 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000287
288 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
289 MVT RetVT;
290 const Function *Callee = II->getCalledFunction();
291 Type *RetTy =
292 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U);
293 if (!isTypeLegal(RetTy, RetVT))
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000294 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000295
296 if (RetVT != MVT::i32 && RetVT != MVT::i64)
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000297 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000298
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000299 X86::CondCode TmpCC;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000300 switch (II->getIntrinsicID()) {
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000301 default: return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000302 case Intrinsic::sadd_with_overflow:
303 case Intrinsic::ssub_with_overflow:
304 case Intrinsic::smul_with_overflow:
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000305 case Intrinsic::umul_with_overflow: TmpCC = X86::COND_O; break;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000306 case Intrinsic::uadd_with_overflow:
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000307 case Intrinsic::usub_with_overflow: TmpCC = X86::COND_B; break;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000308 }
309
310 // Check if both instructions are in the same basic block.
311 if (II->getParent() != I->getParent())
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000312 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000313
314 // Make sure nothing is in the way
315 BasicBlock::const_iterator Start = I;
316 BasicBlock::const_iterator End = II;
317 for (auto Itr = std::prev(Start); Itr != End; --Itr) {
318 // We only expect extractvalue instructions between the intrinsic and the
319 // instruction to be selected.
320 if (!isa<ExtractValueInst>(Itr))
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000321 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000322
323 // Check that the extractvalue operand comes from the intrinsic.
324 const auto *EVI = cast<ExtractValueInst>(Itr);
325 if (EVI->getAggregateOperand() != II)
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000326 return false;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000327 }
328
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +0000329 CC = TmpCC;
330 return true;
Juergen Ributzkac010ddb2014-06-25 22:17:23 +0000331}
332
Chris Lattner229907c2011-07-18 04:54:35 +0000333bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
Duncan Sandsf5dda012010-11-03 11:35:31 +0000334 EVT evt = TLI.getValueType(Ty, /*HandleUnknown=*/true);
335 if (evt == MVT::Other || !evt.isSimple())
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000336 // Unhandled type. Halt "fast" selection and bail.
337 return false;
Duncan Sandsf5dda012010-11-03 11:35:31 +0000338
339 VT = evt.getSimpleVT();
Dan Gohman50331362008-09-30 00:48:39 +0000340 // For now, require SSE/SSE2 for performing floating-point operations,
341 // since x87 requires additional work.
Owen Anderson9f944592009-08-11 20:47:22 +0000342 if (VT == MVT::f64 && !X86ScalarSSEf64)
Craig Topper490c45c2012-08-11 17:53:00 +0000343 return false;
Owen Anderson9f944592009-08-11 20:47:22 +0000344 if (VT == MVT::f32 && !X86ScalarSSEf32)
Craig Topper490c45c2012-08-11 17:53:00 +0000345 return false;
Dan Gohman50331362008-09-30 00:48:39 +0000346 // Similarly, no f80 support yet.
Owen Anderson9f944592009-08-11 20:47:22 +0000347 if (VT == MVT::f80)
Dan Gohman50331362008-09-30 00:48:39 +0000348 return false;
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000349 // We only handle legal types. For example, on x86-32 the instruction
350 // selector contains all of the 64-bit instructions from x86-64,
351 // under the assumption that i64 won't be used if the target doesn't
352 // support it.
Owen Anderson9f944592009-08-11 20:47:22 +0000353 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000354}
355
356#include "X86GenCallingConv.inc"
357
Evan Chengf5bc7e52008-09-05 21:00:03 +0000358/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000359/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Chengf5bc7e52008-09-05 21:00:03 +0000360/// Return true and the result register by reference if it is possible.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000361bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
Juergen Ributzka349777d2014-06-12 23:27:57 +0000362 MachineMemOperand *MMO, unsigned &ResultReg) {
Evan Chengf5bc7e52008-09-05 21:00:03 +0000363 // Get opcode and regclass of the output for the given load instruction.
364 unsigned Opc = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +0000365 const TargetRegisterClass *RC = nullptr;
Owen Anderson9f944592009-08-11 20:47:22 +0000366 switch (VT.getSimpleVT().SimpleTy) {
Evan Chengf5bc7e52008-09-05 21:00:03 +0000367 default: return false;
Dan Gohman7f0ca9a2009-08-27 00:31:47 +0000368 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +0000369 case MVT::i8:
Evan Chengf5bc7e52008-09-05 21:00:03 +0000370 Opc = X86::MOV8rm;
Craig Topperabadc662012-04-20 06:31:50 +0000371 RC = &X86::GR8RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000372 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000373 case MVT::i16:
Evan Chengf5bc7e52008-09-05 21:00:03 +0000374 Opc = X86::MOV16rm;
Craig Topperabadc662012-04-20 06:31:50 +0000375 RC = &X86::GR16RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000376 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000377 case MVT::i32:
Evan Chengf5bc7e52008-09-05 21:00:03 +0000378 Opc = X86::MOV32rm;
Craig Topperabadc662012-04-20 06:31:50 +0000379 RC = &X86::GR32RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000380 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000381 case MVT::i64:
Evan Chengf5bc7e52008-09-05 21:00:03 +0000382 // Must be in x86-64 mode.
383 Opc = X86::MOV64rm;
Craig Topperabadc662012-04-20 06:31:50 +0000384 RC = &X86::GR64RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000385 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000386 case MVT::f32:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +0000387 if (X86ScalarSSEf32) {
388 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
Craig Topperabadc662012-04-20 06:31:50 +0000389 RC = &X86::FR32RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000390 } else {
391 Opc = X86::LD_Fp32m;
Craig Topperabadc662012-04-20 06:31:50 +0000392 RC = &X86::RFP32RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000393 }
394 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000395 case MVT::f64:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +0000396 if (X86ScalarSSEf64) {
397 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
Craig Topperabadc662012-04-20 06:31:50 +0000398 RC = &X86::FR64RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000399 } else {
400 Opc = X86::LD_Fp64m;
Craig Topperabadc662012-04-20 06:31:50 +0000401 RC = &X86::RFP64RegClass;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000402 }
403 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000404 case MVT::f80:
Dan Gohman839105d2008-09-26 01:39:32 +0000405 // No f80 support yet.
406 return false;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000407 }
408
409 ResultReg = createResultReg(RC);
Juergen Ributzka349777d2014-06-12 23:27:57 +0000410 MachineInstrBuilder MIB =
411 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
412 addFullAddress(MIB, AM);
413 if (MMO)
414 MIB->addMemOperand(*FuncInfo.MF, MMO);
Evan Chengf5bc7e52008-09-05 21:00:03 +0000415 return true;
416}
417
Evan Cheng6c8f55c2008-09-07 09:09:33 +0000418/// X86FastEmitStore - Emit a machine instruction to store a value Val of
419/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
420/// and a displacement offset, or a GlobalAddress,
Evan Chengf5bc7e52008-09-05 21:00:03 +0000421/// i.e. V. Return true if it is possible.
Juergen Ributzka349777d2014-06-12 23:27:57 +0000422bool X86FastISel::X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
423 const X86AddressMode &AM,
424 MachineMemOperand *MMO, bool Aligned) {
Dan Gohman8f658ba2008-09-08 16:31:35 +0000425 // Get opcode and regclass of the output for the given store instruction.
Evan Chengf5bc7e52008-09-05 21:00:03 +0000426 unsigned Opc = 0;
Owen Anderson9f944592009-08-11 20:47:22 +0000427 switch (VT.getSimpleVT().SimpleTy) {
428 case MVT::f80: // No f80 support yet.
Evan Chengf5bc7e52008-09-05 21:00:03 +0000429 default: return false;
Dan Gohman7f0ca9a2009-08-27 00:31:47 +0000430 case MVT::i1: {
431 // Mask out all but lowest bit.
Craig Topperabadc662012-04-20 06:31:50 +0000432 unsigned AndResult = createResultReg(&X86::GR8RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000433 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Juergen Ributzka349777d2014-06-12 23:27:57 +0000434 TII.get(X86::AND8ri), AndResult)
435 .addReg(ValReg, getKillRegState(ValIsKill)).addImm(1);
Craig Topper4f55b0e2013-07-17 05:57:45 +0000436 ValReg = AndResult;
Dan Gohman7f0ca9a2009-08-27 00:31:47 +0000437 }
438 // FALLTHROUGH, handling i1 as i8.
Owen Anderson9f944592009-08-11 20:47:22 +0000439 case MVT::i8: Opc = X86::MOV8mr; break;
440 case MVT::i16: Opc = X86::MOV16mr; break;
441 case MVT::i32: Opc = X86::MOV32mr; break;
442 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
443 case MVT::f32:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +0000444 Opc = X86ScalarSSEf32 ?
445 (Subtarget->hasAVX() ? X86::VMOVSSmr : X86::MOVSSmr) : X86::ST_Fp32m;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000446 break;
Owen Anderson9f944592009-08-11 20:47:22 +0000447 case MVT::f64:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +0000448 Opc = X86ScalarSSEf64 ?
449 (Subtarget->hasAVX() ? X86::VMOVSDmr : X86::MOVSDmr) : X86::ST_Fp64m;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000450 break;
Lang Hames7d2f7b52011-10-18 22:11:33 +0000451 case MVT::v4f32:
Craig Topper4f55b0e2013-07-17 05:57:45 +0000452 if (Aligned)
Craig Topper55475d42013-07-17 06:58:23 +0000453 Opc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Craig Topper4f55b0e2013-07-17 05:57:45 +0000454 else
Craig Topper55475d42013-07-17 06:58:23 +0000455 Opc = Subtarget->hasAVX() ? X86::VMOVUPSmr : X86::MOVUPSmr;
Lang Hames7d2f7b52011-10-18 22:11:33 +0000456 break;
457 case MVT::v2f64:
Craig Topper4f55b0e2013-07-17 05:57:45 +0000458 if (Aligned)
Craig Topperad1fff92013-07-18 07:16:44 +0000459 Opc = Subtarget->hasAVX() ? X86::VMOVAPDmr : X86::MOVAPDmr;
Craig Topper4f55b0e2013-07-17 05:57:45 +0000460 else
Craig Topperad1fff92013-07-18 07:16:44 +0000461 Opc = Subtarget->hasAVX() ? X86::VMOVUPDmr : X86::MOVUPDmr;
Lang Hames7d2f7b52011-10-18 22:11:33 +0000462 break;
463 case MVT::v4i32:
464 case MVT::v2i64:
465 case MVT::v8i16:
466 case MVT::v16i8:
Craig Topper4f55b0e2013-07-17 05:57:45 +0000467 if (Aligned)
Craig Topper55475d42013-07-17 06:58:23 +0000468 Opc = Subtarget->hasAVX() ? X86::VMOVDQAmr : X86::MOVDQAmr;
Craig Topper4f55b0e2013-07-17 05:57:45 +0000469 else
Craig Topper55475d42013-07-17 06:58:23 +0000470 Opc = Subtarget->hasAVX() ? X86::VMOVDQUmr : X86::MOVDQUmr;
Lang Hames7d2f7b52011-10-18 22:11:33 +0000471 break;
Evan Chengf5bc7e52008-09-05 21:00:03 +0000472 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000473
Juergen Ributzka349777d2014-06-12 23:27:57 +0000474 MachineInstrBuilder MIB =
475 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc));
476 addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill));
477 if (MMO)
478 MIB->addMemOperand(*FuncInfo.MF, MMO);
479
Evan Chengf5bc7e52008-09-05 21:00:03 +0000480 return true;
481}
482
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000483bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
Juergen Ributzka349777d2014-06-12 23:27:57 +0000484 const X86AddressMode &AM,
485 MachineMemOperand *MMO, bool Aligned) {
Chris Lattner3ba29352008-10-15 05:30:52 +0000486 // Handle 'null' like i32/i64 0.
Chandler Carruth7ec50852012-11-01 08:07:29 +0000487 if (isa<ConstantPointerNull>(Val))
Rafael Espindolaea09c592014-02-18 22:05:46 +0000488 Val = Constant::getNullValue(DL.getIntPtrType(Val->getContext()));
Wesley Peck527da1b2010-11-23 03:31:01 +0000489
Chris Lattner3ba29352008-10-15 05:30:52 +0000490 // If this is a store of a simple constant, fold the constant into the store.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000491 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
Chris Lattner3ba29352008-10-15 05:30:52 +0000492 unsigned Opc = 0;
Dan Gohman7f0ca9a2009-08-27 00:31:47 +0000493 bool Signed = true;
Owen Anderson9f944592009-08-11 20:47:22 +0000494 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner3ba29352008-10-15 05:30:52 +0000495 default: break;
Dan Gohman7f0ca9a2009-08-27 00:31:47 +0000496 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
Owen Anderson9f944592009-08-11 20:47:22 +0000497 case MVT::i8: Opc = X86::MOV8mi; break;
498 case MVT::i16: Opc = X86::MOV16mi; break;
499 case MVT::i32: Opc = X86::MOV32mi; break;
500 case MVT::i64:
Chris Lattner3ba29352008-10-15 05:30:52 +0000501 // Must be a 32-bit sign extended value.
Jakub Staszak11d1aee2012-11-15 19:05:23 +0000502 if (isInt<32>(CI->getSExtValue()))
Chris Lattner3ba29352008-10-15 05:30:52 +0000503 Opc = X86::MOV64mi32;
504 break;
505 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000506
Chris Lattner3ba29352008-10-15 05:30:52 +0000507 if (Opc) {
Juergen Ributzka349777d2014-06-12 23:27:57 +0000508 MachineInstrBuilder MIB =
509 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc));
510 addFullAddress(MIB, AM).addImm(Signed ? (uint64_t) CI->getSExtValue()
511 : CI->getZExtValue());
512 if (MMO)
513 MIB->addMemOperand(*FuncInfo.MF, MMO);
Chris Lattner3ba29352008-10-15 05:30:52 +0000514 return true;
515 }
516 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000517
Chris Lattner3ba29352008-10-15 05:30:52 +0000518 unsigned ValReg = getRegForValue(Val);
519 if (ValReg == 0)
Wesley Peck527da1b2010-11-23 03:31:01 +0000520 return false;
521
Juergen Ributzka349777d2014-06-12 23:27:57 +0000522 bool ValKill = hasTrivialKill(Val);
523 return X86FastEmitStore(VT, ValReg, ValKill, AM, MMO, Aligned);
Chris Lattner3ba29352008-10-15 05:30:52 +0000524}
525
Evan Cheng6500d172008-09-08 06:35:17 +0000526/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
527/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
528/// ISD::SIGN_EXTEND).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000529bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
530 unsigned Src, EVT SrcVT,
Evan Cheng6500d172008-09-08 06:35:17 +0000531 unsigned &ResultReg) {
Dan Gohman1a1b51f2010-05-11 23:54:07 +0000532 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
533 Src, /*TODO: Kill=*/false);
Jakub Staszak701cc972013-02-14 21:50:09 +0000534 if (RR == 0)
Owen Anderson453564b2008-09-11 19:44:55 +0000535 return false;
Jakub Staszak701cc972013-02-14 21:50:09 +0000536
537 ResultReg = RR;
538 return true;
Evan Cheng6500d172008-09-08 06:35:17 +0000539}
540
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000541bool X86FastISel::handleConstantAddresses(const Value *V, X86AddressMode &AM) {
542 // Handle constant address.
543 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
544 // Can't handle alternate code models yet.
545 if (TM.getCodeModel() != CodeModel::Small)
546 return false;
547
548 // Can't handle TLS yet.
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000549 if (GV->isThreadLocal())
550 return false;
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000551
552 // RIP-relative addresses can't have additional register operands, so if
553 // we've already folded stuff into the addressing mode, just force the
554 // global value into its own register, which we can use as the basereg.
555 if (!Subtarget->isPICStyleRIPRel() ||
556 (AM.Base.Reg == 0 && AM.IndexReg == 0)) {
557 // Okay, we've committed to selecting this global. Set up the address.
558 AM.GV = GV;
559
560 // Allow the subtarget to classify the global.
561 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
562
563 // If this reference is relative to the pic base, set it now.
564 if (isGlobalRelativeToPICBase(GVFlags)) {
565 // FIXME: How do we know Base.Reg is free??
566 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
567 }
568
569 // Unless the ABI requires an extra load, return a direct reference to
570 // the global.
571 if (!isGlobalStubReference(GVFlags)) {
572 if (Subtarget->isPICStyleRIPRel()) {
573 // Use rip-relative addressing if we can. Above we verified that the
574 // base and index registers are unused.
575 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
576 AM.Base.Reg = X86::RIP;
577 }
578 AM.GVOpFlags = GVFlags;
579 return true;
580 }
581
582 // Ok, we need to do a load from a stub. If we've already loaded from
583 // this stub, reuse the loaded pointer, otherwise emit the load now.
584 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
585 unsigned LoadReg;
586 if (I != LocalValueMap.end() && I->second != 0) {
587 LoadReg = I->second;
588 } else {
589 // Issue load from stub.
590 unsigned Opc = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +0000591 const TargetRegisterClass *RC = nullptr;
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000592 X86AddressMode StubAM;
593 StubAM.Base.Reg = AM.Base.Reg;
594 StubAM.GV = GV;
595 StubAM.GVOpFlags = GVFlags;
596
597 // Prepare for inserting code in the local-value area.
598 SavePoint SaveInsertPt = enterLocalValueArea();
599
600 if (TLI.getPointerTy() == MVT::i64) {
601 Opc = X86::MOV64rm;
602 RC = &X86::GR64RegClass;
603
604 if (Subtarget->isPICStyleRIPRel())
605 StubAM.Base.Reg = X86::RIP;
606 } else {
607 Opc = X86::MOV32rm;
608 RC = &X86::GR32RegClass;
609 }
610
611 LoadReg = createResultReg(RC);
612 MachineInstrBuilder LoadMI =
Rafael Espindolaea09c592014-02-18 22:05:46 +0000613 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), LoadReg);
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000614 addFullAddress(LoadMI, StubAM);
615
616 // Ok, back to normal mode.
617 leaveLocalValueArea(SaveInsertPt);
618
619 // Prevent loading GV stub multiple times in same MBB.
620 LocalValueMap[V] = LoadReg;
621 }
622
623 // Now construct the final address. Note that the Disp, Scale,
624 // and Index values may already be set here.
625 AM.Base.Reg = LoadReg;
Craig Topper062a2ba2014-04-25 05:30:21 +0000626 AM.GV = nullptr;
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000627 return true;
628 }
629 }
630
631 // If all else fails, try to materialize the value in a register.
632 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
633 if (AM.Base.Reg == 0) {
634 AM.Base.Reg = getRegForValue(V);
635 return AM.Base.Reg != 0;
636 }
637 if (AM.IndexReg == 0) {
638 assert(AM.Scale == 1 && "Scale with no index!");
639 AM.IndexReg = getRegForValue(V);
640 return AM.IndexReg != 0;
641 }
642 }
643
644 return false;
645}
646
Dan Gohman39d82f92008-09-10 20:11:02 +0000647/// X86SelectAddress - Attempt to fill in an address from the given value.
648///
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000649bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000650 SmallVector<const Value *, 32> GEPs;
Bill Wendling585a9012013-09-24 00:13:08 +0000651redo_gep:
Craig Topper062a2ba2014-04-25 05:30:21 +0000652 const User *U = nullptr;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000653 unsigned Opcode = Instruction::UserOp1;
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000654 if (const Instruction *I = dyn_cast<Instruction>(V)) {
Dan Gohmanaf4903d2010-06-18 20:44:47 +0000655 // Don't walk into other basic blocks; it's possible we haven't
656 // visited them yet, so the instructions may not yet be assigned
657 // virtual registers.
Dan Gohmanaeb5e662010-11-16 22:43:23 +0000658 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) ||
659 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
660 Opcode = I->getOpcode();
661 U = I;
662 }
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000663 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Dan Gohman6e005fd2008-09-18 23:23:44 +0000664 Opcode = C->getOpcode();
665 U = C;
666 }
Dan Gohman39d82f92008-09-10 20:11:02 +0000667
Chris Lattner229907c2011-07-18 04:54:35 +0000668 if (PointerType *Ty = dyn_cast<PointerType>(V->getType()))
Chris Lattner874c92b2010-06-15 19:08:40 +0000669 if (Ty->getAddressSpace() > 255)
Dan Gohmana46d6072010-06-18 20:45:41 +0000670 // Fast instruction selection doesn't support the special
671 // address spaces.
Chris Lattner874c92b2010-06-15 19:08:40 +0000672 return false;
673
Dan Gohman6e005fd2008-09-18 23:23:44 +0000674 switch (Opcode) {
675 default: break;
676 case Instruction::BitCast:
677 // Look past bitcasts.
Chris Lattner8212d372009-07-10 05:33:42 +0000678 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman6e005fd2008-09-18 23:23:44 +0000679
680 case Instruction::IntToPtr:
681 // Look past no-op inttoptrs.
682 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner8212d372009-07-10 05:33:42 +0000683 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohmanbc55c2a2008-12-08 23:50:06 +0000684 break;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000685
686 case Instruction::PtrToInt:
687 // Look past no-op ptrtoints.
688 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner8212d372009-07-10 05:33:42 +0000689 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohmanbc55c2a2008-12-08 23:50:06 +0000690 break;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000691
692 case Instruction::Alloca: {
693 // Do static allocas.
694 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman87fb4e82010-07-07 16:29:44 +0000695 DenseMap<const AllocaInst*, int>::iterator SI =
696 FuncInfo.StaticAllocaMap.find(A);
697 if (SI != FuncInfo.StaticAllocaMap.end()) {
Dan Gohman007a6bb2008-09-26 19:15:30 +0000698 AM.BaseType = X86AddressMode::FrameIndexBase;
699 AM.Base.FrameIndex = SI->second;
700 return true;
701 }
702 break;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000703 }
704
705 case Instruction::Add: {
706 // Adds of constants are common and easy enough.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000707 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman2564b902008-09-26 20:04:15 +0000708 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
709 // They have to fit in the 32-bit signed displacement field though.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000710 if (isInt<32>(Disp)) {
Dan Gohman2564b902008-09-26 20:04:15 +0000711 AM.Disp = (uint32_t)Disp;
Chris Lattner8212d372009-07-10 05:33:42 +0000712 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman2564b902008-09-26 20:04:15 +0000713 }
Dan Gohman39d82f92008-09-10 20:11:02 +0000714 }
Dan Gohman6e005fd2008-09-18 23:23:44 +0000715 break;
716 }
717
718 case Instruction::GetElementPtr: {
Chris Lattner795667b2010-03-04 19:54:45 +0000719 X86AddressMode SavedAM = AM;
720
Dan Gohman6e005fd2008-09-18 23:23:44 +0000721 // Pattern-match simple GEPs.
Dan Gohman2564b902008-09-26 20:04:15 +0000722 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000723 unsigned IndexReg = AM.IndexReg;
724 unsigned Scale = AM.Scale;
725 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohman4c315242008-12-08 07:57:47 +0000726 // Iterate through the indices, folding what we can. Constants can be
727 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000728 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
Dan Gohman6e005fd2008-09-18 23:23:44 +0000729 i != e; ++i, ++GTI) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000730 const Value *Op = *i;
Chris Lattner229907c2011-07-18 04:54:35 +0000731 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000732 const StructLayout *SL = DL.getStructLayout(STy);
Chris Lattner4b026b92011-04-17 17:05:12 +0000733 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
734 continue;
735 }
Eric Christopher0713a9d2011-06-08 23:55:35 +0000736
Chris Lattner4b026b92011-04-17 17:05:12 +0000737 // A array/variable index is always of the form i*S where S is the
738 // constant scale size. See if we can push the scale into immediates.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000739 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
Chris Lattner4b026b92011-04-17 17:05:12 +0000740 for (;;) {
741 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
742 // Constant-offset addressing.
743 Disp += CI->getSExtValue() * S;
744 break;
Dan Gohmanc1783b32011-03-22 00:04:35 +0000745 }
Bob Wilson9f3e6b22013-11-15 19:09:27 +0000746 if (canFoldAddIntoGEP(U, Op)) {
747 // A compatible add with a constant operand. Fold the constant.
Chris Lattner4b026b92011-04-17 17:05:12 +0000748 ConstantInt *CI =
749 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
750 Disp += CI->getSExtValue() * S;
751 // Iterate on the other operand.
752 Op = cast<AddOperator>(Op)->getOperand(0);
753 continue;
754 }
755 if (IndexReg == 0 &&
756 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
757 (S == 1 || S == 2 || S == 4 || S == 8)) {
758 // Scaled-index addressing.
759 Scale = S;
760 IndexReg = getRegForGEPIndex(Op).first;
761 if (IndexReg == 0)
762 return false;
763 break;
764 }
765 // Unsupported.
766 goto unsupported_gep;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000767 }
768 }
Bill Wendling585a9012013-09-24 00:13:08 +0000769
Dan Gohman2564b902008-09-26 20:04:15 +0000770 // Check for displacement overflow.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000771 if (!isInt<32>(Disp))
Dan Gohman2564b902008-09-26 20:04:15 +0000772 break;
Bill Wendling585a9012013-09-24 00:13:08 +0000773
Dan Gohman6e005fd2008-09-18 23:23:44 +0000774 AM.IndexReg = IndexReg;
775 AM.Scale = Scale;
Dan Gohman2564b902008-09-26 20:04:15 +0000776 AM.Disp = (uint32_t)Disp;
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000777 GEPs.push_back(V);
Bill Wendling585a9012013-09-24 00:13:08 +0000778
779 if (const GetElementPtrInst *GEP =
780 dyn_cast<GetElementPtrInst>(U->getOperand(0))) {
781 // Ok, the GEP indices were covered by constant-offset and scaled-index
782 // addressing. Update the address state and move on to examining the base.
783 V = GEP;
784 goto redo_gep;
785 } else if (X86SelectAddress(U->getOperand(0), AM)) {
Chris Lattner6ce8e242010-03-04 19:48:19 +0000786 return true;
Bill Wendling585a9012013-09-24 00:13:08 +0000787 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000788
Chris Lattner4b026b92011-04-17 17:05:12 +0000789 // If we couldn't merge the gep value into this addr mode, revert back to
Chris Lattner6ce8e242010-03-04 19:48:19 +0000790 // our address and just match the value instead of completely failing.
791 AM = SavedAM;
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000792
793 for (SmallVectorImpl<const Value *>::reverse_iterator
794 I = GEPs.rbegin(), E = GEPs.rend(); I != E; ++I)
795 if (handleConstantAddresses(*I, AM))
796 return true;
797
798 return false;
Dan Gohman6e005fd2008-09-18 23:23:44 +0000799 unsupported_gep:
800 // Ok, the GEP indices weren't all covered.
801 break;
802 }
803 }
804
Bill Wendlingc63c30c2013-09-24 07:19:30 +0000805 return handleConstantAddresses(V, AM);
Dan Gohman39d82f92008-09-10 20:11:02 +0000806}
807
Chris Lattner8212d372009-07-10 05:33:42 +0000808/// X86SelectCallAddress - Attempt to fill in an address from the given value.
809///
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000810bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) {
Craig Topper062a2ba2014-04-25 05:30:21 +0000811 const User *U = nullptr;
Chris Lattner8212d372009-07-10 05:33:42 +0000812 unsigned Opcode = Instruction::UserOp1;
Quentin Colombet778dba12013-10-14 22:32:09 +0000813 const Instruction *I = dyn_cast<Instruction>(V);
Quentin Colombetf34568b2013-10-22 21:29:08 +0000814 // Record if the value is defined in the same basic block.
815 //
816 // This information is crucial to know whether or not folding an
817 // operand is valid.
818 // Indeed, FastISel generates or reuses a virtual register for all
819 // operands of all instructions it selects. Obviously, the definition and
820 // its uses must use the same virtual register otherwise the produced
821 // code is incorrect.
822 // Before instruction selection, FunctionLoweringInfo::set sets the virtual
823 // registers for values that are alive across basic blocks. This ensures
824 // that the values are consistently set between across basic block, even
825 // if different instruction selection mechanisms are used (e.g., a mix of
826 // SDISel and FastISel).
827 // For values local to a basic block, the instruction selection process
828 // generates these virtual registers with whatever method is appropriate
829 // for its needs. In particular, FastISel and SDISel do not share the way
830 // local virtual registers are set.
831 // Therefore, this is impossible (or at least unsafe) to share values
832 // between basic blocks unless they use the same instruction selection
833 // method, which is not guarantee for X86.
834 // Moreover, things like hasOneUse could not be used accurately, if we
835 // allow to reference values across basic blocks whereas they are not
836 // alive across basic blocks initially.
Quentin Colombet778dba12013-10-14 22:32:09 +0000837 bool InMBB = true;
838 if (I) {
Chris Lattner8212d372009-07-10 05:33:42 +0000839 Opcode = I->getOpcode();
840 U = I;
Quentin Colombet778dba12013-10-14 22:32:09 +0000841 InMBB = I->getParent() == FuncInfo.MBB->getBasicBlock();
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000842 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Chris Lattner8212d372009-07-10 05:33:42 +0000843 Opcode = C->getOpcode();
844 U = C;
845 }
846
847 switch (Opcode) {
848 default: break;
849 case Instruction::BitCast:
Quentin Colombet778dba12013-10-14 22:32:09 +0000850 // Look past bitcasts if its operand is in the same BB.
851 if (InMBB)
852 return X86SelectCallAddress(U->getOperand(0), AM);
853 break;
Chris Lattner8212d372009-07-10 05:33:42 +0000854
855 case Instruction::IntToPtr:
Quentin Colombet778dba12013-10-14 22:32:09 +0000856 // Look past no-op inttoptrs if its operand is in the same BB.
857 if (InMBB &&
858 TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner8212d372009-07-10 05:33:42 +0000859 return X86SelectCallAddress(U->getOperand(0), AM);
860 break;
861
862 case Instruction::PtrToInt:
Quentin Colombet778dba12013-10-14 22:32:09 +0000863 // Look past no-op ptrtoints if its operand is in the same BB.
864 if (InMBB &&
865 TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner8212d372009-07-10 05:33:42 +0000866 return X86SelectCallAddress(U->getOperand(0), AM);
867 break;
868 }
869
870 // Handle constant address.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000871 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner8212d372009-07-10 05:33:42 +0000872 // Can't handle alternate code models yet.
Chris Lattner25e7f912009-07-10 21:03:06 +0000873 if (TM.getCodeModel() != CodeModel::Small)
Chris Lattner8212d372009-07-10 05:33:42 +0000874 return false;
875
876 // RIP-relative addresses can't have additional register operands.
877 if (Subtarget->isPICStyleRIPRel() &&
878 (AM.Base.Reg != 0 || AM.IndexReg != 0))
879 return false;
880
Saleem Abdulrasoole3c3fe52014-06-30 03:11:18 +0000881 // Can't handle DLL Import.
Nico Rieck7157bb72014-01-14 15:22:47 +0000882 if (GV->hasDLLImportStorageClass())
NAKAMURA Takumi860abd02011-02-21 04:50:06 +0000883 return false;
884
885 // Can't handle TLS.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000886 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
NAKAMURA Takumi860abd02011-02-21 04:50:06 +0000887 if (GVar->isThreadLocal())
Chris Lattner8212d372009-07-10 05:33:42 +0000888 return false;
889
890 // Okay, we've committed to selecting this global. Set up the basic address.
891 AM.GV = GV;
Wesley Peck527da1b2010-11-23 03:31:01 +0000892
Chris Lattner7277a802009-07-10 05:45:15 +0000893 // No ABI requires an extra load for anything other than DLLImport, which
894 // we rejected above. Return a direct reference to the global.
Chris Lattner7277a802009-07-10 05:45:15 +0000895 if (Subtarget->isPICStyleRIPRel()) {
896 // Use rip-relative addressing if we can. Above we verified that the
897 // base and index registers are unused.
898 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
899 AM.Base.Reg = X86::RIP;
Chris Lattner21c29402009-07-10 21:00:45 +0000900 } else if (Subtarget->isPICStyleStubPIC()) {
Chris Lattner7277a802009-07-10 05:45:15 +0000901 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
902 } else if (Subtarget->isPICStyleGOT()) {
903 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner8212d372009-07-10 05:33:42 +0000904 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000905
Chris Lattner8212d372009-07-10 05:33:42 +0000906 return true;
907 }
908
909 // If all else fails, try to materialize the value in a register.
910 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
911 if (AM.Base.Reg == 0) {
912 AM.Base.Reg = getRegForValue(V);
913 return AM.Base.Reg != 0;
914 }
915 if (AM.IndexReg == 0) {
916 assert(AM.Scale == 1 && "Scale with no index!");
917 AM.IndexReg = getRegForValue(V);
918 return AM.IndexReg != 0;
919 }
920 }
921
922 return false;
923}
924
925
Owen Anderson4f948bd2008-09-04 07:08:58 +0000926/// X86SelectStore - Select and emit code to implement store instructions.
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000927bool X86FastISel::X86SelectStore(const Instruction *I) {
Eli Friedmanf3dd6da2011-09-02 22:33:24 +0000928 // Atomic stores need special handling.
Lang Hames7d2f7b52011-10-18 22:11:33 +0000929 const StoreInst *S = cast<StoreInst>(I);
930
931 if (S->isAtomic())
932 return false;
933
Juergen Ributzka349777d2014-06-12 23:27:57 +0000934 const Value *Val = S->getValueOperand();
935 const Value *Ptr = S->getPointerOperand();
Craig Topper4f55b0e2013-07-17 05:57:45 +0000936
Duncan Sandsf5dda012010-11-03 11:35:31 +0000937 MVT VT;
Juergen Ributzka349777d2014-06-12 23:27:57 +0000938 if (!isTypeLegal(Val->getType(), VT, /*AllowI1=*/true))
Owen Anderson4f948bd2008-09-04 07:08:58 +0000939 return false;
Owen Anderson4f948bd2008-09-04 07:08:58 +0000940
Juergen Ributzka349777d2014-06-12 23:27:57 +0000941 unsigned Alignment = S->getAlignment();
942 unsigned ABIAlignment = DL.getABITypeAlignment(Val->getType());
943 if (Alignment == 0) // Ensure that codegen never sees alignment 0
944 Alignment = ABIAlignment;
945 bool Aligned = Alignment >= ABIAlignment;
946
Dan Gohman39d82f92008-09-10 20:11:02 +0000947 X86AddressMode AM;
Juergen Ributzka349777d2014-06-12 23:27:57 +0000948 if (!X86SelectAddress(Ptr, AM))
Dan Gohman39d82f92008-09-10 20:11:02 +0000949 return false;
Owen Anderson4f948bd2008-09-04 07:08:58 +0000950
Juergen Ributzka349777d2014-06-12 23:27:57 +0000951 return X86FastEmitStore(VT, Val, AM, createMachineMemOperandFor(I), Aligned);
Owen Anderson4f948bd2008-09-04 07:08:58 +0000952}
953
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000954/// X86SelectRet - Select and emit code to implement ret instructions.
955bool X86FastISel::X86SelectRet(const Instruction *I) {
956 const ReturnInst *Ret = cast<ReturnInst>(I);
957 const Function &F = *I->getParent()->getParent();
Nick Lewyckyf8fc8922012-10-02 22:45:06 +0000958 const X86MachineFunctionInfo *X86MFInfo =
959 FuncInfo.MF->getInfo<X86MachineFunctionInfo>();
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000960
961 if (!FuncInfo.CanLowerReturn)
962 return false;
963
964 CallingConv::ID CC = F.getCallingConv();
965 if (CC != CallingConv::C &&
966 CC != CallingConv::Fast &&
Charles Davise8f297c2013-07-12 06:02:35 +0000967 CC != CallingConv::X86_FastCall &&
968 CC != CallingConv::X86_64_SysV)
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000969 return false;
970
Charles Davise8f297c2013-07-12 06:02:35 +0000971 if (Subtarget->isCallingConvWin64(CC))
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000972 return false;
973
974 // Don't handle popping bytes on return for now.
Nick Lewyckyf8fc8922012-10-02 22:45:06 +0000975 if (X86MFInfo->getBytesToPopOnReturn() != 0)
Jakub Staszak74010cd2013-02-17 18:35:25 +0000976 return false;
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000977
978 // fastcc with -tailcallopt is intended to provide a guaranteed
979 // tail call optimization. Fastisel doesn't know how to do that.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000980 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000981 return false;
982
983 // Let SDISel handle vararg functions.
984 if (F.isVarArg())
985 return false;
986
Jakob Stoklund Olesendc69f6f2013-02-05 17:59:48 +0000987 // Build a list of return value registers.
988 SmallVector<unsigned, 4> RetRegs;
989
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000990 if (Ret->getNumOperands() > 0) {
991 SmallVector<ISD::OutputArg, 4> Outs;
Bill Wendling74dba872012-12-30 13:01:51 +0000992 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI);
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000993
994 // Analyze operands of the call, assigning locations to each operand.
995 SmallVector<CCValAssign, 16> ValLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +0000996 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,
Bill Wendlingea6397f2012-07-19 00:11:40 +0000997 I->getContext());
Duncan Sandsfa7e6f22010-10-31 13:02:38 +0000998 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Dan Gohmand7b5ce32010-07-10 09:00:22 +0000999
1000 const Value *RV = Ret->getOperand(0);
1001 unsigned Reg = getRegForValue(RV);
1002 if (Reg == 0)
1003 return false;
1004
1005 // Only handle a single return value for now.
1006 if (ValLocs.size() != 1)
1007 return false;
1008
1009 CCValAssign &VA = ValLocs[0];
Wesley Peck527da1b2010-11-23 03:31:01 +00001010
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001011 // Don't bother handling odd stuff for now.
1012 if (VA.getLocInfo() != CCValAssign::Full)
1013 return false;
1014 // Only handle register returns for now.
1015 if (!VA.isRegLoc())
1016 return false;
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001017
1018 // The calling-convention tables for x87 returns don't tell
1019 // the whole story.
1020 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
1021 return false;
1022
Eli Friedman6fc94dd2011-05-18 23:13:10 +00001023 unsigned SrcReg = Reg + VA.getValNo();
Eli Friedman22da7992011-05-19 22:16:13 +00001024 EVT SrcVT = TLI.getValueType(RV->getType());
1025 EVT DstVT = VA.getValVT();
1026 // Special handling for extended integers.
1027 if (SrcVT != DstVT) {
1028 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
1029 return false;
1030
1031 if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
1032 return false;
1033
1034 assert(DstVT == MVT::i32 && "X86 should always ext to i32");
1035
1036 if (SrcVT == MVT::i1) {
1037 if (Outs[0].Flags.isSExt())
1038 return false;
1039 SrcReg = FastEmitZExtFromI1(MVT::i8, SrcReg, /*TODO: Kill=*/false);
1040 SrcVT = MVT::i8;
1041 }
1042 unsigned Op = Outs[0].Flags.isZExt() ? ISD::ZERO_EXTEND :
1043 ISD::SIGN_EXTEND;
1044 SrcReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Op,
1045 SrcReg, /*TODO: Kill=*/false);
1046 }
1047
1048 // Make the copy.
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001049 unsigned DstReg = VA.getLocReg();
1050 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
Jakob Stoklund Olesen89696572010-07-11 05:17:02 +00001051 // Avoid a cross-class copy. This is very unlikely.
1052 if (!SrcRC->contains(DstReg))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001053 return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001054 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
Jakob Stoklund Olesen89696572010-07-11 05:17:02 +00001055 DstReg).addReg(SrcReg);
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001056
Jakob Stoklund Olesendc69f6f2013-02-05 17:59:48 +00001057 // Add register to return instruction.
1058 RetRegs.push_back(VA.getLocReg());
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001059 }
1060
Nick Lewyckyf8fc8922012-10-02 22:45:06 +00001061 // The x86-64 ABI for returning structs by value requires that we copy
1062 // the sret argument into %rax for the return. We saved the argument into
1063 // a virtual register in the entry block, so now we copy the value out
Timur Iskhodzhanova2fd5fd2013-03-28 21:30:04 +00001064 // and into %rax. We also do the same with %eax for Win32.
1065 if (F.hasStructRetAttr() &&
Yaron Keren136fe7d2014-04-01 18:15:34 +00001066 (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
Nick Lewyckyf8fc8922012-10-02 22:45:06 +00001067 unsigned Reg = X86MFInfo->getSRetReturnReg();
1068 assert(Reg &&
1069 "SRetReturnReg should have been set in LowerFormalArguments()!");
Timur Iskhodzhanova2fd5fd2013-03-28 21:30:04 +00001070 unsigned RetReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001071 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
Timur Iskhodzhanova2fd5fd2013-03-28 21:30:04 +00001072 RetReg).addReg(Reg);
1073 RetRegs.push_back(RetReg);
Nick Lewyckyf8fc8922012-10-02 22:45:06 +00001074 }
1075
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001076 // Now emit the RET.
Jakob Stoklund Olesendc69f6f2013-02-05 17:59:48 +00001077 MachineInstrBuilder MIB =
Rafael Espindolaea09c592014-02-18 22:05:46 +00001078 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Subtarget->is64Bit() ? X86::RETQ : X86::RETL));
Jakob Stoklund Olesendc69f6f2013-02-05 17:59:48 +00001079 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
1080 MIB.addReg(RetRegs[i], RegState::Implicit);
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001081 return true;
1082}
1083
Evan Chenga41ee292008-09-03 06:44:39 +00001084/// X86SelectLoad - Select and emit code to implement load instructions.
1085///
Juergen Ributzka349777d2014-06-12 23:27:57 +00001086bool X86FastISel::X86SelectLoad(const Instruction *I) {
1087 const LoadInst *LI = cast<LoadInst>(I);
1088
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001089 // Atomic loads need special handling.
Juergen Ributzka349777d2014-06-12 23:27:57 +00001090 if (LI->isAtomic())
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001091 return false;
1092
Duncan Sandsf5dda012010-11-03 11:35:31 +00001093 MVT VT;
Juergen Ributzka349777d2014-06-12 23:27:57 +00001094 if (!isTypeLegal(LI->getType(), VT, /*AllowI1=*/true))
Evan Chenga41ee292008-09-03 06:44:39 +00001095 return false;
1096
Juergen Ributzka349777d2014-06-12 23:27:57 +00001097 const Value *Ptr = LI->getPointerOperand();
1098
Dan Gohman39d82f92008-09-10 20:11:02 +00001099 X86AddressMode AM;
Juergen Ributzka349777d2014-06-12 23:27:57 +00001100 if (!X86SelectAddress(Ptr, AM))
Dan Gohman39d82f92008-09-10 20:11:02 +00001101 return false;
Evan Chenga41ee292008-09-03 06:44:39 +00001102
Evan Chengf5bc7e52008-09-05 21:00:03 +00001103 unsigned ResultReg = 0;
Juergen Ributzka349777d2014-06-12 23:27:57 +00001104 if (!X86FastEmitLoad(VT, AM, createMachineMemOperandFor(LI), ResultReg))
1105 return false;
1106
1107 UpdateValueMap(I, ResultReg);
1108 return true;
Evan Chenga41ee292008-09-03 06:44:39 +00001109}
1110
Jakob Stoklund Olesen48068482010-07-11 16:22:13 +00001111static unsigned X86ChooseCmpOpcode(EVT VT, const X86Subtarget *Subtarget) {
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00001112 bool HasAVX = Subtarget->hasAVX();
Craig Topperb0c0f722012-01-10 06:54:16 +00001113 bool X86ScalarSSEf32 = Subtarget->hasSSE1();
1114 bool X86ScalarSSEf64 = Subtarget->hasSSE2();
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00001115
Owen Anderson9f944592009-08-11 20:47:22 +00001116 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner74e01282008-10-15 04:32:45 +00001117 default: return 0;
Owen Anderson9f944592009-08-11 20:47:22 +00001118 case MVT::i8: return X86::CMP8rr;
1119 case MVT::i16: return X86::CMP16rr;
1120 case MVT::i32: return X86::CMP32rr;
1121 case MVT::i64: return X86::CMP64rr;
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00001122 case MVT::f32:
1123 return X86ScalarSSEf32 ? (HasAVX ? X86::VUCOMISSrr : X86::UCOMISSrr) : 0;
1124 case MVT::f64:
1125 return X86ScalarSSEf64 ? (HasAVX ? X86::VUCOMISDrr : X86::UCOMISDrr) : 0;
Dan Gohman1ab1d312008-10-02 22:15:21 +00001126 }
Dan Gohman1ab1d312008-10-02 22:15:21 +00001127}
1128
Chris Lattner88f47542008-10-15 04:13:29 +00001129/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
1130/// of the comparison, return an opcode that works for the compare (e.g.
1131/// CMP32ri) otherwise return 0.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001132static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
Owen Anderson9f944592009-08-11 20:47:22 +00001133 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner88f47542008-10-15 04:13:29 +00001134 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner74e01282008-10-15 04:32:45 +00001135 default: return 0;
Owen Anderson9f944592009-08-11 20:47:22 +00001136 case MVT::i8: return X86::CMP8ri;
1137 case MVT::i16: return X86::CMP16ri;
1138 case MVT::i32: return X86::CMP32ri;
1139 case MVT::i64:
Chris Lattner74e01282008-10-15 04:32:45 +00001140 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
1141 // field.
Chris Lattner3ba29352008-10-15 05:30:52 +00001142 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner74e01282008-10-15 04:32:45 +00001143 return X86::CMP64ri32;
1144 return 0;
1145 }
Chris Lattner88f47542008-10-15 04:13:29 +00001146}
1147
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001148bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1,
1149 EVT VT) {
Chris Lattnerd46b9512008-10-15 04:26:38 +00001150 unsigned Op0Reg = getRegForValue(Op0);
1151 if (Op0Reg == 0) return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001152
Chris Lattnere388725a2008-10-15 05:18:04 +00001153 // Handle 'null' like i32/i64 0.
Chandler Carruth7ec50852012-11-01 08:07:29 +00001154 if (isa<ConstantPointerNull>(Op1))
Rafael Espindolaea09c592014-02-18 22:05:46 +00001155 Op1 = Constant::getNullValue(DL.getIntPtrType(Op0->getContext()));
Wesley Peck527da1b2010-11-23 03:31:01 +00001156
Chris Lattnerd46b9512008-10-15 04:26:38 +00001157 // We have two options: compare with register or immediate. If the RHS of
1158 // the compare is an immediate that we can fold into this compare, use
1159 // CMPri, otherwise use CMPrr.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001160 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner74e01282008-10-15 04:32:45 +00001161 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001162 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CompareImmOpc))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001163 .addReg(Op0Reg)
1164 .addImm(Op1C->getSExtValue());
Chris Lattnerd46b9512008-10-15 04:26:38 +00001165 return true;
1166 }
1167 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001168
Jakob Stoklund Olesen48068482010-07-11 16:22:13 +00001169 unsigned CompareOpc = X86ChooseCmpOpcode(VT, Subtarget);
Chris Lattnerd46b9512008-10-15 04:26:38 +00001170 if (CompareOpc == 0) return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001171
Chris Lattnerd46b9512008-10-15 04:26:38 +00001172 unsigned Op1Reg = getRegForValue(Op1);
1173 if (Op1Reg == 0) return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001174 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CompareOpc))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001175 .addReg(Op0Reg)
1176 .addReg(Op1Reg);
Wesley Peck527da1b2010-11-23 03:31:01 +00001177
Chris Lattnerd46b9512008-10-15 04:26:38 +00001178 return true;
1179}
1180
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001181bool X86FastISel::X86SelectCmp(const Instruction *I) {
1182 const CmpInst *CI = cast<CmpInst>(I);
Dan Gohman09fdbcf2008-09-04 23:26:51 +00001183
Duncan Sandsf5dda012010-11-03 11:35:31 +00001184 MVT VT;
Chris Lattnera0f9d492008-10-15 05:07:36 +00001185 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman09faf812008-09-05 01:33:56 +00001186 return false;
1187
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001188 // Try to optimize or fold the cmp.
1189 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1190 unsigned ResultReg = 0;
1191 switch (Predicate) {
1192 default: break;
1193 case CmpInst::FCMP_FALSE: {
1194 ResultReg = createResultReg(&X86::GR32RegClass);
1195 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV32r0),
1196 ResultReg);
1197 ResultReg = FastEmitInst_extractsubreg(MVT::i8, ResultReg, /*Kill=*/true,
1198 X86::sub_8bit);
1199 if (!ResultReg)
1200 return false;
1201 break;
1202 }
1203 case CmpInst::FCMP_TRUE: {
1204 ResultReg = createResultReg(&X86::GR8RegClass);
1205 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
1206 ResultReg).addImm(1);
1207 break;
1208 }
1209 }
1210
1211 if (ResultReg) {
1212 UpdateValueMap(I, ResultReg);
1213 return true;
1214 }
1215
1216 const Value *LHS = CI->getOperand(0);
1217 const Value *RHS = CI->getOperand(1);
1218
1219 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1220 // We don't have to materialize a zero constant for this case and can just use
1221 // %x again on the RHS.
1222 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1223 const auto *RHSC = dyn_cast<ConstantFP>(RHS);
1224 if (RHSC && RHSC->isNullValue())
1225 RHS = LHS;
1226 }
1227
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001228 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
Juergen Ributzkae3570562014-06-17 14:47:45 +00001229 static unsigned SETFOpcTable[2][3] = {
1230 { X86::SETEr, X86::SETNPr, X86::AND8rr },
1231 { X86::SETNEr, X86::SETPr, X86::OR8rr }
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001232 };
1233 unsigned *SETFOpc = nullptr;
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001234 switch (Predicate) {
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001235 default: break;
1236 case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break;
1237 case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break;
1238 }
1239
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001240 ResultReg = createResultReg(&X86::GR8RegClass);
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001241 if (SETFOpc) {
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001242 if (!X86FastEmitCompare(LHS, RHS, VT))
Chris Lattnerdc1c3802008-10-15 04:29:23 +00001243 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001244
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001245 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1246 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1247 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1248 FlagReg1);
1249 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1250 FlagReg2);
Juergen Ributzkae3570562014-06-17 14:47:45 +00001251 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[2]),
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001252 ResultReg).addReg(FlagReg1).addReg(FlagReg2);
Chris Lattnera3596db2008-10-15 03:47:17 +00001253 UpdateValueMap(I, ResultReg);
1254 return true;
Dan Gohman09fdbcf2008-09-04 23:26:51 +00001255 }
Chris Lattnerdc1c3802008-10-15 04:29:23 +00001256
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001257 X86::CondCode CC;
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001258 bool SwapArgs;
Craig Topper9f62d802014-06-27 05:18:21 +00001259 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
Juergen Ributzka345589e2014-06-27 17:16:34 +00001260 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001261 unsigned Opc = X86::getSETFromCond(CC);
Wesley Peck527da1b2010-11-23 03:31:01 +00001262
Chris Lattnerf32ce222008-10-15 03:52:54 +00001263 if (SwapArgs)
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001264 std::swap(LHS, RHS);
Chris Lattnerf32ce222008-10-15 03:52:54 +00001265
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001266 // Emit a compare of LHS/RHS.
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001267 if (!X86FastEmitCompare(LHS, RHS, VT))
Chris Lattnerdc1c3802008-10-15 04:29:23 +00001268 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001269
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001270 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
Dan Gohman09fdbcf2008-09-04 23:26:51 +00001271 UpdateValueMap(I, ResultReg);
1272 return true;
1273}
Evan Chenga41ee292008-09-03 06:44:39 +00001274
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001275bool X86FastISel::X86SelectZExt(const Instruction *I) {
Eli Friedmanc7035512011-05-25 23:49:02 +00001276 EVT DstVT = TLI.getValueType(I->getType());
1277 if (!TLI.isTypeLegal(DstVT))
1278 return false;
1279
1280 unsigned ResultReg = getRegForValue(I->getOperand(0));
1281 if (ResultReg == 0)
1282 return false;
1283
Tim Northover04eb4232013-05-30 10:43:18 +00001284 // Handle zero-extension from i1 to i8, which is common.
Craig Topper56710102013-08-15 02:33:50 +00001285 MVT SrcVT = TLI.getSimpleValueType(I->getOperand(0)->getType());
Tim Northover04eb4232013-05-30 10:43:18 +00001286 if (SrcVT.SimpleTy == MVT::i1) {
1287 // Set the high bits to zero.
1288 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg, /*TODO: Kill=*/false);
1289 SrcVT = MVT::i8;
Eli Friedmanc7035512011-05-25 23:49:02 +00001290
Tim Northover04eb4232013-05-30 10:43:18 +00001291 if (ResultReg == 0)
1292 return false;
1293 }
1294
1295 if (DstVT == MVT::i64) {
1296 // Handle extension to 64-bits via sub-register shenanigans.
1297 unsigned MovInst;
1298
1299 switch (SrcVT.SimpleTy) {
1300 case MVT::i8: MovInst = X86::MOVZX32rr8; break;
1301 case MVT::i16: MovInst = X86::MOVZX32rr16; break;
1302 case MVT::i32: MovInst = X86::MOV32rr; break;
1303 default: llvm_unreachable("Unexpected zext to i64 source type");
1304 }
1305
1306 unsigned Result32 = createResultReg(&X86::GR32RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001307 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovInst), Result32)
Tim Northover04eb4232013-05-30 10:43:18 +00001308 .addReg(ResultReg);
1309
1310 ResultReg = createResultReg(&X86::GR64RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001311 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::SUBREG_TO_REG),
Tim Northover04eb4232013-05-30 10:43:18 +00001312 ResultReg)
1313 .addImm(0).addReg(Result32).addImm(X86::sub_32bit);
1314 } else if (DstVT != MVT::i8) {
Eli Friedmanc7035512011-05-25 23:49:02 +00001315 ResultReg = FastEmit_r(MVT::i8, DstVT.getSimpleVT(), ISD::ZERO_EXTEND,
1316 ResultReg, /*Kill=*/true);
1317 if (ResultReg == 0)
1318 return false;
Dan Gohmana5753b32008-09-05 01:06:14 +00001319 }
1320
Eli Friedmanc7035512011-05-25 23:49:02 +00001321 UpdateValueMap(I, ResultReg);
1322 return true;
Dan Gohmana5753b32008-09-05 01:06:14 +00001323}
1324
Chris Lattnerd46b9512008-10-15 04:26:38 +00001325
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001326bool X86FastISel::X86SelectBranch(const Instruction *I) {
Dan Gohmana5753b32008-09-05 01:06:14 +00001327 // Unconditional branches are selected by tablegen-generated code.
Dan Gohman1ab1d312008-10-02 22:15:21 +00001328 // Handle a conditional branch.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001329 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohman87fb4e82010-07-07 16:29:44 +00001330 MachineBasicBlock *TrueMBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1331 MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Dan Gohmana5753b32008-09-05 01:06:14 +00001332
Dan Gohman42ef6692010-08-21 02:32:36 +00001333 // Fold the common case of a conditional branch with a comparison
1334 // in the same block (values defined on other blocks may not have
1335 // initialized registers).
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001336 X86::CondCode CC;
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001337 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Dan Gohman42ef6692010-08-21 02:32:36 +00001338 if (CI->hasOneUse() && CI->getParent() == I->getParent()) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001339 EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmana5753b32008-09-05 01:06:14 +00001340
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001341 // Try to optimize or fold the cmp.
1342 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1343 switch (Predicate) {
1344 default: break;
1345 case CmpInst::FCMP_FALSE: FastEmitBranch(FalseMBB, DbgLoc); return true;
1346 case CmpInst::FCMP_TRUE: FastEmitBranch(TrueMBB, DbgLoc); return true;
1347 }
1348
1349 const Value *CmpLHS = CI->getOperand(0);
1350 const Value *CmpRHS = CI->getOperand(1);
1351
1352 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x,
1353 // 0.0.
1354 // We don't have to materialize a zero constant for this case and can just
1355 // use %x again on the RHS.
1356 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1357 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
1358 if (CmpRHSC && CmpRHSC->isNullValue())
1359 CmpRHS = CmpLHS;
1360 }
1361
Dan Gohman1ab1d312008-10-02 22:15:21 +00001362 // Try to take advantage of fallthrough opportunities.
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001363 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
Dan Gohman1ab1d312008-10-02 22:15:21 +00001364 std::swap(TrueMBB, FalseMBB);
1365 Predicate = CmpInst::getInversePredicate(Predicate);
1366 }
1367
Juergen Ributzka345589e2014-06-27 17:16:34 +00001368 // FCMP_OEQ and FCMP_UNE cannot be expressed with a single flag/condition
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001369 // code check. Instead two branch instructions are required to check all
Juergen Ributzka345589e2014-06-27 17:16:34 +00001370 // the flags. First we change the predicate to a supported condition code,
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001371 // which will be the first branch. Later one we will emit the second
1372 // branch.
1373 bool NeedExtraBranch = false;
Dan Gohman1ab1d312008-10-02 22:15:21 +00001374 switch (Predicate) {
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001375 default: break;
Dan Gohman4ddf7a42008-10-21 18:24:51 +00001376 case CmpInst::FCMP_OEQ:
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001377 std::swap(TrueMBB, FalseMBB); // fall-through
1378 case CmpInst::FCMP_UNE:
1379 NeedExtraBranch = true;
1380 Predicate = CmpInst::FCMP_ONE;
1381 break;
Dan Gohman1ab1d312008-10-02 22:15:21 +00001382 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001383
Juergen Ributzkaaa602092014-06-17 21:55:43 +00001384 bool SwapArgs;
1385 unsigned BranchOpc;
Craig Topper9f62d802014-06-27 05:18:21 +00001386 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
Juergen Ributzka345589e2014-06-27 17:16:34 +00001387 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001388
1389 BranchOpc = X86::GetCondBranchFromCond(CC);
Chris Lattner47bef252008-10-15 04:02:26 +00001390 if (SwapArgs)
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001391 std::swap(CmpLHS, CmpRHS);
Chris Lattner47bef252008-10-15 04:02:26 +00001392
Chris Lattnerd46b9512008-10-15 04:26:38 +00001393 // Emit a compare of the LHS and RHS, setting the flags.
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001394 if (!X86FastEmitCompare(CmpLHS, CmpRHS, VT))
Chris Lattnerd46b9512008-10-15 04:26:38 +00001395 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001396
Rafael Espindolaea09c592014-02-18 22:05:46 +00001397 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001398 .addMBB(TrueMBB);
Dan Gohman4ddf7a42008-10-21 18:24:51 +00001399
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001400 // X86 requires a second branch to handle UNE (and OEQ, which is mapped
1401 // to UNE above).
1402 if (NeedExtraBranch) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001403 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JP_4))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001404 .addMBB(TrueMBB);
Dan Gohman4ddf7a42008-10-21 18:24:51 +00001405 }
1406
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001407 // Obtain the branch weight and add the TrueBB to the successor list.
Juergen Ributzka454d3742014-06-13 00:45:11 +00001408 uint32_t BranchWeight = 0;
1409 if (FuncInfo.BPI)
1410 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1411 TrueMBB->getBasicBlock());
1412 FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001413
1414 // Emits an unconditional branch to the FalseBB, obtains the branch
Alp Toker1d099d92014-06-19 19:41:26 +00001415 // weight, and adds it to the successor list.
Juergen Ributzka2da1bbc2014-06-16 23:58:24 +00001416 FastEmitBranch(FalseMBB, DbgLoc);
1417
Dan Gohman1ab1d312008-10-02 22:15:21 +00001418 return true;
1419 }
Chris Lattner2c8a4c32011-04-19 04:22:17 +00001420 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1421 // Handle things like "%cond = trunc i32 %X to i1 / br i1 %cond", which
1422 // typically happen for _Bool and C++ bools.
1423 MVT SourceVT;
1424 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1425 isTypeLegal(TI->getOperand(0)->getType(), SourceVT)) {
1426 unsigned TestOpc = 0;
1427 switch (SourceVT.SimpleTy) {
1428 default: break;
1429 case MVT::i8: TestOpc = X86::TEST8ri; break;
1430 case MVT::i16: TestOpc = X86::TEST16ri; break;
1431 case MVT::i32: TestOpc = X86::TEST32ri; break;
1432 case MVT::i64: TestOpc = X86::TEST64ri32; break;
1433 }
1434 if (TestOpc) {
1435 unsigned OpReg = getRegForValue(TI->getOperand(0));
1436 if (OpReg == 0) return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001437 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TestOpc))
Chris Lattner2c8a4c32011-04-19 04:22:17 +00001438 .addReg(OpReg).addImm(1);
Eric Christopher0713a9d2011-06-08 23:55:35 +00001439
Chris Lattnerc59290a2011-04-19 04:26:32 +00001440 unsigned JmpOpc = X86::JNE_4;
1441 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1442 std::swap(TrueMBB, FalseMBB);
1443 JmpOpc = X86::JE_4;
1444 }
Eric Christopher0713a9d2011-06-08 23:55:35 +00001445
Rafael Espindolaea09c592014-02-18 22:05:46 +00001446 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(JmpOpc))
Chris Lattner2c8a4c32011-04-19 04:22:17 +00001447 .addMBB(TrueMBB);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001448 FastEmitBranch(FalseMBB, DbgLoc);
Juergen Ributzka454d3742014-06-13 00:45:11 +00001449 uint32_t BranchWeight = 0;
1450 if (FuncInfo.BPI)
1451 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1452 TrueMBB->getBasicBlock());
1453 FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
Chris Lattner2c8a4c32011-04-19 04:22:17 +00001454 return true;
1455 }
1456 }
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001457 } else if (foldX86XALUIntrinsic(CC, BI, BI->getCondition())) {
1458 // Fake request the condition, otherwise the intrinsic might be completely
1459 // optimized away.
1460 unsigned TmpReg = getRegForValue(BI->getCondition());
1461 if (TmpReg == 0)
1462 return false;
Juergen Ributzka2bce27e2014-06-24 23:51:21 +00001463
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001464 unsigned BranchOpc = X86::GetCondBranchFromCond(CC);
Juergen Ributzka2bce27e2014-06-24 23:51:21 +00001465
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001466 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
1467 .addMBB(TrueMBB);
1468 FastEmitBranch(FalseMBB, DbgLoc);
1469 uint32_t BranchWeight = 0;
1470 if (FuncInfo.BPI)
1471 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1472 TrueMBB->getBasicBlock());
1473 FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
1474 return true;
Dan Gohman1ab1d312008-10-02 22:15:21 +00001475 }
1476
1477 // Otherwise do a clumsy setcc and re-test it.
Eli Friedman0eea0292011-04-27 01:34:27 +00001478 // Note that i1 essentially gets ANY_EXTEND'ed to i8 where it isn't used
1479 // in an explicit cast, so make sure to handle that correctly.
Dan Gohman1ab1d312008-10-02 22:15:21 +00001480 unsigned OpReg = getRegForValue(BI->getCondition());
1481 if (OpReg == 0) return false;
1482
Rafael Espindolaea09c592014-02-18 22:05:46 +00001483 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
Eli Friedman0eea0292011-04-27 01:34:27 +00001484 .addReg(OpReg).addImm(1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001485 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JNE_4))
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001486 .addMBB(TrueMBB);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001487 FastEmitBranch(FalseMBB, DbgLoc);
Juergen Ributzka454d3742014-06-13 00:45:11 +00001488 uint32_t BranchWeight = 0;
1489 if (FuncInfo.BPI)
1490 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1491 TrueMBB->getBasicBlock());
1492 FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
Dan Gohmana5753b32008-09-05 01:06:14 +00001493 return true;
1494}
1495
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001496bool X86FastISel::X86SelectShift(const Instruction *I) {
Chris Lattnerb53ccb82011-04-17 20:23:29 +00001497 unsigned CReg = 0, OpReg = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +00001498 const TargetRegisterClass *RC = nullptr;
Duncan Sands9dff9be2010-02-15 16:12:20 +00001499 if (I->getType()->isIntegerTy(8)) {
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001500 CReg = X86::CL;
1501 RC = &X86::GR8RegClass;
1502 switch (I->getOpcode()) {
Chris Lattnerb53ccb82011-04-17 20:23:29 +00001503 case Instruction::LShr: OpReg = X86::SHR8rCL; break;
1504 case Instruction::AShr: OpReg = X86::SAR8rCL; break;
1505 case Instruction::Shl: OpReg = X86::SHL8rCL; break;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001506 default: return false;
1507 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00001508 } else if (I->getType()->isIntegerTy(16)) {
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001509 CReg = X86::CX;
1510 RC = &X86::GR16RegClass;
1511 switch (I->getOpcode()) {
Chris Lattnerb53ccb82011-04-17 20:23:29 +00001512 case Instruction::LShr: OpReg = X86::SHR16rCL; break;
1513 case Instruction::AShr: OpReg = X86::SAR16rCL; break;
1514 case Instruction::Shl: OpReg = X86::SHL16rCL; break;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001515 default: return false;
1516 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00001517 } else if (I->getType()->isIntegerTy(32)) {
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001518 CReg = X86::ECX;
1519 RC = &X86::GR32RegClass;
1520 switch (I->getOpcode()) {
Chris Lattnerb53ccb82011-04-17 20:23:29 +00001521 case Instruction::LShr: OpReg = X86::SHR32rCL; break;
1522 case Instruction::AShr: OpReg = X86::SAR32rCL; break;
1523 case Instruction::Shl: OpReg = X86::SHL32rCL; break;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001524 default: return false;
1525 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00001526 } else if (I->getType()->isIntegerTy(64)) {
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001527 CReg = X86::RCX;
1528 RC = &X86::GR64RegClass;
1529 switch (I->getOpcode()) {
Chris Lattnerb53ccb82011-04-17 20:23:29 +00001530 case Instruction::LShr: OpReg = X86::SHR64rCL; break;
1531 case Instruction::AShr: OpReg = X86::SAR64rCL; break;
1532 case Instruction::Shl: OpReg = X86::SHL64rCL; break;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001533 default: return false;
1534 }
1535 } else {
1536 return false;
1537 }
1538
Duncan Sandsf5dda012010-11-03 11:35:31 +00001539 MVT VT;
1540 if (!isTypeLegal(I->getType(), VT))
Dan Gohmandb06a992008-09-05 21:27:34 +00001541 return false;
1542
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001543 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1544 if (Op0Reg == 0) return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00001545
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001546 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1547 if (Op1Reg == 0) return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001548 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
Jakob Stoklund Olesen3bb12672010-07-11 03:31:00 +00001549 CReg).addReg(Op1Reg);
Dan Gohmand3917152008-10-07 21:50:36 +00001550
1551 // The shift instruction uses X86::CL. If we defined a super-register
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +00001552 // of X86::CL, emit a subreg KILL to precisely describe what we're doing here.
Dan Gohmand3917152008-10-07 21:50:36 +00001553 if (CReg != X86::CL)
Rafael Espindolaea09c592014-02-18 22:05:46 +00001554 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001555 TII.get(TargetOpcode::KILL), X86::CL)
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +00001556 .addReg(CReg, RegState::Kill);
Dan Gohmand3917152008-10-07 21:50:36 +00001557
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001558 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001559 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(OpReg), ResultReg)
Dan Gohmand7b5ce32010-07-10 09:00:22 +00001560 .addReg(Op0Reg);
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001561 UpdateValueMap(I, ResultReg);
1562 return true;
1563}
1564
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001565bool X86FastISel::X86SelectDivRem(const Instruction *I) {
1566 const static unsigned NumTypes = 4; // i8, i16, i32, i64
1567 const static unsigned NumOps = 4; // SDiv, SRem, UDiv, URem
1568 const static bool S = true; // IsSigned
1569 const static bool U = false; // !IsSigned
1570 const static unsigned Copy = TargetOpcode::COPY;
1571 // For the X86 DIV/IDIV instruction, in most cases the dividend
1572 // (numerator) must be in a specific register pair highreg:lowreg,
1573 // producing the quotient in lowreg and the remainder in highreg.
1574 // For most data types, to set up the instruction, the dividend is
1575 // copied into lowreg, and lowreg is sign-extended or zero-extended
1576 // into highreg. The exception is i8, where the dividend is defined
1577 // as a single register rather than a register pair, and we
1578 // therefore directly sign-extend or zero-extend the dividend into
1579 // lowreg, instead of copying, and ignore the highreg.
1580 const static struct DivRemEntry {
1581 // The following portion depends only on the data type.
1582 const TargetRegisterClass *RC;
1583 unsigned LowInReg; // low part of the register pair
1584 unsigned HighInReg; // high part of the register pair
1585 // The following portion depends on both the data type and the operation.
1586 struct DivRemResult {
1587 unsigned OpDivRem; // The specific DIV/IDIV opcode to use.
1588 unsigned OpSignExtend; // Opcode for sign-extending lowreg into
1589 // highreg, or copying a zero into highreg.
1590 unsigned OpCopy; // Opcode for copying dividend into lowreg, or
1591 // zero/sign-extending into lowreg for i8.
1592 unsigned DivRemResultReg; // Register containing the desired result.
1593 bool IsOpSigned; // Whether to use signed or unsigned form.
1594 } ResultTable[NumOps];
1595 } OpTable[NumTypes] = {
1596 { &X86::GR8RegClass, X86::AX, 0, {
1597 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AL, S }, // SDiv
1598 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AH, S }, // SRem
1599 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AL, U }, // UDiv
1600 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AH, U }, // URem
1601 }
1602 }, // i8
1603 { &X86::GR16RegClass, X86::AX, X86::DX, {
1604 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv
1605 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem
Tim Northover64ec0ff2013-05-30 13:19:42 +00001606 { X86::DIV16r, X86::MOV32r0, Copy, X86::AX, U }, // UDiv
1607 { X86::DIV16r, X86::MOV32r0, Copy, X86::DX, U }, // URem
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001608 }
1609 }, // i16
1610 { &X86::GR32RegClass, X86::EAX, X86::EDX, {
1611 { X86::IDIV32r, X86::CDQ, Copy, X86::EAX, S }, // SDiv
1612 { X86::IDIV32r, X86::CDQ, Copy, X86::EDX, S }, // SRem
1613 { X86::DIV32r, X86::MOV32r0, Copy, X86::EAX, U }, // UDiv
1614 { X86::DIV32r, X86::MOV32r0, Copy, X86::EDX, U }, // URem
1615 }
1616 }, // i32
1617 { &X86::GR64RegClass, X86::RAX, X86::RDX, {
1618 { X86::IDIV64r, X86::CQO, Copy, X86::RAX, S }, // SDiv
1619 { X86::IDIV64r, X86::CQO, Copy, X86::RDX, S }, // SRem
Tim Northover64ec0ff2013-05-30 13:19:42 +00001620 { X86::DIV64r, X86::MOV32r0, Copy, X86::RAX, U }, // UDiv
1621 { X86::DIV64r, X86::MOV32r0, Copy, X86::RDX, U }, // URem
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001622 }
1623 }, // i64
1624 };
1625
1626 MVT VT;
1627 if (!isTypeLegal(I->getType(), VT))
1628 return false;
1629
1630 unsigned TypeIndex, OpIndex;
1631 switch (VT.SimpleTy) {
1632 default: return false;
1633 case MVT::i8: TypeIndex = 0; break;
1634 case MVT::i16: TypeIndex = 1; break;
1635 case MVT::i32: TypeIndex = 2; break;
1636 case MVT::i64: TypeIndex = 3;
1637 if (!Subtarget->is64Bit())
1638 return false;
1639 break;
1640 }
1641
1642 switch (I->getOpcode()) {
1643 default: llvm_unreachable("Unexpected div/rem opcode");
1644 case Instruction::SDiv: OpIndex = 0; break;
1645 case Instruction::SRem: OpIndex = 1; break;
1646 case Instruction::UDiv: OpIndex = 2; break;
1647 case Instruction::URem: OpIndex = 3; break;
1648 }
1649
1650 const DivRemEntry &TypeEntry = OpTable[TypeIndex];
1651 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex];
1652 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1653 if (Op0Reg == 0)
1654 return false;
1655 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1656 if (Op1Reg == 0)
1657 return false;
1658
1659 // Move op0 into low-order input register.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001660 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001661 TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg);
1662 // Zero-extend or sign-extend into high-order input register.
1663 if (OpEntry.OpSignExtend) {
1664 if (OpEntry.IsOpSigned)
Rafael Espindolaea09c592014-02-18 22:05:46 +00001665 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001666 TII.get(OpEntry.OpSignExtend));
Tim Northover64ec0ff2013-05-30 13:19:42 +00001667 else {
1668 unsigned Zero32 = createResultReg(&X86::GR32RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001669 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Tim Northover64ec0ff2013-05-30 13:19:42 +00001670 TII.get(X86::MOV32r0), Zero32);
1671
1672 // Copy the zero into the appropriate sub/super/identical physical
1673 // register. Unfortunately the operations needed are not uniform enough to
1674 // fit neatly into the table above.
1675 if (VT.SimpleTy == MVT::i16) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001676 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher8f6a0832013-06-11 23:41:41 +00001677 TII.get(Copy), TypeEntry.HighInReg)
Tim Northover64ec0ff2013-05-30 13:19:42 +00001678 .addReg(Zero32, 0, X86::sub_16bit);
1679 } else if (VT.SimpleTy == MVT::i32) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001680 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher8f6a0832013-06-11 23:41:41 +00001681 TII.get(Copy), TypeEntry.HighInReg)
Tim Northover64ec0ff2013-05-30 13:19:42 +00001682 .addReg(Zero32);
1683 } else if (VT.SimpleTy == MVT::i64) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001684 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Tim Northover64ec0ff2013-05-30 13:19:42 +00001685 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg)
1686 .addImm(0).addReg(Zero32).addImm(X86::sub_32bit);
1687 }
1688 }
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001689 }
1690 // Generate the DIV/IDIV instruction.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001691 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001692 TII.get(OpEntry.OpDivRem)).addReg(Op1Reg);
Jim Grosbachc35388f2013-07-09 02:07:25 +00001693 // For i8 remainder, we can't reference AH directly, as we'll end
1694 // up with bogus copies like %R9B = COPY %AH. Reference AX
1695 // instead to prevent AH references in a REX instruction.
1696 //
1697 // The current assumption of the fast register allocator is that isel
1698 // won't generate explicit references to the GPR8_NOREX registers. If
1699 // the allocator and/or the backend get enhanced to be more robust in
1700 // that regard, this can be, and should be, removed.
1701 unsigned ResultReg = 0;
1702 if ((I->getOpcode() == Instruction::SRem ||
1703 I->getOpcode() == Instruction::URem) &&
1704 OpEntry.DivRemResultReg == X86::AH && Subtarget->is64Bit()) {
1705 unsigned SourceSuperReg = createResultReg(&X86::GR16RegClass);
1706 unsigned ResultSuperReg = createResultReg(&X86::GR16RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001707 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jim Grosbachc35388f2013-07-09 02:07:25 +00001708 TII.get(Copy), SourceSuperReg).addReg(X86::AX);
1709
1710 // Shift AX right by 8 bits instead of using AH.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001711 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::SHR16ri),
Jim Grosbachc35388f2013-07-09 02:07:25 +00001712 ResultSuperReg).addReg(SourceSuperReg).addImm(8);
1713
1714 // Now reference the 8-bit subreg of the result.
1715 ResultReg = FastEmitInst_extractsubreg(MVT::i8, ResultSuperReg,
1716 /*Kill=*/true, X86::sub_8bit);
1717 }
1718 // Copy the result out of the physreg if we haven't already.
1719 if (!ResultReg) {
1720 ResultReg = createResultReg(TypeEntry.RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001721 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Copy), ResultReg)
Jim Grosbachc35388f2013-07-09 02:07:25 +00001722 .addReg(OpEntry.DivRemResultReg);
1723 }
Eli Bendersky24a36eb2013-04-17 20:10:13 +00001724 UpdateValueMap(I, ResultReg);
1725
1726 return true;
1727}
1728
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001729/// \brief Emit a conditional move instruction (if the are supported) to lower
1730/// the select.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001731bool X86FastISel::X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I) {
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001732 // Check if the subtarget supports these instructions.
1733 if (!Subtarget->hasCMov())
Wesley Peck527da1b2010-11-23 03:31:01 +00001734 return false;
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001735
1736 // FIXME: Add support for i8.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001737 if (RetVT < MVT::i16 || RetVT > MVT::i64)
1738 return false;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001739
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001740 const Value *Cond = I->getOperand(0);
1741 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1742 bool NeedTest = true;
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001743 X86::CondCode CC = X86::COND_NE;
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001744
Juergen Ributzka345589e2014-06-27 17:16:34 +00001745 // Optimize conditions coming from a compare if both instructions are in the
Juergen Ributzka296833c2014-06-25 20:06:12 +00001746 // same basic block (values defined in other basic blocks may not have
1747 // initialized registers).
1748 const auto *CI = dyn_cast<CmpInst>(Cond);
1749 if (CI && (CI->getParent() == I->getParent())) {
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001750 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1751
1752 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
1753 static unsigned SETFOpcTable[2][3] = {
1754 { X86::SETNPr, X86::SETEr , X86::TEST8rr },
1755 { X86::SETPr, X86::SETNEr, X86::OR8rr }
1756 };
1757 unsigned *SETFOpc = nullptr;
1758 switch (Predicate) {
1759 default: break;
1760 case CmpInst::FCMP_OEQ:
1761 SETFOpc = &SETFOpcTable[0][0];
1762 Predicate = CmpInst::ICMP_NE;
1763 break;
1764 case CmpInst::FCMP_UNE:
1765 SETFOpc = &SETFOpcTable[1][0];
1766 Predicate = CmpInst::ICMP_NE;
1767 break;
1768 }
1769
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001770 bool NeedSwap;
Craig Topper9f62d802014-06-27 05:18:21 +00001771 std::tie(CC, NeedSwap) = getX86ConditionCode(Predicate);
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001772 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001773
1774 const Value *CmpLHS = CI->getOperand(0);
1775 const Value *CmpRHS = CI->getOperand(1);
1776 if (NeedSwap)
1777 std::swap(CmpLHS, CmpRHS);
1778
1779 EVT CmpVT = TLI.getValueType(CmpLHS->getType());
1780 // Emit a compare of the LHS and RHS, setting the flags.
1781 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT))
1782 return false;
1783
1784 if (SETFOpc) {
1785 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1786 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1787 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1788 FlagReg1);
1789 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1790 FlagReg2);
1791 auto const &II = TII.get(SETFOpc[2]);
1792 if (II.getNumDefs()) {
1793 unsigned TmpReg = createResultReg(&X86::GR8RegClass);
1794 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, TmpReg)
1795 .addReg(FlagReg2).addReg(FlagReg1);
1796 } else {
1797 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1798 .addReg(FlagReg2).addReg(FlagReg1);
1799 }
1800 }
1801 NeedTest = false;
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001802 } else if (foldX86XALUIntrinsic(CC, I, Cond)) {
1803 // Fake request the condition, otherwise the intrinsic might be completely
1804 // optimized away.
1805 unsigned TmpReg = getRegForValue(Cond);
1806 if (TmpReg == 0)
1807 return false;
Juergen Ributzka2bce27e2014-06-24 23:51:21 +00001808
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001809 NeedTest = false;
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001810 }
1811
1812 if (NeedTest) {
1813 // Selects operate on i1, however, CondReg is 8 bits width and may contain
1814 // garbage. Indeed, only the less significant bit is supposed to be
1815 // accurate. If we read more than the lsb, we may see non-zero values
1816 // whereas lsb is zero. Therefore, we have to truncate Op0Reg to i1 for
1817 // the select. This is achieved by performing TEST against 1.
1818 unsigned CondReg = getRegForValue(Cond);
1819 if (CondReg == 0)
1820 return false;
1821 bool CondIsKill = hasTrivialKill(Cond);
1822
1823 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1824 .addReg(CondReg, getKillRegState(CondIsKill)).addImm(1);
1825 }
1826
1827 const Value *LHS = I->getOperand(1);
1828 const Value *RHS = I->getOperand(2);
1829
1830 unsigned RHSReg = getRegForValue(RHS);
1831 bool RHSIsKill = hasTrivialKill(RHS);
1832
1833 unsigned LHSReg = getRegForValue(LHS);
1834 bool LHSIsKill = hasTrivialKill(LHS);
1835
1836 if (!LHSReg || !RHSReg)
1837 return false;
1838
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001839 unsigned Opc = X86::getCMovFromCond(CC, RC->getSize());
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001840 unsigned ResultReg = FastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill,
1841 LHSReg, LHSIsKill);
Dan Gohman7d7a26df2008-09-05 18:30:08 +00001842 UpdateValueMap(I, ResultReg);
1843 return true;
1844}
1845
Juergen Ributzka21d56082014-06-23 21:55:40 +00001846/// \brief Emit SSE instructions to lower the select.
1847///
1848/// Try to use SSE1/SSE2 instructions to simulate a select without branches.
1849/// This lowers fp selects into a CMP/AND/ANDN/OR sequence when the necessary
1850/// SSE instructions are available.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001851bool X86FastISel::X86FastEmitSSESelect(MVT RetVT, const Instruction *I) {
Juergen Ributzka345589e2014-06-27 17:16:34 +00001852 // Optimize conditions coming from a compare if both instructions are in the
Juergen Ributzka296833c2014-06-25 20:06:12 +00001853 // same basic block (values defined in other basic blocks may not have
1854 // initialized registers).
Juergen Ributzka21d56082014-06-23 21:55:40 +00001855 const auto *CI = dyn_cast<FCmpInst>(I->getOperand(0));
Juergen Ributzka296833c2014-06-25 20:06:12 +00001856 if (!CI || (CI->getParent() != I->getParent()))
Juergen Ributzka21d56082014-06-23 21:55:40 +00001857 return false;
1858
1859 if (I->getType() != CI->getOperand(0)->getType() ||
1860 !((Subtarget->hasSSE1() && RetVT == MVT::f32) ||
1861 (Subtarget->hasSSE2() && RetVT == MVT::f64) ))
1862 return false;
1863
1864 const Value *CmpLHS = CI->getOperand(0);
1865 const Value *CmpRHS = CI->getOperand(1);
1866 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1867
1868 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1869 // We don't have to materialize a zero constant for this case and can just use
1870 // %x again on the RHS.
1871 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1872 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
1873 if (CmpRHSC && CmpRHSC->isNullValue())
1874 CmpRHS = CmpLHS;
1875 }
1876
1877 unsigned CC;
1878 bool NeedSwap;
Juergen Ributzka345589e2014-06-27 17:16:34 +00001879 std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate);
Juergen Ributzka21d56082014-06-23 21:55:40 +00001880 if (CC > 7)
1881 return false;
1882
1883 if (NeedSwap)
1884 std::swap(CmpLHS, CmpRHS);
1885
1886 static unsigned OpcTable[2][2][4] = {
1887 { { X86::CMPSSrr, X86::FsANDPSrr, X86::FsANDNPSrr, X86::FsORPSrr },
1888 { X86::VCMPSSrr, X86::VFsANDPSrr, X86::VFsANDNPSrr, X86::VFsORPSrr } },
1889 { { X86::CMPSDrr, X86::FsANDPDrr, X86::FsANDNPDrr, X86::FsORPDrr },
1890 { X86::VCMPSDrr, X86::VFsANDPDrr, X86::VFsANDNPDrr, X86::VFsORPDrr } }
1891 };
1892
1893 bool HasAVX = Subtarget->hasAVX();
1894 unsigned *Opc = nullptr;
1895 switch (RetVT.SimpleTy) {
1896 default: return false;
1897 case MVT::f32: Opc = &OpcTable[0][HasAVX][0]; break;
1898 case MVT::f64: Opc = &OpcTable[1][HasAVX][0]; break;
1899 }
1900
1901 const Value *LHS = I->getOperand(1);
1902 const Value *RHS = I->getOperand(2);
1903
1904 unsigned LHSReg = getRegForValue(LHS);
1905 bool LHSIsKill = hasTrivialKill(LHS);
1906
1907 unsigned RHSReg = getRegForValue(RHS);
1908 bool RHSIsKill = hasTrivialKill(RHS);
1909
1910 unsigned CmpLHSReg = getRegForValue(CmpLHS);
1911 bool CmpLHSIsKill = hasTrivialKill(CmpLHS);
1912
1913 unsigned CmpRHSReg = getRegForValue(CmpRHS);
1914 bool CmpRHSIsKill = hasTrivialKill(CmpRHS);
1915
1916 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS)
1917 return false;
1918
1919 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1920 unsigned CmpReg = FastEmitInst_rri(Opc[0], RC, CmpLHSReg, CmpLHSIsKill,
1921 CmpRHSReg, CmpRHSIsKill, CC);
1922 unsigned AndReg = FastEmitInst_rr(Opc[1], RC, CmpReg, /*IsKill=*/false,
1923 LHSReg, LHSIsKill);
1924 unsigned AndNReg = FastEmitInst_rr(Opc[2], RC, CmpReg, /*IsKill=*/true,
1925 RHSReg, RHSIsKill);
1926 unsigned ResultReg = FastEmitInst_rr(Opc[3], RC, AndNReg, /*IsKill=*/true,
1927 AndReg, /*IsKill=*/true);
1928 UpdateValueMap(I, ResultReg);
1929 return true;
1930}
1931
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00001932bool X86FastISel::X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I) {
Juergen Ributzkaaed5c962014-06-23 21:55:44 +00001933 // These are pseudo CMOV instructions and will be later expanded into control-
1934 // flow.
1935 unsigned Opc;
1936 switch (RetVT.SimpleTy) {
1937 default: return false;
1938 case MVT::i8: Opc = X86::CMOV_GR8; break;
1939 case MVT::i16: Opc = X86::CMOV_GR16; break;
1940 case MVT::i32: Opc = X86::CMOV_GR32; break;
1941 case MVT::f32: Opc = X86::CMOV_FR32; break;
1942 case MVT::f64: Opc = X86::CMOV_FR64; break;
1943 }
1944
1945 const Value *Cond = I->getOperand(0);
1946 X86::CondCode CC = X86::COND_NE;
Juergen Ributzka296833c2014-06-25 20:06:12 +00001947
Juergen Ributzka345589e2014-06-27 17:16:34 +00001948 // Optimize conditions coming from a compare if both instructions are in the
Juergen Ributzka296833c2014-06-25 20:06:12 +00001949 // same basic block (values defined in other basic blocks may not have
1950 // initialized registers).
1951 const auto *CI = dyn_cast<CmpInst>(Cond);
1952 if (CI && (CI->getParent() == I->getParent())) {
Juergen Ributzkaaed5c962014-06-23 21:55:44 +00001953 bool NeedSwap;
Craig Topper9f62d802014-06-27 05:18:21 +00001954 std::tie(CC, NeedSwap) = getX86ConditionCode(CI->getPredicate());
Juergen Ributzkaaed5c962014-06-23 21:55:44 +00001955 if (CC > X86::LAST_VALID_COND)
1956 return false;
1957
1958 const Value *CmpLHS = CI->getOperand(0);
1959 const Value *CmpRHS = CI->getOperand(1);
1960
1961 if (NeedSwap)
1962 std::swap(CmpLHS, CmpRHS);
1963
1964 EVT CmpVT = TLI.getValueType(CmpLHS->getType());
1965 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT))
1966 return false;
1967 } else {
1968 unsigned CondReg = getRegForValue(Cond);
1969 if (CondReg == 0)
1970 return false;
1971 bool CondIsKill = hasTrivialKill(Cond);
1972 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1973 .addReg(CondReg, getKillRegState(CondIsKill)).addImm(1);
1974 }
1975
1976 const Value *LHS = I->getOperand(1);
1977 const Value *RHS = I->getOperand(2);
1978
1979 unsigned LHSReg = getRegForValue(LHS);
1980 bool LHSIsKill = hasTrivialKill(LHS);
1981
1982 unsigned RHSReg = getRegForValue(RHS);
1983 bool RHSIsKill = hasTrivialKill(RHS);
1984
1985 if (!LHSReg || !RHSReg)
1986 return false;
1987
1988 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1989
1990 unsigned ResultReg =
1991 FastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC);
1992 UpdateValueMap(I, ResultReg);
1993 return true;
1994}
1995
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00001996bool X86FastISel::X86SelectSelect(const Instruction *I) {
1997 MVT RetVT;
1998 if (!isTypeLegal(I->getType(), RetVT))
1999 return false;
2000
2001 // Check if we can fold the select.
2002 if (const auto *CI = dyn_cast<CmpInst>(I->getOperand(0))) {
2003 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2004 const Value *Opnd = nullptr;
2005 switch (Predicate) {
2006 default: break;
2007 case CmpInst::FCMP_FALSE: Opnd = I->getOperand(2); break;
2008 case CmpInst::FCMP_TRUE: Opnd = I->getOperand(1); break;
2009 }
2010 // No need for a select anymore - this is an unconditional move.
2011 if (Opnd) {
2012 unsigned OpReg = getRegForValue(Opnd);
2013 if (OpReg == 0)
2014 return false;
2015 bool OpIsKill = hasTrivialKill(Opnd);
2016 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
2017 unsigned ResultReg = createResultReg(RC);
2018 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2019 TII.get(TargetOpcode::COPY), ResultReg)
2020 .addReg(OpReg, getKillRegState(OpIsKill));
2021 UpdateValueMap(I, ResultReg);
2022 return true;
2023 }
2024 }
2025
2026 // First try to use real conditional move instructions.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00002027 if (X86FastEmitCMoveSelect(RetVT, I))
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00002028 return true;
2029
Juergen Ributzka345589e2014-06-27 17:16:34 +00002030 // Try to use a sequence of SSE instructions to simulate a conditional move.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00002031 if (X86FastEmitSSESelect(RetVT, I))
Juergen Ributzka21d56082014-06-23 21:55:40 +00002032 return true;
2033
Juergen Ributzkaaed5c962014-06-23 21:55:44 +00002034 // Fall-back to pseudo conditional move instructions, which will be later
2035 // converted to control-flow.
Juergen Ributzkaa13d7d62014-06-25 22:50:59 +00002036 if (X86FastEmitPseudoSelect(RetVT, I))
Juergen Ributzkaaed5c962014-06-23 21:55:44 +00002037 return true;
2038
Juergen Ributzka6ef06f92014-06-23 21:55:36 +00002039 return false;
2040}
2041
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002042bool X86FastISel::X86SelectFPExt(const Instruction *I) {
Chris Lattnera0f9d492008-10-15 05:07:36 +00002043 // fpext from float to double.
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00002044 if (X86ScalarSSEf64 &&
Chris Lattnerfdd87902009-10-05 05:54:46 +00002045 I->getType()->isDoubleTy()) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002046 const Value *V = I->getOperand(0);
Chris Lattnerfdd87902009-10-05 05:54:46 +00002047 if (V->getType()->isFloatTy()) {
Chris Lattnera0f9d492008-10-15 05:07:36 +00002048 unsigned OpReg = getRegForValue(V);
2049 if (OpReg == 0) return false;
Craig Topperabadc662012-04-20 06:31:50 +00002050 unsigned ResultReg = createResultReg(&X86::FR64RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002051 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00002052 TII.get(X86::CVTSS2SDrr), ResultReg)
2053 .addReg(OpReg);
Chris Lattnera0f9d492008-10-15 05:07:36 +00002054 UpdateValueMap(I, ResultReg);
2055 return true;
Dan Gohmanbf646f22008-09-10 21:02:08 +00002056 }
2057 }
2058
2059 return false;
2060}
2061
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002062bool X86FastISel::X86SelectFPTrunc(const Instruction *I) {
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00002063 if (X86ScalarSSEf64) {
Chris Lattnerfdd87902009-10-05 05:54:46 +00002064 if (I->getType()->isFloatTy()) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002065 const Value *V = I->getOperand(0);
Chris Lattnerfdd87902009-10-05 05:54:46 +00002066 if (V->getType()->isDoubleTy()) {
Dan Gohmanbf646f22008-09-10 21:02:08 +00002067 unsigned OpReg = getRegForValue(V);
2068 if (OpReg == 0) return false;
Craig Topperabadc662012-04-20 06:31:50 +00002069 unsigned ResultReg = createResultReg(&X86::FR32RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002070 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00002071 TII.get(X86::CVTSD2SSrr), ResultReg)
2072 .addReg(OpReg);
Dan Gohmanbf646f22008-09-10 21:02:08 +00002073 UpdateValueMap(I, ResultReg);
2074 return true;
2075 }
2076 }
2077 }
2078
2079 return false;
2080}
2081
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002082bool X86FastISel::X86SelectTrunc(const Instruction *I) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002083 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
2084 EVT DstVT = TLI.getValueType(I->getType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002085
Eli Friedmanc7035512011-05-25 23:49:02 +00002086 // This code only handles truncation to byte.
Owen Anderson9f944592009-08-11 20:47:22 +00002087 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Chengb9286692008-09-07 08:47:42 +00002088 return false;
Eli Friedmanc7035512011-05-25 23:49:02 +00002089 if (!TLI.isTypeLegal(SrcVT))
Evan Chengb9286692008-09-07 08:47:42 +00002090 return false;
2091
2092 unsigned InputReg = getRegForValue(I->getOperand(0));
2093 if (!InputReg)
2094 // Unhandled operand. Halt "fast" selection and bail.
2095 return false;
2096
Eli Friedmanc7035512011-05-25 23:49:02 +00002097 if (SrcVT == MVT::i8) {
2098 // Truncate from i8 to i1; no code needed.
2099 UpdateValueMap(I, InputReg);
2100 return true;
2101 }
Evan Chengb9286692008-09-07 08:47:42 +00002102
Eli Friedmanc7035512011-05-25 23:49:02 +00002103 if (!Subtarget->is64Bit()) {
2104 // If we're on x86-32; we can't extract an i8 from a general register.
2105 // First issue a copy to GR16_ABCD or GR32_ABCD.
Craig Topperabadc662012-04-20 06:31:50 +00002106 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16) ?
2107 (const TargetRegisterClass*)&X86::GR16_ABCDRegClass :
2108 (const TargetRegisterClass*)&X86::GR32_ABCDRegClass;
Eli Friedmanc7035512011-05-25 23:49:02 +00002109 unsigned CopyReg = createResultReg(CopyRC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002110 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
Eli Friedmanc7035512011-05-25 23:49:02 +00002111 CopyReg).addReg(InputReg);
2112 InputReg = CopyReg;
2113 }
2114
2115 // Issue an extract_subreg.
Owen Anderson9f944592009-08-11 20:47:22 +00002116 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Eli Friedmanc7035512011-05-25 23:49:02 +00002117 InputReg, /*Kill=*/true,
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002118 X86::sub_8bit);
Evan Chengb9286692008-09-07 08:47:42 +00002119 if (!ResultReg)
2120 return false;
2121
2122 UpdateValueMap(I, ResultReg);
2123 return true;
2124}
2125
Eli Friedman60afcc22011-05-20 22:21:04 +00002126bool X86FastISel::IsMemcpySmall(uint64_t Len) {
2127 return Len <= (Subtarget->is64Bit() ? 32 : 16);
2128}
2129
Eli Friedmanbcc69142011-04-27 01:45:07 +00002130bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
2131 X86AddressMode SrcAM, uint64_t Len) {
Eli Friedman60afcc22011-05-20 22:21:04 +00002132
Eli Friedmanbcc69142011-04-27 01:45:07 +00002133 // Make sure we don't bloat code by inlining very large memcpy's.
Eli Friedman60afcc22011-05-20 22:21:04 +00002134 if (!IsMemcpySmall(Len))
2135 return false;
2136
2137 bool i64Legal = Subtarget->is64Bit();
Eli Friedmanbcc69142011-04-27 01:45:07 +00002138
2139 // We don't care about alignment here since we just emit integer accesses.
2140 while (Len) {
2141 MVT VT;
2142 if (Len >= 8 && i64Legal)
2143 VT = MVT::i64;
2144 else if (Len >= 4)
2145 VT = MVT::i32;
2146 else if (Len >= 2)
2147 VT = MVT::i16;
2148 else {
Eli Friedmanbcc69142011-04-27 01:45:07 +00002149 VT = MVT::i8;
2150 }
2151
2152 unsigned Reg;
Juergen Ributzka349777d2014-06-12 23:27:57 +00002153 bool RV = X86FastEmitLoad(VT, SrcAM, nullptr, Reg);
2154 RV &= X86FastEmitStore(VT, Reg, /*Kill=*/true, DestAM);
Eli Friedmanbcc69142011-04-27 01:45:07 +00002155 assert(RV && "Failed to emit load or store??");
2156
2157 unsigned Size = VT.getSizeInBits()/8;
2158 Len -= Size;
2159 DestAM.Disp += Size;
2160 SrcAM.Disp += Size;
2161 }
2162
2163 return true;
2164}
2165
Juergen Ributzka3566c082014-07-15 06:35:50 +00002166bool X86FastISel::FastLowerIntrinsicCall(const IntrinsicInst *II) {
Bill Wendling80b34b32008-12-09 02:42:50 +00002167 // FIXME: Handle more intrinsics.
Juergen Ributzka3566c082014-07-15 06:35:50 +00002168 switch (II->getIntrinsicID()) {
Bill Wendling80b34b32008-12-09 02:42:50 +00002169 default: return false;
Juergen Ributzka4dc95872014-06-11 21:44:44 +00002170 case Intrinsic::frameaddress: {
Juergen Ributzka3566c082014-07-15 06:35:50 +00002171 Type *RetTy = II->getCalledFunction()->getReturnType();
Juergen Ributzka4dc95872014-06-11 21:44:44 +00002172
2173 MVT VT;
2174 if (!isTypeLegal(RetTy, VT))
2175 return false;
2176
2177 unsigned Opc;
2178 const TargetRegisterClass *RC = nullptr;
2179
2180 switch (VT.SimpleTy) {
2181 default: llvm_unreachable("Invalid result type for frameaddress.");
2182 case MVT::i32: Opc = X86::MOV32rm; RC = &X86::GR32RegClass; break;
2183 case MVT::i64: Opc = X86::MOV64rm; RC = &X86::GR64RegClass; break;
2184 }
2185
2186 // This needs to be set before we call getFrameRegister, otherwise we get
2187 // the wrong frame register.
2188 MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
2189 MFI->setFrameAddressIsTaken(true);
2190
2191 const X86RegisterInfo *RegInfo =
2192 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2193 unsigned FrameReg = RegInfo->getFrameRegister(*(FuncInfo.MF));
2194 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
2195 (FrameReg == X86::EBP && VT == MVT::i32)) &&
2196 "Invalid Frame Register!");
2197
2198 // Always make a copy of the frame register to to a vreg first, so that we
2199 // never directly reference the frame register (the TwoAddressInstruction-
2200 // Pass doesn't like that).
2201 unsigned SrcReg = createResultReg(RC);
2202 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2203 TII.get(TargetOpcode::COPY), SrcReg).addReg(FrameReg);
2204
2205 // Now recursively load from the frame address.
2206 // movq (%rbp), %rax
2207 // movq (%rax), %rax
2208 // movq (%rax), %rax
2209 // ...
2210 unsigned DestReg;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002211 unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue();
Juergen Ributzka4dc95872014-06-11 21:44:44 +00002212 while (Depth--) {
2213 DestReg = createResultReg(RC);
2214 addDirectMem(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2215 TII.get(Opc), DestReg), SrcReg);
2216 SrcReg = DestReg;
2217 }
2218
Juergen Ributzka3566c082014-07-15 06:35:50 +00002219 UpdateValueMap(II, SrcReg);
Juergen Ributzka4dc95872014-06-11 21:44:44 +00002220 return true;
2221 }
Chris Lattner91328b32011-04-19 05:52:03 +00002222 case Intrinsic::memcpy: {
Juergen Ributzka3566c082014-07-15 06:35:50 +00002223 const MemCpyInst *MCI = cast<MemCpyInst>(II);
Chris Lattner91328b32011-04-19 05:52:03 +00002224 // Don't handle volatile or variable length memcpys.
Juergen Ributzka3566c082014-07-15 06:35:50 +00002225 if (MCI->isVolatile())
Chris Lattner91328b32011-04-19 05:52:03 +00002226 return false;
Eli Friedmanbcc69142011-04-27 01:45:07 +00002227
Juergen Ributzka3566c082014-07-15 06:35:50 +00002228 if (isa<ConstantInt>(MCI->getLength())) {
Eli Friedmancd2124a2011-06-10 23:39:36 +00002229 // Small memcpy's are common enough that we want to do them
2230 // without a call if possible.
Juergen Ributzka3566c082014-07-15 06:35:50 +00002231 uint64_t Len = cast<ConstantInt>(MCI->getLength())->getZExtValue();
Eli Friedmancd2124a2011-06-10 23:39:36 +00002232 if (IsMemcpySmall(Len)) {
2233 X86AddressMode DestAM, SrcAM;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002234 if (!X86SelectAddress(MCI->getRawDest(), DestAM) ||
2235 !X86SelectAddress(MCI->getRawSource(), SrcAM))
Eli Friedmancd2124a2011-06-10 23:39:36 +00002236 return false;
2237 TryEmitSmallMemcpy(DestAM, SrcAM, Len);
2238 return true;
2239 }
2240 }
Eric Christopher0713a9d2011-06-08 23:55:35 +00002241
Eli Friedmancd2124a2011-06-10 23:39:36 +00002242 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002243 if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth))
Chris Lattner91328b32011-04-19 05:52:03 +00002244 return false;
Eli Friedmanbcc69142011-04-27 01:45:07 +00002245
Juergen Ributzka3566c082014-07-15 06:35:50 +00002246 if (MCI->getSourceAddressSpace() > 255 || MCI->getDestAddressSpace() > 255)
Eli Friedmancd2124a2011-06-10 23:39:36 +00002247 return false;
2248
Juergen Ributzka3566c082014-07-15 06:35:50 +00002249 return LowerCallTo(II, "memcpy", II->getNumArgOperands() - 2);
Chris Lattner91328b32011-04-19 05:52:03 +00002250 }
Eli Friedmancd2124a2011-06-10 23:39:36 +00002251 case Intrinsic::memset: {
Juergen Ributzka3566c082014-07-15 06:35:50 +00002252 const MemSetInst *MSI = cast<MemSetInst>(II);
Eric Christopher0713a9d2011-06-08 23:55:35 +00002253
Juergen Ributzka3566c082014-07-15 06:35:50 +00002254 if (MSI->isVolatile())
Nick Lewyckya530a4d2011-08-02 00:40:16 +00002255 return false;
2256
Eli Friedmancd2124a2011-06-10 23:39:36 +00002257 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002258 if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth))
Eli Friedmancd2124a2011-06-10 23:39:36 +00002259 return false;
2260
Juergen Ributzka3566c082014-07-15 06:35:50 +00002261 if (MSI->getDestAddressSpace() > 255)
Eli Friedmancd2124a2011-06-10 23:39:36 +00002262 return false;
2263
Juergen Ributzka3566c082014-07-15 06:35:50 +00002264 return LowerCallTo(II, "memset", II->getNumArgOperands() - 2);
Eli Friedmancd2124a2011-06-10 23:39:36 +00002265 }
Eric Christopher52ecfdf2010-03-18 20:27:26 +00002266 case Intrinsic::stackprotector: {
Chad Rosier06e34d92012-05-11 19:43:29 +00002267 // Emit code to store the stack guard onto the stack.
Eric Christopher52ecfdf2010-03-18 20:27:26 +00002268 EVT PtrTy = TLI.getPointerTy();
2269
Juergen Ributzka3566c082014-07-15 06:35:50 +00002270 const Value *Op1 = II->getArgOperand(0); // The guard's value.
2271 const AllocaInst *Slot = cast<AllocaInst>(II->getArgOperand(1));
Eric Christopher52ecfdf2010-03-18 20:27:26 +00002272
Josh Magee22b8ba22013-12-19 03:17:11 +00002273 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]);
2274
Eric Christopher52ecfdf2010-03-18 20:27:26 +00002275 // Grab the frame index.
2276 X86AddressMode AM;
2277 if (!X86SelectAddress(Slot, AM)) return false;
Eric Christopher5e95aee2010-03-18 21:58:33 +00002278 if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
Eric Christopher52ecfdf2010-03-18 20:27:26 +00002279 return true;
2280 }
Dale Johannesend5575f22010-01-26 00:09:58 +00002281 case Intrinsic::dbg_declare: {
Juergen Ributzka3566c082014-07-15 06:35:50 +00002282 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
Dale Johannesend5575f22010-01-26 00:09:58 +00002283 X86AddressMode AM;
Dale Johannesenad00f032010-01-29 21:21:28 +00002284 assert(DI->getAddress() && "Null address should be checked earlier!");
Dale Johannesend5575f22010-01-26 00:09:58 +00002285 if (!X86SelectAddress(DI->getAddress(), AM))
2286 return false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00002287 const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dale Johannesen654528e2010-02-18 18:51:15 +00002288 // FIXME may need to add RegState::Debug to any registers produced,
2289 // although ESP/EBP should be the only ones at the moment.
Rafael Espindolaea09c592014-02-18 22:05:46 +00002290 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II), AM).
Dan Gohmand7b5ce32010-07-10 09:00:22 +00002291 addImm(0).addMetadata(DI->getVariable());
Dale Johannesend5575f22010-01-26 00:09:58 +00002292 return true;
2293 }
Eric Christopher7eb6e0f2010-01-18 22:11:29 +00002294 case Intrinsic::trap: {
Rafael Espindolaea09c592014-02-18 22:05:46 +00002295 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TRAP));
Eric Christopher7eb6e0f2010-01-18 22:11:29 +00002296 return true;
2297 }
Juergen Ributzka272b5702014-06-11 23:11:02 +00002298 case Intrinsic::sqrt: {
2299 if (!Subtarget->hasSSE1())
2300 return false;
2301
Juergen Ributzka3566c082014-07-15 06:35:50 +00002302 Type *RetTy = II->getCalledFunction()->getReturnType();
Juergen Ributzka272b5702014-06-11 23:11:02 +00002303
2304 MVT VT;
2305 if (!isTypeLegal(RetTy, VT))
2306 return false;
2307
Juergen Ributzka345589e2014-06-27 17:16:34 +00002308 // Unfortunately we can't use FastEmit_r, because the AVX version of FSQRT
Juergen Ributzka272b5702014-06-11 23:11:02 +00002309 // is not generated by FastISel yet.
2310 // FIXME: Update this code once tablegen can handle it.
2311 static const unsigned SqrtOpc[2][2] = {
2312 {X86::SQRTSSr, X86::VSQRTSSr},
2313 {X86::SQRTSDr, X86::VSQRTSDr}
2314 };
2315 bool HasAVX = Subtarget->hasAVX();
2316 unsigned Opc;
2317 const TargetRegisterClass *RC;
2318 switch (VT.SimpleTy) {
2319 default: return false;
2320 case MVT::f32: Opc = SqrtOpc[0][HasAVX]; RC = &X86::FR32RegClass; break;
2321 case MVT::f64: Opc = SqrtOpc[1][HasAVX]; RC = &X86::FR64RegClass; break;
2322 }
2323
Juergen Ributzka3566c082014-07-15 06:35:50 +00002324 const Value *SrcVal = II->getArgOperand(0);
Juergen Ributzka272b5702014-06-11 23:11:02 +00002325 unsigned SrcReg = getRegForValue(SrcVal);
2326
2327 if (SrcReg == 0)
2328 return false;
2329
2330 unsigned ImplicitDefReg = 0;
2331 if (HasAVX) {
2332 ImplicitDefReg = createResultReg(RC);
2333 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2334 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2335 }
2336
2337 unsigned ResultReg = createResultReg(RC);
2338 MachineInstrBuilder MIB;
2339 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
2340 ResultReg);
2341
2342 if (ImplicitDefReg)
2343 MIB.addReg(ImplicitDefReg);
2344
2345 MIB.addReg(SrcReg);
2346
Juergen Ributzka3566c082014-07-15 06:35:50 +00002347 UpdateValueMap(II, ResultReg);
Juergen Ributzka272b5702014-06-11 23:11:02 +00002348 return true;
2349 }
Bill Wendling80b34b32008-12-09 02:42:50 +00002350 case Intrinsic::sadd_with_overflow:
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002351 case Intrinsic::uadd_with_overflow:
2352 case Intrinsic::ssub_with_overflow:
2353 case Intrinsic::usub_with_overflow:
2354 case Intrinsic::smul_with_overflow:
2355 case Intrinsic::umul_with_overflow: {
2356 // This implements the basic lowering of the xalu with overflow intrinsics
Juergen Ributzka345589e2014-06-27 17:16:34 +00002357 // into add/sub/mul followed by either seto or setb.
Juergen Ributzka3566c082014-07-15 06:35:50 +00002358 const Function *Callee = II->getCalledFunction();
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002359 auto *Ty = cast<StructType>(Callee->getReturnType());
2360 Type *RetTy = Ty->getTypeAtIndex(0U);
2361 Type *CondTy = Ty->getTypeAtIndex(1);
Bill Wendling80b34b32008-12-09 02:42:50 +00002362
Duncan Sandsf5dda012010-11-03 11:35:31 +00002363 MVT VT;
Bill Wendling80b34b32008-12-09 02:42:50 +00002364 if (!isTypeLegal(RetTy, VT))
2365 return false;
2366
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002367 if (VT < MVT::i8 || VT > MVT::i64)
Bill Wendling80b34b32008-12-09 02:42:50 +00002368 return false;
2369
Juergen Ributzka3566c082014-07-15 06:35:50 +00002370 const Value *LHS = II->getArgOperand(0);
2371 const Value *RHS = II->getArgOperand(1);
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002372
Juergen Ributzka345589e2014-06-27 17:16:34 +00002373 // Canonicalize immediate to the RHS.
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002374 if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
Juergen Ributzka3566c082014-07-15 06:35:50 +00002375 isCommutativeIntrinsic(II))
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002376 std::swap(LHS, RHS);
2377
2378 unsigned BaseOpc, CondOpc;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002379 switch (II->getIntrinsicID()) {
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002380 default: llvm_unreachable("Unexpected intrinsic!");
2381 case Intrinsic::sadd_with_overflow:
2382 BaseOpc = ISD::ADD; CondOpc = X86::SETOr; break;
2383 case Intrinsic::uadd_with_overflow:
2384 BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break;
2385 case Intrinsic::ssub_with_overflow:
2386 BaseOpc = ISD::SUB; CondOpc = X86::SETOr; break;
2387 case Intrinsic::usub_with_overflow:
2388 BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
2389 case Intrinsic::smul_with_overflow:
Juergen Ributzka665ea712014-07-07 21:52:21 +00002390 BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002391 case Intrinsic::umul_with_overflow:
2392 BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
2393 }
2394
2395 unsigned LHSReg = getRegForValue(LHS);
2396 if (LHSReg == 0)
2397 return false;
2398 bool LHSIsKill = hasTrivialKill(LHS);
2399
2400 unsigned ResultReg = 0;
2401 // Check if we have an immediate version.
2402 if (auto const *C = dyn_cast<ConstantInt>(RHS)) {
2403 ResultReg = FastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill,
2404 C->getZExtValue());
2405 }
2406
2407 unsigned RHSReg;
2408 bool RHSIsKill;
2409 if (!ResultReg) {
2410 RHSReg = getRegForValue(RHS);
2411 if (RHSReg == 0)
2412 return false;
2413 RHSIsKill = hasTrivialKill(RHS);
2414 ResultReg = FastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg,
2415 RHSIsKill);
2416 }
2417
Juergen Ributzka665ea712014-07-07 21:52:21 +00002418 // FastISel doesn't have a pattern for all X86::MUL*r and X86::IMUL*r. Emit
2419 // it manually.
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002420 if (BaseOpc == X86ISD::UMUL && !ResultReg) {
2421 static const unsigned MULOpc[] =
Juergen Ributzka665ea712014-07-07 21:52:21 +00002422 { X86::MUL8r, X86::MUL16r, X86::MUL32r, X86::MUL64r };
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002423 static const unsigned Reg[] = { X86::AL, X86::AX, X86::EAX, X86::RAX };
2424 // First copy the first operand into RAX, which is an implicit input to
2425 // the X86::MUL*r instruction.
2426 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2427 TII.get(TargetOpcode::COPY), Reg[VT.SimpleTy-MVT::i8])
2428 .addReg(LHSReg, getKillRegState(LHSIsKill));
2429 ResultReg = FastEmitInst_r(MULOpc[VT.SimpleTy-MVT::i8],
2430 TLI.getRegClassFor(VT), RHSReg, RHSIsKill);
Juergen Ributzka665ea712014-07-07 21:52:21 +00002431 } else if (BaseOpc == X86ISD::SMUL && !ResultReg) {
2432 static const unsigned MULOpc[] =
2433 { X86::IMUL8r, X86::IMUL16rr, X86::IMUL32rr, X86::IMUL64rr };
2434 if (VT == MVT::i8) {
2435 // Copy the first operand into AL, which is an implicit input to the
2436 // X86::IMUL8r instruction.
2437 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2438 TII.get(TargetOpcode::COPY), X86::AL)
2439 .addReg(LHSReg, getKillRegState(LHSIsKill));
2440 ResultReg = FastEmitInst_r(MULOpc[0], TLI.getRegClassFor(VT), RHSReg,
2441 RHSIsKill);
2442 } else
2443 ResultReg = FastEmitInst_rr(MULOpc[VT.SimpleTy-MVT::i8],
2444 TLI.getRegClassFor(VT), LHSReg, LHSIsKill,
2445 RHSReg, RHSIsKill);
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002446 }
2447
2448 if (!ResultReg)
Bill Wendling80b34b32008-12-09 02:42:50 +00002449 return false;
2450
Juergen Ributzka2dace6e2014-06-10 23:52:44 +00002451 unsigned ResultReg2 = FuncInfo.CreateRegs(CondTy);
2452 assert((ResultReg+1) == ResultReg2 && "Nonconsecutive result registers.");
2453 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CondOpc),
2454 ResultReg2);
Eli Friedmana4d4a012011-05-16 21:06:17 +00002455
Juergen Ributzka3566c082014-07-15 06:35:50 +00002456 UpdateValueMap(II, ResultReg, 2);
Bill Wendling80b34b32008-12-09 02:42:50 +00002457 return true;
2458 }
Juergen Ributzka3453bcf2014-06-13 02:21:58 +00002459 case Intrinsic::x86_sse_cvttss2si:
2460 case Intrinsic::x86_sse_cvttss2si64:
2461 case Intrinsic::x86_sse2_cvttsd2si:
2462 case Intrinsic::x86_sse2_cvttsd2si64: {
2463 bool IsInputDouble;
Juergen Ributzka3566c082014-07-15 06:35:50 +00002464 switch (II->getIntrinsicID()) {
Juergen Ributzka3453bcf2014-06-13 02:21:58 +00002465 default: llvm_unreachable("Unexpected intrinsic.");
2466 case Intrinsic::x86_sse_cvttss2si:
2467 case Intrinsic::x86_sse_cvttss2si64:
2468 if (!Subtarget->hasSSE1())
2469 return false;
2470 IsInputDouble = false;
2471 break;
2472 case Intrinsic::x86_sse2_cvttsd2si:
2473 case Intrinsic::x86_sse2_cvttsd2si64:
2474 if (!Subtarget->hasSSE2())
2475 return false;
2476 IsInputDouble = true;
2477 break;
2478 }
2479
Juergen Ributzka3566c082014-07-15 06:35:50 +00002480 Type *RetTy = II->getCalledFunction()->getReturnType();
Juergen Ributzka3453bcf2014-06-13 02:21:58 +00002481 MVT VT;
2482 if (!isTypeLegal(RetTy, VT))
2483 return false;
2484
2485 static const unsigned CvtOpc[2][2][2] = {
2486 { { X86::CVTTSS2SIrr, X86::VCVTTSS2SIrr },
2487 { X86::CVTTSS2SI64rr, X86::VCVTTSS2SI64rr } },
2488 { { X86::CVTTSD2SIrr, X86::VCVTTSD2SIrr },
2489 { X86::CVTTSD2SI64rr, X86::VCVTTSD2SI64rr } }
2490 };
2491 bool HasAVX = Subtarget->hasAVX();
2492 unsigned Opc;
2493 switch (VT.SimpleTy) {
2494 default: llvm_unreachable("Unexpected result type.");
2495 case MVT::i32: Opc = CvtOpc[IsInputDouble][0][HasAVX]; break;
2496 case MVT::i64: Opc = CvtOpc[IsInputDouble][1][HasAVX]; break;
2497 }
2498
2499 // Check if we can fold insertelement instructions into the convert.
Juergen Ributzka3566c082014-07-15 06:35:50 +00002500 const Value *Op = II->getArgOperand(0);
Juergen Ributzka3453bcf2014-06-13 02:21:58 +00002501 while (auto *IE = dyn_cast<InsertElementInst>(Op)) {
2502 const Value *Index = IE->getOperand(2);
2503 if (!isa<ConstantInt>(Index))
2504 break;
2505 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
2506
2507 if (Idx == 0) {
2508 Op = IE->getOperand(1);
2509 break;
2510 }
2511 Op = IE->getOperand(0);
2512 }
2513
2514 unsigned Reg = getRegForValue(Op);
2515 if (Reg == 0)
2516 return false;
2517
2518 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
2519 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
2520 .addReg(Reg);
2521
Juergen Ributzka3566c082014-07-15 06:35:50 +00002522 UpdateValueMap(II, ResultReg);
Juergen Ributzka3453bcf2014-06-13 02:21:58 +00002523 return true;
2524 }
Bill Wendling80b34b32008-12-09 02:42:50 +00002525 }
2526}
2527
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002528bool X86FastISel::FastLowerArguments() {
2529 if (!FuncInfo.CanLowerReturn)
2530 return false;
2531
2532 const Function *F = FuncInfo.Fn;
2533 if (F->isVarArg())
2534 return false;
2535
2536 CallingConv::ID CC = F->getCallingConv();
2537 if (CC != CallingConv::C)
2538 return false;
Charles Davise8f297c2013-07-12 06:02:35 +00002539
2540 if (Subtarget->isCallingConvWin64(CC))
2541 return false;
2542
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002543 if (!Subtarget->is64Bit())
2544 return false;
2545
2546 // Only handle simple cases. i.e. Up to 6 i32/i64 scalar arguments.
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002547 unsigned GPRCnt = 0;
2548 unsigned FPRCnt = 0;
2549 unsigned Idx = 0;
2550 for (auto const &Arg : F->args()) {
2551 // The first argument is at index 1.
2552 ++Idx;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002553 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) ||
2554 F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
2555 F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
2556 F->getAttributes().hasAttribute(Idx, Attribute::Nest))
2557 return false;
2558
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002559 Type *ArgTy = Arg.getType();
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002560 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
2561 return false;
2562
2563 EVT ArgVT = TLI.getValueType(ArgTy);
Chad Rosier1b33e8d2013-02-26 01:05:31 +00002564 if (!ArgVT.isSimple()) return false;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002565 switch (ArgVT.getSimpleVT().SimpleTy) {
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002566 default: return false;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002567 case MVT::i32:
2568 case MVT::i64:
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002569 ++GPRCnt;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002570 break;
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002571 case MVT::f32:
2572 case MVT::f64:
2573 if (!Subtarget->hasSSE1())
2574 return false;
2575 ++FPRCnt;
2576 break;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002577 }
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002578
2579 if (GPRCnt > 6)
2580 return false;
2581
2582 if (FPRCnt > 8)
2583 return false;
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002584 }
2585
Craig Topper840beec2014-04-04 05:16:06 +00002586 static const MCPhysReg GPR32ArgRegs[] = {
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002587 X86::EDI, X86::ESI, X86::EDX, X86::ECX, X86::R8D, X86::R9D
2588 };
Craig Topper840beec2014-04-04 05:16:06 +00002589 static const MCPhysReg GPR64ArgRegs[] = {
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002590 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8 , X86::R9
2591 };
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002592 static const MCPhysReg XMMArgRegs[] = {
2593 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2594 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2595 };
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002596
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002597 unsigned GPRIdx = 0;
2598 unsigned FPRIdx = 0;
2599 for (auto const &Arg : F->args()) {
2600 MVT VT = TLI.getSimpleValueType(Arg.getType());
2601 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
2602 unsigned SrcReg;
2603 switch (VT.SimpleTy) {
2604 default: llvm_unreachable("Unexpected value type.");
2605 case MVT::i32: SrcReg = GPR32ArgRegs[GPRIdx++]; break;
2606 case MVT::i64: SrcReg = GPR64ArgRegs[GPRIdx++]; break;
2607 case MVT::f32: // fall-through
2608 case MVT::f64: SrcReg = XMMArgRegs[FPRIdx++]; break;
2609 }
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002610 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
2611 // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
2612 // Without this, EmitLiveInCopies may eliminate the livein if its only
2613 // use is a bitcast (which isn't turned into an instruction).
2614 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002615 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Juergen Ributzkaa13cab52014-06-12 20:12:34 +00002616 TII.get(TargetOpcode::COPY), ResultReg)
2617 .addReg(DstReg, getKillRegState(true));
2618 UpdateValueMap(&Arg, ResultReg);
Chad Rosiera92ef4b2013-02-25 21:59:35 +00002619 }
2620 return true;
2621}
2622
Juergen Ributzka23d43312014-07-15 06:35:47 +00002623static unsigned computeBytesPoppedByCallee(const X86Subtarget *Subtarget,
2624 CallingConv::ID CC,
2625 ImmutableCallSite *CS) {
2626 if (Subtarget->is64Bit())
Rafael Espindola2caee7f2012-07-25 13:35:45 +00002627 return 0;
Juergen Ributzka23d43312014-07-15 06:35:47 +00002628 if (Subtarget->getTargetTriple().isOSMSVCRT())
Rafael Espindola2caee7f2012-07-25 13:35:45 +00002629 return 0;
Juergen Ributzka23d43312014-07-15 06:35:47 +00002630 if (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2631 CC == CallingConv::HiPE)
Rafael Espindola2caee7f2012-07-25 13:35:45 +00002632 return 0;
Juergen Ributzka23d43312014-07-15 06:35:47 +00002633 if (CS && !CS->paramHasAttr(1, Attribute::StructRet))
Rafael Espindola2caee7f2012-07-25 13:35:45 +00002634 return 0;
Juergen Ributzka23d43312014-07-15 06:35:47 +00002635 if (CS && CS->paramHasAttr(1, Attribute::InReg))
Rafael Espindola11c38b92012-07-25 13:41:10 +00002636 return 0;
Rafael Espindola2caee7f2012-07-25 13:35:45 +00002637 return 4;
2638}
2639
Juergen Ributzka23d43312014-07-15 06:35:47 +00002640bool X86FastISel::FastLowerCall(CallLoweringInfo &CLI) {
2641 auto &OutVals = CLI.OutVals;
2642 auto &OutFlags = CLI.OutFlags;
2643 auto &OutRegs = CLI.OutRegs;
2644 auto &Ins = CLI.Ins;
2645 auto &InRegs = CLI.InRegs;
2646 CallingConv::ID CC = CLI.CallConv;
2647 bool &IsTailCall = CLI.IsTailCall;
2648 bool IsVarArg = CLI.IsVarArg;
2649 const Value *Callee = CLI.Callee;
2650 const char *SymName = CLI.SymName;
2651
2652 bool Is64Bit = Subtarget->is64Bit();
2653 bool IsWin64 = Subtarget->isCallingConvWin64(CC);
2654
2655 // Handle only C, fastcc, and webkit_js calling conventions for now.
2656 switch (CC) {
2657 default: return false;
2658 case CallingConv::C:
2659 case CallingConv::Fast:
2660 case CallingConv::WebKit_JS:
2661 case CallingConv::X86_FastCall:
2662 case CallingConv::X86_64_Win64:
2663 case CallingConv::X86_64_SysV:
2664 break;
2665 }
2666
2667 // Allow SelectionDAG isel to handle tail calls.
2668 if (IsTailCall)
2669 return false;
2670
2671 // fastcc with -tailcallopt is intended to provide a guaranteed
2672 // tail call optimization. Fastisel doesn't know how to do that.
2673 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
2674 return false;
2675
2676 // Don't know how to handle Win64 varargs yet. Nothing special needed for
2677 // x86-32. Special handling for x86-64 is implemented.
2678 if (IsVarArg && IsWin64)
2679 return false;
2680
2681 // Don't know about inalloca yet.
2682 if (CLI.CS && CLI.CS->hasInAllocaArgument())
2683 return false;
2684
2685 // Fast-isel doesn't know about callee-pop yet.
2686 if (X86::isCalleePop(CC, Subtarget->is64Bit(), IsVarArg,
2687 TM.Options.GuaranteedTailCallOpt))
2688 return false;
2689
2690 // If this is a constant i1/i8/i16 argument, promote to i32 to avoid an extra
2691 // instruction. This is safe because it is common to all FastISel supported
2692 // calling conventions on x86.
2693 for (int i = 0, e = OutVals.size(); i != e; ++i) {
2694 Value *&Val = OutVals[i];
2695 ISD::ArgFlagsTy Flags = OutFlags[i];
2696 if (auto *CI = dyn_cast<ConstantInt>(Val)) {
2697 if (CI->getBitWidth() < 32) {
2698 if (Flags.isSExt())
2699 Val = ConstantExpr::getSExt(CI, Type::getInt32Ty(CI->getContext()));
2700 else
2701 Val = ConstantExpr::getZExt(CI, Type::getInt32Ty(CI->getContext()));
2702 }
2703 }
2704
2705 // Passing bools around ends up doing a trunc to i1 and passing it.
2706 // Codegen this as an argument + "and 1".
2707 if (auto *TI = dyn_cast<TruncInst>(Val)) {
2708 if (TI->getType()->isIntegerTy(1) && CLI.CS &&
2709 (TI->getParent() == CLI.CS->getInstruction()->getParent()) &&
2710 TI->hasOneUse()) {
2711 Val = cast<TruncInst>(Val)->getOperand(0);
2712 unsigned ResultReg = getRegForValue(Val);
2713
2714 if (!ResultReg)
2715 return false;
2716
2717 MVT ArgVT;
2718 if (!isTypeLegal(Val->getType(), ArgVT))
2719 return false;
2720
2721 ResultReg =
2722 FastEmit_ri(ArgVT, ArgVT, ISD::AND, ResultReg, Val->hasOneUse(), 1);
2723
2724 if (!ResultReg)
2725 return false;
2726 UpdateValueMap(Val, ResultReg);
2727 }
2728 }
2729 }
2730
2731 // Analyze operands of the call, assigning locations to each operand.
2732 SmallVector<CCValAssign, 16> ArgLocs;
2733 CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, TM, ArgLocs,
2734 CLI.RetTy->getContext());
2735
2736 // Allocate shadow area for Win64
2737 if (IsWin64)
2738 CCInfo.AllocateStack(32, 8);
2739
2740 SmallVector<MVT, 16> OutVTs;
2741 for (auto *Val : OutVals) {
2742 MVT VT;
2743 if (!isTypeLegal(Val->getType(), VT))
2744 return false;
2745 OutVTs.push_back(VT);
2746 }
2747 CCInfo.AnalyzeCallOperands(OutVTs, OutFlags, CC_X86);
2748
2749 // Get a count of how many bytes are to be pushed on the stack.
2750 unsigned NumBytes = CCInfo.getNextStackOffset();
2751
2752 // Issue CALLSEQ_START
2753 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
2754 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
2755 .addImm(NumBytes);
2756
2757 // Walk the register/memloc assignments, inserting copies/loads.
2758 const X86RegisterInfo *RegInfo =
2759 static_cast<const X86RegisterInfo *>(TM.getRegisterInfo());
2760 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2761 CCValAssign const &VA = ArgLocs[i];
2762 const Value *ArgVal = OutVals[VA.getValNo()];
2763 MVT ArgVT = OutVTs[VA.getValNo()];
2764
2765 if (ArgVT == MVT::x86mmx)
2766 return false;
2767
2768 unsigned ArgReg = getRegForValue(ArgVal);
2769 if (!ArgReg)
2770 return false;
2771
2772 // Promote the value if needed.
2773 switch (VA.getLocInfo()) {
2774 case CCValAssign::Full: break;
2775 case CCValAssign::SExt: {
2776 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2777 "Unexpected extend");
2778 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2779 ArgVT, ArgReg);
2780 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
2781 ArgVT = VA.getLocVT();
2782 break;
2783 }
2784 case CCValAssign::ZExt: {
2785 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2786 "Unexpected extend");
2787 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2788 ArgVT, ArgReg);
2789 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
2790 ArgVT = VA.getLocVT();
2791 break;
2792 }
2793 case CCValAssign::AExt: {
2794 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2795 "Unexpected extend");
2796 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), ArgReg,
2797 ArgVT, ArgReg);
2798 if (!Emitted)
2799 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2800 ArgVT, ArgReg);
2801 if (!Emitted)
2802 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2803 ArgVT, ArgReg);
2804
2805 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
2806 ArgVT = VA.getLocVT();
2807 break;
2808 }
2809 case CCValAssign::BCvt: {
2810 ArgReg = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, ArgReg,
2811 /*TODO: Kill=*/false);
2812 assert(ArgReg && "Failed to emit a bitcast!");
2813 ArgVT = VA.getLocVT();
2814 break;
2815 }
2816 case CCValAssign::VExt:
2817 // VExt has not been implemented, so this should be impossible to reach
2818 // for now. However, fallback to Selection DAG isel once implemented.
2819 return false;
2820 case CCValAssign::FPExt:
2821 llvm_unreachable("Unexpected loc info!");
2822 case CCValAssign::Indirect:
2823 // FIXME: Indirect doesn't need extending, but fast-isel doesn't fully
2824 // support this.
2825 return false;
2826 }
2827
2828 if (VA.isRegLoc()) {
2829 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2830 TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg);
2831 OutRegs.push_back(VA.getLocReg());
2832 } else {
2833 assert(VA.isMemLoc());
Juergen Ributzka39032672014-07-31 00:11:11 +00002834
2835 // Don't emit stores for undef values.
2836 if (isa<UndefValue>(ArgVal))
2837 continue;
2838
Juergen Ributzka23d43312014-07-15 06:35:47 +00002839 unsigned LocMemOffset = VA.getLocMemOffset();
2840 X86AddressMode AM;
2841 AM.Base.Reg = RegInfo->getStackRegister();
2842 AM.Disp = LocMemOffset;
2843 ISD::ArgFlagsTy Flags = OutFlags[VA.getValNo()];
2844 unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType());
2845 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
2846 MachinePointerInfo::getStack(LocMemOffset), MachineMemOperand::MOStore,
2847 ArgVT.getStoreSize(), Alignment);
2848 if (Flags.isByVal()) {
2849 X86AddressMode SrcAM;
2850 SrcAM.Base.Reg = ArgReg;
2851 if (!TryEmitSmallMemcpy(AM, SrcAM, Flags.getByValSize()))
2852 return false;
2853 } else if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) {
2854 // If this is a really simple value, emit this with the Value* version
2855 // of X86FastEmitStore. If it isn't simple, we don't want to do this,
2856 // as it can cause us to reevaluate the argument.
2857 if (!X86FastEmitStore(ArgVT, ArgVal, AM, MMO))
2858 return false;
2859 } else {
2860 bool ValIsKill = hasTrivialKill(ArgVal);
2861 if (!X86FastEmitStore(ArgVT, ArgReg, ValIsKill, AM, MMO))
2862 return false;
2863 }
2864 }
2865 }
2866
2867 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2868 // GOT pointer.
2869 if (Subtarget->isPICStyleGOT()) {
2870 unsigned Base = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
2871 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2872 TII.get(TargetOpcode::COPY), X86::EBX).addReg(Base);
2873 }
2874
2875 if (Is64Bit && IsVarArg && !IsWin64) {
2876 // From AMD64 ABI document:
2877 // For calls that may call functions that use varargs or stdargs
2878 // (prototype-less calls or calls to functions containing ellipsis (...) in
2879 // the declaration) %al is used as hidden argument to specify the number
2880 // of SSE registers used. The contents of %al do not need to match exactly
2881 // the number of registers, but must be an ubound on the number of SSE
2882 // registers used and is in the range 0 - 8 inclusive.
2883
2884 // Count the number of XMM registers allocated.
2885 static const MCPhysReg XMMArgRegs[] = {
2886 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2887 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2888 };
2889 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2890 assert((Subtarget->hasSSE1() || !NumXMMRegs)
2891 && "SSE registers cannot be used when SSE is disabled");
2892 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
2893 X86::AL).addImm(NumXMMRegs);
2894 }
2895
2896 // Materialize callee address in a register. FIXME: GV address can be
2897 // handled with a CALLpcrel32 instead.
2898 X86AddressMode CalleeAM;
2899 if (!X86SelectCallAddress(Callee, CalleeAM))
2900 return false;
2901
2902 unsigned CalleeOp = 0;
2903 const GlobalValue *GV = nullptr;
2904 if (CalleeAM.GV != nullptr) {
2905 GV = CalleeAM.GV;
2906 } else if (CalleeAM.Base.Reg != 0) {
2907 CalleeOp = CalleeAM.Base.Reg;
2908 } else
2909 return false;
2910
2911 // Issue the call.
2912 MachineInstrBuilder MIB;
2913 if (CalleeOp) {
2914 // Register-indirect call.
Andrea Di Biagio04d5a7b2014-07-15 10:53:44 +00002915 unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r;
Juergen Ributzka23d43312014-07-15 06:35:47 +00002916 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc))
2917 .addReg(CalleeOp);
2918 } else {
2919 // Direct call.
2920 assert(GV && "Not a direct call");
2921 unsigned CallOpc = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32;
2922
2923 // See if we need any target-specific flags on the GV operand.
2924 unsigned char OpFlags = 0;
2925
2926 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2927 // external symbols most go through the PLT in PIC mode. If the symbol
2928 // has hidden or protected visibility, or if it is static or local, then
2929 // we don't need to use the PLT - we can directly call it.
2930 if (Subtarget->isTargetELF() &&
2931 TM.getRelocationModel() == Reloc::PIC_ &&
2932 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2933 OpFlags = X86II::MO_PLT;
2934 } else if (Subtarget->isPICStyleStubAny() &&
2935 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2936 (!Subtarget->getTargetTriple().isMacOSX() ||
2937 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2938 // PC-relative references to external symbols should go through $stub,
2939 // unless we're building with the leopard linker or later, which
2940 // automatically synthesizes these stubs.
2941 OpFlags = X86II::MO_DARWIN_STUB;
2942 }
2943
2944 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc));
2945 if (SymName)
2946 MIB.addExternalSymbol(SymName, OpFlags);
2947 else
2948 MIB.addGlobalAddress(GV, 0, OpFlags);
2949 }
2950
2951 // Add a register mask operand representing the call-preserved registers.
2952 // Proper defs for return values will be added by setPhysRegsDeadExcept().
2953 MIB.addRegMask(TRI.getCallPreservedMask(CC));
2954
2955 // Add an implicit use GOT pointer in EBX.
2956 if (Subtarget->isPICStyleGOT())
2957 MIB.addReg(X86::EBX, RegState::Implicit);
2958
2959 if (Is64Bit && IsVarArg && !IsWin64)
2960 MIB.addReg(X86::AL, RegState::Implicit);
2961
2962 // Add implicit physical register uses to the call.
2963 for (auto Reg : OutRegs)
2964 MIB.addReg(Reg, RegState::Implicit);
2965
2966 // Issue CALLSEQ_END
2967 unsigned NumBytesForCalleeToPop =
2968 computeBytesPoppedByCallee(Subtarget, CC, CLI.CS);
2969 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
2970 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
2971 .addImm(NumBytes).addImm(NumBytesForCalleeToPop);
2972
2973 // Now handle call return values.
2974 SmallVector<CCValAssign, 16> RVLocs;
2975 CCState CCRetInfo(CC, IsVarArg, *FuncInfo.MF, TM, RVLocs,
2976 CLI.RetTy->getContext());
2977 CCRetInfo.AnalyzeCallResult(Ins, RetCC_X86);
2978
2979 // Copy all of the result registers out of their specified physreg.
2980 unsigned ResultReg = FuncInfo.CreateRegs(CLI.RetTy);
2981 for (unsigned i = 0; i != RVLocs.size(); ++i) {
2982 CCValAssign &VA = RVLocs[i];
2983 EVT CopyVT = VA.getValVT();
2984 unsigned CopyReg = ResultReg + i;
2985
2986 // If this is x86-64, and we disabled SSE, we can't return FP values
2987 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2988 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2989 report_fatal_error("SSE register return with SSE disabled");
2990 }
2991
2992 // If this is a call to a function that returns an fp value on the floating
2993 // point stack, we must guarantee the value is popped from the stack, so
2994 // a COPY is not good enough - the copy instruction may be eliminated if the
2995 // return value is not used. We use the FpPOP_RETVAL instruction instead.
2996 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2997 // If we prefer to use the value in xmm registers, copy it out as f80 and
2998 // use a truncate to move it from fp stack reg to xmm reg.
2999 if (isScalarFPTypeInSSEReg(VA.getValVT())) {
3000 CopyVT = MVT::f80;
3001 CopyReg = createResultReg(&X86::RFP80RegClass);
3002 }
3003 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3004 TII.get(X86::FpPOP_RETVAL), CopyReg);
3005
3006 // Round the f80 to the right size, which also moves it to the appropriate
3007 // xmm register. This is accomplished by storing the f80 value in memory
3008 // and then loading it back.
3009 if (CopyVT != VA.getValVT()) {
3010 EVT ResVT = VA.getValVT();
3011 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
3012 unsigned MemSize = ResVT.getSizeInBits()/8;
3013 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
3014 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3015 TII.get(Opc)), FI)
3016 .addReg(CopyReg);
3017 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
3018 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3019 TII.get(Opc), ResultReg + i), FI);
3020 }
3021 } else {
3022 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3023 TII.get(TargetOpcode::COPY), CopyReg).addReg(VA.getLocReg());
3024 InRegs.push_back(VA.getLocReg());
3025 }
3026 }
3027
3028 CLI.ResultReg = ResultReg;
3029 CLI.NumResultRegs = RVLocs.size();
3030 CLI.Call = MIB;
3031
3032 return true;
3033}
Juergen Ributzka5ee9d902014-07-15 05:23:40 +00003034
Dan Gohmand58f3e32008-08-28 23:21:34 +00003035bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +00003036X86FastISel::TargetSelectInstruction(const Instruction *I) {
Dan Gohmand58f3e32008-08-28 23:21:34 +00003037 switch (I->getOpcode()) {
3038 default: break;
Evan Chenga41ee292008-09-03 06:44:39 +00003039 case Instruction::Load:
Dan Gohman7bda51f2008-09-03 23:12:08 +00003040 return X86SelectLoad(I);
Owen Andersonb8c7ba22008-09-04 16:48:33 +00003041 case Instruction::Store:
3042 return X86SelectStore(I);
Dan Gohmand7b5ce32010-07-10 09:00:22 +00003043 case Instruction::Ret:
3044 return X86SelectRet(I);
Dan Gohman09fdbcf2008-09-04 23:26:51 +00003045 case Instruction::ICmp:
3046 case Instruction::FCmp:
3047 return X86SelectCmp(I);
Dan Gohmana5753b32008-09-05 01:06:14 +00003048 case Instruction::ZExt:
3049 return X86SelectZExt(I);
3050 case Instruction::Br:
3051 return X86SelectBranch(I);
Dan Gohman7d7a26df2008-09-05 18:30:08 +00003052 case Instruction::LShr:
3053 case Instruction::AShr:
3054 case Instruction::Shl:
3055 return X86SelectShift(I);
Eli Bendersky24a36eb2013-04-17 20:10:13 +00003056 case Instruction::SDiv:
3057 case Instruction::UDiv:
3058 case Instruction::SRem:
3059 case Instruction::URem:
3060 return X86SelectDivRem(I);
Dan Gohman7d7a26df2008-09-05 18:30:08 +00003061 case Instruction::Select:
3062 return X86SelectSelect(I);
Evan Chengb9286692008-09-07 08:47:42 +00003063 case Instruction::Trunc:
3064 return X86SelectTrunc(I);
Dan Gohmanbf646f22008-09-10 21:02:08 +00003065 case Instruction::FPExt:
3066 return X86SelectFPExt(I);
3067 case Instruction::FPTrunc:
3068 return X86SelectFPTrunc(I);
Dan Gohmana62e4ab2009-03-13 23:53:06 +00003069 case Instruction::IntToPtr: // Deliberate fall-through.
3070 case Instruction::PtrToInt: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003071 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
3072 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohmana62e4ab2009-03-13 23:53:06 +00003073 if (DstVT.bitsGT(SrcVT))
3074 return X86SelectZExt(I);
3075 if (DstVT.bitsLT(SrcVT))
3076 return X86SelectTrunc(I);
3077 unsigned Reg = getRegForValue(I->getOperand(0));
3078 if (Reg == 0) return false;
3079 UpdateValueMap(I, Reg);
3080 return true;
3081 }
Dan Gohmand58f3e32008-08-28 23:21:34 +00003082 }
3083
3084 return false;
3085}
3086
Dan Gohmanbcaf6812010-04-15 01:51:59 +00003087unsigned X86FastISel::TargetMaterializeConstant(const Constant *C) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00003088 MVT VT;
Chris Lattnera0f9d492008-10-15 05:07:36 +00003089 if (!isTypeLegal(C->getType(), VT))
Michael Liao3c898062012-08-30 00:30:16 +00003090 return 0;
3091
3092 // Can't handle alternate code models yet.
3093 if (TM.getCodeModel() != CodeModel::Small)
3094 return 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003095
Owen Anderson50288e32008-09-05 00:06:23 +00003096 // Get opcode and regclass of the output for the given load instruction.
3097 unsigned Opc = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +00003098 const TargetRegisterClass *RC = nullptr;
Duncan Sandsf5dda012010-11-03 11:35:31 +00003099 switch (VT.SimpleTy) {
Michael Liao3c898062012-08-30 00:30:16 +00003100 default: return 0;
Owen Anderson9f944592009-08-11 20:47:22 +00003101 case MVT::i8:
Owen Anderson50288e32008-09-05 00:06:23 +00003102 Opc = X86::MOV8rm;
Craig Topperabadc662012-04-20 06:31:50 +00003103 RC = &X86::GR8RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003104 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003105 case MVT::i16:
Owen Anderson50288e32008-09-05 00:06:23 +00003106 Opc = X86::MOV16rm;
Craig Topperabadc662012-04-20 06:31:50 +00003107 RC = &X86::GR16RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003108 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003109 case MVT::i32:
Owen Anderson50288e32008-09-05 00:06:23 +00003110 Opc = X86::MOV32rm;
Craig Topperabadc662012-04-20 06:31:50 +00003111 RC = &X86::GR32RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003112 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003113 case MVT::i64:
Owen Anderson50288e32008-09-05 00:06:23 +00003114 // Must be in x86-64 mode.
3115 Opc = X86::MOV64rm;
Craig Topperabadc662012-04-20 06:31:50 +00003116 RC = &X86::GR64RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003117 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003118 case MVT::f32:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00003119 if (X86ScalarSSEf32) {
3120 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
Craig Topperabadc662012-04-20 06:31:50 +00003121 RC = &X86::FR32RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003122 } else {
3123 Opc = X86::LD_Fp32m;
Craig Topperabadc662012-04-20 06:31:50 +00003124 RC = &X86::RFP32RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003125 }
3126 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003127 case MVT::f64:
Bruno Cardoso Lopesd893fc92011-09-03 00:46:42 +00003128 if (X86ScalarSSEf64) {
3129 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
Craig Topperabadc662012-04-20 06:31:50 +00003130 RC = &X86::FR64RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003131 } else {
3132 Opc = X86::LD_Fp64m;
Craig Topperabadc662012-04-20 06:31:50 +00003133 RC = &X86::RFP64RegClass;
Owen Anderson50288e32008-09-05 00:06:23 +00003134 }
3135 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003136 case MVT::f80:
Dan Gohman839105d2008-09-26 01:39:32 +00003137 // No f80 support yet.
Michael Liao3c898062012-08-30 00:30:16 +00003138 return 0;
Owen Anderson50288e32008-09-05 00:06:23 +00003139 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003140
Louis Gerbarg343f5cd2014-06-17 23:22:41 +00003141 // Materialize addresses with LEA/MOV instructions.
Owen Anderson50288e32008-09-05 00:06:23 +00003142 if (isa<GlobalValue>(C)) {
Dan Gohman9801ba42008-09-19 22:16:54 +00003143 X86AddressMode AM;
Chris Lattner8212d372009-07-10 05:33:42 +00003144 if (X86SelectAddress(C, AM)) {
Chris Lattner48326602011-04-17 17:12:08 +00003145 // If the expression is just a basereg, then we're done, otherwise we need
3146 // to emit an LEA.
3147 if (AM.BaseType == X86AddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00003148 AM.IndexReg == 0 && AM.Disp == 0 && AM.GV == nullptr)
Chris Lattner48326602011-04-17 17:12:08 +00003149 return AM.Base.Reg;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003150
Dan Gohman9801ba42008-09-19 22:16:54 +00003151 unsigned ResultReg = createResultReg(RC);
Louis Gerbarg343f5cd2014-06-17 23:22:41 +00003152 if (TM.getRelocationModel() == Reloc::Static &&
3153 TLI.getPointerTy() == MVT::i64) {
3154 // The displacement code be more than 32 bits away so we need to use
3155 // an instruction with a 64 bit immediate
3156 Opc = X86::MOV64ri;
3157 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3158 TII.get(Opc), ResultReg).addGlobalAddress(cast<GlobalValue>(C));
3159 } else {
3160 Opc = TLI.getPointerTy() == MVT::i32 ? X86::LEA32r : X86::LEA64r;
3161 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00003162 TII.get(Opc), ResultReg), AM);
Louis Gerbarg343f5cd2014-06-17 23:22:41 +00003163 }
Owen Anderson50288e32008-09-05 00:06:23 +00003164 return ResultReg;
Dan Gohman9801ba42008-09-19 22:16:54 +00003165 }
Evan Chengf5bc7e52008-09-05 21:00:03 +00003166 return 0;
Owen Anderson50288e32008-09-05 00:06:23 +00003167 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003168
Owen Andersond41c7162008-09-06 01:11:01 +00003169 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +00003170 unsigned Align = DL.getPrefTypeAlignment(C->getType());
Owen Andersond41c7162008-09-06 01:11:01 +00003171 if (Align == 0) {
3172 // Alignment of vector types. FIXME!
Rafael Espindolaea09c592014-02-18 22:05:46 +00003173 Align = DL.getTypeAllocSize(C->getType());
Owen Andersond41c7162008-09-06 01:11:01 +00003174 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003175
Dan Gohman8392f0c2008-09-30 01:21:32 +00003176 // x86-32 PIC requires a PIC base register for constant pools.
3177 unsigned PICBase = 0;
Chris Lattnera3260c02009-06-27 01:31:51 +00003178 unsigned char OpFlag = 0;
Chris Lattner21c29402009-07-10 21:00:45 +00003179 if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
Chris Lattnerfef11d62009-07-09 04:39:06 +00003180 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Dan Gohman87fb4e82010-07-07 16:29:44 +00003181 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
Chris Lattnerfef11d62009-07-09 04:39:06 +00003182 } else if (Subtarget->isPICStyleGOT()) {
3183 OpFlag = X86II::MO_GOTOFF;
Dan Gohman87fb4e82010-07-07 16:29:44 +00003184 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
Chris Lattnerfef11d62009-07-09 04:39:06 +00003185 } else if (Subtarget->isPICStyleRIPRel() &&
3186 TM.getCodeModel() == CodeModel::Small) {
3187 PICBase = X86::RIP;
Chris Lattnera3260c02009-06-27 01:31:51 +00003188 }
Dan Gohman8392f0c2008-09-30 01:21:32 +00003189
3190 // Create the load from the constant pool.
Dan Gohman39d82f92008-09-10 20:11:02 +00003191 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman9801ba42008-09-19 22:16:54 +00003192 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00003193 addConstantPoolReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00003194 TII.get(Opc), ResultReg),
Chris Lattnera3260c02009-06-27 01:31:51 +00003195 MCPOffset, PICBase, OpFlag);
Dan Gohman8392f0c2008-09-30 01:21:32 +00003196
Owen Anderson50288e32008-09-05 00:06:23 +00003197 return ResultReg;
3198}
3199
Dan Gohmanbcaf6812010-04-15 01:51:59 +00003200unsigned X86FastISel::TargetMaterializeAlloca(const AllocaInst *C) {
Dan Gohmanb01a9c92008-10-03 01:27:49 +00003201 // Fail on dynamic allocas. At this point, getRegForValue has already
3202 // checked its CSE maps, so if we're here trying to handle a dynamic
3203 // alloca, we're not going to succeed. X86SelectAddress has a
3204 // check for dynamic allocas, because it's called directly from
3205 // various places, but TargetMaterializeAlloca also needs a check
3206 // in order to avoid recursion between getRegForValue,
3207 // X86SelectAddrss, and TargetMaterializeAlloca.
Dan Gohman87fb4e82010-07-07 16:29:44 +00003208 if (!FuncInfo.StaticAllocaMap.count(C))
Dan Gohmanb01a9c92008-10-03 01:27:49 +00003209 return 0;
Reid Klecknerdfbed592014-01-31 23:45:12 +00003210 assert(C->isStaticAlloca() && "dynamic alloca in the static alloca map?");
Dan Gohmanb01a9c92008-10-03 01:27:49 +00003211
Dan Gohman39d82f92008-09-10 20:11:02 +00003212 X86AddressMode AM;
Chris Lattner8212d372009-07-10 05:33:42 +00003213 if (!X86SelectAddress(C, AM))
Dan Gohman39d82f92008-09-10 20:11:02 +00003214 return 0;
3215 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
Craig Topper760b1342012-02-22 05:59:10 +00003216 const TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
Dan Gohman39d82f92008-09-10 20:11:02 +00003217 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00003218 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Dan Gohmand7b5ce32010-07-10 09:00:22 +00003219 TII.get(Opc), ResultReg), AM);
Dan Gohman39d82f92008-09-10 20:11:02 +00003220 return ResultReg;
3221}
3222
Eli Friedman406c4712011-04-27 22:41:55 +00003223unsigned X86FastISel::TargetMaterializeFloatZero(const ConstantFP *CF) {
3224 MVT VT;
3225 if (!isTypeLegal(CF->getType(), VT))
Jakub Staszakf34e4fa2012-11-15 19:40:29 +00003226 return 0;
Eli Friedman406c4712011-04-27 22:41:55 +00003227
3228 // Get opcode and regclass for the given zero.
3229 unsigned Opc = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +00003230 const TargetRegisterClass *RC = nullptr;
Eli Friedman406c4712011-04-27 22:41:55 +00003231 switch (VT.SimpleTy) {
Jakub Staszakf34e4fa2012-11-15 19:40:29 +00003232 default: return 0;
Craig Topper490c45c2012-08-11 17:53:00 +00003233 case MVT::f32:
3234 if (X86ScalarSSEf32) {
3235 Opc = X86::FsFLD0SS;
3236 RC = &X86::FR32RegClass;
3237 } else {
3238 Opc = X86::LD_Fp032;
3239 RC = &X86::RFP32RegClass;
3240 }
3241 break;
3242 case MVT::f64:
3243 if (X86ScalarSSEf64) {
3244 Opc = X86::FsFLD0SD;
3245 RC = &X86::FR64RegClass;
3246 } else {
3247 Opc = X86::LD_Fp064;
3248 RC = &X86::RFP64RegClass;
3249 }
3250 break;
3251 case MVT::f80:
3252 // No f80 support yet.
Jakub Staszakf34e4fa2012-11-15 19:40:29 +00003253 return 0;
Eli Friedman406c4712011-04-27 22:41:55 +00003254 }
3255
3256 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00003257 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
Eli Friedman406c4712011-04-27 22:41:55 +00003258 return ResultReg;
3259}
3260
3261
Eli Bendersky90dd3e72013-04-19 22:29:18 +00003262bool X86FastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
3263 const LoadInst *LI) {
Juergen Ributzka349777d2014-06-12 23:27:57 +00003264 const Value *Ptr = LI->getPointerOperand();
Chris Lattnereeba0c72010-09-05 02:18:34 +00003265 X86AddressMode AM;
Juergen Ributzka349777d2014-06-12 23:27:57 +00003266 if (!X86SelectAddress(Ptr, AM))
Chris Lattnereeba0c72010-09-05 02:18:34 +00003267 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00003268
Craig Topper55406d92012-08-11 17:46:16 +00003269 const X86InstrInfo &XII = (const X86InstrInfo&)TII;
Wesley Peck527da1b2010-11-23 03:31:01 +00003270
Rafael Espindolaea09c592014-02-18 22:05:46 +00003271 unsigned Size = DL.getTypeAllocSize(LI->getType());
Chris Lattnereeba0c72010-09-05 02:18:34 +00003272 unsigned Alignment = LI->getAlignment();
3273
Juergen Ributzka349777d2014-06-12 23:27:57 +00003274 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3275 Alignment = DL.getABITypeAlignment(LI->getType());
3276
Chris Lattnereeba0c72010-09-05 02:18:34 +00003277 SmallVector<MachineOperand, 8> AddrOps;
3278 AM.getFullAddress(AddrOps);
Wesley Peck527da1b2010-11-23 03:31:01 +00003279
Chris Lattnereeba0c72010-09-05 02:18:34 +00003280 MachineInstr *Result =
3281 XII.foldMemoryOperandImpl(*FuncInfo.MF, MI, OpNo, AddrOps, Size, Alignment);
Juergen Ributzka349777d2014-06-12 23:27:57 +00003282 if (!Result)
3283 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +00003284
Juergen Ributzka349777d2014-06-12 23:27:57 +00003285 Result->addMemOperand(*FuncInfo.MF, createMachineMemOperandFor(LI));
Chris Lattner2d186572011-01-16 02:27:38 +00003286 FuncInfo.MBB->insert(FuncInfo.InsertPt, Result);
Chris Lattnereeba0c72010-09-05 02:18:34 +00003287 MI->eraseFromParent();
3288 return true;
3289}
3290
3291
Evan Cheng24422d42008-09-03 00:03:49 +00003292namespace llvm {
Bob Wilson3e6fa462012-08-03 04:06:28 +00003293 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo,
3294 const TargetLibraryInfo *libInfo) {
3295 return new X86FastISel(funcInfo, libInfo);
Evan Cheng24422d42008-09-03 00:03:49 +00003296 }
Dan Gohmand58f3e32008-08-28 23:21:34 +00003297}