blob: 360fbb61bc5e53f16323d5204213307d404a05e8 [file] [log] [blame]
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001//===-- PPCFastISel.cpp - PowerPC 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 PowerPC-specific support for the FastISel class. Some
11// of the target-specific code is generated by tablegen in the file
12// PPCGenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
Bill Schmidt0cf702f2013-07-30 00:50:39 +000016#include "PPC.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000017#include "MCTargetDesc/PPCPredicates.h"
Hal Finkel934361a2015-01-14 01:07:51 +000018#include "PPCCallingConv.h"
Bill Schmidt0cf702f2013-07-30 00:50:39 +000019#include "PPCISelLowering.h"
Hal Finkele6698d52015-02-01 15:03:28 +000020#include "PPCMachineFunctionInfo.h"
Bill Schmidt0cf702f2013-07-30 00:50:39 +000021#include "PPCSubtarget.h"
22#include "PPCTargetMachine.h"
Bill Schmidt0cf702f2013-07-30 00:50:39 +000023#include "llvm/ADT/Optional.h"
24#include "llvm/CodeGen/CallingConvLower.h"
25#include "llvm/CodeGen/FastISel.h"
26#include "llvm/CodeGen/FunctionLoweringInfo.h"
27#include "llvm/CodeGen/MachineConstantPool.h"
28#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
30#include "llvm/CodeGen/MachineRegisterInfo.h"
31#include "llvm/IR/CallingConv.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000032#include "llvm/IR/GetElementPtrTypeIterator.h"
Bill Schmidt0cf702f2013-07-30 00:50:39 +000033#include "llvm/IR/GlobalAlias.h"
34#include "llvm/IR/GlobalVariable.h"
35#include "llvm/IR/IntrinsicInst.h"
36#include "llvm/IR/Operator.h"
37#include "llvm/Support/Debug.h"
Bill Schmidt0cf702f2013-07-30 00:50:39 +000038#include "llvm/Target/TargetLowering.h"
39#include "llvm/Target/TargetMachine.h"
40
Bill Schmidteb8d6f72013-08-31 02:33:40 +000041//===----------------------------------------------------------------------===//
42//
43// TBD:
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +000044// fastLowerArguments: Handle simple cases.
Bill Schmidteb8d6f72013-08-31 02:33:40 +000045// PPCMaterializeGV: Handle TLS.
46// SelectCall: Handle function pointers.
47// SelectCall: Handle multi-register return values.
48// SelectCall: Optimize away nops for local calls.
49// processCallArgs: Handle bit-converted arguments.
50// finishCall: Handle multi-register return values.
51// PPCComputeAddress: Handle parameter references as FrameIndex's.
52// PPCEmitCmp: Handle immediate as operand 1.
53// SelectCall: Handle small byval arguments.
54// SelectIntrinsicCall: Implement.
55// SelectSelect: Implement.
56// Consider factoring isTypeLegal into the base class.
57// Implement switches and jump tables.
58//
59//===----------------------------------------------------------------------===//
Bill Schmidt0cf702f2013-07-30 00:50:39 +000060using namespace llvm;
61
Chandler Carruth84e68b22014-04-22 02:41:26 +000062#define DEBUG_TYPE "ppcfastisel"
63
Bill Schmidt0cf702f2013-07-30 00:50:39 +000064namespace {
65
66typedef struct Address {
67 enum {
68 RegBase,
69 FrameIndexBase
70 } BaseType;
71
72 union {
73 unsigned Reg;
74 int FI;
75 } Base;
76
Bill Schmidtccecf262013-08-30 02:29:45 +000077 long Offset;
Bill Schmidt0cf702f2013-07-30 00:50:39 +000078
79 // Innocuous defaults for our address.
80 Address()
81 : BaseType(RegBase), Offset(0) {
82 Base.Reg = 0;
83 }
84} Address;
85
Craig Topper26696312014-03-18 07:27:13 +000086class PPCFastISel final : public FastISel {
Bill Schmidt0cf702f2013-07-30 00:50:39 +000087
88 const TargetMachine &TM;
Eric Christopher85806142015-01-30 02:11:24 +000089 const PPCSubtarget *PPCSubTarget;
Hal Finkele6698d52015-02-01 15:03:28 +000090 PPCFunctionInfo *PPCFuncInfo;
Bill Schmidt0cf702f2013-07-30 00:50:39 +000091 const TargetInstrInfo &TII;
92 const TargetLowering &TLI;
Bill Schmidt0cf702f2013-07-30 00:50:39 +000093 LLVMContext *Context;
94
95 public:
96 explicit PPCFastISel(FunctionLoweringInfo &FuncInfo,
97 const TargetLibraryInfo *LibInfo)
Eric Christopherd9134482014-08-04 21:25:23 +000098 : FastISel(FuncInfo, LibInfo), TM(FuncInfo.MF->getTarget()),
Eric Christophercccae792015-01-30 22:02:31 +000099 PPCSubTarget(&FuncInfo.MF->getSubtarget<PPCSubtarget>()),
Hal Finkele6698d52015-02-01 15:03:28 +0000100 PPCFuncInfo(FuncInfo.MF->getInfo<PPCFunctionInfo>()),
Eric Christopher85806142015-01-30 02:11:24 +0000101 TII(*PPCSubTarget->getInstrInfo()),
102 TLI(*PPCSubTarget->getTargetLowering()),
Eric Christopherd9134482014-08-04 21:25:23 +0000103 Context(&FuncInfo.Fn->getContext()) {}
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000104
105 // Backend specific FastISel code.
106 private:
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000107 bool fastSelectInstruction(const Instruction *I) override;
108 unsigned fastMaterializeConstant(const Constant *C) override;
109 unsigned fastMaterializeAlloca(const AllocaInst *AI) override;
Craig Topper0d3fa922014-04-29 07:57:37 +0000110 bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
111 const LoadInst *LI) override;
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000112 bool fastLowerArguments() override;
Juergen Ributzka88e32512014-09-03 20:56:59 +0000113 unsigned fastEmit_i(MVT Ty, MVT RetTy, unsigned Opc, uint64_t Imm) override;
114 unsigned fastEmitInst_ri(unsigned MachineInstOpcode,
Craig Topper0d3fa922014-04-29 07:57:37 +0000115 const TargetRegisterClass *RC,
116 unsigned Op0, bool Op0IsKill,
117 uint64_t Imm);
Juergen Ributzka88e32512014-09-03 20:56:59 +0000118 unsigned fastEmitInst_r(unsigned MachineInstOpcode,
Craig Topper0d3fa922014-04-29 07:57:37 +0000119 const TargetRegisterClass *RC,
120 unsigned Op0, bool Op0IsKill);
Juergen Ributzka88e32512014-09-03 20:56:59 +0000121 unsigned fastEmitInst_rr(unsigned MachineInstOpcode,
Craig Topper0d3fa922014-04-29 07:57:37 +0000122 const TargetRegisterClass *RC,
123 unsigned Op0, bool Op0IsKill,
124 unsigned Op1, bool Op1IsKill);
Bill Schmidt03008132013-08-25 22:33:42 +0000125
Hal Finkel934361a2015-01-14 01:07:51 +0000126 bool fastLowerCall(CallLoweringInfo &CLI) override;
127
Bill Schmidt03008132013-08-25 22:33:42 +0000128 // Instruction selection routines.
129 private:
Bill Schmidtccecf262013-08-30 02:29:45 +0000130 bool SelectLoad(const Instruction *I);
131 bool SelectStore(const Instruction *I);
Bill Schmidt03008132013-08-25 22:33:42 +0000132 bool SelectBranch(const Instruction *I);
133 bool SelectIndirectBr(const Instruction *I);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000134 bool SelectFPExt(const Instruction *I);
135 bool SelectFPTrunc(const Instruction *I);
136 bool SelectIToFP(const Instruction *I, bool IsSigned);
137 bool SelectFPToI(const Instruction *I, bool IsSigned);
Bill Schmidtccecf262013-08-30 02:29:45 +0000138 bool SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode);
Bill Schmidtd89f6782013-08-26 19:42:51 +0000139 bool SelectRet(const Instruction *I);
Bill Schmidt9d9510d2013-08-30 23:31:33 +0000140 bool SelectTrunc(const Instruction *I);
Bill Schmidtd89f6782013-08-26 19:42:51 +0000141 bool SelectIntExt(const Instruction *I);
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000142
143 // Utility routines.
144 private:
Bill Schmidtccecf262013-08-30 02:29:45 +0000145 bool isTypeLegal(Type *Ty, MVT &VT);
146 bool isLoadTypeLegal(Type *Ty, MVT &VT);
Hal Finkel5f2a1372015-05-23 12:18:10 +0000147 bool isValueAvailable(const Value *V) const;
Bill Seurer8c728ae2014-12-05 20:15:56 +0000148 bool isVSFRCRegister(unsigned Register) const {
149 return MRI.getRegClass(Register)->getID() == PPC::VSFRCRegClassID;
150 }
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000151 bool isVSSRCRegister(unsigned Register) const {
152 return MRI.getRegClass(Register)->getID() == PPC::VSSRCRegClassID;
153 }
Bill Schmidt03008132013-08-25 22:33:42 +0000154 bool PPCEmitCmp(const Value *Src1Value, const Value *Src2Value,
155 bool isZExt, unsigned DestReg);
Bill Schmidtccecf262013-08-30 02:29:45 +0000156 bool PPCEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
157 const TargetRegisterClass *RC, bool IsZExt = true,
158 unsigned FP64LoadOpc = PPC::LFD);
159 bool PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr);
160 bool PPCComputeAddress(const Value *Obj, Address &Addr);
161 void PPCSimplifyAddress(Address &Addr, MVT VT, bool &UseOffset,
162 unsigned &IndexReg);
Bill Schmidt03008132013-08-25 22:33:42 +0000163 bool PPCEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
164 unsigned DestReg, bool IsZExt);
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000165 unsigned PPCMaterializeFP(const ConstantFP *CFP, MVT VT);
Bill Schmidtccecf262013-08-30 02:29:45 +0000166 unsigned PPCMaterializeGV(const GlobalValue *GV, MVT VT);
Eric Christopher03df7ac2015-07-25 00:48:06 +0000167 unsigned PPCMaterializeInt(const ConstantInt *CI, MVT VT,
168 bool UseSExt = true);
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000169 unsigned PPCMaterialize32BitInt(int64_t Imm,
170 const TargetRegisterClass *RC);
171 unsigned PPCMaterialize64BitInt(int64_t Imm,
172 const TargetRegisterClass *RC);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000173 unsigned PPCMoveToIntReg(const Instruction *I, MVT VT,
174 unsigned SrcReg, bool IsSigned);
175 unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned);
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000176
Bill Schmidtd89f6782013-08-26 19:42:51 +0000177 // Call handling routines.
178 private:
Bill Schmidt8470b0f2013-08-30 22:18:55 +0000179 bool processCallArgs(SmallVectorImpl<Value*> &Args,
180 SmallVectorImpl<unsigned> &ArgRegs,
181 SmallVectorImpl<MVT> &ArgVTs,
182 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
183 SmallVectorImpl<unsigned> &RegArgs,
184 CallingConv::ID CC,
185 unsigned &NumBytes,
186 bool IsVarArg);
Hal Finkel934361a2015-01-14 01:07:51 +0000187 bool finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes);
Bill Schmidtd89f6782013-08-26 19:42:51 +0000188 CCAssignFn *usePPC32CCs(unsigned Flag);
189
Bill Schmidt0cf702f2013-07-30 00:50:39 +0000190 private:
191 #include "PPCGenFastISel.inc"
192
193};
194
195} // end anonymous namespace
196
Bill Schmidtd89f6782013-08-26 19:42:51 +0000197#include "PPCGenCallingConv.inc"
198
199// Function whose sole purpose is to kill compiler warnings
200// stemming from unused functions included from PPCGenCallingConv.inc.
201CCAssignFn *PPCFastISel::usePPC32CCs(unsigned Flag) {
202 if (Flag == 1)
203 return CC_PPC32_SVR4;
204 else if (Flag == 2)
205 return CC_PPC32_SVR4_ByVal;
206 else if (Flag == 3)
207 return CC_PPC32_SVR4_VarArg;
208 else
209 return RetCC_PPC;
210}
211
Bill Schmidt03008132013-08-25 22:33:42 +0000212static Optional<PPC::Predicate> getComparePred(CmpInst::Predicate Pred) {
213 switch (Pred) {
214 // These are not representable with any single compare.
215 case CmpInst::FCMP_FALSE:
Tim Shen5cdf7502016-03-17 22:27:58 +0000216 case CmpInst::FCMP_TRUE:
217 // Major concern about the following 6 cases is NaN result. The comparison
218 // result consists of 4 bits, indicating lt, eq, gt and un (unordered),
219 // only one of which will be set. The result is generated by fcmpu
220 // instruction. However, bc instruction only inspects one of the first 3
221 // bits, so when un is set, bc instruction may jump to to an undesired
222 // place.
223 //
224 // More specifically, if we expect an unordered comparison and un is set, we
225 // expect to always go to true branch; in such case UEQ, UGT and ULT still
226 // give false, which are undesired; but UNE, UGE, ULE happen to give true,
227 // since they are tested by inspecting !eq, !lt, !gt, respectively.
228 //
229 // Similarly, for ordered comparison, when un is set, we always expect the
230 // result to be false. In such case OGT, OLT and OEQ is good, since they are
231 // actually testing GT, LT, and EQ respectively, which are false. OGE, OLE
232 // and ONE are tested through !lt, !gt and !eq, and these are true.
Bill Schmidt03008132013-08-25 22:33:42 +0000233 case CmpInst::FCMP_UEQ:
234 case CmpInst::FCMP_UGT:
Bill Schmidt03008132013-08-25 22:33:42 +0000235 case CmpInst::FCMP_ULT:
Tim Shen5cdf7502016-03-17 22:27:58 +0000236 case CmpInst::FCMP_OGE:
237 case CmpInst::FCMP_OLE:
238 case CmpInst::FCMP_ONE:
Bill Schmidt03008132013-08-25 22:33:42 +0000239 default:
240 return Optional<PPC::Predicate>();
241
242 case CmpInst::FCMP_OEQ:
243 case CmpInst::ICMP_EQ:
244 return PPC::PRED_EQ;
245
246 case CmpInst::FCMP_OGT:
247 case CmpInst::ICMP_UGT:
248 case CmpInst::ICMP_SGT:
249 return PPC::PRED_GT;
250
Tim Shen5cdf7502016-03-17 22:27:58 +0000251 case CmpInst::FCMP_UGE:
Bill Schmidt03008132013-08-25 22:33:42 +0000252 case CmpInst::ICMP_UGE:
253 case CmpInst::ICMP_SGE:
254 return PPC::PRED_GE;
255
256 case CmpInst::FCMP_OLT:
257 case CmpInst::ICMP_ULT:
258 case CmpInst::ICMP_SLT:
259 return PPC::PRED_LT;
260
Tim Shen5cdf7502016-03-17 22:27:58 +0000261 case CmpInst::FCMP_ULE:
Bill Schmidt03008132013-08-25 22:33:42 +0000262 case CmpInst::ICMP_ULE:
263 case CmpInst::ICMP_SLE:
264 return PPC::PRED_LE;
265
Tim Shen5cdf7502016-03-17 22:27:58 +0000266 case CmpInst::FCMP_UNE:
Bill Schmidt03008132013-08-25 22:33:42 +0000267 case CmpInst::ICMP_NE:
268 return PPC::PRED_NE;
269
270 case CmpInst::FCMP_ORD:
271 return PPC::PRED_NU;
272
273 case CmpInst::FCMP_UNO:
274 return PPC::PRED_UN;
275 }
276}
277
Bill Schmidtccecf262013-08-30 02:29:45 +0000278// Determine whether the type Ty is simple enough to be handled by
279// fast-isel, and return its equivalent machine type in VT.
280// FIXME: Copied directly from ARM -- factor into base class?
281bool PPCFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000282 EVT Evt = TLI.getValueType(DL, Ty, true);
Bill Schmidtccecf262013-08-30 02:29:45 +0000283
284 // Only handle simple types.
285 if (Evt == MVT::Other || !Evt.isSimple()) return false;
286 VT = Evt.getSimpleVT();
287
288 // Handle all legal types, i.e. a register that will directly hold this
289 // value.
290 return TLI.isTypeLegal(VT);
291}
292
293// Determine whether the type Ty is simple enough to be handled by
294// fast-isel as a load target, and return its equivalent machine type in VT.
295bool PPCFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
296 if (isTypeLegal(Ty, VT)) return true;
297
298 // If this is a type than can be sign or zero-extended to a basic operation
299 // go ahead and accept it now.
300 if (VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) {
301 return true;
302 }
303
304 return false;
305}
306
Hal Finkel5f2a1372015-05-23 12:18:10 +0000307bool PPCFastISel::isValueAvailable(const Value *V) const {
308 if (!isa<Instruction>(V))
309 return true;
310
311 const auto *I = cast<Instruction>(V);
Alexander Kornienko175a7cb2015-12-28 13:38:42 +0000312 return FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB;
Hal Finkel5f2a1372015-05-23 12:18:10 +0000313}
314
Bill Schmidtccecf262013-08-30 02:29:45 +0000315// Given a value Obj, create an Address object Addr that represents its
316// address. Return false if we can't handle it.
317bool PPCFastISel::PPCComputeAddress(const Value *Obj, Address &Addr) {
Craig Topper062a2ba2014-04-25 05:30:21 +0000318 const User *U = nullptr;
Bill Schmidtccecf262013-08-30 02:29:45 +0000319 unsigned Opcode = Instruction::UserOp1;
320 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
321 // Don't walk into other basic blocks unless the object is an alloca from
322 // another block, otherwise it may not have a virtual register assigned.
323 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
324 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
325 Opcode = I->getOpcode();
326 U = I;
327 }
328 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
329 Opcode = C->getOpcode();
330 U = C;
331 }
332
333 switch (Opcode) {
334 default:
335 break;
336 case Instruction::BitCast:
337 // Look through bitcasts.
338 return PPCComputeAddress(U->getOperand(0), Addr);
339 case Instruction::IntToPtr:
340 // Look past no-op inttoptrs.
Mehdi Amini44ede332015-07-09 02:09:04 +0000341 if (TLI.getValueType(DL, U->getOperand(0)->getType()) ==
342 TLI.getPointerTy(DL))
Bill Schmidtccecf262013-08-30 02:29:45 +0000343 return PPCComputeAddress(U->getOperand(0), Addr);
344 break;
345 case Instruction::PtrToInt:
346 // Look past no-op ptrtoints.
Mehdi Amini44ede332015-07-09 02:09:04 +0000347 if (TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL))
Bill Schmidtccecf262013-08-30 02:29:45 +0000348 return PPCComputeAddress(U->getOperand(0), Addr);
349 break;
350 case Instruction::GetElementPtr: {
351 Address SavedAddr = Addr;
352 long TmpOffset = Addr.Offset;
353
354 // Iterate through the GEP folding the constants into offsets where
355 // we can.
356 gep_type_iterator GTI = gep_type_begin(U);
357 for (User::const_op_iterator II = U->op_begin() + 1, IE = U->op_end();
358 II != IE; ++II, ++GTI) {
359 const Value *Op = *II;
360 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000361 const StructLayout *SL = DL.getStructLayout(STy);
Bill Schmidtccecf262013-08-30 02:29:45 +0000362 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
363 TmpOffset += SL->getElementOffset(Idx);
364 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000365 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
Bill Schmidtccecf262013-08-30 02:29:45 +0000366 for (;;) {
367 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
368 // Constant-offset addressing.
369 TmpOffset += CI->getSExtValue() * S;
370 break;
371 }
Bob Wilson9f3e6b22013-11-15 19:09:27 +0000372 if (canFoldAddIntoGEP(U, Op)) {
373 // A compatible add with a constant operand. Fold the constant.
Bill Schmidtccecf262013-08-30 02:29:45 +0000374 ConstantInt *CI =
375 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
376 TmpOffset += CI->getSExtValue() * S;
377 // Iterate on the other operand.
378 Op = cast<AddOperator>(Op)->getOperand(0);
379 continue;
380 }
381 // Unsupported
382 goto unsupported_gep;
383 }
384 }
385 }
386
387 // Try to grab the base operand now.
388 Addr.Offset = TmpOffset;
389 if (PPCComputeAddress(U->getOperand(0), Addr)) return true;
390
391 // We failed, restore everything and try the other options.
392 Addr = SavedAddr;
393
394 unsupported_gep:
395 break;
396 }
397 case Instruction::Alloca: {
398 const AllocaInst *AI = cast<AllocaInst>(Obj);
399 DenseMap<const AllocaInst*, int>::iterator SI =
400 FuncInfo.StaticAllocaMap.find(AI);
401 if (SI != FuncInfo.StaticAllocaMap.end()) {
402 Addr.BaseType = Address::FrameIndexBase;
403 Addr.Base.FI = SI->second;
404 return true;
405 }
406 break;
407 }
408 }
409
410 // FIXME: References to parameters fall through to the behavior
411 // below. They should be able to reference a frame index since
412 // they are stored to the stack, so we can get "ld rx, offset(r1)"
413 // instead of "addi ry, r1, offset / ld rx, 0(ry)". Obj will
414 // just contain the parameter. Try to handle this with a FI.
415
416 // Try to get this in a register if nothing else has worked.
417 if (Addr.Base.Reg == 0)
418 Addr.Base.Reg = getRegForValue(Obj);
419
420 // Prevent assignment of base register to X0, which is inappropriate
421 // for loads and stores alike.
422 if (Addr.Base.Reg != 0)
423 MRI.setRegClass(Addr.Base.Reg, &PPC::G8RC_and_G8RC_NOX0RegClass);
424
425 return Addr.Base.Reg != 0;
426}
427
428// Fix up some addresses that can't be used directly. For example, if
429// an offset won't fit in an instruction field, we may need to move it
430// into an index register.
431void PPCFastISel::PPCSimplifyAddress(Address &Addr, MVT VT, bool &UseOffset,
432 unsigned &IndexReg) {
433
434 // Check whether the offset fits in the instruction field.
435 if (!isInt<16>(Addr.Offset))
436 UseOffset = false;
437
438 // If this is a stack pointer and the offset needs to be simplified then
439 // put the alloca address into a register, set the base type back to
440 // register and continue. This should almost never happen.
441 if (!UseOffset && Addr.BaseType == Address::FrameIndexBase) {
442 unsigned ResultReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000443 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ADDI8),
Bill Schmidtccecf262013-08-30 02:29:45 +0000444 ResultReg).addFrameIndex(Addr.Base.FI).addImm(0);
445 Addr.Base.Reg = ResultReg;
446 Addr.BaseType = Address::RegBase;
447 }
448
449 if (!UseOffset) {
450 IntegerType *OffsetTy = ((VT == MVT::i32) ? Type::getInt32Ty(*Context)
451 : Type::getInt64Ty(*Context));
452 const ConstantInt *Offset =
453 ConstantInt::getSigned(OffsetTy, (int64_t)(Addr.Offset));
454 IndexReg = PPCMaterializeInt(Offset, MVT::i64);
455 assert(IndexReg && "Unexpected error in PPCMaterializeInt!");
456 }
457}
458
459// Emit a load instruction if possible, returning true if we succeeded,
460// otherwise false. See commentary below for how the register class of
461// the load is determined.
462bool PPCFastISel::PPCEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
463 const TargetRegisterClass *RC,
464 bool IsZExt, unsigned FP64LoadOpc) {
465 unsigned Opc;
466 bool UseOffset = true;
467
468 // If ResultReg is given, it determines the register class of the load.
469 // Otherwise, RC is the register class to use. If the result of the
470 // load isn't anticipated in this block, both may be zero, in which
471 // case we must make a conservative guess. In particular, don't assign
472 // R0 or X0 to the result register, as the result may be used in a load,
473 // store, add-immediate, or isel that won't permit this. (Though
474 // perhaps the spill and reload of live-exit values would handle this?)
475 const TargetRegisterClass *UseRC =
476 (ResultReg ? MRI.getRegClass(ResultReg) :
477 (RC ? RC :
478 (VT == MVT::f64 ? &PPC::F8RCRegClass :
479 (VT == MVT::f32 ? &PPC::F4RCRegClass :
480 (VT == MVT::i64 ? &PPC::G8RC_and_G8RC_NOX0RegClass :
481 &PPC::GPRC_and_GPRC_NOR0RegClass)))));
482
483 bool Is32BitInt = UseRC->hasSuperClassEq(&PPC::GPRCRegClass);
484
485 switch (VT.SimpleTy) {
486 default: // e.g., vector types not handled
487 return false;
488 case MVT::i8:
489 Opc = Is32BitInt ? PPC::LBZ : PPC::LBZ8;
490 break;
491 case MVT::i16:
492 Opc = (IsZExt ?
493 (Is32BitInt ? PPC::LHZ : PPC::LHZ8) :
494 (Is32BitInt ? PPC::LHA : PPC::LHA8));
495 break;
496 case MVT::i32:
497 Opc = (IsZExt ?
498 (Is32BitInt ? PPC::LWZ : PPC::LWZ8) :
499 (Is32BitInt ? PPC::LWA_32 : PPC::LWA));
500 if ((Opc == PPC::LWA || Opc == PPC::LWA_32) && ((Addr.Offset & 3) != 0))
501 UseOffset = false;
502 break;
503 case MVT::i64:
504 Opc = PPC::LD;
505 assert(UseRC->hasSuperClassEq(&PPC::G8RCRegClass) &&
506 "64-bit load with 32-bit target??");
507 UseOffset = ((Addr.Offset & 3) == 0);
508 break;
509 case MVT::f32:
510 Opc = PPC::LFS;
511 break;
512 case MVT::f64:
513 Opc = FP64LoadOpc;
514 break;
515 }
516
517 // If necessary, materialize the offset into a register and use
518 // the indexed form. Also handle stack pointers with special needs.
519 unsigned IndexReg = 0;
520 PPCSimplifyAddress(Addr, VT, UseOffset, IndexReg);
Bill Seurer8c728ae2014-12-05 20:15:56 +0000521
522 // If this is a potential VSX load with an offset of 0, a VSX indexed load can
523 // be used.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000524 bool IsVSSRC = (ResultReg != 0) && isVSSRCRegister(ResultReg);
Bill Seurer8c728ae2014-12-05 20:15:56 +0000525 bool IsVSFRC = (ResultReg != 0) && isVSFRCRegister(ResultReg);
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000526 bool Is32VSXLoad = IsVSSRC && Opc == PPC::LFS;
527 bool Is64VSXLoad = IsVSSRC && Opc == PPC::LFD;
528 if ((Is32VSXLoad || Is64VSXLoad) &&
Bill Seurer8c728ae2014-12-05 20:15:56 +0000529 (Addr.BaseType != Address::FrameIndexBase) && UseOffset &&
530 (Addr.Offset == 0)) {
531 UseOffset = false;
532 }
533
Bill Schmidtccecf262013-08-30 02:29:45 +0000534 if (ResultReg == 0)
535 ResultReg = createResultReg(UseRC);
536
537 // Note: If we still have a frame index here, we know the offset is
538 // in range, as otherwise PPCSimplifyAddress would have converted it
539 // into a RegBase.
540 if (Addr.BaseType == Address::FrameIndexBase) {
Bill Seurer8c728ae2014-12-05 20:15:56 +0000541 // VSX only provides an indexed load.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000542 if (Is32VSXLoad || Is64VSXLoad) return false;
Bill Schmidtccecf262013-08-30 02:29:45 +0000543
Alex Lorenze40c8a22015-08-11 23:09:45 +0000544 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
545 MachinePointerInfo::getFixedStack(*FuncInfo.MF, Addr.Base.FI,
546 Addr.Offset),
Bill Schmidtccecf262013-08-30 02:29:45 +0000547 MachineMemOperand::MOLoad, MFI.getObjectSize(Addr.Base.FI),
548 MFI.getObjectAlignment(Addr.Base.FI));
549
Rafael Espindolaea09c592014-02-18 22:05:46 +0000550 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
Bill Schmidtccecf262013-08-30 02:29:45 +0000551 .addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO);
552
553 // Base reg with offset in range.
554 } else if (UseOffset) {
Bill Seurer8c728ae2014-12-05 20:15:56 +0000555 // VSX only provides an indexed load.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000556 if (Is32VSXLoad || Is64VSXLoad) return false;
Bill Schmidtccecf262013-08-30 02:29:45 +0000557
Rafael Espindolaea09c592014-02-18 22:05:46 +0000558 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
Bill Schmidtccecf262013-08-30 02:29:45 +0000559 .addImm(Addr.Offset).addReg(Addr.Base.Reg);
560
561 // Indexed form.
562 } else {
563 // Get the RR opcode corresponding to the RI one. FIXME: It would be
564 // preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it
565 // is hard to get at.
566 switch (Opc) {
567 default: llvm_unreachable("Unexpected opcode!");
568 case PPC::LBZ: Opc = PPC::LBZX; break;
569 case PPC::LBZ8: Opc = PPC::LBZX8; break;
570 case PPC::LHZ: Opc = PPC::LHZX; break;
571 case PPC::LHZ8: Opc = PPC::LHZX8; break;
572 case PPC::LHA: Opc = PPC::LHAX; break;
573 case PPC::LHA8: Opc = PPC::LHAX8; break;
574 case PPC::LWZ: Opc = PPC::LWZX; break;
575 case PPC::LWZ8: Opc = PPC::LWZX8; break;
576 case PPC::LWA: Opc = PPC::LWAX; break;
577 case PPC::LWA_32: Opc = PPC::LWAX_32; break;
578 case PPC::LD: Opc = PPC::LDX; break;
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000579 case PPC::LFS: Opc = IsVSSRC ? PPC::LXSSPX : PPC::LFSX; break;
Bill Seurer8c728ae2014-12-05 20:15:56 +0000580 case PPC::LFD: Opc = IsVSFRC ? PPC::LXSDX : PPC::LFDX; break;
Bill Schmidtccecf262013-08-30 02:29:45 +0000581 }
Rafael Espindolaea09c592014-02-18 22:05:46 +0000582 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
Bill Schmidtccecf262013-08-30 02:29:45 +0000583 .addReg(Addr.Base.Reg).addReg(IndexReg);
584 }
585
586 return true;
587}
588
589// Attempt to fast-select a load instruction.
590bool PPCFastISel::SelectLoad(const Instruction *I) {
591 // FIXME: No atomic loads are supported.
592 if (cast<LoadInst>(I)->isAtomic())
593 return false;
594
595 // Verify we have a legal type before going any further.
596 MVT VT;
597 if (!isLoadTypeLegal(I->getType(), VT))
598 return false;
599
600 // See if we can handle this address.
601 Address Addr;
602 if (!PPCComputeAddress(I->getOperand(0), Addr))
603 return false;
604
605 // Look at the currently assigned register for this instruction
606 // to determine the required register class. This is necessary
607 // to constrain RA from using R0/X0 when this is not legal.
608 unsigned AssignedReg = FuncInfo.ValueMap[I];
609 const TargetRegisterClass *RC =
Craig Topper062a2ba2014-04-25 05:30:21 +0000610 AssignedReg ? MRI.getRegClass(AssignedReg) : nullptr;
Bill Schmidtccecf262013-08-30 02:29:45 +0000611
612 unsigned ResultReg = 0;
613 if (!PPCEmitLoad(VT, ResultReg, Addr, RC))
614 return false;
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000615 updateValueMap(I, ResultReg);
Bill Schmidtccecf262013-08-30 02:29:45 +0000616 return true;
617}
618
619// Emit a store instruction to store SrcReg at Addr.
620bool PPCFastISel::PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr) {
621 assert(SrcReg && "Nothing to store!");
622 unsigned Opc;
623 bool UseOffset = true;
624
625 const TargetRegisterClass *RC = MRI.getRegClass(SrcReg);
626 bool Is32BitInt = RC->hasSuperClassEq(&PPC::GPRCRegClass);
627
628 switch (VT.SimpleTy) {
629 default: // e.g., vector types not handled
630 return false;
631 case MVT::i8:
632 Opc = Is32BitInt ? PPC::STB : PPC::STB8;
633 break;
634 case MVT::i16:
635 Opc = Is32BitInt ? PPC::STH : PPC::STH8;
636 break;
637 case MVT::i32:
638 assert(Is32BitInt && "Not GPRC for i32??");
639 Opc = PPC::STW;
640 break;
641 case MVT::i64:
642 Opc = PPC::STD;
643 UseOffset = ((Addr.Offset & 3) == 0);
644 break;
645 case MVT::f32:
646 Opc = PPC::STFS;
647 break;
648 case MVT::f64:
649 Opc = PPC::STFD;
650 break;
651 }
652
653 // If necessary, materialize the offset into a register and use
654 // the indexed form. Also handle stack pointers with special needs.
655 unsigned IndexReg = 0;
656 PPCSimplifyAddress(Addr, VT, UseOffset, IndexReg);
657
Bill Seurer8c728ae2014-12-05 20:15:56 +0000658 // If this is a potential VSX store with an offset of 0, a VSX indexed store
659 // can be used.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000660 bool IsVSSRC = isVSSRCRegister(SrcReg);
Bill Seurer8c728ae2014-12-05 20:15:56 +0000661 bool IsVSFRC = isVSFRCRegister(SrcReg);
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000662 bool Is32VSXStore = IsVSSRC && Opc == PPC::STFS;
663 bool Is64VSXStore = IsVSFRC && Opc == PPC::STFD;
664 if ((Is32VSXStore || Is64VSXStore) &&
665 (Addr.BaseType != Address::FrameIndexBase) && UseOffset &&
Bill Seurer8c728ae2014-12-05 20:15:56 +0000666 (Addr.Offset == 0)) {
667 UseOffset = false;
668 }
669
Bill Schmidtccecf262013-08-30 02:29:45 +0000670 // Note: If we still have a frame index here, we know the offset is
671 // in range, as otherwise PPCSimplifyAddress would have converted it
672 // into a RegBase.
673 if (Addr.BaseType == Address::FrameIndexBase) {
Bill Seurer8c728ae2014-12-05 20:15:56 +0000674 // VSX only provides an indexed store.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000675 if (Is32VSXStore || Is64VSXStore) return false;
Bill Seurer8c728ae2014-12-05 20:15:56 +0000676
Alex Lorenze40c8a22015-08-11 23:09:45 +0000677 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
678 MachinePointerInfo::getFixedStack(*FuncInfo.MF, Addr.Base.FI,
679 Addr.Offset),
Bill Schmidtccecf262013-08-30 02:29:45 +0000680 MachineMemOperand::MOStore, MFI.getObjectSize(Addr.Base.FI),
681 MFI.getObjectAlignment(Addr.Base.FI));
682
Rafael Espindolaea09c592014-02-18 22:05:46 +0000683 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
684 .addReg(SrcReg)
685 .addImm(Addr.Offset)
686 .addFrameIndex(Addr.Base.FI)
687 .addMemOperand(MMO);
Bill Schmidtccecf262013-08-30 02:29:45 +0000688
689 // Base reg with offset in range.
Bill Seurer8c728ae2014-12-05 20:15:56 +0000690 } else if (UseOffset) {
691 // VSX only provides an indexed store.
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000692 if (Is32VSXStore || Is64VSXStore) return false;
Bill Seurer8c728ae2014-12-05 20:15:56 +0000693
Rafael Espindolaea09c592014-02-18 22:05:46 +0000694 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
Bill Schmidtccecf262013-08-30 02:29:45 +0000695 .addReg(SrcReg).addImm(Addr.Offset).addReg(Addr.Base.Reg);
696
697 // Indexed form.
Bill Seurer8c728ae2014-12-05 20:15:56 +0000698 } else {
Bill Schmidtccecf262013-08-30 02:29:45 +0000699 // Get the RR opcode corresponding to the RI one. FIXME: It would be
700 // preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it
701 // is hard to get at.
702 switch (Opc) {
703 default: llvm_unreachable("Unexpected opcode!");
704 case PPC::STB: Opc = PPC::STBX; break;
705 case PPC::STH : Opc = PPC::STHX; break;
706 case PPC::STW : Opc = PPC::STWX; break;
707 case PPC::STB8: Opc = PPC::STBX8; break;
708 case PPC::STH8: Opc = PPC::STHX8; break;
709 case PPC::STW8: Opc = PPC::STWX8; break;
710 case PPC::STD: Opc = PPC::STDX; break;
Nemanja Ivanovic376e1732015-05-29 17:13:25 +0000711 case PPC::STFS: Opc = IsVSSRC ? PPC::STXSSPX : PPC::STFSX; break;
Bill Seurer8c728ae2014-12-05 20:15:56 +0000712 case PPC::STFD: Opc = IsVSFRC ? PPC::STXSDX : PPC::STFDX; break;
Bill Schmidtccecf262013-08-30 02:29:45 +0000713 }
Samuel Antaof6815602015-03-17 15:00:57 +0000714
715 auto MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
716 .addReg(SrcReg);
717
718 // If we have an index register defined we use it in the store inst,
719 // otherwise we use X0 as base as it makes the vector instructions to
720 // use zero in the computation of the effective address regardless the
721 // content of the register.
722 if (IndexReg)
723 MIB.addReg(Addr.Base.Reg).addReg(IndexReg);
724 else
725 MIB.addReg(PPC::ZERO8).addReg(Addr.Base.Reg);
Bill Schmidtccecf262013-08-30 02:29:45 +0000726 }
727
728 return true;
729}
730
731// Attempt to fast-select a store instruction.
732bool PPCFastISel::SelectStore(const Instruction *I) {
733 Value *Op0 = I->getOperand(0);
734 unsigned SrcReg = 0;
735
736 // FIXME: No atomics loads are supported.
737 if (cast<StoreInst>(I)->isAtomic())
738 return false;
739
740 // Verify we have a legal type before going any further.
741 MVT VT;
742 if (!isLoadTypeLegal(Op0->getType(), VT))
743 return false;
744
745 // Get the value to be stored into a register.
746 SrcReg = getRegForValue(Op0);
747 if (SrcReg == 0)
748 return false;
749
750 // See if we can handle this address.
751 Address Addr;
752 if (!PPCComputeAddress(I->getOperand(1), Addr))
753 return false;
754
755 if (!PPCEmitStore(VT, SrcReg, Addr))
756 return false;
757
758 return true;
759}
760
Bill Schmidt03008132013-08-25 22:33:42 +0000761// Attempt to fast-select a branch instruction.
762bool PPCFastISel::SelectBranch(const Instruction *I) {
763 const BranchInst *BI = cast<BranchInst>(I);
764 MachineBasicBlock *BrBB = FuncInfo.MBB;
765 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
766 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
767
768 // For now, just try the simplest case where it's fed by a compare.
769 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Hal Finkel5f2a1372015-05-23 12:18:10 +0000770 if (isValueAvailable(CI)) {
771 Optional<PPC::Predicate> OptPPCPred = getComparePred(CI->getPredicate());
772 if (!OptPPCPred)
773 return false;
Bill Schmidt03008132013-08-25 22:33:42 +0000774
Hal Finkel5f2a1372015-05-23 12:18:10 +0000775 PPC::Predicate PPCPred = OptPPCPred.getValue();
Bill Schmidt03008132013-08-25 22:33:42 +0000776
Hal Finkel5f2a1372015-05-23 12:18:10 +0000777 // Take advantage of fall-through opportunities.
778 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
779 std::swap(TBB, FBB);
780 PPCPred = PPC::InvertPredicate(PPCPred);
781 }
782
783 unsigned CondReg = createResultReg(&PPC::CRRCRegClass);
784
785 if (!PPCEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned(),
786 CondReg))
787 return false;
788
789 BuildMI(*BrBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::BCC))
790 .addImm(PPCPred).addReg(CondReg).addMBB(TBB);
Matthias Braunccfc9c82015-08-26 01:55:47 +0000791 finishCondBranch(BI->getParent(), TBB, FBB);
Hal Finkel5f2a1372015-05-23 12:18:10 +0000792 return true;
Bill Schmidt03008132013-08-25 22:33:42 +0000793 }
Bill Schmidt03008132013-08-25 22:33:42 +0000794 } else if (const ConstantInt *CI =
795 dyn_cast<ConstantInt>(BI->getCondition())) {
796 uint64_t Imm = CI->getZExtValue();
797 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000798 fastEmitBranch(Target, DbgLoc);
Bill Schmidt03008132013-08-25 22:33:42 +0000799 return true;
800 }
801
802 // FIXME: ARM looks for a case where the block containing the compare
803 // has been split from the block containing the branch. If this happens,
804 // there is a vreg available containing the result of the compare. I'm
805 // not sure we can do much, as we've lost the predicate information with
806 // the compare instruction -- we have a 4-bit CR but don't know which bit
807 // to test here.
808 return false;
809}
810
811// Attempt to emit a compare of the two source values. Signed and unsigned
812// comparisons are supported. Return false if we can't handle it.
813bool PPCFastISel::PPCEmitCmp(const Value *SrcValue1, const Value *SrcValue2,
814 bool IsZExt, unsigned DestReg) {
815 Type *Ty = SrcValue1->getType();
Mehdi Amini44ede332015-07-09 02:09:04 +0000816 EVT SrcEVT = TLI.getValueType(DL, Ty, true);
Bill Schmidt03008132013-08-25 22:33:42 +0000817 if (!SrcEVT.isSimple())
818 return false;
819 MVT SrcVT = SrcEVT.getSimpleVT();
820
Eric Christopher1b8e7632014-05-22 01:07:24 +0000821 if (SrcVT == MVT::i1 && PPCSubTarget->useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000822 return false;
823
Bill Schmidt03008132013-08-25 22:33:42 +0000824 // See if operand 2 is an immediate encodeable in the compare.
825 // FIXME: Operands are not in canonical order at -O0, so an immediate
826 // operand in position 1 is a lost opportunity for now. We are
827 // similar to ARM in this regard.
828 long Imm = 0;
829 bool UseImm = false;
830
831 // Only 16-bit integer constants can be represented in compares for
832 // PowerPC. Others will be materialized into a register.
833 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(SrcValue2)) {
834 if (SrcVT == MVT::i64 || SrcVT == MVT::i32 || SrcVT == MVT::i16 ||
835 SrcVT == MVT::i8 || SrcVT == MVT::i1) {
836 const APInt &CIVal = ConstInt->getValue();
837 Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue();
838 if ((IsZExt && isUInt<16>(Imm)) || (!IsZExt && isInt<16>(Imm)))
839 UseImm = true;
840 }
841 }
842
843 unsigned CmpOpc;
844 bool NeedsExt = false;
845 switch (SrcVT.SimpleTy) {
846 default: return false;
847 case MVT::f32:
848 CmpOpc = PPC::FCMPUS;
849 break;
850 case MVT::f64:
851 CmpOpc = PPC::FCMPUD;
852 break;
853 case MVT::i1:
854 case MVT::i8:
855 case MVT::i16:
856 NeedsExt = true;
857 // Intentional fall-through.
858 case MVT::i32:
859 if (!UseImm)
860 CmpOpc = IsZExt ? PPC::CMPLW : PPC::CMPW;
861 else
862 CmpOpc = IsZExt ? PPC::CMPLWI : PPC::CMPWI;
863 break;
864 case MVT::i64:
865 if (!UseImm)
866 CmpOpc = IsZExt ? PPC::CMPLD : PPC::CMPD;
867 else
868 CmpOpc = IsZExt ? PPC::CMPLDI : PPC::CMPDI;
869 break;
870 }
871
872 unsigned SrcReg1 = getRegForValue(SrcValue1);
873 if (SrcReg1 == 0)
874 return false;
875
876 unsigned SrcReg2 = 0;
877 if (!UseImm) {
878 SrcReg2 = getRegForValue(SrcValue2);
879 if (SrcReg2 == 0)
880 return false;
881 }
882
883 if (NeedsExt) {
884 unsigned ExtReg = createResultReg(&PPC::GPRCRegClass);
885 if (!PPCEmitIntExt(SrcVT, SrcReg1, MVT::i32, ExtReg, IsZExt))
886 return false;
887 SrcReg1 = ExtReg;
888
889 if (!UseImm) {
890 unsigned ExtReg = createResultReg(&PPC::GPRCRegClass);
891 if (!PPCEmitIntExt(SrcVT, SrcReg2, MVT::i32, ExtReg, IsZExt))
892 return false;
893 SrcReg2 = ExtReg;
894 }
895 }
896
897 if (!UseImm)
Rafael Espindolaea09c592014-02-18 22:05:46 +0000898 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CmpOpc), DestReg)
Bill Schmidt03008132013-08-25 22:33:42 +0000899 .addReg(SrcReg1).addReg(SrcReg2);
900 else
Rafael Espindolaea09c592014-02-18 22:05:46 +0000901 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CmpOpc), DestReg)
Bill Schmidt03008132013-08-25 22:33:42 +0000902 .addReg(SrcReg1).addImm(Imm);
903
904 return true;
905}
906
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000907// Attempt to fast-select a floating-point extend instruction.
908bool PPCFastISel::SelectFPExt(const Instruction *I) {
909 Value *Src = I->getOperand(0);
Mehdi Amini44ede332015-07-09 02:09:04 +0000910 EVT SrcVT = TLI.getValueType(DL, Src->getType(), true);
911 EVT DestVT = TLI.getValueType(DL, I->getType(), true);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000912
913 if (SrcVT != MVT::f32 || DestVT != MVT::f64)
914 return false;
915
916 unsigned SrcReg = getRegForValue(Src);
917 if (!SrcReg)
918 return false;
919
920 // No code is generated for a FP extend.
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000921 updateValueMap(I, SrcReg);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000922 return true;
923}
924
925// Attempt to fast-select a floating-point truncate instruction.
926bool PPCFastISel::SelectFPTrunc(const Instruction *I) {
927 Value *Src = I->getOperand(0);
Mehdi Amini44ede332015-07-09 02:09:04 +0000928 EVT SrcVT = TLI.getValueType(DL, Src->getType(), true);
929 EVT DestVT = TLI.getValueType(DL, I->getType(), true);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000930
931 if (SrcVT != MVT::f64 || DestVT != MVT::f32)
932 return false;
933
934 unsigned SrcReg = getRegForValue(Src);
935 if (!SrcReg)
936 return false;
937
938 // Round the result to single precision.
939 unsigned DestReg = createResultReg(&PPC::F4RCRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000940 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::FRSP), DestReg)
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000941 .addReg(SrcReg);
942
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +0000943 updateValueMap(I, DestReg);
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000944 return true;
945}
946
947// Move an i32 or i64 value in a GPR to an f64 value in an FPR.
Samuel Antao1194b8f2014-10-09 20:42:56 +0000948// FIXME: When direct register moves are implemented (see PowerISA 2.07),
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000949// those should be used instead of moving via a stack slot when the
950// subtarget permits.
951// FIXME: The code here is sloppy for the 4-byte case. Can use a 4-byte
952// stack slot and 4-byte store/load sequence. Or just sext the 4-byte
953// case to 8 bytes which produces tighter code but wastes stack space.
954unsigned PPCFastISel::PPCMoveToFPReg(MVT SrcVT, unsigned SrcReg,
955 bool IsSigned) {
956
957 // If necessary, extend 32-bit int to 64-bit.
958 if (SrcVT == MVT::i32) {
959 unsigned TmpReg = createResultReg(&PPC::G8RCRegClass);
960 if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned))
961 return 0;
962 SrcReg = TmpReg;
963 }
964
965 // Get a stack slot 8 bytes wide, aligned on an 8-byte boundary.
966 Address Addr;
967 Addr.BaseType = Address::FrameIndexBase;
968 Addr.Base.FI = MFI.CreateStackObject(8, 8, false);
969
970 // Store the value from the GPR.
971 if (!PPCEmitStore(MVT::i64, SrcReg, Addr))
972 return 0;
973
974 // Load the integer value into an FPR. The kind of load used depends
975 // on a number of conditions.
976 unsigned LoadOpc = PPC::LFD;
977
978 if (SrcVT == MVT::i32) {
Bill Schmidtff9622e2014-03-18 14:32:50 +0000979 if (!IsSigned) {
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000980 LoadOpc = PPC::LFIWZX;
Samuel Antao1194b8f2014-10-09 20:42:56 +0000981 Addr.Offset = (PPCSubTarget->isLittleEndian()) ? 0 : 4;
Eric Christopher1b8e7632014-05-22 01:07:24 +0000982 } else if (PPCSubTarget->hasLFIWAX()) {
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000983 LoadOpc = PPC::LFIWAX;
Samuel Antao1194b8f2014-10-09 20:42:56 +0000984 Addr.Offset = (PPCSubTarget->isLittleEndian()) ? 0 : 4;
Bill Schmidtff9622e2014-03-18 14:32:50 +0000985 }
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000986 }
987
988 const TargetRegisterClass *RC = &PPC::F8RCRegClass;
989 unsigned ResultReg = 0;
990 if (!PPCEmitLoad(MVT::f64, ResultReg, Addr, RC, !IsSigned, LoadOpc))
991 return 0;
992
993 return ResultReg;
994}
995
996// Attempt to fast-select an integer-to-floating-point conversion.
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +0000997// FIXME: Once fast-isel has better support for VSX, conversions using
998// direct moves should be implemented.
Bill Schmidt8d86fe72013-08-30 15:18:11 +0000999bool PPCFastISel::SelectIToFP(const Instruction *I, bool IsSigned) {
1000 MVT DstVT;
1001 Type *DstTy = I->getType();
1002 if (!isTypeLegal(DstTy, DstVT))
1003 return false;
1004
1005 if (DstVT != MVT::f32 && DstVT != MVT::f64)
1006 return false;
1007
1008 Value *Src = I->getOperand(0);
Mehdi Amini44ede332015-07-09 02:09:04 +00001009 EVT SrcEVT = TLI.getValueType(DL, Src->getType(), true);
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001010 if (!SrcEVT.isSimple())
1011 return false;
1012
1013 MVT SrcVT = SrcEVT.getSimpleVT();
1014
1015 if (SrcVT != MVT::i8 && SrcVT != MVT::i16 &&
1016 SrcVT != MVT::i32 && SrcVT != MVT::i64)
1017 return false;
1018
1019 unsigned SrcReg = getRegForValue(Src);
1020 if (SrcReg == 0)
1021 return false;
1022
1023 // We can only lower an unsigned convert if we have the newer
1024 // floating-point conversion operations.
Eric Christopher1b8e7632014-05-22 01:07:24 +00001025 if (!IsSigned && !PPCSubTarget->hasFPCVT())
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001026 return false;
1027
1028 // FIXME: For now we require the newer floating-point conversion operations
1029 // (which are present only on P7 and A2 server models) when converting
1030 // to single-precision float. Otherwise we have to generate a lot of
1031 // fiddly code to avoid double rounding. If necessary, the fiddly code
1032 // can be found in PPCTargetLowering::LowerINT_TO_FP().
Eric Christopher1b8e7632014-05-22 01:07:24 +00001033 if (DstVT == MVT::f32 && !PPCSubTarget->hasFPCVT())
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001034 return false;
1035
1036 // Extend the input if necessary.
1037 if (SrcVT == MVT::i8 || SrcVT == MVT::i16) {
1038 unsigned TmpReg = createResultReg(&PPC::G8RCRegClass);
1039 if (!PPCEmitIntExt(SrcVT, SrcReg, MVT::i64, TmpReg, !IsSigned))
1040 return false;
1041 SrcVT = MVT::i64;
1042 SrcReg = TmpReg;
1043 }
1044
1045 // Move the integer value to an FPR.
1046 unsigned FPReg = PPCMoveToFPReg(SrcVT, SrcReg, IsSigned);
1047 if (FPReg == 0)
1048 return false;
1049
1050 // Determine the opcode for the conversion.
1051 const TargetRegisterClass *RC = &PPC::F8RCRegClass;
1052 unsigned DestReg = createResultReg(RC);
1053 unsigned Opc;
1054
1055 if (DstVT == MVT::f32)
1056 Opc = IsSigned ? PPC::FCFIDS : PPC::FCFIDUS;
1057 else
1058 Opc = IsSigned ? PPC::FCFID : PPC::FCFIDU;
1059
1060 // Generate the convert.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001061 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001062 .addReg(FPReg);
1063
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001064 updateValueMap(I, DestReg);
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001065 return true;
1066}
1067
1068// Move the floating-point value in SrcReg into an integer destination
1069// register, and return the register (or zero if we can't handle it).
Samuel Antao1194b8f2014-10-09 20:42:56 +00001070// FIXME: When direct register moves are implemented (see PowerISA 2.07),
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001071// those should be used instead of moving via a stack slot when the
1072// subtarget permits.
1073unsigned PPCFastISel::PPCMoveToIntReg(const Instruction *I, MVT VT,
1074 unsigned SrcReg, bool IsSigned) {
1075 // Get a stack slot 8 bytes wide, aligned on an 8-byte boundary.
1076 // Note that if have STFIWX available, we could use a 4-byte stack
1077 // slot for i32, but this being fast-isel we'll just go with the
1078 // easiest code gen possible.
1079 Address Addr;
1080 Addr.BaseType = Address::FrameIndexBase;
1081 Addr.Base.FI = MFI.CreateStackObject(8, 8, false);
1082
1083 // Store the value from the FPR.
1084 if (!PPCEmitStore(MVT::f64, SrcReg, Addr))
1085 return 0;
1086
Nemanja Ivanovic1a5706c2016-02-29 16:42:27 +00001087 // Reload it into a GPR. If we want an i32 on big endian, modify the
1088 // address to have a 4-byte offset so we load from the right place.
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001089 if (VT == MVT::i32)
Nemanja Ivanovic1a5706c2016-02-29 16:42:27 +00001090 Addr.Offset = (PPCSubTarget->isLittleEndian()) ? 0 : 4;
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001091
1092 // Look at the currently assigned register for this instruction
1093 // to determine the required register class.
1094 unsigned AssignedReg = FuncInfo.ValueMap[I];
1095 const TargetRegisterClass *RC =
Craig Topper062a2ba2014-04-25 05:30:21 +00001096 AssignedReg ? MRI.getRegClass(AssignedReg) : nullptr;
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001097
1098 unsigned ResultReg = 0;
1099 if (!PPCEmitLoad(VT, ResultReg, Addr, RC, !IsSigned))
1100 return 0;
1101
1102 return ResultReg;
1103}
1104
1105// Attempt to fast-select a floating-point-to-integer conversion.
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00001106// FIXME: Once fast-isel has better support for VSX, conversions using
1107// direct moves should be implemented.
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001108bool PPCFastISel::SelectFPToI(const Instruction *I, bool IsSigned) {
1109 MVT DstVT, SrcVT;
1110 Type *DstTy = I->getType();
1111 if (!isTypeLegal(DstTy, DstVT))
1112 return false;
1113
1114 if (DstVT != MVT::i32 && DstVT != MVT::i64)
1115 return false;
1116
Bill Schmidt83973ef2014-06-24 20:05:18 +00001117 // If we don't have FCTIDUZ and we need it, punt to SelectionDAG.
1118 if (DstVT == MVT::i64 && !IsSigned && !PPCSubTarget->hasFPCVT())
1119 return false;
1120
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001121 Value *Src = I->getOperand(0);
1122 Type *SrcTy = Src->getType();
1123 if (!isTypeLegal(SrcTy, SrcVT))
1124 return false;
1125
1126 if (SrcVT != MVT::f32 && SrcVT != MVT::f64)
1127 return false;
1128
1129 unsigned SrcReg = getRegForValue(Src);
1130 if (SrcReg == 0)
1131 return false;
1132
1133 // Convert f32 to f64 if necessary. This is just a meaningless copy
1134 // to get the register class right. COPY_TO_REGCLASS is needed since
1135 // a COPY from F4RC to F8RC is converted to a F4RC-F4RC copy downstream.
1136 const TargetRegisterClass *InRC = MRI.getRegClass(SrcReg);
1137 if (InRC == &PPC::F4RCRegClass) {
1138 unsigned TmpReg = createResultReg(&PPC::F8RCRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001139 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001140 TII.get(TargetOpcode::COPY_TO_REGCLASS), TmpReg)
1141 .addReg(SrcReg).addImm(PPC::F8RCRegClassID);
1142 SrcReg = TmpReg;
1143 }
1144
1145 // Determine the opcode for the conversion, which takes place
1146 // entirely within FPRs.
1147 unsigned DestReg = createResultReg(&PPC::F8RCRegClass);
1148 unsigned Opc;
1149
1150 if (DstVT == MVT::i32)
1151 if (IsSigned)
1152 Opc = PPC::FCTIWZ;
1153 else
Eric Christopher1b8e7632014-05-22 01:07:24 +00001154 Opc = PPCSubTarget->hasFPCVT() ? PPC::FCTIWUZ : PPC::FCTIDZ;
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001155 else
1156 Opc = IsSigned ? PPC::FCTIDZ : PPC::FCTIDUZ;
1157
1158 // Generate the convert.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001159 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001160 .addReg(SrcReg);
1161
1162 // Now move the integer value from a float register to an integer register.
1163 unsigned IntReg = PPCMoveToIntReg(I, DstVT, DestReg, IsSigned);
1164 if (IntReg == 0)
1165 return false;
1166
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001167 updateValueMap(I, IntReg);
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001168 return true;
1169}
1170
Bill Schmidtccecf262013-08-30 02:29:45 +00001171// Attempt to fast-select a binary integer operation that isn't already
1172// handled automatically.
1173bool PPCFastISel::SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001174 EVT DestVT = TLI.getValueType(DL, I->getType(), true);
Bill Schmidtccecf262013-08-30 02:29:45 +00001175
1176 // We can get here in the case when we have a binary operation on a non-legal
1177 // type and the target independent selector doesn't know how to handle it.
1178 if (DestVT != MVT::i16 && DestVT != MVT::i8)
1179 return false;
1180
1181 // Look at the currently assigned register for this instruction
1182 // to determine the required register class. If there is no register,
1183 // make a conservative choice (don't assign R0).
1184 unsigned AssignedReg = FuncInfo.ValueMap[I];
1185 const TargetRegisterClass *RC =
1186 (AssignedReg ? MRI.getRegClass(AssignedReg) :
1187 &PPC::GPRC_and_GPRC_NOR0RegClass);
1188 bool IsGPRC = RC->hasSuperClassEq(&PPC::GPRCRegClass);
1189
1190 unsigned Opc;
1191 switch (ISDOpcode) {
1192 default: return false;
1193 case ISD::ADD:
1194 Opc = IsGPRC ? PPC::ADD4 : PPC::ADD8;
1195 break;
1196 case ISD::OR:
1197 Opc = IsGPRC ? PPC::OR : PPC::OR8;
1198 break;
1199 case ISD::SUB:
1200 Opc = IsGPRC ? PPC::SUBF : PPC::SUBF8;
1201 break;
1202 }
1203
1204 unsigned ResultReg = createResultReg(RC ? RC : &PPC::G8RCRegClass);
1205 unsigned SrcReg1 = getRegForValue(I->getOperand(0));
1206 if (SrcReg1 == 0) return false;
1207
1208 // Handle case of small immediate operand.
1209 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(1))) {
1210 const APInt &CIVal = ConstInt->getValue();
1211 int Imm = (int)CIVal.getSExtValue();
1212 bool UseImm = true;
1213 if (isInt<16>(Imm)) {
1214 switch (Opc) {
1215 default:
1216 llvm_unreachable("Missing case!");
1217 case PPC::ADD4:
1218 Opc = PPC::ADDI;
1219 MRI.setRegClass(SrcReg1, &PPC::GPRC_and_GPRC_NOR0RegClass);
1220 break;
1221 case PPC::ADD8:
1222 Opc = PPC::ADDI8;
1223 MRI.setRegClass(SrcReg1, &PPC::G8RC_and_G8RC_NOX0RegClass);
1224 break;
1225 case PPC::OR:
1226 Opc = PPC::ORI;
1227 break;
1228 case PPC::OR8:
1229 Opc = PPC::ORI8;
1230 break;
1231 case PPC::SUBF:
1232 if (Imm == -32768)
1233 UseImm = false;
1234 else {
1235 Opc = PPC::ADDI;
1236 MRI.setRegClass(SrcReg1, &PPC::GPRC_and_GPRC_NOR0RegClass);
1237 Imm = -Imm;
1238 }
1239 break;
1240 case PPC::SUBF8:
1241 if (Imm == -32768)
1242 UseImm = false;
1243 else {
1244 Opc = PPC::ADDI8;
1245 MRI.setRegClass(SrcReg1, &PPC::G8RC_and_G8RC_NOX0RegClass);
1246 Imm = -Imm;
1247 }
1248 break;
1249 }
1250
1251 if (UseImm) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001252 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
1253 ResultReg)
1254 .addReg(SrcReg1)
1255 .addImm(Imm);
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001256 updateValueMap(I, ResultReg);
Bill Schmidtccecf262013-08-30 02:29:45 +00001257 return true;
1258 }
1259 }
1260 }
1261
1262 // Reg-reg case.
1263 unsigned SrcReg2 = getRegForValue(I->getOperand(1));
1264 if (SrcReg2 == 0) return false;
1265
1266 // Reverse operands for subtract-from.
1267 if (ISDOpcode == ISD::SUB)
1268 std::swap(SrcReg1, SrcReg2);
1269
Rafael Espindolaea09c592014-02-18 22:05:46 +00001270 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
Bill Schmidtccecf262013-08-30 02:29:45 +00001271 .addReg(SrcReg1).addReg(SrcReg2);
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001272 updateValueMap(I, ResultReg);
Bill Schmidtccecf262013-08-30 02:29:45 +00001273 return true;
1274}
1275
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001276// Handle arguments to a call that we're attempting to fast-select.
1277// Return false if the arguments are too complex for us at the moment.
1278bool PPCFastISel::processCallArgs(SmallVectorImpl<Value*> &Args,
1279 SmallVectorImpl<unsigned> &ArgRegs,
1280 SmallVectorImpl<MVT> &ArgVTs,
1281 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1282 SmallVectorImpl<unsigned> &RegArgs,
1283 CallingConv::ID CC,
1284 unsigned &NumBytes,
1285 bool IsVarArg) {
1286 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001287 CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, ArgLocs, *Context);
Ulrich Weigandf316e1d2014-06-23 13:47:52 +00001288
1289 // Reserve space for the linkage area on the stack.
Eric Christophera4ae2132015-02-13 22:22:57 +00001290 unsigned LinkageSize = PPCSubTarget->getFrameLowering()->getLinkageSize();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00001291 CCInfo.AllocateStack(LinkageSize, 8);
Ulrich Weigandf316e1d2014-06-23 13:47:52 +00001292
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001293 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CC_PPC64_ELF_FIS);
1294
1295 // Bail out if we can't handle any of the arguments.
1296 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
1297 CCValAssign &VA = ArgLocs[I];
1298 MVT ArgVT = ArgVTs[VA.getValNo()];
1299
1300 // Skip vector arguments for now, as well as long double and
1301 // uint128_t, and anything that isn't passed in a register.
Hal Finkel940ab932014-02-28 00:27:01 +00001302 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64 || ArgVT == MVT::i1 ||
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001303 !VA.isRegLoc() || VA.needsCustom())
1304 return false;
1305
1306 // Skip bit-converted arguments for now.
1307 if (VA.getLocInfo() == CCValAssign::BCvt)
1308 return false;
1309 }
1310
1311 // Get a count of how many bytes are to be pushed onto the stack.
1312 NumBytes = CCInfo.getNextStackOffset();
1313
Ulrich Weigandf316e1d2014-06-23 13:47:52 +00001314 // The prolog code of the callee may store up to 8 GPR argument registers to
1315 // the stack, allowing va_start to index over them in memory if its varargs.
1316 // Because we cannot tell if this is needed on the caller side, we have to
1317 // conservatively assume that it is needed. As such, make sure we have at
1318 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8658f172014-07-20 23:43:15 +00001319 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00001320 NumBytes = std::max(NumBytes, LinkageSize + 64);
Ulrich Weigandf316e1d2014-06-23 13:47:52 +00001321
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001322 // Issue CALLSEQ_START.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001323 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001324 TII.get(TII.getCallFrameSetupOpcode()))
1325 .addImm(NumBytes);
1326
1327 // Prepare to assign register arguments. Every argument uses up a
1328 // GPR protocol register even if it's passed in a floating-point
Hal Finkelf81b6dd2015-01-18 12:08:47 +00001329 // register (unless we're using the fast calling convention).
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001330 unsigned NextGPR = PPC::X3;
1331 unsigned NextFPR = PPC::F1;
1332
1333 // Process arguments.
1334 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
1335 CCValAssign &VA = ArgLocs[I];
1336 unsigned Arg = ArgRegs[VA.getValNo()];
1337 MVT ArgVT = ArgVTs[VA.getValNo()];
1338
1339 // Handle argument promotion and bitcasts.
1340 switch (VA.getLocInfo()) {
1341 default:
1342 llvm_unreachable("Unknown loc info!");
1343 case CCValAssign::Full:
1344 break;
1345 case CCValAssign::SExt: {
1346 MVT DestVT = VA.getLocVT();
1347 const TargetRegisterClass *RC =
1348 (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
1349 unsigned TmpReg = createResultReg(RC);
1350 if (!PPCEmitIntExt(ArgVT, Arg, DestVT, TmpReg, /*IsZExt*/false))
1351 llvm_unreachable("Failed to emit a sext!");
1352 ArgVT = DestVT;
1353 Arg = TmpReg;
1354 break;
1355 }
1356 case CCValAssign::AExt:
1357 case CCValAssign::ZExt: {
1358 MVT DestVT = VA.getLocVT();
1359 const TargetRegisterClass *RC =
1360 (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
1361 unsigned TmpReg = createResultReg(RC);
1362 if (!PPCEmitIntExt(ArgVT, Arg, DestVT, TmpReg, /*IsZExt*/true))
1363 llvm_unreachable("Failed to emit a zext!");
1364 ArgVT = DestVT;
1365 Arg = TmpReg;
1366 break;
1367 }
1368 case CCValAssign::BCvt: {
1369 // FIXME: Not yet handled.
1370 llvm_unreachable("Should have bailed before getting here!");
1371 break;
1372 }
1373 }
1374
1375 // Copy this argument to the appropriate register.
1376 unsigned ArgReg;
1377 if (ArgVT == MVT::f32 || ArgVT == MVT::f64) {
1378 ArgReg = NextFPR++;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00001379 if (CC != CallingConv::Fast)
1380 ++NextGPR;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001381 } else
1382 ArgReg = NextGPR++;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001383
1384 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1385 TII.get(TargetOpcode::COPY), ArgReg).addReg(Arg);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001386 RegArgs.push_back(ArgReg);
1387 }
1388
1389 return true;
1390}
1391
1392// For a call that we've determined we can fast-select, finish the
1393// call sequence and generate a copy to obtain the return value (if any).
Hal Finkel934361a2015-01-14 01:07:51 +00001394bool PPCFastISel::finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes) {
1395 CallingConv::ID CC = CLI.CallConv;
1396
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001397 // Issue CallSEQ_END.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001398 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001399 TII.get(TII.getCallFrameDestroyOpcode()))
1400 .addImm(NumBytes).addImm(0);
1401
1402 // Next, generate a copy to obtain the return value.
1403 // FIXME: No multi-register return values yet, though I don't foresee
1404 // any real difficulties there.
1405 if (RetVT != MVT::isVoid) {
1406 SmallVector<CCValAssign, 16> RVLocs;
Hal Finkel934361a2015-01-14 01:07:51 +00001407 CCState CCInfo(CC, false, *FuncInfo.MF, RVLocs, *Context);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001408 CCInfo.AnalyzeCallResult(RetVT, RetCC_PPC64_ELF_FIS);
1409 CCValAssign &VA = RVLocs[0];
1410 assert(RVLocs.size() == 1 && "No support for multi-reg return values!");
1411 assert(VA.isRegLoc() && "Can only return in registers!");
1412
1413 MVT DestVT = VA.getValVT();
1414 MVT CopyVT = DestVT;
1415
1416 // Ints smaller than a register still arrive in a full 64-bit
1417 // register, so make sure we recognize this.
1418 if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32)
1419 CopyVT = MVT::i64;
1420
1421 unsigned SourcePhysReg = VA.getLocReg();
Bill Schmidt0954ea12013-08-30 23:25:30 +00001422 unsigned ResultReg = 0;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001423
1424 if (RetVT == CopyVT) {
1425 const TargetRegisterClass *CpyRC = TLI.getRegClassFor(CopyVT);
1426 ResultReg = createResultReg(CpyRC);
1427
Rafael Espindolaea09c592014-02-18 22:05:46 +00001428 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001429 TII.get(TargetOpcode::COPY), ResultReg)
1430 .addReg(SourcePhysReg);
1431
1432 // If necessary, round the floating result to single precision.
1433 } else if (CopyVT == MVT::f64) {
1434 ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001435 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::FRSP),
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001436 ResultReg).addReg(SourcePhysReg);
1437
1438 // If only the low half of a general register is needed, generate
1439 // a GPRC copy instead of a G8RC copy. (EXTRACT_SUBREG can't be
1440 // used along the fast-isel path (not lowered), and downstream logic
1441 // also doesn't like a direct subreg copy on a physical reg.)
1442 } else if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32) {
1443 ResultReg = createResultReg(&PPC::GPRCRegClass);
1444 // Convert physical register from G8RC to GPRC.
1445 SourcePhysReg -= PPC::X0 - PPC::R0;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001446 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001447 TII.get(TargetOpcode::COPY), ResultReg)
1448 .addReg(SourcePhysReg);
1449 }
1450
Bill Schmidt0954ea12013-08-30 23:25:30 +00001451 assert(ResultReg && "ResultReg unset!");
Hal Finkel934361a2015-01-14 01:07:51 +00001452 CLI.InRegs.push_back(SourcePhysReg);
1453 CLI.ResultReg = ResultReg;
1454 CLI.NumResultRegs = 1;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001455 }
Hal Finkel934361a2015-01-14 01:07:51 +00001456
1457 return true;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001458}
1459
Hal Finkel934361a2015-01-14 01:07:51 +00001460bool PPCFastISel::fastLowerCall(CallLoweringInfo &CLI) {
1461 CallingConv::ID CC = CLI.CallConv;
1462 bool IsTailCall = CLI.IsTailCall;
1463 bool IsVarArg = CLI.IsVarArg;
1464 const Value *Callee = CLI.Callee;
Rafael Espindolace4c2bc2015-06-23 12:21:54 +00001465 const MCSymbol *Symbol = CLI.Symbol;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001466
Rafael Espindolace4c2bc2015-06-23 12:21:54 +00001467 if (!Callee && !Symbol)
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001468 return false;
1469
1470 // Allow SelectionDAG isel to handle tail calls.
Hal Finkel934361a2015-01-14 01:07:51 +00001471 if (IsTailCall)
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001472 return false;
1473
Hal Finkel934361a2015-01-14 01:07:51 +00001474 // Let SDISel handle vararg functions.
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001475 if (IsVarArg)
1476 return false;
1477
1478 // Handle simple calls for now, with legal return types and
1479 // those that can be extended.
Hal Finkel934361a2015-01-14 01:07:51 +00001480 Type *RetTy = CLI.RetTy;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001481 MVT RetVT;
1482 if (RetTy->isVoidTy())
1483 RetVT = MVT::isVoid;
1484 else if (!isTypeLegal(RetTy, RetVT) && RetVT != MVT::i16 &&
1485 RetVT != MVT::i8)
1486 return false;
Hal Finkel50271aae2015-04-01 00:40:48 +00001487 else if (RetVT == MVT::i1 && PPCSubTarget->useCRBits())
1488 // We can't handle boolean returns when CR bits are in use.
1489 return false;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001490
1491 // FIXME: No multi-register return values yet.
1492 if (RetVT != MVT::isVoid && RetVT != MVT::i8 && RetVT != MVT::i16 &&
1493 RetVT != MVT::i32 && RetVT != MVT::i64 && RetVT != MVT::f32 &&
1494 RetVT != MVT::f64) {
1495 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001496 CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, RVLocs, *Context);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001497 CCInfo.AnalyzeCallResult(RetVT, RetCC_PPC64_ELF_FIS);
1498 if (RVLocs.size() > 1)
1499 return false;
1500 }
1501
1502 // Bail early if more than 8 arguments, as we only currently
1503 // handle arguments passed in registers.
Hal Finkel934361a2015-01-14 01:07:51 +00001504 unsigned NumArgs = CLI.OutVals.size();
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001505 if (NumArgs > 8)
1506 return false;
1507
1508 // Set up the argument vectors.
1509 SmallVector<Value*, 8> Args;
1510 SmallVector<unsigned, 8> ArgRegs;
1511 SmallVector<MVT, 8> ArgVTs;
1512 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1513
1514 Args.reserve(NumArgs);
1515 ArgRegs.reserve(NumArgs);
1516 ArgVTs.reserve(NumArgs);
1517 ArgFlags.reserve(NumArgs);
1518
Hal Finkel934361a2015-01-14 01:07:51 +00001519 for (unsigned i = 0, ie = NumArgs; i != ie; ++i) {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001520 // Only handle easy calls for now. It would be reasonably easy
1521 // to handle <= 8-byte structures passed ByVal in registers, but we
1522 // have to ensure they are right-justified in the register.
Hal Finkel934361a2015-01-14 01:07:51 +00001523 ISD::ArgFlagsTy Flags = CLI.OutFlags[i];
1524 if (Flags.isInReg() || Flags.isSRet() || Flags.isNest() || Flags.isByVal())
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001525 return false;
1526
Hal Finkel934361a2015-01-14 01:07:51 +00001527 Value *ArgValue = CLI.OutVals[i];
1528 Type *ArgTy = ArgValue->getType();
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001529 MVT ArgVT;
1530 if (!isTypeLegal(ArgTy, ArgVT) && ArgVT != MVT::i16 && ArgVT != MVT::i8)
1531 return false;
1532
1533 if (ArgVT.isVector())
1534 return false;
1535
Hal Finkel934361a2015-01-14 01:07:51 +00001536 unsigned Arg = getRegForValue(ArgValue);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001537 if (Arg == 0)
1538 return false;
1539
Hal Finkel934361a2015-01-14 01:07:51 +00001540 Args.push_back(ArgValue);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001541 ArgRegs.push_back(Arg);
1542 ArgVTs.push_back(ArgVT);
1543 ArgFlags.push_back(Flags);
1544 }
1545
1546 // Process the arguments.
1547 SmallVector<unsigned, 8> RegArgs;
1548 unsigned NumBytes;
1549
1550 if (!processCallArgs(Args, ArgRegs, ArgVTs, ArgFlags,
1551 RegArgs, CC, NumBytes, IsVarArg))
1552 return false;
1553
Hal Finkel934361a2015-01-14 01:07:51 +00001554 MachineInstrBuilder MIB;
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001555 // FIXME: No handling for function pointers yet. This requires
1556 // implementing the function descriptor (OPD) setup.
1557 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Hal Finkel934361a2015-01-14 01:07:51 +00001558 if (!GV) {
1559 // patchpoints are a special case; they always dispatch to a pointer value.
1560 // However, we don't actually want to generate the indirect call sequence
1561 // here (that will be generated, as necessary, during asm printing), and
1562 // the call we generate here will be erased by FastISel::selectPatchpoint,
1563 // so don't try very hard...
1564 if (CLI.IsPatchPoint)
1565 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::NOP));
1566 else
1567 return false;
1568 } else {
1569 // Build direct call with NOP for TOC restore.
1570 // FIXME: We can and should optimize away the NOP for local calls.
1571 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1572 TII.get(PPC::BL8_NOP));
1573 // Add callee.
1574 MIB.addGlobalAddress(GV);
1575 }
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001576
1577 // Add implicit physical register uses to the call.
1578 for (unsigned II = 0, IE = RegArgs.size(); II != IE; ++II)
1579 MIB.addReg(RegArgs[II], RegState::Implicit);
1580
Hal Finkelaf519932015-01-19 07:20:27 +00001581 // Direct calls, in both the ELF V1 and V2 ABIs, need the TOC register live
1582 // into the call.
Hal Finkele6698d52015-02-01 15:03:28 +00001583 PPCFuncInfo->setUsesTOCBasePtr();
Hal Finkelc3168122015-01-19 07:44:45 +00001584 MIB.addReg(PPC::X2, RegState::Implicit);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00001585
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001586 // Add a register mask with the call-preserved registers. Proper
1587 // defs for return values will be added by setPhysRegsDeadExcept().
Eric Christopher9deb75d2015-03-11 22:42:13 +00001588 MIB.addRegMask(TRI.getCallPreservedMask(*FuncInfo.MF, CC));
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001589
Hal Finkel934361a2015-01-14 01:07:51 +00001590 CLI.Call = MIB;
1591
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001592 // Finish off the call including any return values.
Hal Finkel934361a2015-01-14 01:07:51 +00001593 return finishCall(RetVT, CLI, NumBytes);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001594}
1595
Bill Schmidtd89f6782013-08-26 19:42:51 +00001596// Attempt to fast-select a return instruction.
1597bool PPCFastISel::SelectRet(const Instruction *I) {
1598
1599 if (!FuncInfo.CanLowerReturn)
1600 return false;
1601
1602 const ReturnInst *Ret = cast<ReturnInst>(I);
1603 const Function &F = *I->getParent()->getParent();
1604
1605 // Build a list of return value registers.
1606 SmallVector<unsigned, 4> RetRegs;
1607 CallingConv::ID CC = F.getCallingConv();
1608
1609 if (Ret->getNumOperands() > 0) {
1610 SmallVector<ISD::OutputArg, 4> Outs;
Mehdi Amini56228da2015-07-09 01:57:34 +00001611 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI, DL);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001612
1613 // Analyze operands of the call, assigning locations to each operand.
1614 SmallVector<CCValAssign, 16> ValLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001615 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, *Context);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001616 CCInfo.AnalyzeReturn(Outs, RetCC_PPC64_ELF_FIS);
1617 const Value *RV = Ret->getOperand(0);
1618
1619 // FIXME: Only one output register for now.
1620 if (ValLocs.size() > 1)
1621 return false;
1622
Eric Christopherf0024d12015-07-25 00:48:08 +00001623 // Special case for returning a constant integer of any size - materialize
1624 // the constant as an i64 and copy it to the return register.
Eric Christopher03df7ac2015-07-25 00:48:06 +00001625 if (const ConstantInt *CI = dyn_cast<ConstantInt>(RV)) {
Samuel Antao61570df2014-09-17 23:25:06 +00001626 CCValAssign &VA = ValLocs[0];
1627
1628 unsigned RetReg = VA.getLocReg();
Eric Christopherf0024d12015-07-25 00:48:08 +00001629 // We still need to worry about properly extending the sign. For example,
1630 // we could have only a single bit or a constant that needs zero
1631 // extension rather than sign extension. Make sure we pass the return
1632 // value extension property to integer materialization.
Eric Christopher03df7ac2015-07-25 00:48:06 +00001633 unsigned SrcReg =
Nemanja Ivanovicb6fdce42016-02-04 23:14:42 +00001634 PPCMaterializeInt(CI, MVT::i64, VA.getLocInfo() != CCValAssign::ZExt);
Samuel Antao61570df2014-09-17 23:25:06 +00001635
Rafael Espindolaea09c592014-02-18 22:05:46 +00001636 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Samuel Antao61570df2014-09-17 23:25:06 +00001637 TII.get(TargetOpcode::COPY), RetReg).addReg(SrcReg);
1638
Bill Schmidtd89f6782013-08-26 19:42:51 +00001639 RetRegs.push_back(RetReg);
1640
1641 } else {
1642 unsigned Reg = getRegForValue(RV);
1643
1644 if (Reg == 0)
1645 return false;
1646
1647 // Copy the result values into the output registers.
1648 for (unsigned i = 0; i < ValLocs.size(); ++i) {
1649
1650 CCValAssign &VA = ValLocs[i];
1651 assert(VA.isRegLoc() && "Can only return in registers!");
1652 RetRegs.push_back(VA.getLocReg());
1653 unsigned SrcReg = Reg + VA.getValNo();
1654
Mehdi Amini44ede332015-07-09 02:09:04 +00001655 EVT RVEVT = TLI.getValueType(DL, RV->getType());
Bill Schmidtd89f6782013-08-26 19:42:51 +00001656 if (!RVEVT.isSimple())
1657 return false;
1658 MVT RVVT = RVEVT.getSimpleVT();
1659 MVT DestVT = VA.getLocVT();
1660
1661 if (RVVT != DestVT && RVVT != MVT::i8 &&
1662 RVVT != MVT::i16 && RVVT != MVT::i32)
1663 return false;
1664
1665 if (RVVT != DestVT) {
1666 switch (VA.getLocInfo()) {
1667 default:
1668 llvm_unreachable("Unknown loc info!");
1669 case CCValAssign::Full:
1670 llvm_unreachable("Full value assign but types don't match?");
1671 case CCValAssign::AExt:
1672 case CCValAssign::ZExt: {
1673 const TargetRegisterClass *RC =
1674 (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
1675 unsigned TmpReg = createResultReg(RC);
1676 if (!PPCEmitIntExt(RVVT, SrcReg, DestVT, TmpReg, true))
1677 return false;
1678 SrcReg = TmpReg;
1679 break;
1680 }
1681 case CCValAssign::SExt: {
1682 const TargetRegisterClass *RC =
1683 (DestVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
1684 unsigned TmpReg = createResultReg(RC);
1685 if (!PPCEmitIntExt(RVVT, SrcReg, DestVT, TmpReg, false))
1686 return false;
1687 SrcReg = TmpReg;
1688 break;
1689 }
1690 }
1691 }
1692
Rafael Espindolaea09c592014-02-18 22:05:46 +00001693 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidtd89f6782013-08-26 19:42:51 +00001694 TII.get(TargetOpcode::COPY), RetRegs[i])
1695 .addReg(SrcReg);
1696 }
1697 }
1698 }
1699
Rafael Espindolaea09c592014-02-18 22:05:46 +00001700 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Hal Finkelf4a22c02015-01-13 17:47:54 +00001701 TII.get(PPC::BLR8));
Bill Schmidtd89f6782013-08-26 19:42:51 +00001702
1703 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
1704 MIB.addReg(RetRegs[i], RegState::Implicit);
1705
1706 return true;
1707}
1708
Bill Schmidt03008132013-08-25 22:33:42 +00001709// Attempt to emit an integer extend of SrcReg into DestReg. Both
1710// signed and zero extensions are supported. Return false if we
Bill Schmidtd89f6782013-08-26 19:42:51 +00001711// can't handle it.
Bill Schmidt03008132013-08-25 22:33:42 +00001712bool PPCFastISel::PPCEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
1713 unsigned DestReg, bool IsZExt) {
Bill Schmidtd89f6782013-08-26 19:42:51 +00001714 if (DestVT != MVT::i32 && DestVT != MVT::i64)
1715 return false;
1716 if (SrcVT != MVT::i8 && SrcVT != MVT::i16 && SrcVT != MVT::i32)
1717 return false;
1718
1719 // Signed extensions use EXTSB, EXTSH, EXTSW.
1720 if (!IsZExt) {
1721 unsigned Opc;
1722 if (SrcVT == MVT::i8)
1723 Opc = (DestVT == MVT::i32) ? PPC::EXTSB : PPC::EXTSB8_32_64;
1724 else if (SrcVT == MVT::i16)
1725 Opc = (DestVT == MVT::i32) ? PPC::EXTSH : PPC::EXTSH8_32_64;
1726 else {
1727 assert(DestVT == MVT::i64 && "Signed extend from i32 to i32??");
1728 Opc = PPC::EXTSW_32_64;
1729 }
Rafael Espindolaea09c592014-02-18 22:05:46 +00001730 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidtd89f6782013-08-26 19:42:51 +00001731 .addReg(SrcReg);
1732
1733 // Unsigned 32-bit extensions use RLWINM.
1734 } else if (DestVT == MVT::i32) {
1735 unsigned MB;
1736 if (SrcVT == MVT::i8)
1737 MB = 24;
1738 else {
1739 assert(SrcVT == MVT::i16 && "Unsigned extend from i32 to i32??");
1740 MB = 16;
1741 }
Rafael Espindolaea09c592014-02-18 22:05:46 +00001742 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::RLWINM),
Bill Schmidtd89f6782013-08-26 19:42:51 +00001743 DestReg)
1744 .addReg(SrcReg).addImm(/*SH=*/0).addImm(MB).addImm(/*ME=*/31);
1745
1746 // Unsigned 64-bit extensions use RLDICL (with a 32-bit source).
1747 } else {
1748 unsigned MB;
1749 if (SrcVT == MVT::i8)
1750 MB = 56;
1751 else if (SrcVT == MVT::i16)
1752 MB = 48;
1753 else
1754 MB = 32;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001755 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidtd89f6782013-08-26 19:42:51 +00001756 TII.get(PPC::RLDICL_32_64), DestReg)
1757 .addReg(SrcReg).addImm(/*SH=*/0).addImm(MB);
1758 }
1759
1760 return true;
Bill Schmidt03008132013-08-25 22:33:42 +00001761}
1762
1763// Attempt to fast-select an indirect branch instruction.
1764bool PPCFastISel::SelectIndirectBr(const Instruction *I) {
1765 unsigned AddrReg = getRegForValue(I->getOperand(0));
1766 if (AddrReg == 0)
1767 return false;
1768
Rafael Espindolaea09c592014-02-18 22:05:46 +00001769 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::MTCTR8))
Bill Schmidt03008132013-08-25 22:33:42 +00001770 .addReg(AddrReg);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001771 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::BCTR8));
Bill Schmidt03008132013-08-25 22:33:42 +00001772
1773 const IndirectBrInst *IB = cast<IndirectBrInst>(I);
Pete Cooperebcd7482015-08-06 20:22:46 +00001774 for (const BasicBlock *SuccBB : IB->successors())
1775 FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[SuccBB]);
Bill Schmidt03008132013-08-25 22:33:42 +00001776
1777 return true;
1778}
1779
Bill Schmidt9d9510d2013-08-30 23:31:33 +00001780// Attempt to fast-select an integer truncate instruction.
1781bool PPCFastISel::SelectTrunc(const Instruction *I) {
1782 Value *Src = I->getOperand(0);
Mehdi Amini44ede332015-07-09 02:09:04 +00001783 EVT SrcVT = TLI.getValueType(DL, Src->getType(), true);
1784 EVT DestVT = TLI.getValueType(DL, I->getType(), true);
Bill Schmidt9d9510d2013-08-30 23:31:33 +00001785
1786 if (SrcVT != MVT::i64 && SrcVT != MVT::i32 && SrcVT != MVT::i16)
1787 return false;
1788
1789 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
1790 return false;
1791
1792 unsigned SrcReg = getRegForValue(Src);
1793 if (!SrcReg)
1794 return false;
1795
1796 // The only interesting case is when we need to switch register classes.
1797 if (SrcVT == MVT::i64) {
1798 unsigned ResultReg = createResultReg(&PPC::GPRCRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001799 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1800 TII.get(TargetOpcode::COPY),
Bill Schmidt9d9510d2013-08-30 23:31:33 +00001801 ResultReg).addReg(SrcReg, 0, PPC::sub_32);
1802 SrcReg = ResultReg;
1803 }
1804
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001805 updateValueMap(I, SrcReg);
Bill Schmidt9d9510d2013-08-30 23:31:33 +00001806 return true;
1807}
1808
Bill Schmidtd89f6782013-08-26 19:42:51 +00001809// Attempt to fast-select an integer extend instruction.
1810bool PPCFastISel::SelectIntExt(const Instruction *I) {
1811 Type *DestTy = I->getType();
1812 Value *Src = I->getOperand(0);
1813 Type *SrcTy = Src->getType();
1814
1815 bool IsZExt = isa<ZExtInst>(I);
1816 unsigned SrcReg = getRegForValue(Src);
1817 if (!SrcReg) return false;
1818
1819 EVT SrcEVT, DestEVT;
Mehdi Amini44ede332015-07-09 02:09:04 +00001820 SrcEVT = TLI.getValueType(DL, SrcTy, true);
1821 DestEVT = TLI.getValueType(DL, DestTy, true);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001822 if (!SrcEVT.isSimple())
1823 return false;
1824 if (!DestEVT.isSimple())
1825 return false;
1826
1827 MVT SrcVT = SrcEVT.getSimpleVT();
1828 MVT DestVT = DestEVT.getSimpleVT();
1829
1830 // If we know the register class needed for the result of this
1831 // instruction, use it. Otherwise pick the register class of the
1832 // correct size that does not contain X0/R0, since we don't know
1833 // whether downstream uses permit that assignment.
1834 unsigned AssignedReg = FuncInfo.ValueMap[I];
1835 const TargetRegisterClass *RC =
1836 (AssignedReg ? MRI.getRegClass(AssignedReg) :
1837 (DestVT == MVT::i64 ? &PPC::G8RC_and_G8RC_NOX0RegClass :
1838 &PPC::GPRC_and_GPRC_NOR0RegClass));
1839 unsigned ResultReg = createResultReg(RC);
1840
1841 if (!PPCEmitIntExt(SrcVT, SrcReg, DestVT, ResultReg, IsZExt))
1842 return false;
1843
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001844 updateValueMap(I, ResultReg);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001845 return true;
1846}
1847
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001848// Attempt to fast-select an instruction that wasn't handled by
Bill Schmidt03008132013-08-25 22:33:42 +00001849// the table-generated machinery.
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00001850bool PPCFastISel::fastSelectInstruction(const Instruction *I) {
Bill Schmidt03008132013-08-25 22:33:42 +00001851
1852 switch (I->getOpcode()) {
Bill Schmidtccecf262013-08-30 02:29:45 +00001853 case Instruction::Load:
1854 return SelectLoad(I);
1855 case Instruction::Store:
1856 return SelectStore(I);
Bill Schmidt03008132013-08-25 22:33:42 +00001857 case Instruction::Br:
1858 return SelectBranch(I);
1859 case Instruction::IndirectBr:
1860 return SelectIndirectBr(I);
Bill Schmidt8d86fe72013-08-30 15:18:11 +00001861 case Instruction::FPExt:
1862 return SelectFPExt(I);
1863 case Instruction::FPTrunc:
1864 return SelectFPTrunc(I);
1865 case Instruction::SIToFP:
1866 return SelectIToFP(I, /*IsSigned*/ true);
1867 case Instruction::UIToFP:
1868 return SelectIToFP(I, /*IsSigned*/ false);
1869 case Instruction::FPToSI:
1870 return SelectFPToI(I, /*IsSigned*/ true);
1871 case Instruction::FPToUI:
1872 return SelectFPToI(I, /*IsSigned*/ false);
Bill Schmidtccecf262013-08-30 02:29:45 +00001873 case Instruction::Add:
1874 return SelectBinaryIntOp(I, ISD::ADD);
1875 case Instruction::Or:
1876 return SelectBinaryIntOp(I, ISD::OR);
1877 case Instruction::Sub:
1878 return SelectBinaryIntOp(I, ISD::SUB);
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001879 case Instruction::Call:
Hal Finkel934361a2015-01-14 01:07:51 +00001880 return selectCall(I);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001881 case Instruction::Ret:
1882 return SelectRet(I);
Bill Schmidt9d9510d2013-08-30 23:31:33 +00001883 case Instruction::Trunc:
1884 return SelectTrunc(I);
Bill Schmidtd89f6782013-08-26 19:42:51 +00001885 case Instruction::ZExt:
1886 case Instruction::SExt:
1887 return SelectIntExt(I);
Bill Schmidt03008132013-08-25 22:33:42 +00001888 // Here add other flavors of Instruction::XXX that automated
1889 // cases don't catch. For example, switches are terminators
1890 // that aren't yet handled.
1891 default:
1892 break;
1893 }
1894 return false;
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001895}
1896
1897// Materialize a floating-point constant into a register, and return
1898// the register number (or zero if we failed to handle it).
1899unsigned PPCFastISel::PPCMaterializeFP(const ConstantFP *CFP, MVT VT) {
1900 // No plans to handle long double here.
1901 if (VT != MVT::f32 && VT != MVT::f64)
1902 return 0;
1903
1904 // All FP constants are loaded from the constant pool.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001905 unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001906 assert(Align > 0 && "Unexpectedly missing alignment information!");
1907 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
1908 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
1909 CodeModel::Model CModel = TM.getCodeModel();
1910
Alex Lorenze40c8a22015-08-11 23:09:45 +00001911 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
1912 MachinePointerInfo::getConstantPool(*FuncInfo.MF),
1913 MachineMemOperand::MOLoad, (VT == MVT::f32) ? 4 : 8, Align);
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001914
Bill Schmidt03008132013-08-25 22:33:42 +00001915 unsigned Opc = (VT == MVT::f32) ? PPC::LFS : PPC::LFD;
1916 unsigned TmpReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass);
1917
Hal Finkele6698d52015-02-01 15:03:28 +00001918 PPCFuncInfo->setUsesTOCBasePtr();
Bill Schmidt03008132013-08-25 22:33:42 +00001919 // For small code model, generate a LF[SD](0, LDtocCPT(Idx, X2)).
1920 if (CModel == CodeModel::Small || CModel == CodeModel::JITDefault) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001921 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::LDtocCPT),
Bill Schmidt03008132013-08-25 22:33:42 +00001922 TmpReg)
1923 .addConstantPoolIndex(Idx).addReg(PPC::X2);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001924 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidt03008132013-08-25 22:33:42 +00001925 .addImm(0).addReg(TmpReg).addMemOperand(MMO);
1926 } else {
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001927 // Otherwise we generate LF[SD](Idx[lo], ADDIStocHA(X2, Idx)).
Rafael Espindolaea09c592014-02-18 22:05:46 +00001928 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ADDIStocHA),
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001929 TmpReg).addReg(PPC::X2).addConstantPoolIndex(Idx);
Bill Schmidtbb381d72013-09-17 20:03:25 +00001930 // But for large code model, we must generate a LDtocL followed
1931 // by the LF[SD].
1932 if (CModel == CodeModel::Large) {
1933 unsigned TmpReg2 = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001934 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::LDtocL),
Bill Schmidtbb381d72013-09-17 20:03:25 +00001935 TmpReg2).addConstantPoolIndex(Idx).addReg(TmpReg);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001936 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidtbb381d72013-09-17 20:03:25 +00001937 .addImm(0).addReg(TmpReg2);
1938 } else
Rafael Espindolaea09c592014-02-18 22:05:46 +00001939 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
Bill Schmidtbb381d72013-09-17 20:03:25 +00001940 .addConstantPoolIndex(Idx, 0, PPCII::MO_TOC_LO)
1941 .addReg(TmpReg)
1942 .addMemOperand(MMO);
Bill Schmidt0cf702f2013-07-30 00:50:39 +00001943 }
1944
1945 return DestReg;
1946}
1947
Bill Schmidtccecf262013-08-30 02:29:45 +00001948// Materialize the address of a global value into a register, and return
1949// the register number (or zero if we failed to handle it).
1950unsigned PPCFastISel::PPCMaterializeGV(const GlobalValue *GV, MVT VT) {
1951 assert(VT == MVT::i64 && "Non-address!");
1952 const TargetRegisterClass *RC = &PPC::G8RC_and_G8RC_NOX0RegClass;
1953 unsigned DestReg = createResultReg(RC);
1954
1955 // Global values may be plain old object addresses, TLS object
1956 // addresses, constant pool entries, or jump tables. How we generate
1957 // code for these may depend on small, medium, or large code model.
1958 CodeModel::Model CModel = TM.getCodeModel();
1959
1960 // FIXME: Jump tables are not yet required because fast-isel doesn't
1961 // handle switches; if that changes, we need them as well. For now,
1962 // what follows assumes everything's a generic (or TLS) global address.
Bill Schmidtccecf262013-08-30 02:29:45 +00001963
1964 // FIXME: We don't yet handle the complexity of TLS.
Rafael Espindola59f7eba2014-05-28 18:15:43 +00001965 if (GV->isThreadLocal())
Bill Schmidtccecf262013-08-30 02:29:45 +00001966 return 0;
1967
Hal Finkele6698d52015-02-01 15:03:28 +00001968 PPCFuncInfo->setUsesTOCBasePtr();
Bill Schmidtccecf262013-08-30 02:29:45 +00001969 // For small code model, generate a simple TOC load.
1970 if (CModel == CodeModel::Small || CModel == CodeModel::JITDefault)
Rafael Espindolaea09c592014-02-18 22:05:46 +00001971 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::LDtoc),
1972 DestReg)
1973 .addGlobalAddress(GV)
1974 .addReg(PPC::X2);
Bill Schmidtccecf262013-08-30 02:29:45 +00001975 else {
Bill Schmidt5d82f092014-06-16 21:36:02 +00001976 // If the address is an externally defined symbol, a symbol with common
1977 // or externally available linkage, a non-local function address, or a
Bill Schmidtccecf262013-08-30 02:29:45 +00001978 // jump table address (not yet needed), or if we are generating code
1979 // for large code model, we generate:
1980 // LDtocL(GV, ADDIStocHA(%X2, GV))
1981 // Otherwise we generate:
1982 // ADDItocL(ADDIStocHA(%X2, GV), GV)
1983 // Either way, start with the ADDIStocHA:
1984 unsigned HighPartReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001985 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ADDIStocHA),
Bill Schmidtccecf262013-08-30 02:29:45 +00001986 HighPartReg).addReg(PPC::X2).addGlobalAddress(GV);
1987
Eric Christopherc1808362015-11-20 20:51:31 +00001988 unsigned char GVFlags = PPCSubTarget->classifyGlobalReference(GV);
1989 if (GVFlags & PPCII::MO_NLP_FLAG) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001990 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::LDtocL),
Bill Schmidtccecf262013-08-30 02:29:45 +00001991 DestReg).addGlobalAddress(GV).addReg(HighPartReg);
Eric Christopherc1808362015-11-20 20:51:31 +00001992 } else {
Bill Schmidtccecf262013-08-30 02:29:45 +00001993 // Otherwise generate the ADDItocL.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001994 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ADDItocL),
Bill Schmidtccecf262013-08-30 02:29:45 +00001995 DestReg).addReg(HighPartReg).addGlobalAddress(GV);
Eric Christopherc1808362015-11-20 20:51:31 +00001996 }
Bill Schmidtccecf262013-08-30 02:29:45 +00001997 }
1998
1999 return DestReg;
2000}
2001
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002002// Materialize a 32-bit integer constant into a register, and return
2003// the register number (or zero if we failed to handle it).
2004unsigned PPCFastISel::PPCMaterialize32BitInt(int64_t Imm,
2005 const TargetRegisterClass *RC) {
2006 unsigned Lo = Imm & 0xFFFF;
2007 unsigned Hi = (Imm >> 16) & 0xFFFF;
2008
2009 unsigned ResultReg = createResultReg(RC);
2010 bool IsGPRC = RC->hasSuperClassEq(&PPC::GPRCRegClass);
2011
2012 if (isInt<16>(Imm))
Rafael Espindolaea09c592014-02-18 22:05:46 +00002013 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002014 TII.get(IsGPRC ? PPC::LI : PPC::LI8), ResultReg)
2015 .addImm(Imm);
2016 else if (Lo) {
2017 // Both Lo and Hi have nonzero bits.
2018 unsigned TmpReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002019 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002020 TII.get(IsGPRC ? PPC::LIS : PPC::LIS8), TmpReg)
2021 .addImm(Hi);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002022 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002023 TII.get(IsGPRC ? PPC::ORI : PPC::ORI8), ResultReg)
2024 .addReg(TmpReg).addImm(Lo);
2025 } else
2026 // Just Hi bits.
Rafael Espindolaea09c592014-02-18 22:05:46 +00002027 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002028 TII.get(IsGPRC ? PPC::LIS : PPC::LIS8), ResultReg)
2029 .addImm(Hi);
2030
2031 return ResultReg;
2032}
2033
2034// Materialize a 64-bit integer constant into a register, and return
2035// the register number (or zero if we failed to handle it).
2036unsigned PPCFastISel::PPCMaterialize64BitInt(int64_t Imm,
2037 const TargetRegisterClass *RC) {
2038 unsigned Remainder = 0;
2039 unsigned Shift = 0;
2040
2041 // If the value doesn't fit in 32 bits, see if we can shift it
2042 // so that it fits in 32 bits.
2043 if (!isInt<32>(Imm)) {
2044 Shift = countTrailingZeros<uint64_t>(Imm);
2045 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
2046
2047 if (isInt<32>(ImmSh))
2048 Imm = ImmSh;
2049 else {
2050 Remainder = Imm;
2051 Shift = 32;
2052 Imm >>= 32;
2053 }
2054 }
2055
2056 // Handle the high-order 32 bits (if shifted) or the whole 32 bits
2057 // (if not shifted).
2058 unsigned TmpReg1 = PPCMaterialize32BitInt(Imm, RC);
2059 if (!Shift)
2060 return TmpReg1;
2061
2062 // If upper 32 bits were not zero, we've built them and need to shift
2063 // them into place.
2064 unsigned TmpReg2;
2065 if (Imm) {
2066 TmpReg2 = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002067 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::RLDICR),
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002068 TmpReg2).addReg(TmpReg1).addImm(Shift).addImm(63 - Shift);
2069 } else
2070 TmpReg2 = TmpReg1;
2071
2072 unsigned TmpReg3, Hi, Lo;
2073 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
2074 TmpReg3 = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002075 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ORIS8),
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002076 TmpReg3).addReg(TmpReg2).addImm(Hi);
2077 } else
2078 TmpReg3 = TmpReg2;
2079
2080 if ((Lo = Remainder & 0xFFFF)) {
2081 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002082 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ORI8),
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002083 ResultReg).addReg(TmpReg3).addImm(Lo);
2084 return ResultReg;
2085 }
2086
2087 return TmpReg3;
2088}
2089
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002090// Materialize an integer constant into a register, and return
2091// the register number (or zero if we failed to handle it).
Eric Christopher03df7ac2015-07-25 00:48:06 +00002092unsigned PPCFastISel::PPCMaterializeInt(const ConstantInt *CI, MVT VT,
2093 bool UseSExt) {
Hal Finkel940ab932014-02-28 00:27:01 +00002094 // If we're using CR bit registers for i1 values, handle that as a special
2095 // case first.
Eric Christopher1b8e7632014-05-22 01:07:24 +00002096 if (VT == MVT::i1 && PPCSubTarget->useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +00002097 unsigned ImmReg = createResultReg(&PPC::CRBITRCRegClass);
2098 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2099 TII.get(CI->isZero() ? PPC::CRUNSET : PPC::CRSET), ImmReg);
2100 return ImmReg;
2101 }
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002102
Eric Christopher80ba58a2016-01-29 07:19:49 +00002103 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 &&
2104 VT != MVT::i1)
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002105 return 0;
2106
Eric Christopher80ba58a2016-01-29 07:19:49 +00002107 const TargetRegisterClass *RC =
2108 ((VT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass);
Nemanja Ivanovicb6fdce42016-02-04 23:14:42 +00002109 int64_t Imm = UseSExt ? CI->getSExtValue() : CI->getZExtValue();
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002110
2111 // If the constant is in range, use a load-immediate.
Eric Christopher7d9b9b22016-01-29 07:20:30 +00002112 // Since LI will sign extend the constant we need to make sure that for
2113 // our zeroext constants that the sign extended constant fits into 16-bits -
2114 // a range of 0..0x7fff.
Nemanja Ivanovicb6fdce42016-02-04 23:14:42 +00002115 if (isInt<16>(Imm)) {
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002116 unsigned Opc = (VT == MVT::i64) ? PPC::LI8 : PPC::LI;
2117 unsigned ImmReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002118 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ImmReg)
Nemanja Ivanovicb6fdce42016-02-04 23:14:42 +00002119 .addImm(Imm);
Eric Christopherf0024d12015-07-25 00:48:08 +00002120 return ImmReg;
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002121 }
2122
2123 // Construct the constant piecewise.
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002124 if (VT == MVT::i64)
2125 return PPCMaterialize64BitInt(Imm, RC);
2126 else if (VT == MVT::i32)
2127 return PPCMaterialize32BitInt(Imm, RC);
2128
2129 return 0;
2130}
2131
2132// Materialize a constant into a register, and return the register
2133// number (or zero if we failed to handle it).
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00002134unsigned PPCFastISel::fastMaterializeConstant(const Constant *C) {
Mehdi Amini44ede332015-07-09 02:09:04 +00002135 EVT CEVT = TLI.getValueType(DL, C->getType(), true);
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002136
2137 // Only handle simple types.
2138 if (!CEVT.isSimple()) return 0;
2139 MVT VT = CEVT.getSimpleVT();
2140
2141 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
2142 return PPCMaterializeFP(CFP, VT);
Bill Schmidtccecf262013-08-30 02:29:45 +00002143 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
2144 return PPCMaterializeGV(GV, VT);
Eric Christopher03df7ac2015-07-25 00:48:06 +00002145 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(C))
2146 return PPCMaterializeInt(CI, VT, VT != MVT::i1);
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002147
2148 return 0;
2149}
2150
2151// Materialize the address created by an alloca into a register, and
Bill Schmidteb8d6f72013-08-31 02:33:40 +00002152// return the register number (or zero if we failed to handle it).
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00002153unsigned PPCFastISel::fastMaterializeAlloca(const AllocaInst *AI) {
Bill Schmidteb8d6f72013-08-31 02:33:40 +00002154 // Don't handle dynamic allocas.
2155 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
2156
2157 MVT VT;
2158 if (!isLoadTypeLegal(AI->getType(), VT)) return 0;
2159
2160 DenseMap<const AllocaInst*, int>::iterator SI =
2161 FuncInfo.StaticAllocaMap.find(AI);
2162
2163 if (SI != FuncInfo.StaticAllocaMap.end()) {
2164 unsigned ResultReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002165 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::ADDI8),
Bill Schmidteb8d6f72013-08-31 02:33:40 +00002166 ResultReg).addFrameIndex(SI->second).addImm(0);
2167 return ResultReg;
2168 }
2169
2170 return 0;
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002171}
2172
Bill Schmidtccecf262013-08-30 02:29:45 +00002173// Fold loads into extends when possible.
2174// FIXME: We can have multiple redundant extend/trunc instructions
2175// following a load. The folding only picks up one. Extend this
2176// to check subsequent instructions for the same pattern and remove
2177// them. Thus ResultReg should be the def reg for the last redundant
2178// instruction in a chain, and all intervening instructions can be
2179// removed from parent. Change test/CodeGen/PowerPC/fast-isel-fold.ll
2180// to add ELF64-NOT: rldicl to the appropriate tests when this works.
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002181bool PPCFastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
2182 const LoadInst *LI) {
Bill Schmidtccecf262013-08-30 02:29:45 +00002183 // Verify we have a legal type before going any further.
2184 MVT VT;
2185 if (!isLoadTypeLegal(LI->getType(), VT))
2186 return false;
2187
2188 // Combine load followed by zero- or sign-extend.
2189 bool IsZExt = false;
2190 switch(MI->getOpcode()) {
2191 default:
2192 return false;
2193
2194 case PPC::RLDICL:
2195 case PPC::RLDICL_32_64: {
2196 IsZExt = true;
2197 unsigned MB = MI->getOperand(3).getImm();
2198 if ((VT == MVT::i8 && MB <= 56) ||
2199 (VT == MVT::i16 && MB <= 48) ||
2200 (VT == MVT::i32 && MB <= 32))
2201 break;
2202 return false;
2203 }
2204
2205 case PPC::RLWINM:
2206 case PPC::RLWINM8: {
2207 IsZExt = true;
2208 unsigned MB = MI->getOperand(3).getImm();
2209 if ((VT == MVT::i8 && MB <= 24) ||
2210 (VT == MVT::i16 && MB <= 16))
2211 break;
2212 return false;
2213 }
2214
2215 case PPC::EXTSB:
2216 case PPC::EXTSB8:
2217 case PPC::EXTSB8_32_64:
2218 /* There is no sign-extending load-byte instruction. */
2219 return false;
2220
2221 case PPC::EXTSH:
2222 case PPC::EXTSH8:
2223 case PPC::EXTSH8_32_64: {
2224 if (VT != MVT::i16 && VT != MVT::i8)
2225 return false;
2226 break;
2227 }
2228
2229 case PPC::EXTSW:
2230 case PPC::EXTSW_32_64: {
2231 if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8)
2232 return false;
2233 break;
2234 }
2235 }
2236
2237 // See if we can handle this address.
2238 Address Addr;
2239 if (!PPCComputeAddress(LI->getOperand(0), Addr))
2240 return false;
2241
2242 unsigned ResultReg = MI->getOperand(0).getReg();
2243
Craig Topper062a2ba2014-04-25 05:30:21 +00002244 if (!PPCEmitLoad(VT, ResultReg, Addr, nullptr, IsZExt))
Bill Schmidtccecf262013-08-30 02:29:45 +00002245 return false;
2246
2247 MI->eraseFromParent();
2248 return true;
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002249}
2250
2251// Attempt to lower call arguments in a faster way than done by
2252// the selection DAG code.
Juergen Ributzka5b8bb4d2014-09-03 20:56:52 +00002253bool PPCFastISel::fastLowerArguments() {
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002254 // Defer to normal argument lowering for now. It's reasonably
2255 // efficient. Consider doing something like ARM to handle the
2256 // case where all args fit in registers, no varargs, no float
2257 // or vector args.
2258 return false;
2259}
2260
Bill Schmidt03008132013-08-25 22:33:42 +00002261// Handle materializing integer constants into a register. This is not
2262// automatically generated for PowerPC, so must be explicitly created here.
Juergen Ributzka88e32512014-09-03 20:56:59 +00002263unsigned PPCFastISel::fastEmit_i(MVT Ty, MVT VT, unsigned Opc, uint64_t Imm) {
Bill Schmidt03008132013-08-25 22:33:42 +00002264
2265 if (Opc != ISD::Constant)
2266 return 0;
2267
Hal Finkel940ab932014-02-28 00:27:01 +00002268 // If we're using CR bit registers for i1 values, handle that as a special
2269 // case first.
Eric Christopher1b8e7632014-05-22 01:07:24 +00002270 if (VT == MVT::i1 && PPCSubTarget->useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +00002271 unsigned ImmReg = createResultReg(&PPC::CRBITRCRegClass);
2272 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2273 TII.get(Imm == 0 ? PPC::CRUNSET : PPC::CRSET), ImmReg);
2274 return ImmReg;
2275 }
2276
Bill Schmidt03008132013-08-25 22:33:42 +00002277 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16 &&
2278 VT != MVT::i8 && VT != MVT::i1)
2279 return 0;
2280
2281 const TargetRegisterClass *RC = ((VT == MVT::i64) ? &PPC::G8RCRegClass :
2282 &PPC::GPRCRegClass);
2283 if (VT == MVT::i64)
2284 return PPCMaterialize64BitInt(Imm, RC);
2285 else
2286 return PPCMaterialize32BitInt(Imm, RC);
2287}
2288
Bill Schmidtccecf262013-08-30 02:29:45 +00002289// Override for ADDI and ADDI8 to set the correct register class
2290// on RHS operand 0. The automatic infrastructure naively assumes
2291// GPRC for i32 and G8RC for i64; the concept of "no R0" is lost
2292// for these cases. At the moment, none of the other automatically
2293// generated RI instructions require special treatment. However, once
2294// SelectSelect is implemented, "isel" requires similar handling.
2295//
2296// Also be conservative about the output register class. Avoid
2297// assigning R0 or X0 to the output register for GPRC and G8RC
2298// register classes, as any such result could be used in ADDI, etc.,
2299// where those regs have another meaning.
Juergen Ributzka88e32512014-09-03 20:56:59 +00002300unsigned PPCFastISel::fastEmitInst_ri(unsigned MachineInstOpcode,
Bill Schmidtccecf262013-08-30 02:29:45 +00002301 const TargetRegisterClass *RC,
2302 unsigned Op0, bool Op0IsKill,
2303 uint64_t Imm) {
2304 if (MachineInstOpcode == PPC::ADDI)
2305 MRI.setRegClass(Op0, &PPC::GPRC_and_GPRC_NOR0RegClass);
2306 else if (MachineInstOpcode == PPC::ADDI8)
2307 MRI.setRegClass(Op0, &PPC::G8RC_and_G8RC_NOX0RegClass);
2308
2309 const TargetRegisterClass *UseRC =
2310 (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass :
2311 (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC));
2312
Juergen Ributzka88e32512014-09-03 20:56:59 +00002313 return FastISel::fastEmitInst_ri(MachineInstOpcode, UseRC,
Bill Schmidtccecf262013-08-30 02:29:45 +00002314 Op0, Op0IsKill, Imm);
2315}
2316
2317// Override for instructions with one register operand to avoid use of
2318// R0/X0. The automatic infrastructure isn't aware of the context so
2319// we must be conservative.
Juergen Ributzka88e32512014-09-03 20:56:59 +00002320unsigned PPCFastISel::fastEmitInst_r(unsigned MachineInstOpcode,
Bill Schmidtccecf262013-08-30 02:29:45 +00002321 const TargetRegisterClass* RC,
2322 unsigned Op0, bool Op0IsKill) {
2323 const TargetRegisterClass *UseRC =
2324 (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass :
2325 (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC));
2326
Juergen Ributzka88e32512014-09-03 20:56:59 +00002327 return FastISel::fastEmitInst_r(MachineInstOpcode, UseRC, Op0, Op0IsKill);
Bill Schmidtccecf262013-08-30 02:29:45 +00002328}
2329
2330// Override for instructions with two register operands to avoid use
2331// of R0/X0. The automatic infrastructure isn't aware of the context
2332// so we must be conservative.
Juergen Ributzka88e32512014-09-03 20:56:59 +00002333unsigned PPCFastISel::fastEmitInst_rr(unsigned MachineInstOpcode,
Bill Schmidtccecf262013-08-30 02:29:45 +00002334 const TargetRegisterClass* RC,
2335 unsigned Op0, bool Op0IsKill,
2336 unsigned Op1, bool Op1IsKill) {
2337 const TargetRegisterClass *UseRC =
2338 (RC == &PPC::GPRCRegClass ? &PPC::GPRC_and_GPRC_NOR0RegClass :
2339 (RC == &PPC::G8RCRegClass ? &PPC::G8RC_and_G8RC_NOX0RegClass : RC));
2340
Juergen Ributzka88e32512014-09-03 20:56:59 +00002341 return FastISel::fastEmitInst_rr(MachineInstOpcode, UseRC, Op0, Op0IsKill,
Bill Schmidtccecf262013-08-30 02:29:45 +00002342 Op1, Op1IsKill);
2343}
2344
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002345namespace llvm {
2346 // Create the fast instruction selector for PowerPC64 ELF.
2347 FastISel *PPC::createFastISel(FunctionLoweringInfo &FuncInfo,
2348 const TargetLibraryInfo *LibInfo) {
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002349 // Only available on 64-bit ELF for now.
Eric Christophercccae792015-01-30 22:02:31 +00002350 const PPCSubtarget &Subtarget = FuncInfo.MF->getSubtarget<PPCSubtarget>();
Eric Christopher85806142015-01-30 02:11:24 +00002351 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI())
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002352 return new PPCFastISel(FuncInfo, LibInfo);
Craig Topper062a2ba2014-04-25 05:30:21 +00002353 return nullptr;
Bill Schmidt0cf702f2013-07-30 00:50:39 +00002354 }
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002355}