blob: 70333057a7683d3416560413ca322335042d7a52 [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 Sanders983c9b92017-02-28 15:00:27 +000085 unsigned VReg = MRI->createGenericVirtualRegister(LLT{*Val.getType(), *DL});
Tim Northover9e35f1e2017-01-25 20:58:22 +000086 ValReg = VReg;
87
88 if (auto CV = dyn_cast<Constant>(&Val)) {
89 bool Success = translate(*CV, VReg);
90 if (!Success) {
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000091 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
Ahmed Bougacha7c88a4e2017-02-24 00:34:44 +000092 MF->getFunction()->getSubprogram(),
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000093 &MF->getFunction()->getEntryBlock());
94 R << "unable to translate constant: " << ore::NV("Type", Val.getType());
95 reportTranslationError(*MF, *TPC, *ORE, R);
96 return VReg;
Tim Northover5ed648e2016-08-09 21:28:04 +000097 }
Quentin Colombet17c494b2016-02-11 17:51:31 +000098 }
Tim Northover7f3ad2e2017-01-20 23:25:17 +000099
Tim Northover9e35f1e2017-01-25 20:58:22 +0000100 return VReg;
Quentin Colombet17c494b2016-02-11 17:51:31 +0000101}
102
Tim Northovercdf23f12016-10-31 18:30:59 +0000103int IRTranslator::getOrCreateFrameIndex(const AllocaInst &AI) {
104 if (FrameIndices.find(&AI) != FrameIndices.end())
105 return FrameIndices[&AI];
106
Tim Northovercdf23f12016-10-31 18:30:59 +0000107 unsigned ElementSize = DL->getTypeStoreSize(AI.getAllocatedType());
108 unsigned Size =
109 ElementSize * cast<ConstantInt>(AI.getArraySize())->getZExtValue();
110
111 // Always allocate at least one byte.
112 Size = std::max(Size, 1u);
113
114 unsigned Alignment = AI.getAlignment();
115 if (!Alignment)
116 Alignment = DL->getABITypeAlignment(AI.getAllocatedType());
117
118 int &FI = FrameIndices[&AI];
Tim Northover50db7f412016-12-07 21:17:47 +0000119 FI = MF->getFrameInfo().CreateStackObject(Size, Alignment, false, &AI);
Tim Northovercdf23f12016-10-31 18:30:59 +0000120 return FI;
121}
122
Tim Northoverad2b7172016-07-26 20:23:26 +0000123unsigned IRTranslator::getMemOpAlignment(const Instruction &I) {
124 unsigned Alignment = 0;
125 Type *ValTy = nullptr;
126 if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
127 Alignment = SI->getAlignment();
128 ValTy = SI->getValueOperand()->getType();
129 } else if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
130 Alignment = LI->getAlignment();
131 ValTy = LI->getType();
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000132 } else {
133 OptimizationRemarkMissed R("gisel-irtranslator", "", &I);
134 R << "unable to translate memop: " << ore::NV("Opcode", &I);
135 reportTranslationError(*MF, *TPC, *ORE, R);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000136 return 1;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000137 }
Tim Northoverad2b7172016-07-26 20:23:26 +0000138
139 return Alignment ? Alignment : DL->getABITypeAlignment(ValTy);
140}
141
Quentin Colombet53237a92016-03-11 17:27:43 +0000142MachineBasicBlock &IRTranslator::getOrCreateBB(const BasicBlock &BB) {
143 MachineBasicBlock *&MBB = BBToMBB[&BB];
Quentin Colombet17c494b2016-02-11 17:51:31 +0000144 if (!MBB) {
Kristof Beylsa983e7c2017-01-05 13:27:52 +0000145 MBB = MF->CreateMachineBasicBlock(&BB);
Tim Northover50db7f412016-12-07 21:17:47 +0000146 MF->push_back(MBB);
Kristof Beylsa983e7c2017-01-05 13:27:52 +0000147
148 if (BB.hasAddressTaken())
149 MBB->setHasAddressTaken();
Quentin Colombet17c494b2016-02-11 17:51:31 +0000150 }
151 return *MBB;
152}
153
Tim Northoverb6636fd2017-01-17 22:13:50 +0000154void IRTranslator::addMachineCFGPred(CFGEdge Edge, MachineBasicBlock *NewPred) {
155 assert(NewPred && "new predecessor must be a real MachineBasicBlock");
156 MachinePreds[Edge].push_back(NewPred);
157}
158
Tim Northoverc53606e2016-12-07 21:29:15 +0000159bool IRTranslator::translateBinaryOp(unsigned Opcode, const User &U,
160 MachineIRBuilder &MIRBuilder) {
Tim Northover0d56e052016-07-29 18:11:21 +0000161 // FIXME: handle signed/unsigned wrapping flags.
162
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000163 // Get or create a virtual register for each value.
164 // Unless the value is a Constant => loadimm cst?
165 // or inline constant each time?
166 // Creation of a virtual register needs to have a size.
Tim Northover357f1be2016-08-10 23:02:41 +0000167 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
168 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
169 unsigned Res = getOrCreateVReg(U);
Tim Northover0f140c72016-09-09 11:46:34 +0000170 MIRBuilder.buildInstr(Opcode).addDef(Res).addUse(Op0).addUse(Op1);
Quentin Colombet17c494b2016-02-11 17:51:31 +0000171 return true;
Quentin Colombet105cf2b2016-01-20 20:58:56 +0000172}
173
Volkan Keles20d3c422017-03-07 18:03:28 +0000174bool IRTranslator::translateFSub(const User &U, MachineIRBuilder &MIRBuilder) {
175 // -0.0 - X --> G_FNEG
176 if (isa<Constant>(U.getOperand(0)) &&
177 U.getOperand(0) == ConstantFP::getZeroValueForNegation(U.getType())) {
178 MIRBuilder.buildInstr(TargetOpcode::G_FNEG)
179 .addDef(getOrCreateVReg(U))
180 .addUse(getOrCreateVReg(*U.getOperand(1)));
181 return true;
182 }
183 return translateBinaryOp(TargetOpcode::G_FSUB, U, MIRBuilder);
184}
185
Tim Northoverc53606e2016-12-07 21:29:15 +0000186bool IRTranslator::translateCompare(const User &U,
187 MachineIRBuilder &MIRBuilder) {
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000188 const CmpInst *CI = dyn_cast<CmpInst>(&U);
189 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
190 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
191 unsigned Res = getOrCreateVReg(U);
192 CmpInst::Predicate Pred =
193 CI ? CI->getPredicate() : static_cast<CmpInst::Predicate>(
194 cast<ConstantExpr>(U).getPredicate());
Tim Northoverde3aea0412016-08-17 20:25:25 +0000195
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000196 if (CmpInst::isIntPredicate(Pred))
Tim Northover0f140c72016-09-09 11:46:34 +0000197 MIRBuilder.buildICmp(Pred, Res, Op0, Op1);
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000198 else
Tim Northover0f140c72016-09-09 11:46:34 +0000199 MIRBuilder.buildFCmp(Pred, Res, Op0, Op1);
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000200
Tim Northoverde3aea0412016-08-17 20:25:25 +0000201 return true;
202}
203
Tim Northoverc53606e2016-12-07 21:29:15 +0000204bool IRTranslator::translateRet(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000205 const ReturnInst &RI = cast<ReturnInst>(U);
Tim Northover0d56e052016-07-29 18:11:21 +0000206 const Value *Ret = RI.getReturnValue();
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000207 // The target may mess up with the insertion point, but
208 // this is not important as a return is the last instruction
209 // of the block anyway.
Tom Stellardb72a65f2016-04-14 17:23:33 +0000210 return CLI->lowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret));
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000211}
212
Tim Northoverc53606e2016-12-07 21:29:15 +0000213bool IRTranslator::translateBr(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000214 const BranchInst &BrInst = cast<BranchInst>(U);
Tim Northover69c2ba52016-07-29 17:58:00 +0000215 unsigned Succ = 0;
216 if (!BrInst.isUnconditional()) {
217 // We want a G_BRCOND to the true BB followed by an unconditional branch.
218 unsigned Tst = getOrCreateVReg(*BrInst.getCondition());
219 const BasicBlock &TrueTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ++));
220 MachineBasicBlock &TrueBB = getOrCreateBB(TrueTgt);
Tim Northover0f140c72016-09-09 11:46:34 +0000221 MIRBuilder.buildBrCond(Tst, TrueBB);
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000222 }
Tim Northover69c2ba52016-07-29 17:58:00 +0000223
224 const BasicBlock &BrTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ));
225 MachineBasicBlock &TgtBB = getOrCreateBB(BrTgt);
226 MIRBuilder.buildBr(TgtBB);
227
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000228 // Link successors.
229 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
230 for (const BasicBlock *Succ : BrInst.successors())
231 CurBB.addSuccessor(&getOrCreateBB(*Succ));
232 return true;
233}
234
Kristof Beylseced0712017-01-05 11:28:51 +0000235bool IRTranslator::translateSwitch(const User &U,
236 MachineIRBuilder &MIRBuilder) {
237 // For now, just translate as a chain of conditional branches.
238 // FIXME: could we share most of the logic/code in
239 // SelectionDAGBuilder::visitSwitch between SelectionDAG and GlobalISel?
240 // At first sight, it seems most of the logic in there is independent of
241 // SelectionDAG-specifics and a lot of work went in to optimize switch
242 // lowering in there.
243
244 const SwitchInst &SwInst = cast<SwitchInst>(U);
245 const unsigned SwCondValue = getOrCreateVReg(*SwInst.getCondition());
Tim Northoverb6636fd2017-01-17 22:13:50 +0000246 const BasicBlock *OrigBB = SwInst.getParent();
Kristof Beylseced0712017-01-05 11:28:51 +0000247
Daniel Sanders983c9b92017-02-28 15:00:27 +0000248 LLT LLTi1 = LLT(*Type::getInt1Ty(U.getContext()), *DL);
Kristof Beylseced0712017-01-05 11:28:51 +0000249 for (auto &CaseIt : SwInst.cases()) {
250 const unsigned CaseValueReg = getOrCreateVReg(*CaseIt.getCaseValue());
251 const unsigned Tst = MRI->createGenericVirtualRegister(LLTi1);
252 MIRBuilder.buildICmp(CmpInst::ICMP_EQ, Tst, CaseValueReg, SwCondValue);
Tim Northoverb6636fd2017-01-17 22:13:50 +0000253 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
254 const BasicBlock *TrueBB = CaseIt.getCaseSuccessor();
255 MachineBasicBlock &TrueMBB = getOrCreateBB(*TrueBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000256
Tim Northoverb6636fd2017-01-17 22:13:50 +0000257 MIRBuilder.buildBrCond(Tst, TrueMBB);
258 CurMBB.addSuccessor(&TrueMBB);
259 addMachineCFGPred({OrigBB, TrueBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000260
Tim Northoverb6636fd2017-01-17 22:13:50 +0000261 MachineBasicBlock *FalseMBB =
Kristof Beylseced0712017-01-05 11:28:51 +0000262 MF->CreateMachineBasicBlock(SwInst.getParent());
Tim Northoverb6636fd2017-01-17 22:13:50 +0000263 MF->push_back(FalseMBB);
264 MIRBuilder.buildBr(*FalseMBB);
265 CurMBB.addSuccessor(FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000266
Tim Northoverb6636fd2017-01-17 22:13:50 +0000267 MIRBuilder.setMBB(*FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000268 }
269 // handle default case
Tim Northoverb6636fd2017-01-17 22:13:50 +0000270 const BasicBlock *DefaultBB = SwInst.getDefaultDest();
271 MachineBasicBlock &DefaultMBB = getOrCreateBB(*DefaultBB);
272 MIRBuilder.buildBr(DefaultMBB);
273 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
274 CurMBB.addSuccessor(&DefaultMBB);
275 addMachineCFGPred({OrigBB, DefaultBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000276
277 return true;
278}
279
Kristof Beyls65a12c02017-01-30 09:13:18 +0000280bool IRTranslator::translateIndirectBr(const User &U,
281 MachineIRBuilder &MIRBuilder) {
282 const IndirectBrInst &BrInst = cast<IndirectBrInst>(U);
283
284 const unsigned Tgt = getOrCreateVReg(*BrInst.getAddress());
285 MIRBuilder.buildBrIndirect(Tgt);
286
287 // Link successors.
288 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
289 for (const BasicBlock *Succ : BrInst.successors())
290 CurBB.addSuccessor(&getOrCreateBB(*Succ));
291
292 return true;
293}
294
Tim Northoverc53606e2016-12-07 21:29:15 +0000295bool IRTranslator::translateLoad(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000296 const LoadInst &LI = cast<LoadInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000297
Tim Northover7152dca2016-10-19 15:55:06 +0000298 auto Flags = LI.isVolatile() ? MachineMemOperand::MOVolatile
299 : MachineMemOperand::MONone;
300 Flags |= MachineMemOperand::MOLoad;
Tim Northoverad2b7172016-07-26 20:23:26 +0000301
Tim Northoverad2b7172016-07-26 20:23:26 +0000302 unsigned Res = getOrCreateVReg(LI);
303 unsigned Addr = getOrCreateVReg(*LI.getPointerOperand());
Daniel Sanders983c9b92017-02-28 15:00:27 +0000304 LLT VTy{*LI.getType(), *DL}, PTy{*LI.getPointerOperand()->getType(), *DL};
Tim Northoverad2b7172016-07-26 20:23:26 +0000305 MIRBuilder.buildLoad(
Tim Northover0f140c72016-09-09 11:46:34 +0000306 Res, Addr,
Tim Northover50db7f412016-12-07 21:17:47 +0000307 *MF->getMachineMemOperand(MachinePointerInfo(LI.getPointerOperand()),
308 Flags, DL->getTypeStoreSize(LI.getType()),
Tim Northover48dfa1a2017-02-13 22:14:16 +0000309 getMemOpAlignment(LI), AAMDNodes(), nullptr,
310 LI.getSynchScope(), LI.getOrdering()));
Tim Northoverad2b7172016-07-26 20:23:26 +0000311 return true;
312}
313
Tim Northoverc53606e2016-12-07 21:29:15 +0000314bool IRTranslator::translateStore(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000315 const StoreInst &SI = cast<StoreInst>(U);
Tim Northover7152dca2016-10-19 15:55:06 +0000316 auto Flags = SI.isVolatile() ? MachineMemOperand::MOVolatile
317 : MachineMemOperand::MONone;
318 Flags |= MachineMemOperand::MOStore;
Tim Northoverad2b7172016-07-26 20:23:26 +0000319
Tim Northoverad2b7172016-07-26 20:23:26 +0000320 unsigned Val = getOrCreateVReg(*SI.getValueOperand());
321 unsigned Addr = getOrCreateVReg(*SI.getPointerOperand());
Daniel Sanders983c9b92017-02-28 15:00:27 +0000322 LLT VTy{*SI.getValueOperand()->getType(), *DL},
323 PTy{*SI.getPointerOperand()->getType(), *DL};
Tim Northoverad2b7172016-07-26 20:23:26 +0000324
325 MIRBuilder.buildStore(
Tim Northover50db7f412016-12-07 21:17:47 +0000326 Val, Addr,
327 *MF->getMachineMemOperand(
328 MachinePointerInfo(SI.getPointerOperand()), Flags,
329 DL->getTypeStoreSize(SI.getValueOperand()->getType()),
Tim Northover48dfa1a2017-02-13 22:14:16 +0000330 getMemOpAlignment(SI), AAMDNodes(), nullptr, SI.getSynchScope(),
331 SI.getOrdering()));
Tim Northoverad2b7172016-07-26 20:23:26 +0000332 return true;
333}
334
Tim Northoverc53606e2016-12-07 21:29:15 +0000335bool IRTranslator::translateExtractValue(const User &U,
336 MachineIRBuilder &MIRBuilder) {
Tim Northoverb6046222016-08-19 20:09:03 +0000337 const Value *Src = U.getOperand(0);
338 Type *Int32Ty = Type::getInt32Ty(U.getContext());
Tim Northover6f80b082016-08-19 17:47:05 +0000339 SmallVector<Value *, 1> Indices;
340
341 // getIndexedOffsetInType is designed for GEPs, so the first index is the
342 // usual array element rather than looking into the actual aggregate.
343 Indices.push_back(ConstantInt::get(Int32Ty, 0));
Tim Northoverb6046222016-08-19 20:09:03 +0000344
345 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&U)) {
346 for (auto Idx : EVI->indices())
347 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
348 } else {
349 for (unsigned i = 1; i < U.getNumOperands(); ++i)
350 Indices.push_back(U.getOperand(i));
351 }
Tim Northover6f80b082016-08-19 17:47:05 +0000352
353 uint64_t Offset = 8 * DL->getIndexedOffsetInType(Src->getType(), Indices);
354
Tim Northoverb6046222016-08-19 20:09:03 +0000355 unsigned Res = getOrCreateVReg(U);
Tim Northoverc2c545b2017-03-06 23:50:28 +0000356 MIRBuilder.buildExtract(Res, getOrCreateVReg(*Src), Offset);
Tim Northover6f80b082016-08-19 17:47:05 +0000357
358 return true;
359}
360
Tim Northoverc53606e2016-12-07 21:29:15 +0000361bool IRTranslator::translateInsertValue(const User &U,
362 MachineIRBuilder &MIRBuilder) {
Tim Northoverb6046222016-08-19 20:09:03 +0000363 const Value *Src = U.getOperand(0);
364 Type *Int32Ty = Type::getInt32Ty(U.getContext());
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000365 SmallVector<Value *, 1> Indices;
366
367 // getIndexedOffsetInType is designed for GEPs, so the first index is the
368 // usual array element rather than looking into the actual aggregate.
369 Indices.push_back(ConstantInt::get(Int32Ty, 0));
Tim Northoverb6046222016-08-19 20:09:03 +0000370
371 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&U)) {
372 for (auto Idx : IVI->indices())
373 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
374 } else {
375 for (unsigned i = 2; i < U.getNumOperands(); ++i)
376 Indices.push_back(U.getOperand(i));
377 }
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000378
379 uint64_t Offset = 8 * DL->getIndexedOffsetInType(Src->getType(), Indices);
380
Tim Northoverb6046222016-08-19 20:09:03 +0000381 unsigned Res = getOrCreateVReg(U);
382 const Value &Inserted = *U.getOperand(1);
Tim Northover0f140c72016-09-09 11:46:34 +0000383 MIRBuilder.buildInsert(Res, getOrCreateVReg(*Src), getOrCreateVReg(Inserted),
384 Offset);
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000385
386 return true;
387}
388
Tim Northoverc53606e2016-12-07 21:29:15 +0000389bool IRTranslator::translateSelect(const User &U,
390 MachineIRBuilder &MIRBuilder) {
Tim Northover0f140c72016-09-09 11:46:34 +0000391 MIRBuilder.buildSelect(getOrCreateVReg(U), getOrCreateVReg(*U.getOperand(0)),
392 getOrCreateVReg(*U.getOperand(1)),
393 getOrCreateVReg(*U.getOperand(2)));
Tim Northover5a28c362016-08-19 20:09:07 +0000394 return true;
395}
396
Tim Northoverc53606e2016-12-07 21:29:15 +0000397bool IRTranslator::translateBitCast(const User &U,
398 MachineIRBuilder &MIRBuilder) {
Daniel Sanders983c9b92017-02-28 15:00:27 +0000399 if (LLT{*U.getOperand(0)->getType(), *DL} == LLT{*U.getType(), *DL}) {
Tim Northover357f1be2016-08-10 23:02:41 +0000400 unsigned &Reg = ValToVReg[&U];
Tim Northover7552ef52016-08-10 16:51:14 +0000401 if (Reg)
Tim Northover357f1be2016-08-10 23:02:41 +0000402 MIRBuilder.buildCopy(Reg, getOrCreateVReg(*U.getOperand(0)));
Tim Northover7552ef52016-08-10 16:51:14 +0000403 else
Tim Northover357f1be2016-08-10 23:02:41 +0000404 Reg = getOrCreateVReg(*U.getOperand(0));
Tim Northover7c9eba92016-07-25 21:01:29 +0000405 return true;
406 }
Tim Northoverc53606e2016-12-07 21:29:15 +0000407 return translateCast(TargetOpcode::G_BITCAST, U, MIRBuilder);
Tim Northover7c9eba92016-07-25 21:01:29 +0000408}
409
Tim Northoverc53606e2016-12-07 21:29:15 +0000410bool IRTranslator::translateCast(unsigned Opcode, const User &U,
411 MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000412 unsigned Op = getOrCreateVReg(*U.getOperand(0));
413 unsigned Res = getOrCreateVReg(U);
Tim Northover0f140c72016-09-09 11:46:34 +0000414 MIRBuilder.buildInstr(Opcode).addDef(Res).addUse(Op);
Tim Northover7c9eba92016-07-25 21:01:29 +0000415 return true;
416}
417
Tim Northoverc53606e2016-12-07 21:29:15 +0000418bool IRTranslator::translateGetElementPtr(const User &U,
419 MachineIRBuilder &MIRBuilder) {
Tim Northovera7653b32016-09-12 11:20:22 +0000420 // FIXME: support vector GEPs.
421 if (U.getType()->isVectorTy())
422 return false;
423
424 Value &Op0 = *U.getOperand(0);
425 unsigned BaseReg = getOrCreateVReg(Op0);
Daniel Sanders983c9b92017-02-28 15:00:27 +0000426 LLT PtrTy{*Op0.getType(), *DL};
Tim Northovera7653b32016-09-12 11:20:22 +0000427 unsigned PtrSize = DL->getPointerSizeInBits(PtrTy.getAddressSpace());
428 LLT OffsetTy = LLT::scalar(PtrSize);
429
430 int64_t Offset = 0;
431 for (gep_type_iterator GTI = gep_type_begin(&U), E = gep_type_end(&U);
432 GTI != E; ++GTI) {
433 const Value *Idx = GTI.getOperand();
Peter Collingbourne25a40752016-12-02 02:55:30 +0000434 if (StructType *StTy = GTI.getStructTypeOrNull()) {
Tim Northovera7653b32016-09-12 11:20:22 +0000435 unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
436 Offset += DL->getStructLayout(StTy)->getElementOffset(Field);
437 continue;
438 } else {
439 uint64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
440
441 // If this is a scalar constant or a splat vector of constants,
442 // handle it quickly.
443 if (const auto *CI = dyn_cast<ConstantInt>(Idx)) {
444 Offset += ElementSize * CI->getSExtValue();
445 continue;
446 }
447
448 if (Offset != 0) {
449 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
450 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
451 MIRBuilder.buildConstant(OffsetReg, Offset);
452 MIRBuilder.buildGEP(NewBaseReg, BaseReg, OffsetReg);
453
454 BaseReg = NewBaseReg;
455 Offset = 0;
456 }
457
458 // N = N + Idx * ElementSize;
459 unsigned ElementSizeReg = MRI->createGenericVirtualRegister(OffsetTy);
460 MIRBuilder.buildConstant(ElementSizeReg, ElementSize);
461
462 unsigned IdxReg = getOrCreateVReg(*Idx);
463 if (MRI->getType(IdxReg) != OffsetTy) {
464 unsigned NewIdxReg = MRI->createGenericVirtualRegister(OffsetTy);
465 MIRBuilder.buildSExtOrTrunc(NewIdxReg, IdxReg);
466 IdxReg = NewIdxReg;
467 }
468
469 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
470 MIRBuilder.buildMul(OffsetReg, ElementSizeReg, IdxReg);
471
472 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
473 MIRBuilder.buildGEP(NewBaseReg, BaseReg, OffsetReg);
474 BaseReg = NewBaseReg;
475 }
476 }
477
478 if (Offset != 0) {
479 unsigned OffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
480 MIRBuilder.buildConstant(OffsetReg, Offset);
481 MIRBuilder.buildGEP(getOrCreateVReg(U), BaseReg, OffsetReg);
482 return true;
483 }
484
485 MIRBuilder.buildCopy(getOrCreateVReg(U), BaseReg);
486 return true;
487}
488
Tim Northover79f43f12017-01-30 19:33:07 +0000489bool IRTranslator::translateMemfunc(const CallInst &CI,
490 MachineIRBuilder &MIRBuilder,
491 unsigned ID) {
Daniel Sanders983c9b92017-02-28 15:00:27 +0000492 LLT SizeTy{*CI.getArgOperand(2)->getType(), *DL};
Tim Northover79f43f12017-01-30 19:33:07 +0000493 Type *DstTy = CI.getArgOperand(0)->getType();
494 if (cast<PointerType>(DstTy)->getAddressSpace() != 0 ||
Tim Northover3f186032016-10-18 20:03:45 +0000495 SizeTy.getSizeInBits() != DL->getPointerSizeInBits(0))
496 return false;
497
498 SmallVector<CallLowering::ArgInfo, 8> Args;
499 for (int i = 0; i < 3; ++i) {
500 const auto &Arg = CI.getArgOperand(i);
501 Args.emplace_back(getOrCreateVReg(*Arg), Arg->getType());
502 }
503
Tim Northover79f43f12017-01-30 19:33:07 +0000504 const char *Callee;
505 switch (ID) {
506 case Intrinsic::memmove:
507 case Intrinsic::memcpy: {
508 Type *SrcTy = CI.getArgOperand(1)->getType();
509 if(cast<PointerType>(SrcTy)->getAddressSpace() != 0)
510 return false;
511 Callee = ID == Intrinsic::memcpy ? "memcpy" : "memmove";
512 break;
513 }
514 case Intrinsic::memset:
515 Callee = "memset";
516 break;
517 default:
518 return false;
519 }
Tim Northover3f186032016-10-18 20:03:45 +0000520
Tim Northover79f43f12017-01-30 19:33:07 +0000521 return CLI->lowerCall(MIRBuilder, MachineOperand::CreateES(Callee),
Tim Northover3f186032016-10-18 20:03:45 +0000522 CallLowering::ArgInfo(0, CI.getType()), Args);
523}
Tim Northovera7653b32016-09-12 11:20:22 +0000524
Tim Northoverc53606e2016-12-07 21:29:15 +0000525void IRTranslator::getStackGuard(unsigned DstReg,
526 MachineIRBuilder &MIRBuilder) {
Tim Northoverd8b85582017-01-27 21:31:24 +0000527 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
528 MRI->setRegClass(DstReg, TRI->getPointerRegClass(*MF));
Tim Northovercdf23f12016-10-31 18:30:59 +0000529 auto MIB = MIRBuilder.buildInstr(TargetOpcode::LOAD_STACK_GUARD);
530 MIB.addDef(DstReg);
531
Tim Northover50db7f412016-12-07 21:17:47 +0000532 auto &TLI = *MF->getSubtarget().getTargetLowering();
533 Value *Global = TLI.getSDagStackGuard(*MF->getFunction()->getParent());
Tim Northovercdf23f12016-10-31 18:30:59 +0000534 if (!Global)
535 return;
536
537 MachinePointerInfo MPInfo(Global);
Tim Northover50db7f412016-12-07 21:17:47 +0000538 MachineInstr::mmo_iterator MemRefs = MF->allocateMemRefsArray(1);
Tim Northovercdf23f12016-10-31 18:30:59 +0000539 auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant |
540 MachineMemOperand::MODereferenceable;
541 *MemRefs =
Tim Northover50db7f412016-12-07 21:17:47 +0000542 MF->getMachineMemOperand(MPInfo, Flags, DL->getPointerSizeInBits() / 8,
543 DL->getPointerABIAlignment());
Tim Northovercdf23f12016-10-31 18:30:59 +0000544 MIB.setMemRefs(MemRefs, MemRefs + 1);
545}
546
Tim Northover1e656ec2016-12-08 22:44:00 +0000547bool IRTranslator::translateOverflowIntrinsic(const CallInst &CI, unsigned Op,
548 MachineIRBuilder &MIRBuilder) {
Daniel Sanders983c9b92017-02-28 15:00:27 +0000549 LLT Ty{*CI.getOperand(0)->getType(), *DL};
Tim Northover1e656ec2016-12-08 22:44:00 +0000550 LLT s1 = LLT::scalar(1);
551 unsigned Width = Ty.getSizeInBits();
552 unsigned Res = MRI->createGenericVirtualRegister(Ty);
553 unsigned Overflow = MRI->createGenericVirtualRegister(s1);
554 auto MIB = MIRBuilder.buildInstr(Op)
555 .addDef(Res)
556 .addDef(Overflow)
557 .addUse(getOrCreateVReg(*CI.getOperand(0)))
558 .addUse(getOrCreateVReg(*CI.getOperand(1)));
559
560 if (Op == TargetOpcode::G_UADDE || Op == TargetOpcode::G_USUBE) {
561 unsigned Zero = MRI->createGenericVirtualRegister(s1);
562 EntryBuilder.buildConstant(Zero, 0);
563 MIB.addUse(Zero);
564 }
565
566 MIRBuilder.buildSequence(getOrCreateVReg(CI), Res, 0, Overflow, Width);
567 return true;
568}
569
Tim Northoverc53606e2016-12-07 21:29:15 +0000570bool IRTranslator::translateKnownIntrinsic(const CallInst &CI, Intrinsic::ID ID,
571 MachineIRBuilder &MIRBuilder) {
Tim Northover91c81732016-08-19 17:17:06 +0000572 switch (ID) {
Tim Northover1e656ec2016-12-08 22:44:00 +0000573 default:
574 break;
Tim Northover0e011702017-02-10 19:10:38 +0000575 case Intrinsic::lifetime_start:
576 case Intrinsic::lifetime_end:
577 // Stack coloring is not enabled in O0 (which we care about now) so we can
578 // drop these. Make sure someone notices when we start compiling at higher
579 // opts though.
580 if (MF->getTarget().getOptLevel() != CodeGenOpt::None)
581 return false;
582 return true;
Tim Northover09aac4a2017-01-26 23:39:14 +0000583 case Intrinsic::dbg_declare: {
584 const DbgDeclareInst &DI = cast<DbgDeclareInst>(CI);
585 assert(DI.getVariable() && "Missing variable");
586
587 const Value *Address = DI.getAddress();
588 if (!Address || isa<UndefValue>(Address)) {
589 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
590 return true;
591 }
592
593 unsigned Reg = getOrCreateVReg(*Address);
594 auto RegDef = MRI->def_instr_begin(Reg);
595 assert(DI.getVariable()->isValidLocationForIntrinsic(
596 MIRBuilder.getDebugLoc()) &&
597 "Expected inlined-at fields to agree");
598
599 if (RegDef != MRI->def_instr_end() &&
600 RegDef->getOpcode() == TargetOpcode::G_FRAME_INDEX) {
601 MIRBuilder.buildFIDbgValue(RegDef->getOperand(1).getIndex(),
602 DI.getVariable(), DI.getExpression());
603 } else
604 MIRBuilder.buildDirectDbgValue(Reg, DI.getVariable(), DI.getExpression());
Tim Northoverb58346f2016-12-08 22:44:13 +0000605 return true;
Tim Northover09aac4a2017-01-26 23:39:14 +0000606 }
Tim Northoverd0d025a2017-02-07 20:08:59 +0000607 case Intrinsic::vaend:
608 // No target I know of cares about va_end. Certainly no in-tree target
609 // does. Simplest intrinsic ever!
610 return true;
Tim Northoverf19d4672017-02-08 17:57:20 +0000611 case Intrinsic::vastart: {
612 auto &TLI = *MF->getSubtarget().getTargetLowering();
613 Value *Ptr = CI.getArgOperand(0);
614 unsigned ListSize = TLI.getVaListSizeInBits(*DL) / 8;
615
616 MIRBuilder.buildInstr(TargetOpcode::G_VASTART)
617 .addUse(getOrCreateVReg(*Ptr))
618 .addMemOperand(MF->getMachineMemOperand(
619 MachinePointerInfo(Ptr), MachineMemOperand::MOStore, ListSize, 0));
620 return true;
621 }
Tim Northover09aac4a2017-01-26 23:39:14 +0000622 case Intrinsic::dbg_value: {
623 // This form of DBG_VALUE is target-independent.
624 const DbgValueInst &DI = cast<DbgValueInst>(CI);
625 const Value *V = DI.getValue();
626 assert(DI.getVariable()->isValidLocationForIntrinsic(
627 MIRBuilder.getDebugLoc()) &&
628 "Expected inlined-at fields to agree");
629 if (!V) {
630 // Currently the optimizer can produce this; insert an undef to
631 // help debugging. Probably the optimizer should not do this.
632 MIRBuilder.buildIndirectDbgValue(0, DI.getOffset(), DI.getVariable(),
633 DI.getExpression());
634 } else if (const auto *CI = dyn_cast<Constant>(V)) {
635 MIRBuilder.buildConstDbgValue(*CI, DI.getOffset(), DI.getVariable(),
636 DI.getExpression());
637 } else {
638 unsigned Reg = getOrCreateVReg(*V);
639 // FIXME: This does not handle register-indirect values at offset 0. The
640 // direct/indirect thing shouldn't really be handled by something as
641 // implicit as reg+noreg vs reg+imm in the first palce, but it seems
642 // pretty baked in right now.
643 if (DI.getOffset() != 0)
644 MIRBuilder.buildIndirectDbgValue(Reg, DI.getOffset(), DI.getVariable(),
645 DI.getExpression());
646 else
647 MIRBuilder.buildDirectDbgValue(Reg, DI.getVariable(),
648 DI.getExpression());
649 }
650 return true;
651 }
Tim Northover1e656ec2016-12-08 22:44:00 +0000652 case Intrinsic::uadd_with_overflow:
653 return translateOverflowIntrinsic(CI, TargetOpcode::G_UADDE, MIRBuilder);
654 case Intrinsic::sadd_with_overflow:
655 return translateOverflowIntrinsic(CI, TargetOpcode::G_SADDO, MIRBuilder);
656 case Intrinsic::usub_with_overflow:
657 return translateOverflowIntrinsic(CI, TargetOpcode::G_USUBE, MIRBuilder);
658 case Intrinsic::ssub_with_overflow:
659 return translateOverflowIntrinsic(CI, TargetOpcode::G_SSUBO, MIRBuilder);
660 case Intrinsic::umul_with_overflow:
661 return translateOverflowIntrinsic(CI, TargetOpcode::G_UMULO, MIRBuilder);
662 case Intrinsic::smul_with_overflow:
663 return translateOverflowIntrinsic(CI, TargetOpcode::G_SMULO, MIRBuilder);
Tim Northoverb38b4e22017-02-08 23:23:32 +0000664 case Intrinsic::pow:
665 MIRBuilder.buildInstr(TargetOpcode::G_FPOW)
666 .addDef(getOrCreateVReg(CI))
667 .addUse(getOrCreateVReg(*CI.getArgOperand(0)))
668 .addUse(getOrCreateVReg(*CI.getArgOperand(1)));
669 return true;
Tim Northover3f186032016-10-18 20:03:45 +0000670 case Intrinsic::memcpy:
Tim Northover79f43f12017-01-30 19:33:07 +0000671 case Intrinsic::memmove:
672 case Intrinsic::memset:
673 return translateMemfunc(CI, MIRBuilder, ID);
Tim Northovera9105be2016-11-09 22:39:54 +0000674 case Intrinsic::eh_typeid_for: {
675 GlobalValue *GV = ExtractTypeInfo(CI.getArgOperand(0));
676 unsigned Reg = getOrCreateVReg(CI);
Tim Northover50db7f412016-12-07 21:17:47 +0000677 unsigned TypeID = MF->getTypeIDFor(GV);
Tim Northovera9105be2016-11-09 22:39:54 +0000678 MIRBuilder.buildConstant(Reg, TypeID);
679 return true;
680 }
Tim Northover6e904302016-10-18 20:03:51 +0000681 case Intrinsic::objectsize: {
682 // If we don't know by now, we're never going to know.
683 const ConstantInt *Min = cast<ConstantInt>(CI.getArgOperand(1));
684
685 MIRBuilder.buildConstant(getOrCreateVReg(CI), Min->isZero() ? -1ULL : 0);
686 return true;
687 }
Tim Northovercdf23f12016-10-31 18:30:59 +0000688 case Intrinsic::stackguard:
Tim Northoverc53606e2016-12-07 21:29:15 +0000689 getStackGuard(getOrCreateVReg(CI), MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +0000690 return true;
691 case Intrinsic::stackprotector: {
Daniel Sanders983c9b92017-02-28 15:00:27 +0000692 LLT PtrTy{*CI.getArgOperand(0)->getType(), *DL};
Tim Northovercdf23f12016-10-31 18:30:59 +0000693 unsigned GuardVal = MRI->createGenericVirtualRegister(PtrTy);
Tim Northoverc53606e2016-12-07 21:29:15 +0000694 getStackGuard(GuardVal, MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +0000695
696 AllocaInst *Slot = cast<AllocaInst>(CI.getArgOperand(1));
697 MIRBuilder.buildStore(
698 GuardVal, getOrCreateVReg(*Slot),
Tim Northover50db7f412016-12-07 21:17:47 +0000699 *MF->getMachineMemOperand(
700 MachinePointerInfo::getFixedStack(*MF,
701 getOrCreateFrameIndex(*Slot)),
Tim Northovercdf23f12016-10-31 18:30:59 +0000702 MachineMemOperand::MOStore | MachineMemOperand::MOVolatile,
703 PtrTy.getSizeInBits() / 8, 8));
704 return true;
705 }
Tim Northover91c81732016-08-19 17:17:06 +0000706 }
Tim Northover1e656ec2016-12-08 22:44:00 +0000707 return false;
Tim Northover91c81732016-08-19 17:17:06 +0000708}
709
Tim Northoverc53606e2016-12-07 21:29:15 +0000710bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000711 const CallInst &CI = cast<CallInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +0000712 auto TII = MF->getTarget().getIntrinsicInfo();
Tim Northover406024a2016-08-10 21:44:01 +0000713 const Function *F = CI.getCalledFunction();
Tim Northover5fb414d2016-07-29 22:32:36 +0000714
Tim Northover3babfef2017-01-19 23:59:35 +0000715 if (CI.isInlineAsm())
716 return false;
717
Tim Northover406024a2016-08-10 21:44:01 +0000718 if (!F || !F->isIntrinsic()) {
Tim Northover406024a2016-08-10 21:44:01 +0000719 unsigned Res = CI.getType()->isVoidTy() ? 0 : getOrCreateVReg(CI);
720 SmallVector<unsigned, 8> Args;
721 for (auto &Arg: CI.arg_operands())
722 Args.push_back(getOrCreateVReg(*Arg));
723
Tim Northoverfe5f89b2016-08-29 19:07:08 +0000724 return CLI->lowerCall(MIRBuilder, CI, Res, Args, [&]() {
725 return getOrCreateVReg(*CI.getCalledValue());
726 });
Tim Northover406024a2016-08-10 21:44:01 +0000727 }
728
729 Intrinsic::ID ID = F->getIntrinsicID();
730 if (TII && ID == Intrinsic::not_intrinsic)
731 ID = static_cast<Intrinsic::ID>(TII->getIntrinsicID(F));
732
733 assert(ID != Intrinsic::not_intrinsic && "unknown intrinsic");
Tim Northover5fb414d2016-07-29 22:32:36 +0000734
Tim Northoverc53606e2016-12-07 21:29:15 +0000735 if (translateKnownIntrinsic(CI, ID, MIRBuilder))
Tim Northover91c81732016-08-19 17:17:06 +0000736 return true;
737
Tim Northover5fb414d2016-07-29 22:32:36 +0000738 unsigned Res = CI.getType()->isVoidTy() ? 0 : getOrCreateVReg(CI);
739 MachineInstrBuilder MIB =
Tim Northover0f140c72016-09-09 11:46:34 +0000740 MIRBuilder.buildIntrinsic(ID, Res, !CI.doesNotAccessMemory());
Tim Northover5fb414d2016-07-29 22:32:36 +0000741
742 for (auto &Arg : CI.arg_operands()) {
743 if (ConstantInt *CI = dyn_cast<ConstantInt>(Arg))
744 MIB.addImm(CI->getSExtValue());
745 else
746 MIB.addUse(getOrCreateVReg(*Arg));
747 }
748 return true;
749}
750
Tim Northoverc53606e2016-12-07 21:29:15 +0000751bool IRTranslator::translateInvoke(const User &U,
752 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +0000753 const InvokeInst &I = cast<InvokeInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +0000754 MCContext &Context = MF->getContext();
Tim Northovera9105be2016-11-09 22:39:54 +0000755
756 const BasicBlock *ReturnBB = I.getSuccessor(0);
757 const BasicBlock *EHPadBB = I.getSuccessor(1);
758
759 const Value *Callee(I.getCalledValue());
760 const Function *Fn = dyn_cast<Function>(Callee);
761 if (isa<InlineAsm>(Callee))
762 return false;
763
764 // FIXME: support invoking patchpoint and statepoint intrinsics.
765 if (Fn && Fn->isIntrinsic())
766 return false;
767
768 // FIXME: support whatever these are.
769 if (I.countOperandBundlesOfType(LLVMContext::OB_deopt))
770 return false;
771
772 // FIXME: support Windows exception handling.
773 if (!isa<LandingPadInst>(EHPadBB->front()))
774 return false;
775
776
Matthias Braund0ee66c2016-12-01 19:32:15 +0000777 // Emit the actual call, bracketed by EH_LABELs so that the MF knows about
Tim Northovera9105be2016-11-09 22:39:54 +0000778 // the region covered by the try.
Matthias Braund0ee66c2016-12-01 19:32:15 +0000779 MCSymbol *BeginSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +0000780 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(BeginSymbol);
781
782 unsigned Res = I.getType()->isVoidTy() ? 0 : getOrCreateVReg(I);
Tim Northover293f7432017-01-31 18:36:11 +0000783 SmallVector<unsigned, 8> Args;
Tim Northovera9105be2016-11-09 22:39:54 +0000784 for (auto &Arg: I.arg_operands())
Tim Northover293f7432017-01-31 18:36:11 +0000785 Args.push_back(getOrCreateVReg(*Arg));
Tim Northovera9105be2016-11-09 22:39:54 +0000786
Tim Northover293f7432017-01-31 18:36:11 +0000787 CLI->lowerCall(MIRBuilder, I, Res, Args,
788 [&]() { return getOrCreateVReg(*I.getCalledValue()); });
Tim Northovera9105be2016-11-09 22:39:54 +0000789
Matthias Braund0ee66c2016-12-01 19:32:15 +0000790 MCSymbol *EndSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +0000791 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(EndSymbol);
792
793 // FIXME: track probabilities.
794 MachineBasicBlock &EHPadMBB = getOrCreateBB(*EHPadBB),
795 &ReturnMBB = getOrCreateBB(*ReturnBB);
Tim Northover50db7f412016-12-07 21:17:47 +0000796 MF->addInvoke(&EHPadMBB, BeginSymbol, EndSymbol);
Tim Northovera9105be2016-11-09 22:39:54 +0000797 MIRBuilder.getMBB().addSuccessor(&ReturnMBB);
798 MIRBuilder.getMBB().addSuccessor(&EHPadMBB);
Tim Northoverc6bfa482017-01-31 20:12:18 +0000799 MIRBuilder.buildBr(ReturnMBB);
Tim Northovera9105be2016-11-09 22:39:54 +0000800
801 return true;
802}
803
Tim Northoverc53606e2016-12-07 21:29:15 +0000804bool IRTranslator::translateLandingPad(const User &U,
805 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +0000806 const LandingPadInst &LP = cast<LandingPadInst>(U);
807
808 MachineBasicBlock &MBB = MIRBuilder.getMBB();
Matthias Braund0ee66c2016-12-01 19:32:15 +0000809 addLandingPadInfo(LP, MBB);
Tim Northovera9105be2016-11-09 22:39:54 +0000810
811 MBB.setIsEHPad();
812
813 // If there aren't registers to copy the values into (e.g., during SjLj
814 // exceptions), then don't bother.
Tim Northover50db7f412016-12-07 21:17:47 +0000815 auto &TLI = *MF->getSubtarget().getTargetLowering();
816 const Constant *PersonalityFn = MF->getFunction()->getPersonalityFn();
Tim Northovera9105be2016-11-09 22:39:54 +0000817 if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 &&
818 TLI.getExceptionSelectorRegister(PersonalityFn) == 0)
819 return true;
820
821 // If landingpad's return type is token type, we don't create DAG nodes
822 // for its exception pointer and selector value. The extraction of exception
823 // pointer or selector value from token type landingpads is not currently
824 // supported.
825 if (LP.getType()->isTokenTy())
826 return true;
827
828 // Add a label to mark the beginning of the landing pad. Deletion of the
829 // landing pad can thus be detected via the MachineModuleInfo.
830 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL)
Tim Northover50db7f412016-12-07 21:17:47 +0000831 .addSym(MF->addLandingPad(&MBB));
Tim Northovera9105be2016-11-09 22:39:54 +0000832
Justin Bognera0295312017-01-25 00:16:53 +0000833 SmallVector<LLT, 2> Tys;
834 for (Type *Ty : cast<StructType>(LP.getType())->elements())
Daniel Sanders983c9b92017-02-28 15:00:27 +0000835 Tys.push_back(LLT{*Ty, *DL});
Justin Bognera0295312017-01-25 00:16:53 +0000836 assert(Tys.size() == 2 && "Only two-valued landingpads are supported");
837
Tim Northovera9105be2016-11-09 22:39:54 +0000838 // Mark exception register as live in.
839 SmallVector<unsigned, 2> Regs;
840 SmallVector<uint64_t, 2> Offsets;
Tim Northovera9105be2016-11-09 22:39:54 +0000841 if (unsigned Reg = TLI.getExceptionPointerRegister(PersonalityFn)) {
Tim Northoverc9bc8a52017-01-27 21:31:17 +0000842 MBB.addLiveIn(Reg);
Justin Bognera0295312017-01-25 00:16:53 +0000843 unsigned VReg = MRI->createGenericVirtualRegister(Tys[0]);
Tim Northovera9105be2016-11-09 22:39:54 +0000844 MIRBuilder.buildCopy(VReg, Reg);
845 Regs.push_back(VReg);
846 Offsets.push_back(0);
847 }
848
849 if (unsigned Reg = TLI.getExceptionSelectorRegister(PersonalityFn)) {
Tim Northoverc9bc8a52017-01-27 21:31:17 +0000850 MBB.addLiveIn(Reg);
Tim Northoverc9449702017-01-30 20:52:42 +0000851
852 // N.b. the exception selector register always has pointer type and may not
853 // match the actual IR-level type in the landingpad so an extra cast is
854 // needed.
855 unsigned PtrVReg = MRI->createGenericVirtualRegister(Tys[0]);
856 MIRBuilder.buildCopy(PtrVReg, Reg);
857
Justin Bognera0295312017-01-25 00:16:53 +0000858 unsigned VReg = MRI->createGenericVirtualRegister(Tys[1]);
Tim Northoverc9449702017-01-30 20:52:42 +0000859 MIRBuilder.buildInstr(TargetOpcode::G_PTRTOINT)
860 .addDef(VReg)
861 .addUse(PtrVReg);
Tim Northovera9105be2016-11-09 22:39:54 +0000862 Regs.push_back(VReg);
Justin Bognera0295312017-01-25 00:16:53 +0000863 Offsets.push_back(Tys[0].getSizeInBits());
Tim Northovera9105be2016-11-09 22:39:54 +0000864 }
865
866 MIRBuilder.buildSequence(getOrCreateVReg(LP), Regs, Offsets);
867 return true;
868}
869
Tim Northoverc3e3f592017-02-03 18:22:45 +0000870bool IRTranslator::translateAlloca(const User &U,
871 MachineIRBuilder &MIRBuilder) {
872 auto &AI = cast<AllocaInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000873
Tim Northoverc3e3f592017-02-03 18:22:45 +0000874 if (AI.isStaticAlloca()) {
875 unsigned Res = getOrCreateVReg(AI);
876 int FI = getOrCreateFrameIndex(AI);
877 MIRBuilder.buildFrameIndex(Res, FI);
878 return true;
879 }
880
881 // Now we're in the harder dynamic case.
882 Type *Ty = AI.getAllocatedType();
883 unsigned Align =
884 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI.getAlignment());
885
886 unsigned NumElts = getOrCreateVReg(*AI.getArraySize());
887
888 LLT IntPtrTy = LLT::scalar(DL->getPointerSizeInBits());
889 if (MRI->getType(NumElts) != IntPtrTy) {
890 unsigned ExtElts = MRI->createGenericVirtualRegister(IntPtrTy);
891 MIRBuilder.buildZExtOrTrunc(ExtElts, NumElts);
892 NumElts = ExtElts;
893 }
894
895 unsigned AllocSize = MRI->createGenericVirtualRegister(IntPtrTy);
896 unsigned TySize = MRI->createGenericVirtualRegister(IntPtrTy);
Tim Northoverc2f89562017-02-14 20:56:18 +0000897 MIRBuilder.buildConstant(TySize, -DL->getTypeAllocSize(Ty));
Tim Northoverc3e3f592017-02-03 18:22:45 +0000898 MIRBuilder.buildMul(AllocSize, NumElts, TySize);
899
Daniel Sanders983c9b92017-02-28 15:00:27 +0000900 LLT PtrTy = LLT{*AI.getType(), *DL};
Tim Northoverc3e3f592017-02-03 18:22:45 +0000901 auto &TLI = *MF->getSubtarget().getTargetLowering();
902 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
903
904 unsigned SPTmp = MRI->createGenericVirtualRegister(PtrTy);
905 MIRBuilder.buildCopy(SPTmp, SPReg);
906
Tim Northoverc2f89562017-02-14 20:56:18 +0000907 unsigned AllocTmp = MRI->createGenericVirtualRegister(PtrTy);
908 MIRBuilder.buildGEP(AllocTmp, SPTmp, AllocSize);
Tim Northoverc3e3f592017-02-03 18:22:45 +0000909
910 // Handle alignment. We have to realign if the allocation granule was smaller
911 // than stack alignment, or the specific alloca requires more than stack
912 // alignment.
913 unsigned StackAlign =
914 MF->getSubtarget().getFrameLowering()->getStackAlignment();
915 Align = std::max(Align, StackAlign);
916 if (Align > StackAlign || DL->getTypeAllocSize(Ty) % StackAlign != 0) {
917 // Round the size of the allocation up to the stack alignment size
918 // by add SA-1 to the size. This doesn't overflow because we're computing
919 // an address inside an alloca.
Tim Northoverc2f89562017-02-14 20:56:18 +0000920 unsigned AlignedAlloc = MRI->createGenericVirtualRegister(PtrTy);
921 MIRBuilder.buildPtrMask(AlignedAlloc, AllocTmp, Log2_32(Align));
922 AllocTmp = AlignedAlloc;
Tim Northoverc3e3f592017-02-03 18:22:45 +0000923 }
924
Tim Northoverc2f89562017-02-14 20:56:18 +0000925 MIRBuilder.buildCopy(SPReg, AllocTmp);
926 MIRBuilder.buildCopy(getOrCreateVReg(AI), AllocTmp);
Tim Northoverc3e3f592017-02-03 18:22:45 +0000927
928 MF->getFrameInfo().CreateVariableSizedObject(Align ? Align : 1, &AI);
929 assert(MF->getFrameInfo().hasVarSizedObjects());
Tim Northoverbd505462016-07-22 16:59:52 +0000930 return true;
931}
932
Tim Northover4a652222017-02-15 23:22:33 +0000933bool IRTranslator::translateVAArg(const User &U, MachineIRBuilder &MIRBuilder) {
934 // FIXME: We may need more info about the type. Because of how LLT works,
935 // we're completely discarding the i64/double distinction here (amongst
936 // others). Fortunately the ABIs I know of where that matters don't use va_arg
937 // anyway but that's not guaranteed.
938 MIRBuilder.buildInstr(TargetOpcode::G_VAARG)
939 .addDef(getOrCreateVReg(U))
940 .addUse(getOrCreateVReg(*U.getOperand(0)))
941 .addImm(DL->getABITypeAlignment(U.getType()));
942 return true;
943}
944
Tim Northoverc53606e2016-12-07 21:29:15 +0000945bool IRTranslator::translatePHI(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000946 const PHINode &PI = cast<PHINode>(U);
Tim Northover25d12862016-09-09 11:47:31 +0000947 auto MIB = MIRBuilder.buildInstr(TargetOpcode::PHI);
Tim Northover97d0cb32016-08-05 17:16:40 +0000948 MIB.addDef(getOrCreateVReg(PI));
949
950 PendingPHIs.emplace_back(&PI, MIB.getInstr());
951 return true;
952}
953
954void IRTranslator::finishPendingPhis() {
955 for (std::pair<const PHINode *, MachineInstr *> &Phi : PendingPHIs) {
956 const PHINode *PI = Phi.first;
Tim Northoverc53606e2016-12-07 21:29:15 +0000957 MachineInstrBuilder MIB(*MF, Phi.second);
Tim Northover97d0cb32016-08-05 17:16:40 +0000958
959 // All MachineBasicBlocks exist, add them to the PHI. We assume IRTranslator
960 // won't create extra control flow here, otherwise we need to find the
961 // dominating predecessor here (or perhaps force the weirder IRTranslators
962 // to provide a simple boundary).
Tim Northoverb6636fd2017-01-17 22:13:50 +0000963 SmallSet<const BasicBlock *, 4> HandledPreds;
964
Tim Northover97d0cb32016-08-05 17:16:40 +0000965 for (unsigned i = 0; i < PI->getNumIncomingValues(); ++i) {
Tim Northoverb6636fd2017-01-17 22:13:50 +0000966 auto IRPred = PI->getIncomingBlock(i);
967 if (HandledPreds.count(IRPred))
968 continue;
969
970 HandledPreds.insert(IRPred);
971 unsigned ValReg = getOrCreateVReg(*PI->getIncomingValue(i));
972 for (auto Pred : getMachinePredBBs({IRPred, PI->getParent()})) {
973 assert(Pred->isSuccessor(MIB->getParent()) &&
974 "incorrect CFG at MachineBasicBlock level");
975 MIB.addUse(ValReg);
976 MIB.addMBB(Pred);
977 }
Tim Northover97d0cb32016-08-05 17:16:40 +0000978 }
979 }
980}
981
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000982bool IRTranslator::translate(const Instruction &Inst) {
Tim Northoverc53606e2016-12-07 21:29:15 +0000983 CurBuilder.setDebugLoc(Inst.getDebugLoc());
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000984 switch(Inst.getOpcode()) {
Tim Northover357f1be2016-08-10 23:02:41 +0000985#define HANDLE_INST(NUM, OPCODE, CLASS) \
Tim Northoverc53606e2016-12-07 21:29:15 +0000986 case Instruction::OPCODE: return translate##OPCODE(Inst, CurBuilder);
Tim Northover357f1be2016-08-10 23:02:41 +0000987#include "llvm/IR/Instruction.def"
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000988 default:
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000989 if (!TPC->isGlobalISelAbortEnabled())
990 return false;
Tim Northover357f1be2016-08-10 23:02:41 +0000991 llvm_unreachable("unknown opcode");
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000992 }
Quentin Colombet105cf2b2016-01-20 20:58:56 +0000993}
994
Tim Northover5ed648e2016-08-09 21:28:04 +0000995bool IRTranslator::translate(const Constant &C, unsigned Reg) {
Tim Northoverd403a3d2016-08-09 23:01:30 +0000996 if (auto CI = dyn_cast<ConstantInt>(&C))
Tim Northovercc35f902016-12-05 21:54:17 +0000997 EntryBuilder.buildConstant(Reg, *CI);
Tim Northoverb16734f2016-08-19 20:09:15 +0000998 else if (auto CF = dyn_cast<ConstantFP>(&C))
Tim Northover0f140c72016-09-09 11:46:34 +0000999 EntryBuilder.buildFConstant(Reg, *CF);
Tim Northoverd403a3d2016-08-09 23:01:30 +00001000 else if (isa<UndefValue>(C))
Tim Northover81dafc12017-03-06 18:36:40 +00001001 EntryBuilder.buildUndef(Reg);
Tim Northover8e0c53a2016-08-11 21:40:55 +00001002 else if (isa<ConstantPointerNull>(C))
Tim Northover9267ac52016-12-05 21:47:07 +00001003 EntryBuilder.buildConstant(Reg, 0);
Tim Northover032548f2016-09-12 12:10:41 +00001004 else if (auto GV = dyn_cast<GlobalValue>(&C))
1005 EntryBuilder.buildGlobalValue(Reg, GV);
Tim Northover357f1be2016-08-10 23:02:41 +00001006 else if (auto CE = dyn_cast<ConstantExpr>(&C)) {
1007 switch(CE->getOpcode()) {
1008#define HANDLE_INST(NUM, OPCODE, CLASS) \
Tim Northoverc53606e2016-12-07 21:29:15 +00001009 case Instruction::OPCODE: return translate##OPCODE(*CE, EntryBuilder);
Tim Northover357f1be2016-08-10 23:02:41 +00001010#include "llvm/IR/Instruction.def"
1011 default:
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001012 if (!TPC->isGlobalISelAbortEnabled())
1013 return false;
Tim Northover357f1be2016-08-10 23:02:41 +00001014 llvm_unreachable("unknown opcode");
1015 }
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001016 } else if (!TPC->isGlobalISelAbortEnabled())
1017 return false;
1018 else
Tim Northoverd403a3d2016-08-09 23:01:30 +00001019 llvm_unreachable("unhandled constant kind");
Tim Northover5ed648e2016-08-09 21:28:04 +00001020
Tim Northoverd403a3d2016-08-09 23:01:30 +00001021 return true;
Tim Northover5ed648e2016-08-09 21:28:04 +00001022}
1023
Tim Northover0d510442016-08-11 16:21:29 +00001024void IRTranslator::finalizeFunction() {
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001025 // Release the memory used by the different maps we
1026 // needed during the translation.
Tim Northover800638f2016-12-05 23:10:19 +00001027 PendingPHIs.clear();
Quentin Colombetccd77252016-02-11 21:48:32 +00001028 ValToVReg.clear();
Tim Northovercdf23f12016-10-31 18:30:59 +00001029 FrameIndices.clear();
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001030 Constants.clear();
Tim Northoverb6636fd2017-01-17 22:13:50 +00001031 MachinePreds.clear();
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001032}
1033
Tim Northover50db7f412016-12-07 21:17:47 +00001034bool IRTranslator::runOnMachineFunction(MachineFunction &CurMF) {
1035 MF = &CurMF;
1036 const Function &F = *MF->getFunction();
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001037 if (F.empty())
1038 return false;
Tim Northover50db7f412016-12-07 21:17:47 +00001039 CLI = MF->getSubtarget().getCallLowering();
Tim Northoverc53606e2016-12-07 21:29:15 +00001040 CurBuilder.setMF(*MF);
Tim Northover50db7f412016-12-07 21:17:47 +00001041 EntryBuilder.setMF(*MF);
1042 MRI = &MF->getRegInfo();
Tim Northoverbd505462016-07-22 16:59:52 +00001043 DL = &F.getParent()->getDataLayout();
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001044 TPC = &getAnalysis<TargetPassConfig>();
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001045 ORE = make_unique<OptimizationRemarkEmitter>(&F);
Tim Northoverbd505462016-07-22 16:59:52 +00001046
Tim Northover14e7f732016-08-05 17:50:36 +00001047 assert(PendingPHIs.empty() && "stale PHIs");
1048
Ahmed Bougachaeceabdd2017-02-23 23:57:28 +00001049 // Release the per-function state when we return, whether we succeeded or not.
1050 auto FinalizeOnReturn = make_scope_exit([this]() { finalizeFunction(); });
1051
Tim Northover05cc4852016-12-07 21:05:38 +00001052 // Setup a separate basic-block for the arguments and constants, falling
1053 // through to the IR-level Function's entry block.
Tim Northover50db7f412016-12-07 21:17:47 +00001054 MachineBasicBlock *EntryBB = MF->CreateMachineBasicBlock();
1055 MF->push_back(EntryBB);
Tim Northover05cc4852016-12-07 21:05:38 +00001056 EntryBB->addSuccessor(&getOrCreateBB(F.front()));
1057 EntryBuilder.setMBB(*EntryBB);
1058
1059 // Lower the actual args into this basic block.
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001060 SmallVector<unsigned, 8> VRegArgs;
1061 for (const Argument &Arg: F.args())
Quentin Colombete225e252016-03-11 17:27:54 +00001062 VRegArgs.push_back(getOrCreateVReg(Arg));
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001063 if (!CLI->lowerFormalArguments(EntryBuilder, F, VRegArgs)) {
Ahmed Bougacha7c88a4e2017-02-24 00:34:44 +00001064 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1065 MF->getFunction()->getSubprogram(),
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001066 &MF->getFunction()->getEntryBlock());
1067 R << "unable to lower arguments: " << ore::NV("Prototype", F.getType());
1068 reportTranslationError(*MF, *TPC, *ORE, R);
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001069 return false;
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001070 }
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001071
Tim Northover05cc4852016-12-07 21:05:38 +00001072 // And translate the function!
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001073 for (const BasicBlock &BB: F) {
Quentin Colombet53237a92016-03-11 17:27:43 +00001074 MachineBasicBlock &MBB = getOrCreateBB(BB);
Quentin Colombet91ebd712016-03-11 17:27:47 +00001075 // Set the insertion point of all the following translations to
1076 // the end of this basic block.
Tim Northoverc53606e2016-12-07 21:29:15 +00001077 CurBuilder.setMBB(MBB);
Tim Northovera9105be2016-11-09 22:39:54 +00001078
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001079 for (const Instruction &Inst: BB) {
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001080 if (translate(Inst))
1081 continue;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001082
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001083 std::string InstStrStorage;
1084 raw_string_ostream InstStr(InstStrStorage);
1085 InstStr << Inst;
1086
Ahmed Bougacha7daaf882017-02-24 00:34:47 +00001087 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1088 Inst.getDebugLoc(), &BB);
Ahmed Bougacha8f9e99b2017-02-24 00:34:41 +00001089 R << "unable to translate instruction: " << ore::NV("Opcode", &Inst)
1090 << ": '" << InstStr.str() << "'";
1091 reportTranslationError(*MF, *TPC, *ORE, R);
1092 return false;
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001093 }
1094 }
Tim Northover72eebfa2016-07-12 22:23:42 +00001095
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001096 finishPendingPhis();
Tim Northover97d0cb32016-08-05 17:16:40 +00001097
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001098 // Now that the MachineFrameInfo has been configured, no further changes to
1099 // the reserved registers are possible.
1100 MRI->freezeReservedRegs(*MF);
Quentin Colombet327f9422016-12-15 23:32:25 +00001101
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001102 // Merge the argument lowering and constants block with its single
1103 // successor, the LLVM-IR entry block. We want the basic block to
1104 // be maximal.
1105 assert(EntryBB->succ_size() == 1 &&
1106 "Custom BB used for lowering should have only one successor");
1107 // Get the successor of the current entry block.
1108 MachineBasicBlock &NewEntryBB = **EntryBB->succ_begin();
1109 assert(NewEntryBB.pred_size() == 1 &&
1110 "LLVM-IR entry block has a predecessor!?");
1111 // Move all the instruction from the current entry block to the
1112 // new entry block.
1113 NewEntryBB.splice(NewEntryBB.begin(), EntryBB, EntryBB->begin(),
1114 EntryBB->end());
Quentin Colombet327f9422016-12-15 23:32:25 +00001115
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001116 // Update the live-in information for the new entry block.
1117 for (const MachineBasicBlock::RegisterMaskPair &LiveIn : EntryBB->liveins())
1118 NewEntryBB.addLiveIn(LiveIn);
1119 NewEntryBB.sortUniqueLiveIns();
Quentin Colombet327f9422016-12-15 23:32:25 +00001120
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001121 // Get rid of the now empty basic block.
1122 EntryBB->removeSuccessor(&NewEntryBB);
1123 MF->remove(EntryBB);
1124 MF->DeleteMachineBasicBlock(EntryBB);
Quentin Colombet327f9422016-12-15 23:32:25 +00001125
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001126 assert(&MF->front() == &NewEntryBB &&
1127 "New entry wasn't next in the list of basic block!");
Tim Northover800638f2016-12-05 23:10:19 +00001128
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001129 return false;
1130}