blob: 488869f642fbf0ab95aba846c737eafaecdd49bf [file] [log] [blame]
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001//===-- llvm/CodeGen/GlobalISel/IRTranslator.cpp - IRTranslator --*- C++ -*-==//
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/// \file
10/// This file implements the IRTranslator class.
11//===----------------------------------------------------------------------===//
12
13#include "llvm/CodeGen/GlobalISel/IRTranslator.h"
14
Ahmed Bougachaeceabdd2017-02-23 23:57:28 +000015#include "llvm/ADT/ScopeExit.h"
Tim Northoverb6636fd2017-01-17 22:13:50 +000016#include "llvm/ADT/SmallSet.h"
Quentin Colombetfd9d0a02016-02-11 19:59:41 +000017#include "llvm/ADT/SmallVector.h"
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000018#include "llvm/Analysis/OptimizationDiagnosticInfo.h"
Quentin Colombetba2a0162016-02-16 19:26:02 +000019#include "llvm/CodeGen/GlobalISel/CallLowering.h"
Tim Northovera9105be2016-11-09 22:39:54 +000020#include "llvm/CodeGen/Analysis.h"
Quentin Colombet2ecff3b2016-02-10 22:59:27 +000021#include "llvm/CodeGen/MachineFunction.h"
Tim Northoverbd505462016-07-22 16:59:52 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Tim Northovera9105be2016-11-09 22:39:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000025#include "llvm/CodeGen/TargetPassConfig.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000026#include "llvm/IR/Constant.h"
Tim Northover09aac4a2017-01-26 23:39:14 +000027#include "llvm/IR/DebugInfo.h"
Quentin Colombet2ecff3b2016-02-10 22:59:27 +000028#include "llvm/IR/Function.h"
Tim Northovera7653b32016-09-12 11:20:22 +000029#include "llvm/IR/GetElementPtrTypeIterator.h"
Tim Northover5fb414d2016-07-29 22:32:36 +000030#include "llvm/IR/IntrinsicInst.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000031#include "llvm/IR/Type.h"
32#include "llvm/IR/Value.h"
Tim Northoverc3e3f592017-02-03 18:22:45 +000033#include "llvm/Target/TargetFrameLowering.h"
Tim Northover5fb414d2016-07-29 22:32:36 +000034#include "llvm/Target/TargetIntrinsicInfo.h"
Quentin Colombet74d7d2f2016-02-11 18:53:28 +000035#include "llvm/Target/TargetLowering.h"
Quentin Colombet2ecff3b2016-02-10 22:59:27 +000036
37#define DEBUG_TYPE "irtranslator"
38
Quentin Colombet105cf2b2016-01-20 20:58:56 +000039using namespace llvm;
40
41char IRTranslator::ID = 0;
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000042INITIALIZE_PASS_BEGIN(IRTranslator, DEBUG_TYPE, "IRTranslator LLVM IR -> MI",
43 false, false)
44INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
45INITIALIZE_PASS_END(IRTranslator, DEBUG_TYPE, "IRTranslator LLVM IR -> MI",
Tim Northover884b47e2016-07-26 03:29:18 +000046 false, false)
Quentin Colombet105cf2b2016-01-20 20:58:56 +000047
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000048static void reportTranslationError(MachineFunction &MF,
49 const TargetPassConfig &TPC,
50 OptimizationRemarkEmitter &ORE,
51 OptimizationRemarkMissed &R) {
52 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel);
53
54 // Print the function name explicitly if we don't have a debug location (which
55 // makes the diagnostic less useful) or if we're going to emit a raw error.
56 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled())
57 R << (" (in function: " + MF.getName() + ")").str();
58
59 if (TPC.isGlobalISelAbortEnabled())
60 report_fatal_error(R.getMsg());
61 else
62 ORE.emit(R);
Tim Northover60f23492016-11-08 01:12:17 +000063}
64
Quentin Colombeta7fae162016-02-11 17:53:23 +000065IRTranslator::IRTranslator() : MachineFunctionPass(ID), MRI(nullptr) {
Quentin Colombet39293d32016-03-08 01:38:55 +000066 initializeIRTranslatorPass(*PassRegistry::getPassRegistry());
Quentin Colombeta7fae162016-02-11 17:53:23 +000067}
68
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000069void IRTranslator::getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.addRequired<TargetPassConfig>();
71 MachineFunctionPass::getAnalysisUsage(AU);
72}
73
74
Quentin Colombete225e252016-03-11 17:27:54 +000075unsigned IRTranslator::getOrCreateVReg(const Value &Val) {
76 unsigned &ValReg = ValToVReg[&Val];
Tim Northover5ed648e2016-08-09 21:28:04 +000077
Tim Northover9e35f1e2017-01-25 20:58:22 +000078 if (ValReg)
79 return ValReg;
80
81 // Fill ValRegsSequence with the sequence of registers
82 // we need to concat together to produce the value.
83 assert(Val.getType()->isSized() &&
84 "Don't know how to create an empty vreg");
Daniel Sanders52b4ce72017-03-07 23:20:35 +000085 unsigned VReg =
86 MRI->createGenericVirtualRegister(getLLTForType(*Val.getType(), *DL));
Tim Northover9e35f1e2017-01-25 20:58:22 +000087 ValReg = VReg;
88
89 if (auto CV = dyn_cast<Constant>(&Val)) {
90 bool Success = translate(*CV, VReg);
91 if (!Success) {
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000092 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
Ahmed Bougacha7c88a4e2017-02-24 00:34:44 +000093 MF->getFunction()->getSubprogram(),
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000094 &MF->getFunction()->getEntryBlock());
95 R << "unable to translate constant: " << ore::NV("Type", Val.getType());
96 reportTranslationError(*MF, *TPC, *ORE, R);
97 return VReg;
Tim Northover5ed648e2016-08-09 21:28:04 +000098 }
Quentin Colombet17c494b2016-02-11 17:51:31 +000099 }
Tim Northover7f3ad2e2017-01-20 23:25:17 +0000100
Tim Northover9e35f1e2017-01-25 20:58:22 +0000101 return VReg;
Quentin Colombet17c494b2016-02-11 17:51:31 +0000102}
103
Tim Northovercdf23f12016-10-31 18:30:59 +0000104int IRTranslator::getOrCreateFrameIndex(const AllocaInst &AI) {
105 if (FrameIndices.find(&AI) != FrameIndices.end())
106 return FrameIndices[&AI];
107
Tim Northovercdf23f12016-10-31 18:30:59 +0000108 unsigned ElementSize = DL->getTypeStoreSize(AI.getAllocatedType());
109 unsigned Size =
110 ElementSize * cast<ConstantInt>(AI.getArraySize())->getZExtValue();
111
112 // Always allocate at least one byte.
113 Size = std::max(Size, 1u);
114
115 unsigned Alignment = AI.getAlignment();
116 if (!Alignment)
117 Alignment = DL->getABITypeAlignment(AI.getAllocatedType());
118
119 int &FI = FrameIndices[&AI];
Tim Northover50db7f412016-12-07 21:17:47 +0000120 FI = MF->getFrameInfo().CreateStackObject(Size, Alignment, false, &AI);
Tim Northovercdf23f12016-10-31 18:30:59 +0000121 return FI;
122}
123
Tim Northoverad2b7172016-07-26 20:23:26 +0000124unsigned IRTranslator::getMemOpAlignment(const Instruction &I) {
125 unsigned Alignment = 0;
126 Type *ValTy = nullptr;
127 if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
128 Alignment = SI->getAlignment();
129 ValTy = SI->getValueOperand()->getType();
130 } else if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
131 Alignment = LI->getAlignment();
132 ValTy = LI->getType();
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000133 } else {
134 OptimizationRemarkMissed R("gisel-irtranslator", "", &I);
135 R << "unable to translate memop: " << ore::NV("Opcode", &I);
136 reportTranslationError(*MF, *TPC, *ORE, R);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000137 return 1;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000138 }
Tim Northoverad2b7172016-07-26 20:23:26 +0000139
140 return Alignment ? Alignment : DL->getABITypeAlignment(ValTy);
141}
142
Quentin Colombet53237a92016-03-11 17:27:43 +0000143MachineBasicBlock &IRTranslator::getOrCreateBB(const BasicBlock &BB) {
144 MachineBasicBlock *&MBB = BBToMBB[&BB];
Quentin Colombet17c494b2016-02-11 17:51:31 +0000145 if (!MBB) {
Kristof Beylsa983e7c2017-01-05 13:27:52 +0000146 MBB = MF->CreateMachineBasicBlock(&BB);
Tim Northover50db7f412016-12-07 21:17:47 +0000147 MF->push_back(MBB);
Kristof Beylsa983e7c2017-01-05 13:27:52 +0000148
149 if (BB.hasAddressTaken())
150 MBB->setHasAddressTaken();
Quentin Colombet17c494b2016-02-11 17:51:31 +0000151 }
152 return *MBB;
153}
154
Tim Northoverb6636fd2017-01-17 22:13:50 +0000155void IRTranslator::addMachineCFGPred(CFGEdge Edge, MachineBasicBlock *NewPred) {
156 assert(NewPred && "new predecessor must be a real MachineBasicBlock");
157 MachinePreds[Edge].push_back(NewPred);
158}
159
Tim Northoverc53606e2016-12-07 21:29:15 +0000160bool IRTranslator::translateBinaryOp(unsigned Opcode, const User &U,
161 MachineIRBuilder &MIRBuilder) {
Tim Northover0d56e052016-07-29 18:11:21 +0000162 // FIXME: handle signed/unsigned wrapping flags.
163
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000164 // Get or create a virtual register for each value.
165 // Unless the value is a Constant => loadimm cst?
166 // or inline constant each time?
167 // Creation of a virtual register needs to have a size.
Tim Northover357f1be2016-08-10 23:02:41 +0000168 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
169 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
170 unsigned Res = getOrCreateVReg(U);
Tim Northover0f140c72016-09-09 11:46:34 +0000171 MIRBuilder.buildInstr(Opcode).addDef(Res).addUse(Op0).addUse(Op1);
Quentin Colombet17c494b2016-02-11 17:51:31 +0000172 return true;
Quentin Colombet105cf2b2016-01-20 20:58:56 +0000173}
174
Volkan Keles20d3c422017-03-07 18:03:28 +0000175bool IRTranslator::translateFSub(const User &U, MachineIRBuilder &MIRBuilder) {
176 // -0.0 - X --> G_FNEG
177 if (isa<Constant>(U.getOperand(0)) &&
178 U.getOperand(0) == ConstantFP::getZeroValueForNegation(U.getType())) {
179 MIRBuilder.buildInstr(TargetOpcode::G_FNEG)
180 .addDef(getOrCreateVReg(U))
181 .addUse(getOrCreateVReg(*U.getOperand(1)));
182 return true;
183 }
184 return translateBinaryOp(TargetOpcode::G_FSUB, U, MIRBuilder);
185}
186
Tim Northoverc53606e2016-12-07 21:29:15 +0000187bool IRTranslator::translateCompare(const User &U,
188 MachineIRBuilder &MIRBuilder) {
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000189 const CmpInst *CI = dyn_cast<CmpInst>(&U);
190 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
191 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
192 unsigned Res = getOrCreateVReg(U);
193 CmpInst::Predicate Pred =
194 CI ? CI->getPredicate() : static_cast<CmpInst::Predicate>(
195 cast<ConstantExpr>(U).getPredicate());
Tim Northoverde3aea0412016-08-17 20:25:25 +0000196
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000197 if (CmpInst::isIntPredicate(Pred))
Tim Northover0f140c72016-09-09 11:46:34 +0000198 MIRBuilder.buildICmp(Pred, Res, Op0, Op1);
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000199 else
Tim Northover0f140c72016-09-09 11:46:34 +0000200 MIRBuilder.buildFCmp(Pred, Res, Op0, Op1);
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000201
Tim Northoverde3aea0412016-08-17 20:25:25 +0000202 return true;
203}
204
Tim Northoverc53606e2016-12-07 21:29:15 +0000205bool IRTranslator::translateRet(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000206 const ReturnInst &RI = cast<ReturnInst>(U);
Tim Northover0d56e052016-07-29 18:11:21 +0000207 const Value *Ret = RI.getReturnValue();
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000208 // The target may mess up with the insertion point, but
209 // this is not important as a return is the last instruction
210 // of the block anyway.
Tom Stellardb72a65f2016-04-14 17:23:33 +0000211 return CLI->lowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret));
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000212}
213
Tim Northoverc53606e2016-12-07 21:29:15 +0000214bool IRTranslator::translateBr(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000215 const BranchInst &BrInst = cast<BranchInst>(U);
Tim Northover69c2ba52016-07-29 17:58:00 +0000216 unsigned Succ = 0;
217 if (!BrInst.isUnconditional()) {
218 // We want a G_BRCOND to the true BB followed by an unconditional branch.
219 unsigned Tst = getOrCreateVReg(*BrInst.getCondition());
220 const BasicBlock &TrueTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ++));
221 MachineBasicBlock &TrueBB = getOrCreateBB(TrueTgt);
Tim Northover0f140c72016-09-09 11:46:34 +0000222 MIRBuilder.buildBrCond(Tst, TrueBB);
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000223 }
Tim Northover69c2ba52016-07-29 17:58:00 +0000224
225 const BasicBlock &BrTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ));
226 MachineBasicBlock &TgtBB = getOrCreateBB(BrTgt);
227 MIRBuilder.buildBr(TgtBB);
228
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000229 // Link successors.
230 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
231 for (const BasicBlock *Succ : BrInst.successors())
232 CurBB.addSuccessor(&getOrCreateBB(*Succ));
233 return true;
234}
235
Kristof Beylseced0712017-01-05 11:28:51 +0000236bool IRTranslator::translateSwitch(const User &U,
237 MachineIRBuilder &MIRBuilder) {
238 // For now, just translate as a chain of conditional branches.
239 // FIXME: could we share most of the logic/code in
240 // SelectionDAGBuilder::visitSwitch between SelectionDAG and GlobalISel?
241 // At first sight, it seems most of the logic in there is independent of
242 // SelectionDAG-specifics and a lot of work went in to optimize switch
243 // lowering in there.
244
245 const SwitchInst &SwInst = cast<SwitchInst>(U);
246 const unsigned SwCondValue = getOrCreateVReg(*SwInst.getCondition());
Tim Northoverb6636fd2017-01-17 22:13:50 +0000247 const BasicBlock *OrigBB = SwInst.getParent();
Kristof Beylseced0712017-01-05 11:28:51 +0000248
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000249 LLT LLTi1 = getLLTForType(*Type::getInt1Ty(U.getContext()), *DL);
Kristof Beylseced0712017-01-05 11:28:51 +0000250 for (auto &CaseIt : SwInst.cases()) {
251 const unsigned CaseValueReg = getOrCreateVReg(*CaseIt.getCaseValue());
252 const unsigned Tst = MRI->createGenericVirtualRegister(LLTi1);
253 MIRBuilder.buildICmp(CmpInst::ICMP_EQ, Tst, CaseValueReg, SwCondValue);
Tim Northoverb6636fd2017-01-17 22:13:50 +0000254 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
255 const BasicBlock *TrueBB = CaseIt.getCaseSuccessor();
256 MachineBasicBlock &TrueMBB = getOrCreateBB(*TrueBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000257
Tim Northoverb6636fd2017-01-17 22:13:50 +0000258 MIRBuilder.buildBrCond(Tst, TrueMBB);
259 CurMBB.addSuccessor(&TrueMBB);
260 addMachineCFGPred({OrigBB, TrueBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000261
Tim Northoverb6636fd2017-01-17 22:13:50 +0000262 MachineBasicBlock *FalseMBB =
Kristof Beylseced0712017-01-05 11:28:51 +0000263 MF->CreateMachineBasicBlock(SwInst.getParent());
Tim Northoverb6636fd2017-01-17 22:13:50 +0000264 MF->push_back(FalseMBB);
265 MIRBuilder.buildBr(*FalseMBB);
266 CurMBB.addSuccessor(FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000267
Tim Northoverb6636fd2017-01-17 22:13:50 +0000268 MIRBuilder.setMBB(*FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000269 }
270 // handle default case
Tim Northoverb6636fd2017-01-17 22:13:50 +0000271 const BasicBlock *DefaultBB = SwInst.getDefaultDest();
272 MachineBasicBlock &DefaultMBB = getOrCreateBB(*DefaultBB);
273 MIRBuilder.buildBr(DefaultMBB);
274 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
275 CurMBB.addSuccessor(&DefaultMBB);
276 addMachineCFGPred({OrigBB, DefaultBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000277
278 return true;
279}
280
Kristof Beyls65a12c02017-01-30 09:13:18 +0000281bool IRTranslator::translateIndirectBr(const User &U,
282 MachineIRBuilder &MIRBuilder) {
283 const IndirectBrInst &BrInst = cast<IndirectBrInst>(U);
284
285 const unsigned Tgt = getOrCreateVReg(*BrInst.getAddress());
286 MIRBuilder.buildBrIndirect(Tgt);
287
288 // Link successors.
289 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
290 for (const BasicBlock *Succ : BrInst.successors())
291 CurBB.addSuccessor(&getOrCreateBB(*Succ));
292
293 return true;
294}
295
Tim Northoverc53606e2016-12-07 21:29:15 +0000296bool IRTranslator::translateLoad(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000297 const LoadInst &LI = cast<LoadInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000298
Tim Northover7152dca2016-10-19 15:55:06 +0000299 auto Flags = LI.isVolatile() ? MachineMemOperand::MOVolatile
300 : MachineMemOperand::MONone;
301 Flags |= MachineMemOperand::MOLoad;
Tim Northoverad2b7172016-07-26 20:23:26 +0000302
Tim Northoverad2b7172016-07-26 20:23:26 +0000303 unsigned Res = getOrCreateVReg(LI);
304 unsigned Addr = getOrCreateVReg(*LI.getPointerOperand());
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000305
Tim Northoverad2b7172016-07-26 20:23:26 +0000306 MIRBuilder.buildLoad(
Tim Northover0f140c72016-09-09 11:46:34 +0000307 Res, Addr,
Tim Northover50db7f412016-12-07 21:17:47 +0000308 *MF->getMachineMemOperand(MachinePointerInfo(LI.getPointerOperand()),
309 Flags, DL->getTypeStoreSize(LI.getType()),
Tim Northover48dfa1a2017-02-13 22:14:16 +0000310 getMemOpAlignment(LI), AAMDNodes(), nullptr,
311 LI.getSynchScope(), LI.getOrdering()));
Tim Northoverad2b7172016-07-26 20:23:26 +0000312 return true;
313}
314
Tim Northoverc53606e2016-12-07 21:29:15 +0000315bool IRTranslator::translateStore(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000316 const StoreInst &SI = cast<StoreInst>(U);
Tim Northover7152dca2016-10-19 15:55:06 +0000317 auto Flags = SI.isVolatile() ? MachineMemOperand::MOVolatile
318 : MachineMemOperand::MONone;
319 Flags |= MachineMemOperand::MOStore;
Tim Northoverad2b7172016-07-26 20:23:26 +0000320
Tim Northoverad2b7172016-07-26 20:23:26 +0000321 unsigned Val = getOrCreateVReg(*SI.getValueOperand());
322 unsigned Addr = getOrCreateVReg(*SI.getPointerOperand());
Tim Northoverad2b7172016-07-26 20:23:26 +0000323
324 MIRBuilder.buildStore(
Tim Northover50db7f412016-12-07 21:17:47 +0000325 Val, Addr,
326 *MF->getMachineMemOperand(
327 MachinePointerInfo(SI.getPointerOperand()), Flags,
328 DL->getTypeStoreSize(SI.getValueOperand()->getType()),
Tim Northover48dfa1a2017-02-13 22:14:16 +0000329 getMemOpAlignment(SI), AAMDNodes(), nullptr, SI.getSynchScope(),
330 SI.getOrdering()));
Tim Northoverad2b7172016-07-26 20:23:26 +0000331 return true;
332}
333
Tim Northoverc53606e2016-12-07 21:29:15 +0000334bool IRTranslator::translateExtractValue(const User &U,
335 MachineIRBuilder &MIRBuilder) {
Tim Northoverb6046222016-08-19 20:09:03 +0000336 const Value *Src = U.getOperand(0);
337 Type *Int32Ty = Type::getInt32Ty(U.getContext());
Tim Northover6f80b082016-08-19 17:47:05 +0000338 SmallVector<Value *, 1> Indices;
339
340 // getIndexedOffsetInType is designed for GEPs, so the first index is the
341 // usual array element rather than looking into the actual aggregate.
342 Indices.push_back(ConstantInt::get(Int32Ty, 0));
Tim Northoverb6046222016-08-19 20:09:03 +0000343
344 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&U)) {
345 for (auto Idx : EVI->indices())
346 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
347 } else {
348 for (unsigned i = 1; i < U.getNumOperands(); ++i)
349 Indices.push_back(U.getOperand(i));
350 }
Tim Northover6f80b082016-08-19 17:47:05 +0000351
352 uint64_t Offset = 8 * DL->getIndexedOffsetInType(Src->getType(), Indices);
353
Tim Northoverb6046222016-08-19 20:09:03 +0000354 unsigned Res = getOrCreateVReg(U);
Tim Northoverc2c545b2017-03-06 23:50:28 +0000355 MIRBuilder.buildExtract(Res, getOrCreateVReg(*Src), Offset);
Tim Northover6f80b082016-08-19 17:47:05 +0000356
357 return true;
358}
359
Tim Northoverc53606e2016-12-07 21:29:15 +0000360bool IRTranslator::translateInsertValue(const User &U,
361 MachineIRBuilder &MIRBuilder) {
Tim Northoverb6046222016-08-19 20:09:03 +0000362 const Value *Src = U.getOperand(0);
363 Type *Int32Ty = Type::getInt32Ty(U.getContext());
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000364 SmallVector<Value *, 1> Indices;
365
366 // getIndexedOffsetInType is designed for GEPs, so the first index is the
367 // usual array element rather than looking into the actual aggregate.
368 Indices.push_back(ConstantInt::get(Int32Ty, 0));
Tim Northoverb6046222016-08-19 20:09:03 +0000369
370 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&U)) {
371 for (auto Idx : IVI->indices())
372 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
373 } else {
374 for (unsigned i = 2; i < U.getNumOperands(); ++i)
375 Indices.push_back(U.getOperand(i));
376 }
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000377
378 uint64_t Offset = 8 * DL->getIndexedOffsetInType(Src->getType(), Indices);
379
Tim Northoverb6046222016-08-19 20:09:03 +0000380 unsigned Res = getOrCreateVReg(U);
381 const Value &Inserted = *U.getOperand(1);
Tim Northover0f140c72016-09-09 11:46:34 +0000382 MIRBuilder.buildInsert(Res, getOrCreateVReg(*Src), getOrCreateVReg(Inserted),
383 Offset);
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000384
385 return true;
386}
387
Tim Northoverc53606e2016-12-07 21:29:15 +0000388bool IRTranslator::translateSelect(const User &U,
389 MachineIRBuilder &MIRBuilder) {
Tim Northover0f140c72016-09-09 11:46:34 +0000390 MIRBuilder.buildSelect(getOrCreateVReg(U), getOrCreateVReg(*U.getOperand(0)),
391 getOrCreateVReg(*U.getOperand(1)),
392 getOrCreateVReg(*U.getOperand(2)));
Tim Northover5a28c362016-08-19 20:09:07 +0000393 return true;
394}
395
Tim Northoverc53606e2016-12-07 21:29:15 +0000396bool IRTranslator::translateBitCast(const User &U,
397 MachineIRBuilder &MIRBuilder) {
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000398 // If we're bitcasting to the source type, we can reuse the source vreg.
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000399 if (getLLTForType(*U.getOperand(0)->getType(), *DL) ==
400 getLLTForType(*U.getType(), *DL)) {
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000401 // Get the source vreg now, to avoid invalidating ValToVReg.
402 unsigned SrcReg = getOrCreateVReg(*U.getOperand(0));
Tim Northover357f1be2016-08-10 23:02:41 +0000403 unsigned &Reg = ValToVReg[&U];
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000404 // If we already assigned a vreg for this bitcast, we can't change that.
405 // Emit a copy to satisfy the users we already emitted.
Tim Northover7552ef52016-08-10 16:51:14 +0000406 if (Reg)
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000407 MIRBuilder.buildCopy(Reg, SrcReg);
Tim Northover7552ef52016-08-10 16:51:14 +0000408 else
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000409 Reg = SrcReg;
Tim Northover7c9eba92016-07-25 21:01:29 +0000410 return true;
411 }
Tim Northoverc53606e2016-12-07 21:29:15 +0000412 return translateCast(TargetOpcode::G_BITCAST, U, MIRBuilder);
Tim Northover7c9eba92016-07-25 21:01:29 +0000413}
414
Tim Northoverc53606e2016-12-07 21:29:15 +0000415bool IRTranslator::translateCast(unsigned Opcode, const User &U,
416 MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000417 unsigned Op = getOrCreateVReg(*U.getOperand(0));
418 unsigned Res = getOrCreateVReg(U);
Tim Northover0f140c72016-09-09 11:46:34 +0000419 MIRBuilder.buildInstr(Opcode).addDef(Res).addUse(Op);
Tim Northover7c9eba92016-07-25 21:01:29 +0000420 return true;
421}
422
Tim Northoverc53606e2016-12-07 21:29:15 +0000423bool IRTranslator::translateGetElementPtr(const User &U,
424 MachineIRBuilder &MIRBuilder) {
Tim Northovera7653b32016-09-12 11:20:22 +0000425 // FIXME: support vector GEPs.
426 if (U.getType()->isVectorTy())
427 return false;
428
429 Value &Op0 = *U.getOperand(0);
430 unsigned BaseReg = getOrCreateVReg(Op0);
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000431 LLT PtrTy = getLLTForType(*Op0.getType(), *DL);
Tim Northovera7653b32016-09-12 11:20:22 +0000432 unsigned PtrSize = DL->getPointerSizeInBits(PtrTy.getAddressSpace());
433 LLT OffsetTy = LLT::scalar(PtrSize);
434
435 int64_t Offset = 0;
436 for (gep_type_iterator GTI = gep_type_begin(&U), E = gep_type_end(&U);
437 GTI != E; ++GTI) {
438 const Value *Idx = GTI.getOperand();
Peter Collingbourne25a40752016-12-02 02:55:30 +0000439 if (StructType *StTy = GTI.getStructTypeOrNull()) {
Tim Northovera7653b32016-09-12 11:20:22 +0000440 unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
441 Offset += DL->getStructLayout(StTy)->getElementOffset(Field);
442 continue;
443 } else {
444 uint64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
445
446 // If this is a scalar constant or a splat vector of constants,
447 // handle it quickly.
448 if (const auto *CI = dyn_cast<ConstantInt>(Idx)) {
449 Offset += ElementSize * CI->getSExtValue();
450 continue;
451 }
452
453 if (Offset != 0) {
454 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
455 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
456 MIRBuilder.buildConstant(OffsetReg, Offset);
457 MIRBuilder.buildGEP(NewBaseReg, BaseReg, OffsetReg);
458
459 BaseReg = NewBaseReg;
460 Offset = 0;
461 }
462
463 // N = N + Idx * ElementSize;
464 unsigned ElementSizeReg = MRI->createGenericVirtualRegister(OffsetTy);
465 MIRBuilder.buildConstant(ElementSizeReg, ElementSize);
466
467 unsigned IdxReg = getOrCreateVReg(*Idx);
468 if (MRI->getType(IdxReg) != OffsetTy) {
469 unsigned NewIdxReg = MRI->createGenericVirtualRegister(OffsetTy);
470 MIRBuilder.buildSExtOrTrunc(NewIdxReg, IdxReg);
471 IdxReg = NewIdxReg;
472 }
473
474 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
475 MIRBuilder.buildMul(OffsetReg, ElementSizeReg, IdxReg);
476
477 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
478 MIRBuilder.buildGEP(NewBaseReg, BaseReg, OffsetReg);
479 BaseReg = NewBaseReg;
480 }
481 }
482
483 if (Offset != 0) {
484 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
485 MIRBuilder.buildConstant(OffsetReg, Offset);
486 MIRBuilder.buildGEP(getOrCreateVReg(U), BaseReg, OffsetReg);
487 return true;
488 }
489
490 MIRBuilder.buildCopy(getOrCreateVReg(U), BaseReg);
491 return true;
492}
493
Tim Northover79f43f12017-01-30 19:33:07 +0000494bool IRTranslator::translateMemfunc(const CallInst &CI,
495 MachineIRBuilder &MIRBuilder,
496 unsigned ID) {
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000497 LLT SizeTy = getLLTForType(*CI.getArgOperand(2)->getType(), *DL);
Tim Northover79f43f12017-01-30 19:33:07 +0000498 Type *DstTy = CI.getArgOperand(0)->getType();
499 if (cast<PointerType>(DstTy)->getAddressSpace() != 0 ||
Tim Northover3f186032016-10-18 20:03:45 +0000500 SizeTy.getSizeInBits() != DL->getPointerSizeInBits(0))
501 return false;
502
503 SmallVector<CallLowering::ArgInfo, 8> Args;
504 for (int i = 0; i < 3; ++i) {
505 const auto &Arg = CI.getArgOperand(i);
506 Args.emplace_back(getOrCreateVReg(*Arg), Arg->getType());
507 }
508
Tim Northover79f43f12017-01-30 19:33:07 +0000509 const char *Callee;
510 switch (ID) {
511 case Intrinsic::memmove:
512 case Intrinsic::memcpy: {
513 Type *SrcTy = CI.getArgOperand(1)->getType();
514 if(cast<PointerType>(SrcTy)->getAddressSpace() != 0)
515 return false;
516 Callee = ID == Intrinsic::memcpy ? "memcpy" : "memmove";
517 break;
518 }
519 case Intrinsic::memset:
520 Callee = "memset";
521 break;
522 default:
523 return false;
524 }
Tim Northover3f186032016-10-18 20:03:45 +0000525
Tim Northover79f43f12017-01-30 19:33:07 +0000526 return CLI->lowerCall(MIRBuilder, MachineOperand::CreateES(Callee),
Tim Northover3f186032016-10-18 20:03:45 +0000527 CallLowering::ArgInfo(0, CI.getType()), Args);
528}
Tim Northovera7653b32016-09-12 11:20:22 +0000529
Tim Northoverc53606e2016-12-07 21:29:15 +0000530void IRTranslator::getStackGuard(unsigned DstReg,
531 MachineIRBuilder &MIRBuilder) {
Tim Northoverd8b85582017-01-27 21:31:24 +0000532 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
533 MRI->setRegClass(DstReg, TRI->getPointerRegClass(*MF));
Tim Northovercdf23f12016-10-31 18:30:59 +0000534 auto MIB = MIRBuilder.buildInstr(TargetOpcode::LOAD_STACK_GUARD);
535 MIB.addDef(DstReg);
536
Tim Northover50db7f412016-12-07 21:17:47 +0000537 auto &TLI = *MF->getSubtarget().getTargetLowering();
538 Value *Global = TLI.getSDagStackGuard(*MF->getFunction()->getParent());
Tim Northovercdf23f12016-10-31 18:30:59 +0000539 if (!Global)
540 return;
541
542 MachinePointerInfo MPInfo(Global);
Tim Northover50db7f412016-12-07 21:17:47 +0000543 MachineInstr::mmo_iterator MemRefs = MF->allocateMemRefsArray(1);
Tim Northovercdf23f12016-10-31 18:30:59 +0000544 auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant |
545 MachineMemOperand::MODereferenceable;
546 *MemRefs =
Tim Northover50db7f412016-12-07 21:17:47 +0000547 MF->getMachineMemOperand(MPInfo, Flags, DL->getPointerSizeInBits() / 8,
548 DL->getPointerABIAlignment());
Tim Northovercdf23f12016-10-31 18:30:59 +0000549 MIB.setMemRefs(MemRefs, MemRefs + 1);
550}
551
Tim Northover1e656ec2016-12-08 22:44:00 +0000552bool IRTranslator::translateOverflowIntrinsic(const CallInst &CI, unsigned Op,
553 MachineIRBuilder &MIRBuilder) {
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000554 LLT Ty = getLLTForType(*CI.getOperand(0)->getType(), *DL);
Tim Northover1e656ec2016-12-08 22:44:00 +0000555 LLT s1 = LLT::scalar(1);
556 unsigned Width = Ty.getSizeInBits();
557 unsigned Res = MRI->createGenericVirtualRegister(Ty);
558 unsigned Overflow = MRI->createGenericVirtualRegister(s1);
559 auto MIB = MIRBuilder.buildInstr(Op)
560 .addDef(Res)
561 .addDef(Overflow)
562 .addUse(getOrCreateVReg(*CI.getOperand(0)))
563 .addUse(getOrCreateVReg(*CI.getOperand(1)));
564
565 if (Op == TargetOpcode::G_UADDE || Op == TargetOpcode::G_USUBE) {
566 unsigned Zero = MRI->createGenericVirtualRegister(s1);
567 EntryBuilder.buildConstant(Zero, 0);
568 MIB.addUse(Zero);
569 }
570
571 MIRBuilder.buildSequence(getOrCreateVReg(CI), Res, 0, Overflow, Width);
572 return true;
573}
574
Tim Northoverc53606e2016-12-07 21:29:15 +0000575bool IRTranslator::translateKnownIntrinsic(const CallInst &CI, Intrinsic::ID ID,
576 MachineIRBuilder &MIRBuilder) {
Tim Northover91c81732016-08-19 17:17:06 +0000577 switch (ID) {
Tim Northover1e656ec2016-12-08 22:44:00 +0000578 default:
579 break;
Tim Northover0e011702017-02-10 19:10:38 +0000580 case Intrinsic::lifetime_start:
581 case Intrinsic::lifetime_end:
582 // Stack coloring is not enabled in O0 (which we care about now) so we can
583 // drop these. Make sure someone notices when we start compiling at higher
584 // opts though.
585 if (MF->getTarget().getOptLevel() != CodeGenOpt::None)
586 return false;
587 return true;
Tim Northover09aac4a2017-01-26 23:39:14 +0000588 case Intrinsic::dbg_declare: {
589 const DbgDeclareInst &DI = cast<DbgDeclareInst>(CI);
590 assert(DI.getVariable() && "Missing variable");
591
592 const Value *Address = DI.getAddress();
593 if (!Address || isa<UndefValue>(Address)) {
594 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
595 return true;
596 }
597
598 unsigned Reg = getOrCreateVReg(*Address);
599 auto RegDef = MRI->def_instr_begin(Reg);
600 assert(DI.getVariable()->isValidLocationForIntrinsic(
601 MIRBuilder.getDebugLoc()) &&
602 "Expected inlined-at fields to agree");
603
604 if (RegDef != MRI->def_instr_end() &&
605 RegDef->getOpcode() == TargetOpcode::G_FRAME_INDEX) {
606 MIRBuilder.buildFIDbgValue(RegDef->getOperand(1).getIndex(),
607 DI.getVariable(), DI.getExpression());
608 } else
609 MIRBuilder.buildDirectDbgValue(Reg, DI.getVariable(), DI.getExpression());
Tim Northoverb58346f2016-12-08 22:44:13 +0000610 return true;
Tim Northover09aac4a2017-01-26 23:39:14 +0000611 }
Tim Northoverd0d025a2017-02-07 20:08:59 +0000612 case Intrinsic::vaend:
613 // No target I know of cares about va_end. Certainly no in-tree target
614 // does. Simplest intrinsic ever!
615 return true;
Tim Northoverf19d4672017-02-08 17:57:20 +0000616 case Intrinsic::vastart: {
617 auto &TLI = *MF->getSubtarget().getTargetLowering();
618 Value *Ptr = CI.getArgOperand(0);
619 unsigned ListSize = TLI.getVaListSizeInBits(*DL) / 8;
620
621 MIRBuilder.buildInstr(TargetOpcode::G_VASTART)
622 .addUse(getOrCreateVReg(*Ptr))
623 .addMemOperand(MF->getMachineMemOperand(
624 MachinePointerInfo(Ptr), MachineMemOperand::MOStore, ListSize, 0));
625 return true;
626 }
Tim Northover09aac4a2017-01-26 23:39:14 +0000627 case Intrinsic::dbg_value: {
628 // This form of DBG_VALUE is target-independent.
629 const DbgValueInst &DI = cast<DbgValueInst>(CI);
630 const Value *V = DI.getValue();
631 assert(DI.getVariable()->isValidLocationForIntrinsic(
632 MIRBuilder.getDebugLoc()) &&
633 "Expected inlined-at fields to agree");
634 if (!V) {
635 // Currently the optimizer can produce this; insert an undef to
636 // help debugging. Probably the optimizer should not do this.
637 MIRBuilder.buildIndirectDbgValue(0, DI.getOffset(), DI.getVariable(),
638 DI.getExpression());
639 } else if (const auto *CI = dyn_cast<Constant>(V)) {
640 MIRBuilder.buildConstDbgValue(*CI, DI.getOffset(), DI.getVariable(),
641 DI.getExpression());
642 } else {
643 unsigned Reg = getOrCreateVReg(*V);
644 // FIXME: This does not handle register-indirect values at offset 0. The
645 // direct/indirect thing shouldn't really be handled by something as
646 // implicit as reg+noreg vs reg+imm in the first palce, but it seems
647 // pretty baked in right now.
648 if (DI.getOffset() != 0)
649 MIRBuilder.buildIndirectDbgValue(Reg, DI.getOffset(), DI.getVariable(),
650 DI.getExpression());
651 else
652 MIRBuilder.buildDirectDbgValue(Reg, DI.getVariable(),
653 DI.getExpression());
654 }
655 return true;
656 }
Tim Northover1e656ec2016-12-08 22:44:00 +0000657 case Intrinsic::uadd_with_overflow:
658 return translateOverflowIntrinsic(CI, TargetOpcode::G_UADDE, MIRBuilder);
659 case Intrinsic::sadd_with_overflow:
660 return translateOverflowIntrinsic(CI, TargetOpcode::G_SADDO, MIRBuilder);
661 case Intrinsic::usub_with_overflow:
662 return translateOverflowIntrinsic(CI, TargetOpcode::G_USUBE, MIRBuilder);
663 case Intrinsic::ssub_with_overflow:
664 return translateOverflowIntrinsic(CI, TargetOpcode::G_SSUBO, MIRBuilder);
665 case Intrinsic::umul_with_overflow:
666 return translateOverflowIntrinsic(CI, TargetOpcode::G_UMULO, MIRBuilder);
667 case Intrinsic::smul_with_overflow:
668 return translateOverflowIntrinsic(CI, TargetOpcode::G_SMULO, MIRBuilder);
Tim Northoverb38b4e22017-02-08 23:23:32 +0000669 case Intrinsic::pow:
670 MIRBuilder.buildInstr(TargetOpcode::G_FPOW)
671 .addDef(getOrCreateVReg(CI))
672 .addUse(getOrCreateVReg(*CI.getArgOperand(0)))
673 .addUse(getOrCreateVReg(*CI.getArgOperand(1)));
674 return true;
Tim Northover3f186032016-10-18 20:03:45 +0000675 case Intrinsic::memcpy:
Tim Northover79f43f12017-01-30 19:33:07 +0000676 case Intrinsic::memmove:
677 case Intrinsic::memset:
678 return translateMemfunc(CI, MIRBuilder, ID);
Tim Northovera9105be2016-11-09 22:39:54 +0000679 case Intrinsic::eh_typeid_for: {
680 GlobalValue *GV = ExtractTypeInfo(CI.getArgOperand(0));
681 unsigned Reg = getOrCreateVReg(CI);
Tim Northover50db7f412016-12-07 21:17:47 +0000682 unsigned TypeID = MF->getTypeIDFor(GV);
Tim Northovera9105be2016-11-09 22:39:54 +0000683 MIRBuilder.buildConstant(Reg, TypeID);
684 return true;
685 }
Tim Northover6e904302016-10-18 20:03:51 +0000686 case Intrinsic::objectsize: {
687 // If we don't know by now, we're never going to know.
688 const ConstantInt *Min = cast<ConstantInt>(CI.getArgOperand(1));
689
690 MIRBuilder.buildConstant(getOrCreateVReg(CI), Min->isZero() ? -1ULL : 0);
691 return true;
692 }
Tim Northovercdf23f12016-10-31 18:30:59 +0000693 case Intrinsic::stackguard:
Tim Northoverc53606e2016-12-07 21:29:15 +0000694 getStackGuard(getOrCreateVReg(CI), MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +0000695 return true;
696 case Intrinsic::stackprotector: {
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000697 LLT PtrTy = getLLTForType(*CI.getArgOperand(0)->getType(), *DL);
Tim Northovercdf23f12016-10-31 18:30:59 +0000698 unsigned GuardVal = MRI->createGenericVirtualRegister(PtrTy);
Tim Northoverc53606e2016-12-07 21:29:15 +0000699 getStackGuard(GuardVal, MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +0000700
701 AllocaInst *Slot = cast<AllocaInst>(CI.getArgOperand(1));
702 MIRBuilder.buildStore(
703 GuardVal, getOrCreateVReg(*Slot),
Tim Northover50db7f412016-12-07 21:17:47 +0000704 *MF->getMachineMemOperand(
705 MachinePointerInfo::getFixedStack(*MF,
706 getOrCreateFrameIndex(*Slot)),
Tim Northovercdf23f12016-10-31 18:30:59 +0000707 MachineMemOperand::MOStore | MachineMemOperand::MOVolatile,
708 PtrTy.getSizeInBits() / 8, 8));
709 return true;
710 }
Tim Northover91c81732016-08-19 17:17:06 +0000711 }
Tim Northover1e656ec2016-12-08 22:44:00 +0000712 return false;
Tim Northover91c81732016-08-19 17:17:06 +0000713}
714
Tim Northoverc53606e2016-12-07 21:29:15 +0000715bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000716 const CallInst &CI = cast<CallInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +0000717 auto TII = MF->getTarget().getIntrinsicInfo();
Tim Northover406024a2016-08-10 21:44:01 +0000718 const Function *F = CI.getCalledFunction();
Tim Northover5fb414d2016-07-29 22:32:36 +0000719
Tim Northover3babfef2017-01-19 23:59:35 +0000720 if (CI.isInlineAsm())
721 return false;
722
Tim Northover406024a2016-08-10 21:44:01 +0000723 if (!F || !F->isIntrinsic()) {
Tim Northover406024a2016-08-10 21:44:01 +0000724 unsigned Res = CI.getType()->isVoidTy() ? 0 : getOrCreateVReg(CI);
725 SmallVector<unsigned, 8> Args;
726 for (auto &Arg: CI.arg_operands())
727 Args.push_back(getOrCreateVReg(*Arg));
728
Tim Northoverfe5f89b2016-08-29 19:07:08 +0000729 return CLI->lowerCall(MIRBuilder, CI, Res, Args, [&]() {
730 return getOrCreateVReg(*CI.getCalledValue());
731 });
Tim Northover406024a2016-08-10 21:44:01 +0000732 }
733
734 Intrinsic::ID ID = F->getIntrinsicID();
735 if (TII && ID == Intrinsic::not_intrinsic)
736 ID = static_cast<Intrinsic::ID>(TII->getIntrinsicID(F));
737
738 assert(ID != Intrinsic::not_intrinsic && "unknown intrinsic");
Tim Northover5fb414d2016-07-29 22:32:36 +0000739
Tim Northoverc53606e2016-12-07 21:29:15 +0000740 if (translateKnownIntrinsic(CI, ID, MIRBuilder))
Tim Northover91c81732016-08-19 17:17:06 +0000741 return true;
742
Tim Northover5fb414d2016-07-29 22:32:36 +0000743 unsigned Res = CI.getType()->isVoidTy() ? 0 : getOrCreateVReg(CI);
744 MachineInstrBuilder MIB =
Tim Northover0f140c72016-09-09 11:46:34 +0000745 MIRBuilder.buildIntrinsic(ID, Res, !CI.doesNotAccessMemory());
Tim Northover5fb414d2016-07-29 22:32:36 +0000746
747 for (auto &Arg : CI.arg_operands()) {
Ahmed Bougacha55d10422017-03-07 20:53:09 +0000748 // Some intrinsics take metadata parameters. Reject them.
749 if (isa<MetadataAsValue>(Arg))
750 return false;
Tim Northover5fb414d2016-07-29 22:32:36 +0000751 if (ConstantInt *CI = dyn_cast<ConstantInt>(Arg))
752 MIB.addImm(CI->getSExtValue());
753 else
754 MIB.addUse(getOrCreateVReg(*Arg));
755 }
756 return true;
757}
758
Tim Northoverc53606e2016-12-07 21:29:15 +0000759bool IRTranslator::translateInvoke(const User &U,
760 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +0000761 const InvokeInst &I = cast<InvokeInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +0000762 MCContext &Context = MF->getContext();
Tim Northovera9105be2016-11-09 22:39:54 +0000763
764 const BasicBlock *ReturnBB = I.getSuccessor(0);
765 const BasicBlock *EHPadBB = I.getSuccessor(1);
766
767 const Value *Callee(I.getCalledValue());
768 const Function *Fn = dyn_cast<Function>(Callee);
769 if (isa<InlineAsm>(Callee))
770 return false;
771
772 // FIXME: support invoking patchpoint and statepoint intrinsics.
773 if (Fn && Fn->isIntrinsic())
774 return false;
775
776 // FIXME: support whatever these are.
777 if (I.countOperandBundlesOfType(LLVMContext::OB_deopt))
778 return false;
779
780 // FIXME: support Windows exception handling.
781 if (!isa<LandingPadInst>(EHPadBB->front()))
782 return false;
783
784
Matthias Braund0ee66c2016-12-01 19:32:15 +0000785 // Emit the actual call, bracketed by EH_LABELs so that the MF knows about
Tim Northovera9105be2016-11-09 22:39:54 +0000786 // the region covered by the try.
Matthias Braund0ee66c2016-12-01 19:32:15 +0000787 MCSymbol *BeginSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +0000788 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(BeginSymbol);
789
790 unsigned Res = I.getType()->isVoidTy() ? 0 : getOrCreateVReg(I);
Tim Northover293f7432017-01-31 18:36:11 +0000791 SmallVector<unsigned, 8> Args;
Tim Northovera9105be2016-11-09 22:39:54 +0000792 for (auto &Arg: I.arg_operands())
Tim Northover293f7432017-01-31 18:36:11 +0000793 Args.push_back(getOrCreateVReg(*Arg));
Tim Northovera9105be2016-11-09 22:39:54 +0000794
Tim Northover293f7432017-01-31 18:36:11 +0000795 CLI->lowerCall(MIRBuilder, I, Res, Args,
796 [&]() { return getOrCreateVReg(*I.getCalledValue()); });
Tim Northovera9105be2016-11-09 22:39:54 +0000797
Matthias Braund0ee66c2016-12-01 19:32:15 +0000798 MCSymbol *EndSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +0000799 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(EndSymbol);
800
801 // FIXME: track probabilities.
802 MachineBasicBlock &EHPadMBB = getOrCreateBB(*EHPadBB),
803 &ReturnMBB = getOrCreateBB(*ReturnBB);
Tim Northover50db7f412016-12-07 21:17:47 +0000804 MF->addInvoke(&EHPadMBB, BeginSymbol, EndSymbol);
Tim Northovera9105be2016-11-09 22:39:54 +0000805 MIRBuilder.getMBB().addSuccessor(&ReturnMBB);
806 MIRBuilder.getMBB().addSuccessor(&EHPadMBB);
Tim Northoverc6bfa482017-01-31 20:12:18 +0000807 MIRBuilder.buildBr(ReturnMBB);
Tim Northovera9105be2016-11-09 22:39:54 +0000808
809 return true;
810}
811
Tim Northoverc53606e2016-12-07 21:29:15 +0000812bool IRTranslator::translateLandingPad(const User &U,
813 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +0000814 const LandingPadInst &LP = cast<LandingPadInst>(U);
815
816 MachineBasicBlock &MBB = MIRBuilder.getMBB();
Matthias Braund0ee66c2016-12-01 19:32:15 +0000817 addLandingPadInfo(LP, MBB);
Tim Northovera9105be2016-11-09 22:39:54 +0000818
819 MBB.setIsEHPad();
820
821 // If there aren't registers to copy the values into (e.g., during SjLj
822 // exceptions), then don't bother.
Tim Northover50db7f412016-12-07 21:17:47 +0000823 auto &TLI = *MF->getSubtarget().getTargetLowering();
824 const Constant *PersonalityFn = MF->getFunction()->getPersonalityFn();
Tim Northovera9105be2016-11-09 22:39:54 +0000825 if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 &&
826 TLI.getExceptionSelectorRegister(PersonalityFn) == 0)
827 return true;
828
829 // If landingpad's return type is token type, we don't create DAG nodes
830 // for its exception pointer and selector value. The extraction of exception
831 // pointer or selector value from token type landingpads is not currently
832 // supported.
833 if (LP.getType()->isTokenTy())
834 return true;
835
836 // Add a label to mark the beginning of the landing pad. Deletion of the
837 // landing pad can thus be detected via the MachineModuleInfo.
838 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL)
Tim Northover50db7f412016-12-07 21:17:47 +0000839 .addSym(MF->addLandingPad(&MBB));
Tim Northovera9105be2016-11-09 22:39:54 +0000840
Daniel Sanders1351db42017-03-07 23:32:10 +0000841 LLT Ty = getLLTForType(*LP.getType(), *DL);
Tim Northover542d1c12017-03-07 23:04:06 +0000842 unsigned Undef = MRI->createGenericVirtualRegister(Ty);
843 MIRBuilder.buildUndef(Undef);
844
Justin Bognera0295312017-01-25 00:16:53 +0000845 SmallVector<LLT, 2> Tys;
846 for (Type *Ty : cast<StructType>(LP.getType())->elements())
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000847 Tys.push_back(getLLTForType(*Ty, *DL));
Justin Bognera0295312017-01-25 00:16:53 +0000848 assert(Tys.size() == 2 && "Only two-valued landingpads are supported");
849
Tim Northovera9105be2016-11-09 22:39:54 +0000850 // Mark exception register as live in.
Tim Northover542d1c12017-03-07 23:04:06 +0000851 unsigned ExceptionReg = TLI.getExceptionPointerRegister(PersonalityFn);
852 if (!ExceptionReg)
853 return false;
Tim Northovera9105be2016-11-09 22:39:54 +0000854
Tim Northover542d1c12017-03-07 23:04:06 +0000855 MBB.addLiveIn(ExceptionReg);
856 unsigned VReg = MRI->createGenericVirtualRegister(Tys[0]),
857 Tmp = MRI->createGenericVirtualRegister(Ty);
858 MIRBuilder.buildCopy(VReg, ExceptionReg);
859 MIRBuilder.buildInsert(Tmp, Undef, VReg, 0);
Tim Northoverc9449702017-01-30 20:52:42 +0000860
Tim Northover542d1c12017-03-07 23:04:06 +0000861 unsigned SelectorReg = TLI.getExceptionSelectorRegister(PersonalityFn);
862 if (!SelectorReg)
863 return false;
Tim Northoverc9449702017-01-30 20:52:42 +0000864
Tim Northover542d1c12017-03-07 23:04:06 +0000865 MBB.addLiveIn(SelectorReg);
Tim Northovera9105be2016-11-09 22:39:54 +0000866
Tim Northover542d1c12017-03-07 23:04:06 +0000867 // N.b. the exception selector register always has pointer type and may not
868 // match the actual IR-level type in the landingpad so an extra cast is
869 // needed.
870 unsigned PtrVReg = MRI->createGenericVirtualRegister(Tys[0]);
871 MIRBuilder.buildCopy(PtrVReg, SelectorReg);
872
873 VReg = MRI->createGenericVirtualRegister(Tys[1]);
874 MIRBuilder.buildInstr(TargetOpcode::G_PTRTOINT).addDef(VReg).addUse(PtrVReg);
875 MIRBuilder.buildInsert(getOrCreateVReg(LP), Tmp, VReg,
876 Tys[0].getSizeInBits());
Tim Northovera9105be2016-11-09 22:39:54 +0000877 return true;
878}
879
Tim Northoverc3e3f592017-02-03 18:22:45 +0000880bool IRTranslator::translateAlloca(const User &U,
881 MachineIRBuilder &MIRBuilder) {
882 auto &AI = cast<AllocaInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000883
Tim Northoverc3e3f592017-02-03 18:22:45 +0000884 if (AI.isStaticAlloca()) {
885 unsigned Res = getOrCreateVReg(AI);
886 int FI = getOrCreateFrameIndex(AI);
887 MIRBuilder.buildFrameIndex(Res, FI);
888 return true;
889 }
890
891 // Now we're in the harder dynamic case.
892 Type *Ty = AI.getAllocatedType();
893 unsigned Align =
894 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI.getAlignment());
895
896 unsigned NumElts = getOrCreateVReg(*AI.getArraySize());
897
898 LLT IntPtrTy = LLT::scalar(DL->getPointerSizeInBits());
899 if (MRI->getType(NumElts) != IntPtrTy) {
900 unsigned ExtElts = MRI->createGenericVirtualRegister(IntPtrTy);
901 MIRBuilder.buildZExtOrTrunc(ExtElts, NumElts);
902 NumElts = ExtElts;
903 }
904
905 unsigned AllocSize = MRI->createGenericVirtualRegister(IntPtrTy);
906 unsigned TySize = MRI->createGenericVirtualRegister(IntPtrTy);
Tim Northoverc2f89562017-02-14 20:56:18 +0000907 MIRBuilder.buildConstant(TySize, -DL->getTypeAllocSize(Ty));
Tim Northoverc3e3f592017-02-03 18:22:45 +0000908 MIRBuilder.buildMul(AllocSize, NumElts, TySize);
909
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000910 LLT PtrTy = getLLTForType(*AI.getType(), *DL);
Tim Northoverc3e3f592017-02-03 18:22:45 +0000911 auto &TLI = *MF->getSubtarget().getTargetLowering();
912 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
913
914 unsigned SPTmp = MRI->createGenericVirtualRegister(PtrTy);
915 MIRBuilder.buildCopy(SPTmp, SPReg);
916
Tim Northoverc2f89562017-02-14 20:56:18 +0000917 unsigned AllocTmp = MRI->createGenericVirtualRegister(PtrTy);
918 MIRBuilder.buildGEP(AllocTmp, SPTmp, AllocSize);
Tim Northoverc3e3f592017-02-03 18:22:45 +0000919
920 // Handle alignment. We have to realign if the allocation granule was smaller
921 // than stack alignment, or the specific alloca requires more than stack
922 // alignment.
923 unsigned StackAlign =
924 MF->getSubtarget().getFrameLowering()->getStackAlignment();
925 Align = std::max(Align, StackAlign);
926 if (Align > StackAlign || DL->getTypeAllocSize(Ty) % StackAlign != 0) {
927 // Round the size of the allocation up to the stack alignment size
928 // by add SA-1 to the size. This doesn't overflow because we're computing
929 // an address inside an alloca.
Tim Northoverc2f89562017-02-14 20:56:18 +0000930 unsigned AlignedAlloc = MRI->createGenericVirtualRegister(PtrTy);
931 MIRBuilder.buildPtrMask(AlignedAlloc, AllocTmp, Log2_32(Align));
932 AllocTmp = AlignedAlloc;
Tim Northoverc3e3f592017-02-03 18:22:45 +0000933 }
934
Tim Northoverc2f89562017-02-14 20:56:18 +0000935 MIRBuilder.buildCopy(SPReg, AllocTmp);
936 MIRBuilder.buildCopy(getOrCreateVReg(AI), AllocTmp);
Tim Northoverc3e3f592017-02-03 18:22:45 +0000937
938 MF->getFrameInfo().CreateVariableSizedObject(Align ? Align : 1, &AI);
939 assert(MF->getFrameInfo().hasVarSizedObjects());
Tim Northoverbd505462016-07-22 16:59:52 +0000940 return true;
941}
942
Tim Northover4a652222017-02-15 23:22:33 +0000943bool IRTranslator::translateVAArg(const User &U, MachineIRBuilder &MIRBuilder) {
944 // FIXME: We may need more info about the type. Because of how LLT works,
945 // we're completely discarding the i64/double distinction here (amongst
946 // others). Fortunately the ABIs I know of where that matters don't use va_arg
947 // anyway but that's not guaranteed.
948 MIRBuilder.buildInstr(TargetOpcode::G_VAARG)
949 .addDef(getOrCreateVReg(U))
950 .addUse(getOrCreateVReg(*U.getOperand(0)))
951 .addImm(DL->getABITypeAlignment(U.getType()));
952 return true;
953}
954
Tim Northoverc53606e2016-12-07 21:29:15 +0000955bool IRTranslator::translatePHI(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000956 const PHINode &PI = cast<PHINode>(U);
Tim Northover25d12862016-09-09 11:47:31 +0000957 auto MIB = MIRBuilder.buildInstr(TargetOpcode::PHI);
Tim Northover97d0cb32016-08-05 17:16:40 +0000958 MIB.addDef(getOrCreateVReg(PI));
959
960 PendingPHIs.emplace_back(&PI, MIB.getInstr());
961 return true;
962}
963
964void IRTranslator::finishPendingPhis() {
965 for (std::pair<const PHINode *, MachineInstr *> &Phi : PendingPHIs) {
966 const PHINode *PI = Phi.first;
Tim Northoverc53606e2016-12-07 21:29:15 +0000967 MachineInstrBuilder MIB(*MF, Phi.second);
Tim Northover97d0cb32016-08-05 17:16:40 +0000968
969 // All MachineBasicBlocks exist, add them to the PHI. We assume IRTranslator
970 // won't create extra control flow here, otherwise we need to find the
971 // dominating predecessor here (or perhaps force the weirder IRTranslators
972 // to provide a simple boundary).
Tim Northoverb6636fd2017-01-17 22:13:50 +0000973 SmallSet<const BasicBlock *, 4> HandledPreds;
974
Tim Northover97d0cb32016-08-05 17:16:40 +0000975 for (unsigned i = 0; i < PI->getNumIncomingValues(); ++i) {
Tim Northoverb6636fd2017-01-17 22:13:50 +0000976 auto IRPred = PI->getIncomingBlock(i);
977 if (HandledPreds.count(IRPred))
978 continue;
979
980 HandledPreds.insert(IRPred);
981 unsigned ValReg = getOrCreateVReg(*PI->getIncomingValue(i));
982 for (auto Pred : getMachinePredBBs({IRPred, PI->getParent()})) {
983 assert(Pred->isSuccessor(MIB->getParent()) &&
984 "incorrect CFG at MachineBasicBlock level");
985 MIB.addUse(ValReg);
986 MIB.addMBB(Pred);
987 }
Tim Northover97d0cb32016-08-05 17:16:40 +0000988 }
989 }
990}
991
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000992bool IRTranslator::translate(const Instruction &Inst) {
Tim Northoverc53606e2016-12-07 21:29:15 +0000993 CurBuilder.setDebugLoc(Inst.getDebugLoc());
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000994 switch(Inst.getOpcode()) {
Tim Northover357f1be2016-08-10 23:02:41 +0000995#define HANDLE_INST(NUM, OPCODE, CLASS) \
Tim Northoverc53606e2016-12-07 21:29:15 +0000996 case Instruction::OPCODE: return translate##OPCODE(Inst, CurBuilder);
Tim Northover357f1be2016-08-10 23:02:41 +0000997#include "llvm/IR/Instruction.def"
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000998 default:
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000999 if (!TPC->isGlobalISelAbortEnabled())
1000 return false;
Tim Northover357f1be2016-08-10 23:02:41 +00001001 llvm_unreachable("unknown opcode");
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001002 }
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001003}
1004
Tim Northover5ed648e2016-08-09 21:28:04 +00001005bool IRTranslator::translate(const Constant &C, unsigned Reg) {
Tim Northoverd403a3d2016-08-09 23:01:30 +00001006 if (auto CI = dyn_cast<ConstantInt>(&C))
Tim Northovercc35f902016-12-05 21:54:17 +00001007 EntryBuilder.buildConstant(Reg, *CI);
Tim Northoverb16734f2016-08-19 20:09:15 +00001008 else if (auto CF = dyn_cast<ConstantFP>(&C))
Tim Northover0f140c72016-09-09 11:46:34 +00001009 EntryBuilder.buildFConstant(Reg, *CF);
Tim Northoverd403a3d2016-08-09 23:01:30 +00001010 else if (isa<UndefValue>(C))
Tim Northover81dafc12017-03-06 18:36:40 +00001011 EntryBuilder.buildUndef(Reg);
Tim Northover8e0c53a2016-08-11 21:40:55 +00001012 else if (isa<ConstantPointerNull>(C))
Tim Northover9267ac52016-12-05 21:47:07 +00001013 EntryBuilder.buildConstant(Reg, 0);
Tim Northover032548f2016-09-12 12:10:41 +00001014 else if (auto GV = dyn_cast<GlobalValue>(&C))
1015 EntryBuilder.buildGlobalValue(Reg, GV);
Tim Northover357f1be2016-08-10 23:02:41 +00001016 else if (auto CE = dyn_cast<ConstantExpr>(&C)) {
1017 switch(CE->getOpcode()) {
1018#define HANDLE_INST(NUM, OPCODE, CLASS) \
Tim Northoverc53606e2016-12-07 21:29:15 +00001019 case Instruction::OPCODE: return translate##OPCODE(*CE, EntryBuilder);
Tim Northover357f1be2016-08-10 23:02:41 +00001020#include "llvm/IR/Instruction.def"
1021 default:
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001022 if (!TPC->isGlobalISelAbortEnabled())
1023 return false;
Tim Northover357f1be2016-08-10 23:02:41 +00001024 llvm_unreachable("unknown opcode");
1025 }
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001026 } else if (!TPC->isGlobalISelAbortEnabled())
1027 return false;
1028 else
Tim Northoverd403a3d2016-08-09 23:01:30 +00001029 llvm_unreachable("unhandled constant kind");
Tim Northover5ed648e2016-08-09 21:28:04 +00001030
Tim Northoverd403a3d2016-08-09 23:01:30 +00001031 return true;
Tim Northover5ed648e2016-08-09 21:28:04 +00001032}
1033
Tim Northover0d510442016-08-11 16:21:29 +00001034void IRTranslator::finalizeFunction() {
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001035 // Release the memory used by the different maps we
1036 // needed during the translation.
Tim Northover800638f2016-12-05 23:10:19 +00001037 PendingPHIs.clear();
Quentin Colombetccd77252016-02-11 21:48:32 +00001038 ValToVReg.clear();
Tim Northovercdf23f12016-10-31 18:30:59 +00001039 FrameIndices.clear();
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001040 Constants.clear();
Tim Northoverb6636fd2017-01-17 22:13:50 +00001041 MachinePreds.clear();
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001042}
1043
Tim Northover50db7f412016-12-07 21:17:47 +00001044bool IRTranslator::runOnMachineFunction(MachineFunction &CurMF) {
1045 MF = &CurMF;
1046 const Function &F = *MF->getFunction();
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001047 if (F.empty())
1048 return false;
Tim Northover50db7f412016-12-07 21:17:47 +00001049 CLI = MF->getSubtarget().getCallLowering();
Tim Northoverc53606e2016-12-07 21:29:15 +00001050 CurBuilder.setMF(*MF);
Tim Northover50db7f412016-12-07 21:17:47 +00001051 EntryBuilder.setMF(*MF);
1052 MRI = &MF->getRegInfo();
Tim Northoverbd505462016-07-22 16:59:52 +00001053 DL = &F.getParent()->getDataLayout();
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001054 TPC = &getAnalysis<TargetPassConfig>();
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001055 ORE = make_unique<OptimizationRemarkEmitter>(&F);
Tim Northoverbd505462016-07-22 16:59:52 +00001056
Tim Northover14e7f732016-08-05 17:50:36 +00001057 assert(PendingPHIs.empty() && "stale PHIs");
1058
Ahmed Bougachaeceabdd2017-02-23 23:57:28 +00001059 // Release the per-function state when we return, whether we succeeded or not.
1060 auto FinalizeOnReturn = make_scope_exit([this]() { finalizeFunction(); });
1061
Tim Northover05cc4852016-12-07 21:05:38 +00001062 // Setup a separate basic-block for the arguments and constants, falling
1063 // through to the IR-level Function's entry block.
Tim Northover50db7f412016-12-07 21:17:47 +00001064 MachineBasicBlock *EntryBB = MF->CreateMachineBasicBlock();
1065 MF->push_back(EntryBB);
Tim Northover05cc4852016-12-07 21:05:38 +00001066 EntryBB->addSuccessor(&getOrCreateBB(F.front()));
1067 EntryBuilder.setMBB(*EntryBB);
1068
1069 // Lower the actual args into this basic block.
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001070 SmallVector<unsigned, 8> VRegArgs;
1071 for (const Argument &Arg: F.args())
Quentin Colombete225e252016-03-11 17:27:54 +00001072 VRegArgs.push_back(getOrCreateVReg(Arg));
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001073 if (!CLI->lowerFormalArguments(EntryBuilder, F, VRegArgs)) {
Ahmed Bougacha7c88a4e2017-02-24 00:34:44 +00001074 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1075 MF->getFunction()->getSubprogram(),
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001076 &MF->getFunction()->getEntryBlock());
1077 R << "unable to lower arguments: " << ore::NV("Prototype", F.getType());
1078 reportTranslationError(*MF, *TPC, *ORE, R);
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001079 return false;
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001080 }
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001081
Tim Northover05cc4852016-12-07 21:05:38 +00001082 // And translate the function!
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001083 for (const BasicBlock &BB: F) {
Quentin Colombet53237a92016-03-11 17:27:43 +00001084 MachineBasicBlock &MBB = getOrCreateBB(BB);
Quentin Colombet91ebd712016-03-11 17:27:47 +00001085 // Set the insertion point of all the following translations to
1086 // the end of this basic block.
Tim Northoverc53606e2016-12-07 21:29:15 +00001087 CurBuilder.setMBB(MBB);
Tim Northovera9105be2016-11-09 22:39:54 +00001088
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001089 for (const Instruction &Inst: BB) {
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001090 if (translate(Inst))
1091 continue;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001092
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001093 std::string InstStrStorage;
1094 raw_string_ostream InstStr(InstStrStorage);
1095 InstStr << Inst;
1096
Ahmed Bougacha7daaf882017-02-24 00:34:47 +00001097 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1098 Inst.getDebugLoc(), &BB);
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001099 R << "unable to translate instruction: " << ore::NV("Opcode", &Inst)
1100 << ": '" << InstStr.str() << "'";
1101 reportTranslationError(*MF, *TPC, *ORE, R);
1102 return false;
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001103 }
1104 }
Tim Northover72eebfa2016-07-12 22:23:42 +00001105
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001106 finishPendingPhis();
Tim Northover97d0cb32016-08-05 17:16:40 +00001107
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001108 // Now that the MachineFrameInfo has been configured, no further changes to
1109 // the reserved registers are possible.
1110 MRI->freezeReservedRegs(*MF);
Quentin Colombet327f9422016-12-15 23:32:25 +00001111
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001112 // Merge the argument lowering and constants block with its single
1113 // successor, the LLVM-IR entry block. We want the basic block to
1114 // be maximal.
1115 assert(EntryBB->succ_size() == 1 &&
1116 "Custom BB used for lowering should have only one successor");
1117 // Get the successor of the current entry block.
1118 MachineBasicBlock &NewEntryBB = **EntryBB->succ_begin();
1119 assert(NewEntryBB.pred_size() == 1 &&
1120 "LLVM-IR entry block has a predecessor!?");
1121 // Move all the instruction from the current entry block to the
1122 // new entry block.
1123 NewEntryBB.splice(NewEntryBB.begin(), EntryBB, EntryBB->begin(),
1124 EntryBB->end());
Quentin Colombet327f9422016-12-15 23:32:25 +00001125
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001126 // Update the live-in information for the new entry block.
1127 for (const MachineBasicBlock::RegisterMaskPair &LiveIn : EntryBB->liveins())
1128 NewEntryBB.addLiveIn(LiveIn);
1129 NewEntryBB.sortUniqueLiveIns();
Quentin Colombet327f9422016-12-15 23:32:25 +00001130
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001131 // Get rid of the now empty basic block.
1132 EntryBB->removeSuccessor(&NewEntryBB);
1133 MF->remove(EntryBB);
1134 MF->DeleteMachineBasicBlock(EntryBB);
Quentin Colombet327f9422016-12-15 23:32:25 +00001135
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001136 assert(&MF->front() == &NewEntryBB &&
1137 "New entry wasn't next in the list of basic block!");
Tim Northover800638f2016-12-05 23:10:19 +00001138
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001139 return false;
1140}