blob: 2e268ed27a97ff768189b3e546837d4e12e6272e [file] [log] [blame]
Eugene Zelenko76bf48d2017-06-26 22:44:03 +00001//===- llvm/CodeGen/GlobalISel/IRTranslator.cpp - IRTranslator ---*- C++ -*-==//
Quentin Colombet105cf2b2016-01-20 20:58:56 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Quentin Colombet105cf2b2016-01-20 20:58:56 +00006//
7//===----------------------------------------------------------------------===//
8/// \file
9/// This file implements the IRTranslator class.
10//===----------------------------------------------------------------------===//
11
12#include "llvm/CodeGen/GlobalISel/IRTranslator.h"
Amara Emerson6cdfe292018-08-01 02:17:42 +000013#include "llvm/ADT/PostOrderIterator.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000014#include "llvm/ADT/STLExtras.h"
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"
Adam Nemet0965da22017-10-09 23:19:02 +000018#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Jessica Paquette2e35dc52019-01-28 19:22:29 +000019#include "llvm/Analysis/ValueTracking.h"
Tim Northovera9105be2016-11-09 22:39:54 +000020#include "llvm/CodeGen/Analysis.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000021#include "llvm/CodeGen/GlobalISel/CallLowering.h"
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +000022#include "llvm/CodeGen/GlobalISel/GISelChangeObserver.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000023#include "llvm/CodeGen/LowLevelType.h"
24#include "llvm/CodeGen/MachineBasicBlock.h"
Tim Northoverbd505462016-07-22 16:59:52 +000025#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000026#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000027#include "llvm/CodeGen/MachineInstrBuilder.h"
28#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineOperand.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Matthias Braun90ad6832018-07-13 00:08:38 +000031#include "llvm/CodeGen/StackProtector.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000032#include "llvm/CodeGen/TargetFrameLowering.h"
33#include "llvm/CodeGen/TargetLowering.h"
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000034#include "llvm/CodeGen/TargetPassConfig.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000035#include "llvm/CodeGen/TargetRegisterInfo.h"
36#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000037#include "llvm/IR/BasicBlock.h"
Amara Emerson6cdfe292018-08-01 02:17:42 +000038#include "llvm/IR/CFG.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000039#include "llvm/IR/Constant.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000040#include "llvm/IR/Constants.h"
41#include "llvm/IR/DataLayout.h"
Tim Northover09aac4a2017-01-26 23:39:14 +000042#include "llvm/IR/DebugInfo.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000043#include "llvm/IR/DerivedTypes.h"
Quentin Colombet2ecff3b2016-02-10 22:59:27 +000044#include "llvm/IR/Function.h"
Tim Northovera7653b32016-09-12 11:20:22 +000045#include "llvm/IR/GetElementPtrTypeIterator.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000046#include "llvm/IR/InlineAsm.h"
47#include "llvm/IR/InstrTypes.h"
48#include "llvm/IR/Instructions.h"
Tim Northover5fb414d2016-07-29 22:32:36 +000049#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000050#include "llvm/IR/Intrinsics.h"
51#include "llvm/IR/LLVMContext.h"
52#include "llvm/IR/Metadata.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000053#include "llvm/IR/Type.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000054#include "llvm/IR/User.h"
Quentin Colombet17c494b2016-02-11 17:51:31 +000055#include "llvm/IR/Value.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000056#include "llvm/MC/MCContext.h"
57#include "llvm/Pass.h"
58#include "llvm/Support/Casting.h"
59#include "llvm/Support/CodeGen.h"
60#include "llvm/Support/Debug.h"
61#include "llvm/Support/ErrorHandling.h"
62#include "llvm/Support/LowLevelTypeImpl.h"
63#include "llvm/Support/MathExtras.h"
64#include "llvm/Support/raw_ostream.h"
Tim Northover5fb414d2016-07-29 22:32:36 +000065#include "llvm/Target/TargetIntrinsicInfo.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000066#include "llvm/Target/TargetMachine.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000067#include <algorithm>
68#include <cassert>
69#include <cstdint>
70#include <iterator>
71#include <string>
72#include <utility>
73#include <vector>
Quentin Colombet2ecff3b2016-02-10 22:59:27 +000074
75#define DEBUG_TYPE "irtranslator"
76
Quentin Colombet105cf2b2016-01-20 20:58:56 +000077using namespace llvm;
78
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +000079static cl::opt<bool>
80 EnableCSEInIRTranslator("enable-cse-in-irtranslator",
81 cl::desc("Should enable CSE in irtranslator"),
82 cl::Optional, cl::init(false));
Quentin Colombet105cf2b2016-01-20 20:58:56 +000083char IRTranslator::ID = 0;
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000084
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000085INITIALIZE_PASS_BEGIN(IRTranslator, DEBUG_TYPE, "IRTranslator LLVM IR -> MI",
86 false, false)
87INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +000088INITIALIZE_PASS_DEPENDENCY(GISelCSEAnalysisWrapperPass)
Quentin Colombet3bb32cc2016-08-26 23:49:05 +000089INITIALIZE_PASS_END(IRTranslator, DEBUG_TYPE, "IRTranslator LLVM IR -> MI",
Tim Northover884b47e2016-07-26 03:29:18 +000090 false, false)
Quentin Colombet105cf2b2016-01-20 20:58:56 +000091
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000092static void reportTranslationError(MachineFunction &MF,
93 const TargetPassConfig &TPC,
94 OptimizationRemarkEmitter &ORE,
95 OptimizationRemarkMissed &R) {
96 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel);
97
98 // Print the function name explicitly if we don't have a debug location (which
99 // makes the diagnostic less useful) or if we're going to emit a raw error.
100 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled())
101 R << (" (in function: " + MF.getName() + ")").str();
102
103 if (TPC.isGlobalISelAbortEnabled())
104 report_fatal_error(R.getMsg());
105 else
106 ORE.emit(R);
Tim Northover60f23492016-11-08 01:12:17 +0000107}
108
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000109IRTranslator::IRTranslator() : MachineFunctionPass(ID) {
Quentin Colombet39293d32016-03-08 01:38:55 +0000110 initializeIRTranslatorPass(*PassRegistry::getPassRegistry());
Quentin Colombeta7fae162016-02-11 17:53:23 +0000111}
112
Daniel Sanders3b390402018-10-31 17:31:23 +0000113#ifndef NDEBUG
Benjamin Kramerb17d2132019-01-12 18:36:22 +0000114namespace {
Daniel Sanders3b390402018-10-31 17:31:23 +0000115/// Verify that every instruction created has the same DILocation as the
116/// instruction being translated.
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +0000117class DILocationVerifier : public GISelChangeObserver {
Daniel Sanders3b390402018-10-31 17:31:23 +0000118 const Instruction *CurrInst = nullptr;
119
120public:
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +0000121 DILocationVerifier() = default;
122 ~DILocationVerifier() = default;
Daniel Sanders3b390402018-10-31 17:31:23 +0000123
124 const Instruction *getCurrentInst() const { return CurrInst; }
125 void setCurrentInst(const Instruction *Inst) { CurrInst = Inst; }
126
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +0000127 void erasingInstr(MachineInstr &MI) override {}
128 void changingInstr(MachineInstr &MI) override {}
129 void changedInstr(MachineInstr &MI) override {}
130
131 void createdInstr(MachineInstr &MI) override {
Daniel Sanders3b390402018-10-31 17:31:23 +0000132 assert(getCurrentInst() && "Inserted instruction without a current MI");
133
134 // Only print the check message if we're actually checking it.
135#ifndef NDEBUG
136 LLVM_DEBUG(dbgs() << "Checking DILocation from " << *CurrInst
137 << " was copied to " << MI);
138#endif
139 assert(CurrInst->getDebugLoc() == MI.getDebugLoc() &&
140 "Line info was not transferred to all instructions");
141 }
Daniel Sanders3b390402018-10-31 17:31:23 +0000142};
Benjamin Kramerb17d2132019-01-12 18:36:22 +0000143} // namespace
Daniel Sanders3b390402018-10-31 17:31:23 +0000144#endif // ifndef NDEBUG
145
146
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000147void IRTranslator::getAnalysisUsage(AnalysisUsage &AU) const {
Matthias Braun90ad6832018-07-13 00:08:38 +0000148 AU.addRequired<StackProtector>();
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000149 AU.addRequired<TargetPassConfig>();
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +0000150 AU.addRequired<GISelCSEAnalysisWrapperPass>();
Matthias Braun90ad6832018-07-13 00:08:38 +0000151 getSelectionDAGFallbackAnalysisUsage(AU);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000152 MachineFunctionPass::getAnalysisUsage(AU);
153}
154
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000155IRTranslator::ValueToVRegInfo::VRegListT &
156IRTranslator::allocateVRegs(const Value &Val) {
157 assert(!VMap.contains(Val) && "Value already allocated in VMap");
158 auto *Regs = VMap.getVRegs(Val);
159 auto *Offsets = VMap.getOffsets(Val);
160 SmallVector<LLT, 4> SplitTys;
161 computeValueLLTs(*DL, *Val.getType(), SplitTys,
162 Offsets->empty() ? Offsets : nullptr);
163 for (unsigned i = 0; i < SplitTys.size(); ++i)
164 Regs->push_back(0);
165 return *Regs;
166}
Tim Northover9e35f1e2017-01-25 20:58:22 +0000167
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000168ArrayRef<unsigned> IRTranslator::getOrCreateVRegs(const Value &Val) {
169 auto VRegsIt = VMap.findVRegs(Val);
170 if (VRegsIt != VMap.vregs_end())
171 return *VRegsIt->second;
172
173 if (Val.getType()->isVoidTy())
174 return *VMap.getVRegs(Val);
175
176 // Create entry for this type.
177 auto *VRegs = VMap.getVRegs(Val);
178 auto *Offsets = VMap.getOffsets(Val);
179
Tim Northover9e35f1e2017-01-25 20:58:22 +0000180 assert(Val.getType()->isSized() &&
181 "Don't know how to create an empty vreg");
Tim Northover9e35f1e2017-01-25 20:58:22 +0000182
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000183 SmallVector<LLT, 4> SplitTys;
184 computeValueLLTs(*DL, *Val.getType(), SplitTys,
185 Offsets->empty() ? Offsets : nullptr);
186
187 if (!isa<Constant>(Val)) {
188 for (auto Ty : SplitTys)
189 VRegs->push_back(MRI->createGenericVirtualRegister(Ty));
190 return *VRegs;
191 }
192
193 if (Val.getType()->isAggregateType()) {
194 // UndefValue, ConstantAggregateZero
195 auto &C = cast<Constant>(Val);
196 unsigned Idx = 0;
197 while (auto Elt = C.getAggregateElement(Idx++)) {
198 auto EltRegs = getOrCreateVRegs(*Elt);
Fangrui Song75709322018-11-17 01:44:25 +0000199 llvm::copy(EltRegs, std::back_inserter(*VRegs));
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000200 }
201 } else {
202 assert(SplitTys.size() == 1 && "unexpectedly split LLT");
203 VRegs->push_back(MRI->createGenericVirtualRegister(SplitTys[0]));
204 bool Success = translate(cast<Constant>(Val), VRegs->front());
Tim Northover9e35f1e2017-01-25 20:58:22 +0000205 if (!Success) {
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000206 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
Matthias Braunf1caa282017-12-15 22:22:58 +0000207 MF->getFunction().getSubprogram(),
208 &MF->getFunction().getEntryBlock());
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000209 R << "unable to translate constant: " << ore::NV("Type", Val.getType());
210 reportTranslationError(*MF, *TPC, *ORE, R);
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000211 return *VRegs;
Tim Northover5ed648e2016-08-09 21:28:04 +0000212 }
Quentin Colombet17c494b2016-02-11 17:51:31 +0000213 }
Tim Northover7f3ad2e2017-01-20 23:25:17 +0000214
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000215 return *VRegs;
Quentin Colombet17c494b2016-02-11 17:51:31 +0000216}
217
Tim Northovercdf23f12016-10-31 18:30:59 +0000218int IRTranslator::getOrCreateFrameIndex(const AllocaInst &AI) {
219 if (FrameIndices.find(&AI) != FrameIndices.end())
220 return FrameIndices[&AI];
221
Tim Northovercdf23f12016-10-31 18:30:59 +0000222 unsigned ElementSize = DL->getTypeStoreSize(AI.getAllocatedType());
223 unsigned Size =
224 ElementSize * cast<ConstantInt>(AI.getArraySize())->getZExtValue();
225
226 // Always allocate at least one byte.
227 Size = std::max(Size, 1u);
228
229 unsigned Alignment = AI.getAlignment();
230 if (!Alignment)
231 Alignment = DL->getABITypeAlignment(AI.getAllocatedType());
232
233 int &FI = FrameIndices[&AI];
Tim Northover50db7f412016-12-07 21:17:47 +0000234 FI = MF->getFrameInfo().CreateStackObject(Size, Alignment, false, &AI);
Tim Northovercdf23f12016-10-31 18:30:59 +0000235 return FI;
236}
237
Tim Northoverad2b7172016-07-26 20:23:26 +0000238unsigned IRTranslator::getMemOpAlignment(const Instruction &I) {
239 unsigned Alignment = 0;
240 Type *ValTy = nullptr;
241 if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
242 Alignment = SI->getAlignment();
243 ValTy = SI->getValueOperand()->getType();
244 } else if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
245 Alignment = LI->getAlignment();
246 ValTy = LI->getType();
Daniel Sanders94813992018-07-09 19:33:40 +0000247 } else if (const AtomicCmpXchgInst *AI = dyn_cast<AtomicCmpXchgInst>(&I)) {
248 // TODO(PR27168): This instruction has no alignment attribute, but unlike
249 // the default alignment for load/store, the default here is to assume
250 // it has NATURAL alignment, not DataLayout-specified alignment.
251 const DataLayout &DL = AI->getModule()->getDataLayout();
252 Alignment = DL.getTypeStoreSize(AI->getCompareOperand()->getType());
253 ValTy = AI->getCompareOperand()->getType();
254 } else if (const AtomicRMWInst *AI = dyn_cast<AtomicRMWInst>(&I)) {
255 // TODO(PR27168): This instruction has no alignment attribute, but unlike
256 // the default alignment for load/store, the default here is to assume
257 // it has NATURAL alignment, not DataLayout-specified alignment.
258 const DataLayout &DL = AI->getModule()->getDataLayout();
259 Alignment = DL.getTypeStoreSize(AI->getValOperand()->getType());
260 ValTy = AI->getType();
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000261 } else {
262 OptimizationRemarkMissed R("gisel-irtranslator", "", &I);
263 R << "unable to translate memop: " << ore::NV("Opcode", &I);
264 reportTranslationError(*MF, *TPC, *ORE, R);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000265 return 1;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000266 }
Tim Northoverad2b7172016-07-26 20:23:26 +0000267
268 return Alignment ? Alignment : DL->getABITypeAlignment(ValTy);
269}
270
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000271MachineBasicBlock &IRTranslator::getMBB(const BasicBlock &BB) {
Quentin Colombet53237a92016-03-11 17:27:43 +0000272 MachineBasicBlock *&MBB = BBToMBB[&BB];
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000273 assert(MBB && "BasicBlock was not encountered before");
Quentin Colombet17c494b2016-02-11 17:51:31 +0000274 return *MBB;
275}
276
Tim Northoverb6636fd2017-01-17 22:13:50 +0000277void IRTranslator::addMachineCFGPred(CFGEdge Edge, MachineBasicBlock *NewPred) {
278 assert(NewPred && "new predecessor must be a real MachineBasicBlock");
279 MachinePreds[Edge].push_back(NewPred);
280}
281
Tim Northoverc53606e2016-12-07 21:29:15 +0000282bool IRTranslator::translateBinaryOp(unsigned Opcode, const User &U,
283 MachineIRBuilder &MIRBuilder) {
Tim Northover0d56e052016-07-29 18:11:21 +0000284 // FIXME: handle signed/unsigned wrapping flags.
285
Quentin Colombet2ecff3b2016-02-10 22:59:27 +0000286 // Get or create a virtual register for each value.
287 // Unless the value is a Constant => loadimm cst?
288 // or inline constant each time?
289 // Creation of a virtual register needs to have a size.
Tim Northover357f1be2016-08-10 23:02:41 +0000290 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
291 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
292 unsigned Res = getOrCreateVReg(U);
Michael Bergf0d81a32019-02-06 19:57:06 +0000293 uint16_t Flags = 0;
Michael Berg894c39f2018-09-19 18:52:08 +0000294 if (isa<Instruction>(U)) {
Michael Berg894c39f2018-09-19 18:52:08 +0000295 const Instruction &I = cast<Instruction>(U);
Michael Bergf0d81a32019-02-06 19:57:06 +0000296 Flags = MachineInstr::copyFlagsFromInstruction(I);
Michael Berg894c39f2018-09-19 18:52:08 +0000297 }
Michael Bergf0d81a32019-02-06 19:57:06 +0000298
299 MIRBuilder.buildInstr(Opcode, {Res}, {Op0, Op1}, Flags);
Quentin Colombet17c494b2016-02-11 17:51:31 +0000300 return true;
Quentin Colombet105cf2b2016-01-20 20:58:56 +0000301}
302
Volkan Keles20d3c422017-03-07 18:03:28 +0000303bool IRTranslator::translateFSub(const User &U, MachineIRBuilder &MIRBuilder) {
304 // -0.0 - X --> G_FNEG
305 if (isa<Constant>(U.getOperand(0)) &&
306 U.getOperand(0) == ConstantFP::getZeroValueForNegation(U.getType())) {
307 MIRBuilder.buildInstr(TargetOpcode::G_FNEG)
308 .addDef(getOrCreateVReg(U))
309 .addUse(getOrCreateVReg(*U.getOperand(1)));
310 return true;
311 }
312 return translateBinaryOp(TargetOpcode::G_FSUB, U, MIRBuilder);
313}
314
Cameron McInallycbde0d92018-11-13 18:15:47 +0000315bool IRTranslator::translateFNeg(const User &U, MachineIRBuilder &MIRBuilder) {
316 MIRBuilder.buildInstr(TargetOpcode::G_FNEG)
317 .addDef(getOrCreateVReg(U))
Amara Emerson203760a2019-01-26 23:47:09 +0000318 .addUse(getOrCreateVReg(*U.getOperand(0)));
Cameron McInallycbde0d92018-11-13 18:15:47 +0000319 return true;
320}
321
Tim Northoverc53606e2016-12-07 21:29:15 +0000322bool IRTranslator::translateCompare(const User &U,
323 MachineIRBuilder &MIRBuilder) {
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000324 const CmpInst *CI = dyn_cast<CmpInst>(&U);
325 unsigned Op0 = getOrCreateVReg(*U.getOperand(0));
326 unsigned Op1 = getOrCreateVReg(*U.getOperand(1));
327 unsigned Res = getOrCreateVReg(U);
328 CmpInst::Predicate Pred =
329 CI ? CI->getPredicate() : static_cast<CmpInst::Predicate>(
330 cast<ConstantExpr>(U).getPredicate());
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000331 if (CmpInst::isIntPredicate(Pred))
Tim Northover0f140c72016-09-09 11:46:34 +0000332 MIRBuilder.buildICmp(Pred, Res, Op0, Op1);
Tim Northover7596bd72017-03-08 18:49:54 +0000333 else if (Pred == CmpInst::FCMP_FALSE)
Ahmed Bougacha2fb80302017-03-15 19:21:11 +0000334 MIRBuilder.buildCopy(
335 Res, getOrCreateVReg(*Constant::getNullValue(CI->getType())));
336 else if (Pred == CmpInst::FCMP_TRUE)
337 MIRBuilder.buildCopy(
338 Res, getOrCreateVReg(*Constant::getAllOnesValue(CI->getType())));
Michael Bergc6a52452018-12-18 17:54:52 +0000339 else {
Michael Bergf0d81a32019-02-06 19:57:06 +0000340 MIRBuilder.buildInstr(TargetOpcode::G_FCMP, {Res}, {Pred, Op0, Op1},
341 MachineInstr::copyFlagsFromInstruction(*CI));
Michael Bergc6a52452018-12-18 17:54:52 +0000342 }
Tim Northoverd5c23bc2016-08-19 20:48:16 +0000343
Tim Northoverde3aea0412016-08-17 20:25:25 +0000344 return true;
345}
346
Tim Northoverc53606e2016-12-07 21:29:15 +0000347bool IRTranslator::translateRet(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000348 const ReturnInst &RI = cast<ReturnInst>(U);
Tim Northover0d56e052016-07-29 18:11:21 +0000349 const Value *Ret = RI.getReturnValue();
Amara Emersond78d65c2017-11-30 20:06:02 +0000350 if (Ret && DL->getTypeStoreSize(Ret->getType()) == 0)
351 Ret = nullptr;
Alexander Ivchenko49168f62018-08-02 08:33:31 +0000352
353 ArrayRef<unsigned> VRegs;
354 if (Ret)
355 VRegs = getOrCreateVRegs(*Ret);
356
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000357 // The target may mess up with the insertion point, but
358 // this is not important as a return is the last instruction
359 // of the block anyway.
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000360
Alexander Ivchenko49168f62018-08-02 08:33:31 +0000361 return CLI->lowerReturn(MIRBuilder, Ret, VRegs);
Quentin Colombet74d7d2f2016-02-11 18:53:28 +0000362}
363
Tim Northoverc53606e2016-12-07 21:29:15 +0000364bool IRTranslator::translateBr(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000365 const BranchInst &BrInst = cast<BranchInst>(U);
Tim Northover69c2ba52016-07-29 17:58:00 +0000366 unsigned Succ = 0;
367 if (!BrInst.isUnconditional()) {
368 // We want a G_BRCOND to the true BB followed by an unconditional branch.
369 unsigned Tst = getOrCreateVReg(*BrInst.getCondition());
370 const BasicBlock &TrueTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ++));
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000371 MachineBasicBlock &TrueBB = getMBB(TrueTgt);
Tim Northover0f140c72016-09-09 11:46:34 +0000372 MIRBuilder.buildBrCond(Tst, TrueBB);
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000373 }
Tim Northover69c2ba52016-07-29 17:58:00 +0000374
375 const BasicBlock &BrTgt = *cast<BasicBlock>(BrInst.getSuccessor(Succ));
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000376 MachineBasicBlock &TgtBB = getMBB(BrTgt);
Ahmed Bougachae8e1fa32017-03-21 23:42:50 +0000377 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
378
379 // If the unconditional target is the layout successor, fallthrough.
380 if (!CurBB.isLayoutSuccessor(&TgtBB))
381 MIRBuilder.buildBr(TgtBB);
Tim Northover69c2ba52016-07-29 17:58:00 +0000382
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000383 // Link successors.
Chandler Carruth96fc1de2018-08-26 08:41:15 +0000384 for (const BasicBlock *Succ : successors(&BrInst))
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000385 CurBB.addSuccessor(&getMBB(*Succ));
Quentin Colombetdd4b1372016-03-11 17:28:03 +0000386 return true;
387}
388
Kristof Beylseced0712017-01-05 11:28:51 +0000389bool IRTranslator::translateSwitch(const User &U,
390 MachineIRBuilder &MIRBuilder) {
391 // For now, just translate as a chain of conditional branches.
392 // FIXME: could we share most of the logic/code in
393 // SelectionDAGBuilder::visitSwitch between SelectionDAG and GlobalISel?
394 // At first sight, it seems most of the logic in there is independent of
395 // SelectionDAG-specifics and a lot of work went in to optimize switch
396 // lowering in there.
397
398 const SwitchInst &SwInst = cast<SwitchInst>(U);
399 const unsigned SwCondValue = getOrCreateVReg(*SwInst.getCondition());
Tim Northoverb6636fd2017-01-17 22:13:50 +0000400 const BasicBlock *OrigBB = SwInst.getParent();
Kristof Beylseced0712017-01-05 11:28:51 +0000401
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000402 LLT LLTi1 = getLLTForType(*Type::getInt1Ty(U.getContext()), *DL);
Kristof Beylseced0712017-01-05 11:28:51 +0000403 for (auto &CaseIt : SwInst.cases()) {
404 const unsigned CaseValueReg = getOrCreateVReg(*CaseIt.getCaseValue());
405 const unsigned Tst = MRI->createGenericVirtualRegister(LLTi1);
406 MIRBuilder.buildICmp(CmpInst::ICMP_EQ, Tst, CaseValueReg, SwCondValue);
Tim Northoverb6636fd2017-01-17 22:13:50 +0000407 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
408 const BasicBlock *TrueBB = CaseIt.getCaseSuccessor();
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000409 MachineBasicBlock &TrueMBB = getMBB(*TrueBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000410
Tim Northoverb6636fd2017-01-17 22:13:50 +0000411 MIRBuilder.buildBrCond(Tst, TrueMBB);
412 CurMBB.addSuccessor(&TrueMBB);
413 addMachineCFGPred({OrigBB, TrueBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000414
Tim Northoverb6636fd2017-01-17 22:13:50 +0000415 MachineBasicBlock *FalseMBB =
Kristof Beylseced0712017-01-05 11:28:51 +0000416 MF->CreateMachineBasicBlock(SwInst.getParent());
Ahmed Bougacha07f247b2017-03-15 18:22:37 +0000417 // Insert the comparison blocks one after the other.
418 MF->insert(std::next(CurMBB.getIterator()), FalseMBB);
Tim Northoverb6636fd2017-01-17 22:13:50 +0000419 MIRBuilder.buildBr(*FalseMBB);
420 CurMBB.addSuccessor(FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000421
Tim Northoverb6636fd2017-01-17 22:13:50 +0000422 MIRBuilder.setMBB(*FalseMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000423 }
424 // handle default case
Tim Northoverb6636fd2017-01-17 22:13:50 +0000425 const BasicBlock *DefaultBB = SwInst.getDefaultDest();
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000426 MachineBasicBlock &DefaultMBB = getMBB(*DefaultBB);
Tim Northoverb6636fd2017-01-17 22:13:50 +0000427 MIRBuilder.buildBr(DefaultMBB);
428 MachineBasicBlock &CurMBB = MIRBuilder.getMBB();
429 CurMBB.addSuccessor(&DefaultMBB);
430 addMachineCFGPred({OrigBB, DefaultBB}, &CurMBB);
Kristof Beylseced0712017-01-05 11:28:51 +0000431
432 return true;
433}
434
Kristof Beyls65a12c02017-01-30 09:13:18 +0000435bool IRTranslator::translateIndirectBr(const User &U,
436 MachineIRBuilder &MIRBuilder) {
437 const IndirectBrInst &BrInst = cast<IndirectBrInst>(U);
438
439 const unsigned Tgt = getOrCreateVReg(*BrInst.getAddress());
440 MIRBuilder.buildBrIndirect(Tgt);
441
442 // Link successors.
443 MachineBasicBlock &CurBB = MIRBuilder.getMBB();
Chandler Carruth96fc1de2018-08-26 08:41:15 +0000444 for (const BasicBlock *Succ : successors(&BrInst))
Ahmed Bougachaa61c2142017-03-15 18:22:33 +0000445 CurBB.addSuccessor(&getMBB(*Succ));
Kristof Beyls65a12c02017-01-30 09:13:18 +0000446
447 return true;
448}
449
Tim Northoverc53606e2016-12-07 21:29:15 +0000450bool IRTranslator::translateLoad(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000451 const LoadInst &LI = cast<LoadInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +0000452
Tim Northover7152dca2016-10-19 15:55:06 +0000453 auto Flags = LI.isVolatile() ? MachineMemOperand::MOVolatile
454 : MachineMemOperand::MONone;
455 Flags |= MachineMemOperand::MOLoad;
Tim Northoverad2b7172016-07-26 20:23:26 +0000456
Amara Emersond78d65c2017-11-30 20:06:02 +0000457 if (DL->getTypeStoreSize(LI.getType()) == 0)
458 return true;
459
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000460 ArrayRef<unsigned> Regs = getOrCreateVRegs(LI);
461 ArrayRef<uint64_t> Offsets = *VMap.getOffsets(LI);
462 unsigned Base = getOrCreateVReg(*LI.getPointerOperand());
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000463
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000464 for (unsigned i = 0; i < Regs.size(); ++i) {
465 unsigned Addr = 0;
466 MIRBuilder.materializeGEP(Addr, Base, LLT::scalar(64), Offsets[i] / 8);
467
468 MachinePointerInfo Ptr(LI.getPointerOperand(), Offsets[i] / 8);
469 unsigned BaseAlign = getMemOpAlignment(LI);
470 auto MMO = MF->getMachineMemOperand(
471 Ptr, Flags, (MRI->getType(Regs[i]).getSizeInBits() + 7) / 8,
472 MinAlign(BaseAlign, Offsets[i] / 8), AAMDNodes(), nullptr,
473 LI.getSyncScopeID(), LI.getOrdering());
474 MIRBuilder.buildLoad(Regs[i], Addr, *MMO);
475 }
476
Tim Northoverad2b7172016-07-26 20:23:26 +0000477 return true;
478}
479
Tim Northoverc53606e2016-12-07 21:29:15 +0000480bool IRTranslator::translateStore(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000481 const StoreInst &SI = cast<StoreInst>(U);
Tim Northover7152dca2016-10-19 15:55:06 +0000482 auto Flags = SI.isVolatile() ? MachineMemOperand::MOVolatile
483 : MachineMemOperand::MONone;
484 Flags |= MachineMemOperand::MOStore;
Tim Northoverad2b7172016-07-26 20:23:26 +0000485
Amara Emersond78d65c2017-11-30 20:06:02 +0000486 if (DL->getTypeStoreSize(SI.getValueOperand()->getType()) == 0)
487 return true;
488
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000489 ArrayRef<unsigned> Vals = getOrCreateVRegs(*SI.getValueOperand());
490 ArrayRef<uint64_t> Offsets = *VMap.getOffsets(*SI.getValueOperand());
491 unsigned Base = getOrCreateVReg(*SI.getPointerOperand());
Tim Northoverad2b7172016-07-26 20:23:26 +0000492
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000493 for (unsigned i = 0; i < Vals.size(); ++i) {
494 unsigned Addr = 0;
495 MIRBuilder.materializeGEP(Addr, Base, LLT::scalar(64), Offsets[i] / 8);
496
497 MachinePointerInfo Ptr(SI.getPointerOperand(), Offsets[i] / 8);
498 unsigned BaseAlign = getMemOpAlignment(SI);
499 auto MMO = MF->getMachineMemOperand(
500 Ptr, Flags, (MRI->getType(Vals[i]).getSizeInBits() + 7) / 8,
501 MinAlign(BaseAlign, Offsets[i] / 8), AAMDNodes(), nullptr,
502 SI.getSyncScopeID(), SI.getOrdering());
503 MIRBuilder.buildStore(Vals[i], Addr, *MMO);
504 }
Tim Northoverad2b7172016-07-26 20:23:26 +0000505 return true;
506}
507
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000508static uint64_t getOffsetFromIndices(const User &U, const DataLayout &DL) {
Tim Northoverb6046222016-08-19 20:09:03 +0000509 const Value *Src = U.getOperand(0);
510 Type *Int32Ty = Type::getInt32Ty(U.getContext());
Volkan Keles6a36c642017-05-19 09:47:02 +0000511
Tim Northover6f80b082016-08-19 17:47:05 +0000512 // getIndexedOffsetInType is designed for GEPs, so the first index is the
513 // usual array element rather than looking into the actual aggregate.
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000514 SmallVector<Value *, 1> Indices;
Tim Northover6f80b082016-08-19 17:47:05 +0000515 Indices.push_back(ConstantInt::get(Int32Ty, 0));
Tim Northoverb6046222016-08-19 20:09:03 +0000516
517 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&U)) {
518 for (auto Idx : EVI->indices())
519 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000520 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&U)) {
521 for (auto Idx : IVI->indices())
522 Indices.push_back(ConstantInt::get(Int32Ty, Idx));
Tim Northoverb6046222016-08-19 20:09:03 +0000523 } else {
524 for (unsigned i = 1; i < U.getNumOperands(); ++i)
525 Indices.push_back(U.getOperand(i));
526 }
Tim Northover6f80b082016-08-19 17:47:05 +0000527
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000528 return 8 * static_cast<uint64_t>(
529 DL.getIndexedOffsetInType(Src->getType(), Indices));
530}
Tim Northover6f80b082016-08-19 17:47:05 +0000531
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000532bool IRTranslator::translateExtractValue(const User &U,
533 MachineIRBuilder &MIRBuilder) {
534 const Value *Src = U.getOperand(0);
535 uint64_t Offset = getOffsetFromIndices(U, *DL);
536 ArrayRef<unsigned> SrcRegs = getOrCreateVRegs(*Src);
537 ArrayRef<uint64_t> Offsets = *VMap.getOffsets(*Src);
Fangrui Songcecc4352019-04-12 02:02:06 +0000538 unsigned Idx = llvm::lower_bound(Offsets, Offset) - Offsets.begin();
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000539 auto &DstRegs = allocateVRegs(U);
540
541 for (unsigned i = 0; i < DstRegs.size(); ++i)
542 DstRegs[i] = SrcRegs[Idx++];
Tim Northover6f80b082016-08-19 17:47:05 +0000543
544 return true;
545}
546
Tim Northoverc53606e2016-12-07 21:29:15 +0000547bool IRTranslator::translateInsertValue(const User &U,
548 MachineIRBuilder &MIRBuilder) {
Tim Northoverb6046222016-08-19 20:09:03 +0000549 const Value *Src = U.getOperand(0);
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000550 uint64_t Offset = getOffsetFromIndices(U, *DL);
551 auto &DstRegs = allocateVRegs(U);
552 ArrayRef<uint64_t> DstOffsets = *VMap.getOffsets(U);
553 ArrayRef<unsigned> SrcRegs = getOrCreateVRegs(*Src);
554 ArrayRef<unsigned> InsertedRegs = getOrCreateVRegs(*U.getOperand(1));
555 auto InsertedIt = InsertedRegs.begin();
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000556
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000557 for (unsigned i = 0; i < DstRegs.size(); ++i) {
558 if (DstOffsets[i] >= Offset && InsertedIt != InsertedRegs.end())
559 DstRegs[i] = *InsertedIt++;
560 else
561 DstRegs[i] = SrcRegs[i];
Tim Northoverb6046222016-08-19 20:09:03 +0000562 }
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000563
Tim Northoverbbbfb1c2016-08-19 20:08:55 +0000564 return true;
565}
566
Tim Northoverc53606e2016-12-07 21:29:15 +0000567bool IRTranslator::translateSelect(const User &U,
568 MachineIRBuilder &MIRBuilder) {
Kristof Beyls7a713502017-04-19 06:38:37 +0000569 unsigned Tst = getOrCreateVReg(*U.getOperand(0));
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000570 ArrayRef<unsigned> ResRegs = getOrCreateVRegs(U);
571 ArrayRef<unsigned> Op0Regs = getOrCreateVRegs(*U.getOperand(1));
572 ArrayRef<unsigned> Op1Regs = getOrCreateVRegs(*U.getOperand(2));
573
Michael Bergc6a52452018-12-18 17:54:52 +0000574 const SelectInst &SI = cast<SelectInst>(U);
Michael Bergf0d81a32019-02-06 19:57:06 +0000575 uint16_t Flags = 0;
576 if (const CmpInst *Cmp = dyn_cast<CmpInst>(SI.getCondition()))
577 Flags = MachineInstr::copyFlagsFromInstruction(*Cmp);
578
Michael Bergc6a52452018-12-18 17:54:52 +0000579 for (unsigned i = 0; i < ResRegs.size(); ++i) {
Michael Bergf0d81a32019-02-06 19:57:06 +0000580 MIRBuilder.buildInstr(TargetOpcode::G_SELECT, {ResRegs[i]},
581 {Tst, Op0Regs[i], Op1Regs[i]}, Flags);
Michael Bergc6a52452018-12-18 17:54:52 +0000582 }
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000583
Tim Northover5a28c362016-08-19 20:09:07 +0000584 return true;
585}
586
Tim Northoverc53606e2016-12-07 21:29:15 +0000587bool IRTranslator::translateBitCast(const User &U,
588 MachineIRBuilder &MIRBuilder) {
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000589 // If we're bitcasting to the source type, we can reuse the source vreg.
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000590 if (getLLTForType(*U.getOperand(0)->getType(), *DL) ==
591 getLLTForType(*U.getType(), *DL)) {
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000592 unsigned SrcReg = getOrCreateVReg(*U.getOperand(0));
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000593 auto &Regs = *VMap.getVRegs(U);
Ahmed Bougacha5c7924f2017-03-07 20:53:06 +0000594 // If we already assigned a vreg for this bitcast, we can't change that.
595 // Emit a copy to satisfy the users we already emitted.
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000596 if (!Regs.empty())
597 MIRBuilder.buildCopy(Regs[0], SrcReg);
598 else {
599 Regs.push_back(SrcReg);
600 VMap.getOffsets(U)->push_back(0);
601 }
Tim Northover7c9eba92016-07-25 21:01:29 +0000602 return true;
603 }
Tim Northoverc53606e2016-12-07 21:29:15 +0000604 return translateCast(TargetOpcode::G_BITCAST, U, MIRBuilder);
Tim Northover7c9eba92016-07-25 21:01:29 +0000605}
606
Tim Northoverc53606e2016-12-07 21:29:15 +0000607bool IRTranslator::translateCast(unsigned Opcode, const User &U,
608 MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +0000609 unsigned Op = getOrCreateVReg(*U.getOperand(0));
610 unsigned Res = getOrCreateVReg(U);
Tim Northover0f140c72016-09-09 11:46:34 +0000611 MIRBuilder.buildInstr(Opcode).addDef(Res).addUse(Op);
Tim Northover7c9eba92016-07-25 21:01:29 +0000612 return true;
613}
614
Tim Northoverc53606e2016-12-07 21:29:15 +0000615bool IRTranslator::translateGetElementPtr(const User &U,
616 MachineIRBuilder &MIRBuilder) {
Tim Northovera7653b32016-09-12 11:20:22 +0000617 // FIXME: support vector GEPs.
618 if (U.getType()->isVectorTy())
619 return false;
620
621 Value &Op0 = *U.getOperand(0);
622 unsigned BaseReg = getOrCreateVReg(Op0);
Ahmed Bougacha2fb80302017-03-15 19:21:11 +0000623 Type *PtrIRTy = Op0.getType();
624 LLT PtrTy = getLLTForType(*PtrIRTy, *DL);
625 Type *OffsetIRTy = DL->getIntPtrType(PtrIRTy);
626 LLT OffsetTy = getLLTForType(*OffsetIRTy, *DL);
Tim Northovera7653b32016-09-12 11:20:22 +0000627
628 int64_t Offset = 0;
629 for (gep_type_iterator GTI = gep_type_begin(&U), E = gep_type_end(&U);
630 GTI != E; ++GTI) {
631 const Value *Idx = GTI.getOperand();
Peter Collingbourne25a40752016-12-02 02:55:30 +0000632 if (StructType *StTy = GTI.getStructTypeOrNull()) {
Tim Northovera7653b32016-09-12 11:20:22 +0000633 unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue();
634 Offset += DL->getStructLayout(StTy)->getElementOffset(Field);
635 continue;
636 } else {
637 uint64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
638
639 // If this is a scalar constant or a splat vector of constants,
640 // handle it quickly.
641 if (const auto *CI = dyn_cast<ConstantInt>(Idx)) {
642 Offset += ElementSize * CI->getSExtValue();
643 continue;
644 }
645
646 if (Offset != 0) {
647 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
Ahmed Bougacha2fb80302017-03-15 19:21:11 +0000648 unsigned OffsetReg =
649 getOrCreateVReg(*ConstantInt::get(OffsetIRTy, Offset));
Tim Northovera7653b32016-09-12 11:20:22 +0000650 MIRBuilder.buildGEP(NewBaseReg, BaseReg, OffsetReg);
651
652 BaseReg = NewBaseReg;
653 Offset = 0;
654 }
655
Tim Northovera7653b32016-09-12 11:20:22 +0000656 unsigned IdxReg = getOrCreateVReg(*Idx);
657 if (MRI->getType(IdxReg) != OffsetTy) {
658 unsigned NewIdxReg = MRI->createGenericVirtualRegister(OffsetTy);
659 MIRBuilder.buildSExtOrTrunc(NewIdxReg, IdxReg);
660 IdxReg = NewIdxReg;
661 }
662
Aditya Nandakumar5710c442018-01-05 02:56:28 +0000663 // N = N + Idx * ElementSize;
664 // Avoid doing it for ElementSize of 1.
665 unsigned GepOffsetReg;
666 if (ElementSize != 1) {
667 unsigned ElementSizeReg =
668 getOrCreateVReg(*ConstantInt::get(OffsetIRTy, ElementSize));
669
670 GepOffsetReg = MRI->createGenericVirtualRegister(OffsetTy);
671 MIRBuilder.buildMul(GepOffsetReg, ElementSizeReg, IdxReg);
672 } else
673 GepOffsetReg = IdxReg;
Tim Northovera7653b32016-09-12 11:20:22 +0000674
675 unsigned NewBaseReg = MRI->createGenericVirtualRegister(PtrTy);
Aditya Nandakumar5710c442018-01-05 02:56:28 +0000676 MIRBuilder.buildGEP(NewBaseReg, BaseReg, GepOffsetReg);
Tim Northovera7653b32016-09-12 11:20:22 +0000677 BaseReg = NewBaseReg;
678 }
679 }
680
681 if (Offset != 0) {
Ahmed Bougacha2fb80302017-03-15 19:21:11 +0000682 unsigned OffsetReg = getOrCreateVReg(*ConstantInt::get(OffsetIRTy, Offset));
Tim Northovera7653b32016-09-12 11:20:22 +0000683 MIRBuilder.buildGEP(getOrCreateVReg(U), BaseReg, OffsetReg);
684 return true;
685 }
686
687 MIRBuilder.buildCopy(getOrCreateVReg(U), BaseReg);
688 return true;
689}
690
Tim Northover79f43f12017-01-30 19:33:07 +0000691bool IRTranslator::translateMemfunc(const CallInst &CI,
692 MachineIRBuilder &MIRBuilder,
693 unsigned ID) {
Daniel Sanders52b4ce72017-03-07 23:20:35 +0000694 LLT SizeTy = getLLTForType(*CI.getArgOperand(2)->getType(), *DL);
Tim Northover79f43f12017-01-30 19:33:07 +0000695 Type *DstTy = CI.getArgOperand(0)->getType();
696 if (cast<PointerType>(DstTy)->getAddressSpace() != 0 ||
Tim Northover3f186032016-10-18 20:03:45 +0000697 SizeTy.getSizeInBits() != DL->getPointerSizeInBits(0))
698 return false;
699
700 SmallVector<CallLowering::ArgInfo, 8> Args;
701 for (int i = 0; i < 3; ++i) {
702 const auto &Arg = CI.getArgOperand(i);
703 Args.emplace_back(getOrCreateVReg(*Arg), Arg->getType());
704 }
705
Tim Northover79f43f12017-01-30 19:33:07 +0000706 const char *Callee;
707 switch (ID) {
708 case Intrinsic::memmove:
709 case Intrinsic::memcpy: {
710 Type *SrcTy = CI.getArgOperand(1)->getType();
711 if(cast<PointerType>(SrcTy)->getAddressSpace() != 0)
712 return false;
713 Callee = ID == Intrinsic::memcpy ? "memcpy" : "memmove";
714 break;
715 }
716 case Intrinsic::memset:
717 Callee = "memset";
718 break;
719 default:
720 return false;
721 }
Tim Northover3f186032016-10-18 20:03:45 +0000722
Diana Picusd79253a2017-03-20 14:40:18 +0000723 return CLI->lowerCall(MIRBuilder, CI.getCallingConv(),
724 MachineOperand::CreateES(Callee),
Tim Northover3f186032016-10-18 20:03:45 +0000725 CallLowering::ArgInfo(0, CI.getType()), Args);
726}
Tim Northovera7653b32016-09-12 11:20:22 +0000727
Tim Northoverc53606e2016-12-07 21:29:15 +0000728void IRTranslator::getStackGuard(unsigned DstReg,
729 MachineIRBuilder &MIRBuilder) {
Tim Northoverd8b85582017-01-27 21:31:24 +0000730 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
731 MRI->setRegClass(DstReg, TRI->getPointerRegClass(*MF));
Tim Northovercdf23f12016-10-31 18:30:59 +0000732 auto MIB = MIRBuilder.buildInstr(TargetOpcode::LOAD_STACK_GUARD);
733 MIB.addDef(DstReg);
734
Tim Northover50db7f412016-12-07 21:17:47 +0000735 auto &TLI = *MF->getSubtarget().getTargetLowering();
Matthias Braunf1caa282017-12-15 22:22:58 +0000736 Value *Global = TLI.getSDagStackGuard(*MF->getFunction().getParent());
Tim Northovercdf23f12016-10-31 18:30:59 +0000737 if (!Global)
738 return;
739
740 MachinePointerInfo MPInfo(Global);
Tim Northovercdf23f12016-10-31 18:30:59 +0000741 auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant |
742 MachineMemOperand::MODereferenceable;
Chandler Carruthc73c0302018-08-16 21:30:05 +0000743 MachineMemOperand *MemRef =
Tim Northover50db7f412016-12-07 21:17:47 +0000744 MF->getMachineMemOperand(MPInfo, Flags, DL->getPointerSizeInBits() / 8,
Fangrui Songe73534462017-11-15 06:17:32 +0000745 DL->getPointerABIAlignment(0));
Chandler Carruthc73c0302018-08-16 21:30:05 +0000746 MIB.setMemRefs({MemRef});
Tim Northovercdf23f12016-10-31 18:30:59 +0000747}
748
Tim Northover1e656ec2016-12-08 22:44:00 +0000749bool IRTranslator::translateOverflowIntrinsic(const CallInst &CI, unsigned Op,
750 MachineIRBuilder &MIRBuilder) {
Amara Emerson0d6a26d2018-05-16 10:32:02 +0000751 ArrayRef<unsigned> ResRegs = getOrCreateVRegs(CI);
Aditya Nandakumar6b4d3432018-08-28 18:54:10 +0000752 MIRBuilder.buildInstr(Op)
753 .addDef(ResRegs[0])
754 .addDef(ResRegs[1])
755 .addUse(getOrCreateVReg(*CI.getOperand(0)))
756 .addUse(getOrCreateVReg(*CI.getOperand(1)));
Tim Northover1e656ec2016-12-08 22:44:00 +0000757
Tim Northover1e656ec2016-12-08 22:44:00 +0000758 return true;
759}
760
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000761unsigned IRTranslator::getSimpleIntrinsicOpcode(Intrinsic::ID ID) {
Jessica Paquettee288c522019-02-06 17:25:54 +0000762 switch (ID) {
763 default:
764 break;
Jessica Paquette0e71e732019-02-12 17:28:17 +0000765 case Intrinsic::bswap:
766 return TargetOpcode::G_BSWAP;
Jessica Paquettee288c522019-02-06 17:25:54 +0000767 case Intrinsic::ceil:
768 return TargetOpcode::G_FCEIL;
769 case Intrinsic::cos:
770 return TargetOpcode::G_FCOS;
771 case Intrinsic::ctpop:
772 return TargetOpcode::G_CTPOP;
773 case Intrinsic::exp:
774 return TargetOpcode::G_FEXP;
775 case Intrinsic::exp2:
776 return TargetOpcode::G_FEXP2;
777 case Intrinsic::fabs:
778 return TargetOpcode::G_FABS;
Matt Arsenault9dba67f2019-02-11 17:05:20 +0000779 case Intrinsic::canonicalize:
780 return TargetOpcode::G_FCANONICALIZE;
Jessica Paquettef472f312019-02-11 17:16:32 +0000781 case Intrinsic::floor:
782 return TargetOpcode::G_FFLOOR;
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000783 case Intrinsic::fma:
784 return TargetOpcode::G_FMA;
Jessica Paquettee288c522019-02-06 17:25:54 +0000785 case Intrinsic::log:
786 return TargetOpcode::G_FLOG;
787 case Intrinsic::log2:
788 return TargetOpcode::G_FLOG2;
789 case Intrinsic::log10:
790 return TargetOpcode::G_FLOG10;
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000791 case Intrinsic::pow:
792 return TargetOpcode::G_FPOW;
Jessica Paquettee288c522019-02-06 17:25:54 +0000793 case Intrinsic::round:
794 return TargetOpcode::G_INTRINSIC_ROUND;
795 case Intrinsic::sin:
796 return TargetOpcode::G_FSIN;
797 case Intrinsic::sqrt:
798 return TargetOpcode::G_FSQRT;
799 case Intrinsic::trunc:
800 return TargetOpcode::G_INTRINSIC_TRUNC;
801 }
802 return Intrinsic::not_intrinsic;
803}
804
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000805bool IRTranslator::translateSimpleIntrinsic(const CallInst &CI,
806 Intrinsic::ID ID,
807 MachineIRBuilder &MIRBuilder) {
Jessica Paquettee288c522019-02-06 17:25:54 +0000808
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000809 unsigned Op = getSimpleIntrinsicOpcode(ID);
Jessica Paquettee288c522019-02-06 17:25:54 +0000810
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000811 // Is this a simple intrinsic?
Jessica Paquettee288c522019-02-06 17:25:54 +0000812 if (Op == Intrinsic::not_intrinsic)
813 return false;
814
815 // Yes. Let's translate it.
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000816 SmallVector<llvm::SrcOp, 4> VRegs;
817 for (auto &Arg : CI.arg_operands())
818 VRegs.push_back(getOrCreateVReg(*Arg));
819
820 MIRBuilder.buildInstr(Op, {getOrCreateVReg(CI)}, VRegs,
Michael Bergf0d81a32019-02-06 19:57:06 +0000821 MachineInstr::copyFlagsFromInstruction(CI));
Jessica Paquettee288c522019-02-06 17:25:54 +0000822 return true;
823}
824
Tim Northoverc53606e2016-12-07 21:29:15 +0000825bool IRTranslator::translateKnownIntrinsic(const CallInst &CI, Intrinsic::ID ID,
826 MachineIRBuilder &MIRBuilder) {
Jessica Paquettee288c522019-02-06 17:25:54 +0000827
Jessica Paquetteacbb7ca2019-02-12 17:38:34 +0000828 // If this is a simple intrinsic (that is, we just need to add a def of
829 // a vreg, and uses for each arg operand, then translate it.
830 if (translateSimpleIntrinsic(CI, ID, MIRBuilder))
Jessica Paquettee288c522019-02-06 17:25:54 +0000831 return true;
832
Tim Northover91c81732016-08-19 17:17:06 +0000833 switch (ID) {
Tim Northover1e656ec2016-12-08 22:44:00 +0000834 default:
835 break;
Tim Northover0e011702017-02-10 19:10:38 +0000836 case Intrinsic::lifetime_start:
Jessica Paquette2e35dc52019-01-28 19:22:29 +0000837 case Intrinsic::lifetime_end: {
838 // No stack colouring in O0, discard region information.
839 if (MF->getTarget().getOptLevel() == CodeGenOpt::None)
840 return true;
841
842 unsigned Op = ID == Intrinsic::lifetime_start ? TargetOpcode::LIFETIME_START
843 : TargetOpcode::LIFETIME_END;
844
845 // Get the underlying objects for the location passed on the lifetime
846 // marker.
847 SmallVector<Value *, 4> Allocas;
848 GetUnderlyingObjects(CI.getArgOperand(1), Allocas, *DL);
849
850 // Iterate over each underlying object, creating lifetime markers for each
851 // static alloca. Quit if we find a non-static alloca.
852 for (Value *V : Allocas) {
853 AllocaInst *AI = dyn_cast<AllocaInst>(V);
854 if (!AI)
855 continue;
856
857 if (!AI->isStaticAlloca())
858 return true;
859
860 MIRBuilder.buildInstr(Op).addFrameIndex(getOrCreateFrameIndex(*AI));
861 }
Tim Northover0e011702017-02-10 19:10:38 +0000862 return true;
Jessica Paquette2e35dc52019-01-28 19:22:29 +0000863 }
Tim Northover09aac4a2017-01-26 23:39:14 +0000864 case Intrinsic::dbg_declare: {
865 const DbgDeclareInst &DI = cast<DbgDeclareInst>(CI);
866 assert(DI.getVariable() && "Missing variable");
867
868 const Value *Address = DI.getAddress();
869 if (!Address || isa<UndefValue>(Address)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000870 LLVM_DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
Tim Northover09aac4a2017-01-26 23:39:14 +0000871 return true;
872 }
873
Tim Northover09aac4a2017-01-26 23:39:14 +0000874 assert(DI.getVariable()->isValidLocationForIntrinsic(
875 MIRBuilder.getDebugLoc()) &&
876 "Expected inlined-at fields to agree");
Tim Northover7a9ea8f2017-03-09 21:12:06 +0000877 auto AI = dyn_cast<AllocaInst>(Address);
878 if (AI && AI->isStaticAlloca()) {
879 // Static allocas are tracked at the MF level, no need for DBG_VALUE
880 // instructions (in fact, they get ignored if they *do* exist).
881 MF->setVariableDbgInfo(DI.getVariable(), DI.getExpression(),
882 getOrCreateFrameIndex(*AI), DI.getDebugLoc());
Josh Stonef446fac2018-09-11 17:52:01 +0000883 } else {
884 // A dbg.declare describes the address of a source variable, so lower it
885 // into an indirect DBG_VALUE.
886 MIRBuilder.buildIndirectDbgValue(getOrCreateVReg(*Address),
887 DI.getVariable(), DI.getExpression());
888 }
Tim Northoverb58346f2016-12-08 22:44:13 +0000889 return true;
Tim Northover09aac4a2017-01-26 23:39:14 +0000890 }
Hsiangkai Wang2532ac82018-08-17 15:22:04 +0000891 case Intrinsic::dbg_label: {
892 const DbgLabelInst &DI = cast<DbgLabelInst>(CI);
893 assert(DI.getLabel() && "Missing label");
894
895 assert(DI.getLabel()->isValidLocationForIntrinsic(
896 MIRBuilder.getDebugLoc()) &&
897 "Expected inlined-at fields to agree");
898
899 MIRBuilder.buildDbgLabel(DI.getLabel());
900 return true;
901 }
Tim Northoverd0d025a2017-02-07 20:08:59 +0000902 case Intrinsic::vaend:
903 // No target I know of cares about va_end. Certainly no in-tree target
904 // does. Simplest intrinsic ever!
905 return true;
Tim Northoverf19d4672017-02-08 17:57:20 +0000906 case Intrinsic::vastart: {
907 auto &TLI = *MF->getSubtarget().getTargetLowering();
908 Value *Ptr = CI.getArgOperand(0);
909 unsigned ListSize = TLI.getVaListSizeInBits(*DL) / 8;
910
Matt Arsenault2a645982019-01-31 01:38:47 +0000911 // FIXME: Get alignment
Tim Northoverf19d4672017-02-08 17:57:20 +0000912 MIRBuilder.buildInstr(TargetOpcode::G_VASTART)
913 .addUse(getOrCreateVReg(*Ptr))
914 .addMemOperand(MF->getMachineMemOperand(
Matt Arsenault2a645982019-01-31 01:38:47 +0000915 MachinePointerInfo(Ptr), MachineMemOperand::MOStore, ListSize, 1));
Tim Northoverf19d4672017-02-08 17:57:20 +0000916 return true;
917 }
Tim Northover09aac4a2017-01-26 23:39:14 +0000918 case Intrinsic::dbg_value: {
919 // This form of DBG_VALUE is target-independent.
920 const DbgValueInst &DI = cast<DbgValueInst>(CI);
921 const Value *V = DI.getValue();
922 assert(DI.getVariable()->isValidLocationForIntrinsic(
923 MIRBuilder.getDebugLoc()) &&
924 "Expected inlined-at fields to agree");
925 if (!V) {
926 // Currently the optimizer can produce this; insert an undef to
927 // help debugging. Probably the optimizer should not do this.
Adrian Prantld92ac5a2017-07-28 22:46:20 +0000928 MIRBuilder.buildIndirectDbgValue(0, DI.getVariable(), DI.getExpression());
Tim Northover09aac4a2017-01-26 23:39:14 +0000929 } else if (const auto *CI = dyn_cast<Constant>(V)) {
Adrian Prantld92ac5a2017-07-28 22:46:20 +0000930 MIRBuilder.buildConstDbgValue(*CI, DI.getVariable(), DI.getExpression());
Tim Northover09aac4a2017-01-26 23:39:14 +0000931 } else {
932 unsigned Reg = getOrCreateVReg(*V);
933 // FIXME: This does not handle register-indirect values at offset 0. The
934 // direct/indirect thing shouldn't really be handled by something as
935 // implicit as reg+noreg vs reg+imm in the first palce, but it seems
936 // pretty baked in right now.
Adrian Prantlabe04752017-07-28 20:21:02 +0000937 MIRBuilder.buildDirectDbgValue(Reg, DI.getVariable(), DI.getExpression());
Tim Northover09aac4a2017-01-26 23:39:14 +0000938 }
939 return true;
940 }
Tim Northover1e656ec2016-12-08 22:44:00 +0000941 case Intrinsic::uadd_with_overflow:
Aditya Nandakumar6b4d3432018-08-28 18:54:10 +0000942 return translateOverflowIntrinsic(CI, TargetOpcode::G_UADDO, MIRBuilder);
Tim Northover1e656ec2016-12-08 22:44:00 +0000943 case Intrinsic::sadd_with_overflow:
944 return translateOverflowIntrinsic(CI, TargetOpcode::G_SADDO, MIRBuilder);
945 case Intrinsic::usub_with_overflow:
Aditya Nandakumar6b4d3432018-08-28 18:54:10 +0000946 return translateOverflowIntrinsic(CI, TargetOpcode::G_USUBO, MIRBuilder);
Tim Northover1e656ec2016-12-08 22:44:00 +0000947 case Intrinsic::ssub_with_overflow:
948 return translateOverflowIntrinsic(CI, TargetOpcode::G_SSUBO, MIRBuilder);
949 case Intrinsic::umul_with_overflow:
950 return translateOverflowIntrinsic(CI, TargetOpcode::G_UMULO, MIRBuilder);
951 case Intrinsic::smul_with_overflow:
952 return translateOverflowIntrinsic(CI, TargetOpcode::G_SMULO, MIRBuilder);
Volkan Keles92837632018-02-13 00:47:46 +0000953 case Intrinsic::fmuladd: {
954 const TargetMachine &TM = MF->getTarget();
955 const TargetLowering &TLI = *MF->getSubtarget().getTargetLowering();
956 unsigned Dst = getOrCreateVReg(CI);
957 unsigned Op0 = getOrCreateVReg(*CI.getArgOperand(0));
958 unsigned Op1 = getOrCreateVReg(*CI.getArgOperand(1));
959 unsigned Op2 = getOrCreateVReg(*CI.getArgOperand(2));
960 if (TM.Options.AllowFPOpFusion != FPOpFusion::Strict &&
961 TLI.isFMAFasterThanFMulAndFAdd(TLI.getValueType(*DL, CI.getType()))) {
962 // TODO: Revisit this to see if we should move this part of the
963 // lowering to the combiner.
Michael Bergf0d81a32019-02-06 19:57:06 +0000964 MIRBuilder.buildInstr(TargetOpcode::G_FMA, {Dst}, {Op0, Op1, Op2},
965 MachineInstr::copyFlagsFromInstruction(CI));
Volkan Keles92837632018-02-13 00:47:46 +0000966 } else {
967 LLT Ty = getLLTForType(*CI.getType(), *DL);
Michael Bergf0d81a32019-02-06 19:57:06 +0000968 auto FMul = MIRBuilder.buildInstr(TargetOpcode::G_FMUL, {Ty}, {Op0, Op1},
969 MachineInstr::copyFlagsFromInstruction(CI));
970 MIRBuilder.buildInstr(TargetOpcode::G_FADD, {Dst}, {FMul, Op2},
971 MachineInstr::copyFlagsFromInstruction(CI));
Volkan Keles92837632018-02-13 00:47:46 +0000972 }
973 return true;
974 }
Tim Northover3f186032016-10-18 20:03:45 +0000975 case Intrinsic::memcpy:
Tim Northover79f43f12017-01-30 19:33:07 +0000976 case Intrinsic::memmove:
977 case Intrinsic::memset:
978 return translateMemfunc(CI, MIRBuilder, ID);
Tim Northovera9105be2016-11-09 22:39:54 +0000979 case Intrinsic::eh_typeid_for: {
980 GlobalValue *GV = ExtractTypeInfo(CI.getArgOperand(0));
981 unsigned Reg = getOrCreateVReg(CI);
Tim Northover50db7f412016-12-07 21:17:47 +0000982 unsigned TypeID = MF->getTypeIDFor(GV);
Tim Northovera9105be2016-11-09 22:39:54 +0000983 MIRBuilder.buildConstant(Reg, TypeID);
984 return true;
985 }
Tim Northover6e904302016-10-18 20:03:51 +0000986 case Intrinsic::objectsize: {
987 // If we don't know by now, we're never going to know.
988 const ConstantInt *Min = cast<ConstantInt>(CI.getArgOperand(1));
989
990 MIRBuilder.buildConstant(getOrCreateVReg(CI), Min->isZero() ? -1ULL : 0);
991 return true;
992 }
James Y Knight72f76bf2018-11-07 15:24:12 +0000993 case Intrinsic::is_constant:
994 // If this wasn't constant-folded away by now, then it's not a
995 // constant.
996 MIRBuilder.buildConstant(getOrCreateVReg(CI), 0);
997 return true;
Tim Northovercdf23f12016-10-31 18:30:59 +0000998 case Intrinsic::stackguard:
Tim Northoverc53606e2016-12-07 21:29:15 +0000999 getStackGuard(getOrCreateVReg(CI), MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +00001000 return true;
1001 case Intrinsic::stackprotector: {
Daniel Sanders52b4ce72017-03-07 23:20:35 +00001002 LLT PtrTy = getLLTForType(*CI.getArgOperand(0)->getType(), *DL);
Tim Northovercdf23f12016-10-31 18:30:59 +00001003 unsigned GuardVal = MRI->createGenericVirtualRegister(PtrTy);
Tim Northoverc53606e2016-12-07 21:29:15 +00001004 getStackGuard(GuardVal, MIRBuilder);
Tim Northovercdf23f12016-10-31 18:30:59 +00001005
1006 AllocaInst *Slot = cast<AllocaInst>(CI.getArgOperand(1));
Petr Pavlu84e89ff2018-12-10 15:15:05 +00001007 int FI = getOrCreateFrameIndex(*Slot);
1008 MF->getFrameInfo().setStackProtectorIndex(FI);
1009
Tim Northovercdf23f12016-10-31 18:30:59 +00001010 MIRBuilder.buildStore(
1011 GuardVal, getOrCreateVReg(*Slot),
Petr Pavlu84e89ff2018-12-10 15:15:05 +00001012 *MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(*MF, FI),
1013 MachineMemOperand::MOStore |
1014 MachineMemOperand::MOVolatile,
1015 PtrTy.getSizeInBits() / 8, 8));
Tim Northovercdf23f12016-10-31 18:30:59 +00001016 return true;
1017 }
Jessica Paquetteed233522019-04-02 22:46:31 +00001018 case Intrinsic::stacksave: {
1019 // Save the stack pointer to the location provided by the intrinsic.
1020 unsigned Reg = getOrCreateVReg(CI);
1021 unsigned StackPtr = MF->getSubtarget()
1022 .getTargetLowering()
1023 ->getStackPointerRegisterToSaveRestore();
1024
1025 // If the target doesn't specify a stack pointer, then fall back.
1026 if (!StackPtr)
1027 return false;
1028
1029 MIRBuilder.buildCopy(Reg, StackPtr);
1030 return true;
1031 }
1032 case Intrinsic::stackrestore: {
1033 // Restore the stack pointer from the location provided by the intrinsic.
1034 unsigned Reg = getOrCreateVReg(*CI.getArgOperand(0));
1035 unsigned StackPtr = MF->getSubtarget()
1036 .getTargetLowering()
1037 ->getStackPointerRegisterToSaveRestore();
1038
1039 // If the target doesn't specify a stack pointer, then fall back.
1040 if (!StackPtr)
1041 return false;
1042
1043 MIRBuilder.buildCopy(StackPtr, Reg);
1044 return true;
1045 }
Aditya Nandakumare07b3b72018-08-04 01:22:12 +00001046 case Intrinsic::cttz:
1047 case Intrinsic::ctlz: {
1048 ConstantInt *Cst = cast<ConstantInt>(CI.getArgOperand(1));
1049 bool isTrailing = ID == Intrinsic::cttz;
1050 unsigned Opcode = isTrailing
1051 ? Cst->isZero() ? TargetOpcode::G_CTTZ
1052 : TargetOpcode::G_CTTZ_ZERO_UNDEF
1053 : Cst->isZero() ? TargetOpcode::G_CTLZ
1054 : TargetOpcode::G_CTLZ_ZERO_UNDEF;
1055 MIRBuilder.buildInstr(Opcode)
1056 .addDef(getOrCreateVReg(CI))
1057 .addUse(getOrCreateVReg(*CI.getArgOperand(0)));
1058 return true;
1059 }
Jessica Paquetteb328d952018-10-05 21:02:46 +00001060 case Intrinsic::invariant_start: {
1061 LLT PtrTy = getLLTForType(*CI.getArgOperand(0)->getType(), *DL);
1062 unsigned Undef = MRI->createGenericVirtualRegister(PtrTy);
1063 MIRBuilder.buildUndef(Undef);
1064 return true;
1065 }
1066 case Intrinsic::invariant_end:
1067 return true;
Tim Northover91c81732016-08-19 17:17:06 +00001068 }
Tim Northover1e656ec2016-12-08 22:44:00 +00001069 return false;
Tim Northover91c81732016-08-19 17:17:06 +00001070}
1071
Tim Northoveraa995c92017-03-09 23:36:26 +00001072bool IRTranslator::translateInlineAsm(const CallInst &CI,
1073 MachineIRBuilder &MIRBuilder) {
1074 const InlineAsm &IA = cast<InlineAsm>(*CI.getCalledValue());
1075 if (!IA.getConstraintString().empty())
1076 return false;
1077
1078 unsigned ExtraInfo = 0;
1079 if (IA.hasSideEffects())
1080 ExtraInfo |= InlineAsm::Extra_HasSideEffects;
1081 if (IA.getDialect() == InlineAsm::AD_Intel)
1082 ExtraInfo |= InlineAsm::Extra_AsmDialect;
1083
1084 MIRBuilder.buildInstr(TargetOpcode::INLINEASM)
1085 .addExternalSymbol(IA.getAsmString().c_str())
1086 .addImm(ExtraInfo);
1087
1088 return true;
1089}
1090
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001091unsigned IRTranslator::packRegs(const Value &V,
1092 MachineIRBuilder &MIRBuilder) {
1093 ArrayRef<unsigned> Regs = getOrCreateVRegs(V);
1094 ArrayRef<uint64_t> Offsets = *VMap.getOffsets(V);
1095 LLT BigTy = getLLTForType(*V.getType(), *DL);
1096
1097 if (Regs.size() == 1)
1098 return Regs[0];
1099
1100 unsigned Dst = MRI->createGenericVirtualRegister(BigTy);
1101 MIRBuilder.buildUndef(Dst);
1102 for (unsigned i = 0; i < Regs.size(); ++i) {
1103 unsigned NewDst = MRI->createGenericVirtualRegister(BigTy);
1104 MIRBuilder.buildInsert(NewDst, Dst, Regs[i], Offsets[i]);
1105 Dst = NewDst;
1106 }
1107 return Dst;
1108}
1109
1110void IRTranslator::unpackRegs(const Value &V, unsigned Src,
1111 MachineIRBuilder &MIRBuilder) {
1112 ArrayRef<unsigned> Regs = getOrCreateVRegs(V);
1113 ArrayRef<uint64_t> Offsets = *VMap.getOffsets(V);
1114
1115 for (unsigned i = 0; i < Regs.size(); ++i)
1116 MIRBuilder.buildExtract(Regs[i], Src, Offsets[i]);
1117}
1118
Tim Northoverc53606e2016-12-07 21:29:15 +00001119bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +00001120 const CallInst &CI = cast<CallInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +00001121 auto TII = MF->getTarget().getIntrinsicInfo();
Tim Northover406024a2016-08-10 21:44:01 +00001122 const Function *F = CI.getCalledFunction();
Tim Northover5fb414d2016-07-29 22:32:36 +00001123
Martin Storsjocc981d22018-01-30 19:50:58 +00001124 // FIXME: support Windows dllimport function calls.
1125 if (F && F->hasDLLImportStorageClass())
1126 return false;
1127
Tim Northover3babfef2017-01-19 23:59:35 +00001128 if (CI.isInlineAsm())
Tim Northoveraa995c92017-03-09 23:36:26 +00001129 return translateInlineAsm(CI, MIRBuilder);
Tim Northover3babfef2017-01-19 23:59:35 +00001130
Amara Emerson913918c2018-01-02 18:56:39 +00001131 Intrinsic::ID ID = Intrinsic::not_intrinsic;
1132 if (F && F->isIntrinsic()) {
1133 ID = F->getIntrinsicID();
1134 if (TII && ID == Intrinsic::not_intrinsic)
1135 ID = static_cast<Intrinsic::ID>(TII->getIntrinsicID(F));
1136 }
1137
1138 if (!F || !F->isIntrinsic() || ID == Intrinsic::not_intrinsic) {
Matt Arsenault13371692019-03-14 14:18:56 +00001139 bool IsSplitType = valueIsSplit(CI);
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001140 unsigned Res = IsSplitType ? MRI->createGenericVirtualRegister(
1141 getLLTForType(*CI.getType(), *DL))
1142 : getOrCreateVReg(CI);
1143
Tim Northover406024a2016-08-10 21:44:01 +00001144 SmallVector<unsigned, 8> Args;
1145 for (auto &Arg: CI.arg_operands())
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001146 Args.push_back(packRegs(*Arg, MIRBuilder));
Tim Northover406024a2016-08-10 21:44:01 +00001147
Tim Northoverd1e951e2017-03-09 22:00:39 +00001148 MF->getFrameInfo().setHasCalls(true);
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001149 bool Success = CLI->lowerCall(MIRBuilder, &CI, Res, Args, [&]() {
Tim Northoverfe5f89b2016-08-29 19:07:08 +00001150 return getOrCreateVReg(*CI.getCalledValue());
1151 });
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001152
1153 if (IsSplitType)
1154 unpackRegs(CI, Res, MIRBuilder);
1155 return Success;
Tim Northover406024a2016-08-10 21:44:01 +00001156 }
1157
Tim Northover406024a2016-08-10 21:44:01 +00001158 assert(ID != Intrinsic::not_intrinsic && "unknown intrinsic");
Tim Northover5fb414d2016-07-29 22:32:36 +00001159
Tim Northoverc53606e2016-12-07 21:29:15 +00001160 if (translateKnownIntrinsic(CI, ID, MIRBuilder))
Tim Northover91c81732016-08-19 17:17:06 +00001161 return true;
1162
Matt Arsenault13371692019-03-14 14:18:56 +00001163 ArrayRef<unsigned> ResultRegs;
1164 if (!CI.getType()->isVoidTy())
1165 ResultRegs = getOrCreateVRegs(CI);
1166
Tim Northover5fb414d2016-07-29 22:32:36 +00001167 MachineInstrBuilder MIB =
Matt Arsenault13371692019-03-14 14:18:56 +00001168 MIRBuilder.buildIntrinsic(ID, ResultRegs, !CI.doesNotAccessMemory());
Tim Northover5fb414d2016-07-29 22:32:36 +00001169
1170 for (auto &Arg : CI.arg_operands()) {
Ahmed Bougacha55d10422017-03-07 20:53:09 +00001171 // Some intrinsics take metadata parameters. Reject them.
1172 if (isa<MetadataAsValue>(Arg))
1173 return false;
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001174 MIB.addUse(packRegs(*Arg, MIRBuilder));
Tim Northover5fb414d2016-07-29 22:32:36 +00001175 }
Volkan Kelesebe6bb92017-06-05 22:17:17 +00001176
1177 // Add a MachineMemOperand if it is a target mem intrinsic.
1178 const TargetLowering &TLI = *MF->getSubtarget().getTargetLowering();
1179 TargetLowering::IntrinsicInfo Info;
1180 // TODO: Add a GlobalISel version of getTgtMemIntrinsic.
Matt Arsenault7d7adf42017-12-14 22:34:10 +00001181 if (TLI.getTgtMemIntrinsic(Info, CI, *MF, ID)) {
Matt Arsenault50d65792019-01-31 23:41:23 +00001182 unsigned Align = Info.align;
1183 if (Align == 0)
1184 Align = DL->getABITypeAlignment(Info.memVT.getTypeForEVT(F->getContext()));
Matt Arsenault2a645982019-01-31 01:38:47 +00001185
Matt Arsenault50d65792019-01-31 23:41:23 +00001186 uint64_t Size = Info.memVT.getStoreSize();
Volkan Kelesebe6bb92017-06-05 22:17:17 +00001187 MIB.addMemOperand(MF->getMachineMemOperand(MachinePointerInfo(Info.ptrVal),
Matt Arsenault50d65792019-01-31 23:41:23 +00001188 Info.flags, Size, Align));
Volkan Kelesebe6bb92017-06-05 22:17:17 +00001189 }
1190
Tim Northover5fb414d2016-07-29 22:32:36 +00001191 return true;
1192}
1193
Tim Northoverc53606e2016-12-07 21:29:15 +00001194bool IRTranslator::translateInvoke(const User &U,
1195 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +00001196 const InvokeInst &I = cast<InvokeInst>(U);
Tim Northover50db7f412016-12-07 21:17:47 +00001197 MCContext &Context = MF->getContext();
Tim Northovera9105be2016-11-09 22:39:54 +00001198
1199 const BasicBlock *ReturnBB = I.getSuccessor(0);
1200 const BasicBlock *EHPadBB = I.getSuccessor(1);
1201
Ahmed Bougacha4ec6d5a2017-03-10 00:25:35 +00001202 const Value *Callee = I.getCalledValue();
Tim Northovera9105be2016-11-09 22:39:54 +00001203 const Function *Fn = dyn_cast<Function>(Callee);
1204 if (isa<InlineAsm>(Callee))
1205 return false;
1206
1207 // FIXME: support invoking patchpoint and statepoint intrinsics.
1208 if (Fn && Fn->isIntrinsic())
1209 return false;
1210
1211 // FIXME: support whatever these are.
1212 if (I.countOperandBundlesOfType(LLVMContext::OB_deopt))
1213 return false;
1214
1215 // FIXME: support Windows exception handling.
1216 if (!isa<LandingPadInst>(EHPadBB->front()))
1217 return false;
1218
Matthias Braund0ee66c2016-12-01 19:32:15 +00001219 // Emit the actual call, bracketed by EH_LABELs so that the MF knows about
Tim Northovera9105be2016-11-09 22:39:54 +00001220 // the region covered by the try.
Matthias Braund0ee66c2016-12-01 19:32:15 +00001221 MCSymbol *BeginSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +00001222 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(BeginSymbol);
1223
Matt Arsenault0aab9992019-04-10 17:27:55 +00001224 unsigned Res = 0;
1225 if (!I.getType()->isVoidTy())
1226 Res = MRI->createGenericVirtualRegister(getLLTForType(*I.getType(), *DL));
Tim Northover293f7432017-01-31 18:36:11 +00001227 SmallVector<unsigned, 8> Args;
Tim Northovera9105be2016-11-09 22:39:54 +00001228 for (auto &Arg: I.arg_operands())
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001229 Args.push_back(packRegs(*Arg, MIRBuilder));
Tim Northovera9105be2016-11-09 22:39:54 +00001230
Ahmed Bougachad22b84b2017-03-10 00:25:44 +00001231 if (!CLI->lowerCall(MIRBuilder, &I, Res, Args,
Ahmed Bougacha4ec6d5a2017-03-10 00:25:35 +00001232 [&]() { return getOrCreateVReg(*I.getCalledValue()); }))
1233 return false;
Tim Northovera9105be2016-11-09 22:39:54 +00001234
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001235 unpackRegs(I, Res, MIRBuilder);
1236
Matthias Braund0ee66c2016-12-01 19:32:15 +00001237 MCSymbol *EndSymbol = Context.createTempSymbol();
Tim Northovera9105be2016-11-09 22:39:54 +00001238 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL).addSym(EndSymbol);
1239
1240 // FIXME: track probabilities.
Ahmed Bougachaa61c2142017-03-15 18:22:33 +00001241 MachineBasicBlock &EHPadMBB = getMBB(*EHPadBB),
1242 &ReturnMBB = getMBB(*ReturnBB);
Tim Northover50db7f412016-12-07 21:17:47 +00001243 MF->addInvoke(&EHPadMBB, BeginSymbol, EndSymbol);
Tim Northovera9105be2016-11-09 22:39:54 +00001244 MIRBuilder.getMBB().addSuccessor(&ReturnMBB);
1245 MIRBuilder.getMBB().addSuccessor(&EHPadMBB);
Tim Northoverc6bfa482017-01-31 20:12:18 +00001246 MIRBuilder.buildBr(ReturnMBB);
Tim Northovera9105be2016-11-09 22:39:54 +00001247
1248 return true;
1249}
1250
Craig Topper784929d2019-02-08 20:48:56 +00001251bool IRTranslator::translateCallBr(const User &U,
1252 MachineIRBuilder &MIRBuilder) {
1253 // FIXME: Implement this.
1254 return false;
1255}
1256
Tim Northoverc53606e2016-12-07 21:29:15 +00001257bool IRTranslator::translateLandingPad(const User &U,
1258 MachineIRBuilder &MIRBuilder) {
Tim Northovera9105be2016-11-09 22:39:54 +00001259 const LandingPadInst &LP = cast<LandingPadInst>(U);
1260
1261 MachineBasicBlock &MBB = MIRBuilder.getMBB();
Tim Northovera9105be2016-11-09 22:39:54 +00001262
1263 MBB.setIsEHPad();
1264
1265 // If there aren't registers to copy the values into (e.g., during SjLj
1266 // exceptions), then don't bother.
Tim Northover50db7f412016-12-07 21:17:47 +00001267 auto &TLI = *MF->getSubtarget().getTargetLowering();
Matthias Braunf1caa282017-12-15 22:22:58 +00001268 const Constant *PersonalityFn = MF->getFunction().getPersonalityFn();
Tim Northovera9105be2016-11-09 22:39:54 +00001269 if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 &&
1270 TLI.getExceptionSelectorRegister(PersonalityFn) == 0)
1271 return true;
1272
1273 // If landingpad's return type is token type, we don't create DAG nodes
1274 // for its exception pointer and selector value. The extraction of exception
1275 // pointer or selector value from token type landingpads is not currently
1276 // supported.
1277 if (LP.getType()->isTokenTy())
1278 return true;
1279
1280 // Add a label to mark the beginning of the landing pad. Deletion of the
1281 // landing pad can thus be detected via the MachineModuleInfo.
1282 MIRBuilder.buildInstr(TargetOpcode::EH_LABEL)
Tim Northover50db7f412016-12-07 21:17:47 +00001283 .addSym(MF->addLandingPad(&MBB));
Tim Northovera9105be2016-11-09 22:39:54 +00001284
Daniel Sanders1351db42017-03-07 23:32:10 +00001285 LLT Ty = getLLTForType(*LP.getType(), *DL);
Tim Northover542d1c12017-03-07 23:04:06 +00001286 unsigned Undef = MRI->createGenericVirtualRegister(Ty);
1287 MIRBuilder.buildUndef(Undef);
1288
Justin Bognera0295312017-01-25 00:16:53 +00001289 SmallVector<LLT, 2> Tys;
1290 for (Type *Ty : cast<StructType>(LP.getType())->elements())
Daniel Sanders52b4ce72017-03-07 23:20:35 +00001291 Tys.push_back(getLLTForType(*Ty, *DL));
Justin Bognera0295312017-01-25 00:16:53 +00001292 assert(Tys.size() == 2 && "Only two-valued landingpads are supported");
1293
Tim Northovera9105be2016-11-09 22:39:54 +00001294 // Mark exception register as live in.
Tim Northover542d1c12017-03-07 23:04:06 +00001295 unsigned ExceptionReg = TLI.getExceptionPointerRegister(PersonalityFn);
1296 if (!ExceptionReg)
1297 return false;
Tim Northovera9105be2016-11-09 22:39:54 +00001298
Tim Northover542d1c12017-03-07 23:04:06 +00001299 MBB.addLiveIn(ExceptionReg);
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001300 ArrayRef<unsigned> ResRegs = getOrCreateVRegs(LP);
1301 MIRBuilder.buildCopy(ResRegs[0], ExceptionReg);
Tim Northoverc9449702017-01-30 20:52:42 +00001302
Tim Northover542d1c12017-03-07 23:04:06 +00001303 unsigned SelectorReg = TLI.getExceptionSelectorRegister(PersonalityFn);
1304 if (!SelectorReg)
1305 return false;
Tim Northoverc9449702017-01-30 20:52:42 +00001306
Tim Northover542d1c12017-03-07 23:04:06 +00001307 MBB.addLiveIn(SelectorReg);
Tim Northover542d1c12017-03-07 23:04:06 +00001308 unsigned PtrVReg = MRI->createGenericVirtualRegister(Tys[0]);
1309 MIRBuilder.buildCopy(PtrVReg, SelectorReg);
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001310 MIRBuilder.buildCast(ResRegs[1], PtrVReg);
Tim Northover542d1c12017-03-07 23:04:06 +00001311
Tim Northovera9105be2016-11-09 22:39:54 +00001312 return true;
1313}
1314
Tim Northoverc3e3f592017-02-03 18:22:45 +00001315bool IRTranslator::translateAlloca(const User &U,
1316 MachineIRBuilder &MIRBuilder) {
1317 auto &AI = cast<AllocaInst>(U);
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001318
Amara Emersonfdd089a2018-07-26 01:25:58 +00001319 if (AI.isSwiftError())
1320 return false;
1321
Tim Northoverc3e3f592017-02-03 18:22:45 +00001322 if (AI.isStaticAlloca()) {
1323 unsigned Res = getOrCreateVReg(AI);
1324 int FI = getOrCreateFrameIndex(AI);
1325 MIRBuilder.buildFrameIndex(Res, FI);
1326 return true;
1327 }
1328
Martin Storsjoa63a5b92018-02-17 14:26:32 +00001329 // FIXME: support stack probing for Windows.
1330 if (MF->getTarget().getTargetTriple().isOSWindows())
1331 return false;
1332
Tim Northoverc3e3f592017-02-03 18:22:45 +00001333 // Now we're in the harder dynamic case.
1334 Type *Ty = AI.getAllocatedType();
1335 unsigned Align =
1336 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI.getAlignment());
1337
1338 unsigned NumElts = getOrCreateVReg(*AI.getArraySize());
1339
Ahmed Bougacha2fb80302017-03-15 19:21:11 +00001340 Type *IntPtrIRTy = DL->getIntPtrType(AI.getType());
1341 LLT IntPtrTy = getLLTForType(*IntPtrIRTy, *DL);
Tim Northoverc3e3f592017-02-03 18:22:45 +00001342 if (MRI->getType(NumElts) != IntPtrTy) {
1343 unsigned ExtElts = MRI->createGenericVirtualRegister(IntPtrTy);
1344 MIRBuilder.buildZExtOrTrunc(ExtElts, NumElts);
1345 NumElts = ExtElts;
1346 }
1347
1348 unsigned AllocSize = MRI->createGenericVirtualRegister(IntPtrTy);
Ahmed Bougacha2fb80302017-03-15 19:21:11 +00001349 unsigned TySize =
1350 getOrCreateVReg(*ConstantInt::get(IntPtrIRTy, -DL->getTypeAllocSize(Ty)));
Tim Northoverc3e3f592017-02-03 18:22:45 +00001351 MIRBuilder.buildMul(AllocSize, NumElts, TySize);
1352
Daniel Sanders52b4ce72017-03-07 23:20:35 +00001353 LLT PtrTy = getLLTForType(*AI.getType(), *DL);
Tim Northoverc3e3f592017-02-03 18:22:45 +00001354 auto &TLI = *MF->getSubtarget().getTargetLowering();
1355 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1356
1357 unsigned SPTmp = MRI->createGenericVirtualRegister(PtrTy);
1358 MIRBuilder.buildCopy(SPTmp, SPReg);
1359
Tim Northoverc2f89562017-02-14 20:56:18 +00001360 unsigned AllocTmp = MRI->createGenericVirtualRegister(PtrTy);
1361 MIRBuilder.buildGEP(AllocTmp, SPTmp, AllocSize);
Tim Northoverc3e3f592017-02-03 18:22:45 +00001362
1363 // Handle alignment. We have to realign if the allocation granule was smaller
1364 // than stack alignment, or the specific alloca requires more than stack
1365 // alignment.
1366 unsigned StackAlign =
1367 MF->getSubtarget().getFrameLowering()->getStackAlignment();
1368 Align = std::max(Align, StackAlign);
1369 if (Align > StackAlign || DL->getTypeAllocSize(Ty) % StackAlign != 0) {
1370 // Round the size of the allocation up to the stack alignment size
1371 // by add SA-1 to the size. This doesn't overflow because we're computing
1372 // an address inside an alloca.
Tim Northoverc2f89562017-02-14 20:56:18 +00001373 unsigned AlignedAlloc = MRI->createGenericVirtualRegister(PtrTy);
1374 MIRBuilder.buildPtrMask(AlignedAlloc, AllocTmp, Log2_32(Align));
1375 AllocTmp = AlignedAlloc;
Tim Northoverc3e3f592017-02-03 18:22:45 +00001376 }
1377
Tim Northoverc2f89562017-02-14 20:56:18 +00001378 MIRBuilder.buildCopy(SPReg, AllocTmp);
1379 MIRBuilder.buildCopy(getOrCreateVReg(AI), AllocTmp);
Tim Northoverc3e3f592017-02-03 18:22:45 +00001380
1381 MF->getFrameInfo().CreateVariableSizedObject(Align ? Align : 1, &AI);
1382 assert(MF->getFrameInfo().hasVarSizedObjects());
Tim Northoverbd505462016-07-22 16:59:52 +00001383 return true;
1384}
1385
Tim Northover4a652222017-02-15 23:22:33 +00001386bool IRTranslator::translateVAArg(const User &U, MachineIRBuilder &MIRBuilder) {
1387 // FIXME: We may need more info about the type. Because of how LLT works,
1388 // we're completely discarding the i64/double distinction here (amongst
1389 // others). Fortunately the ABIs I know of where that matters don't use va_arg
1390 // anyway but that's not guaranteed.
1391 MIRBuilder.buildInstr(TargetOpcode::G_VAARG)
1392 .addDef(getOrCreateVReg(U))
1393 .addUse(getOrCreateVReg(*U.getOperand(0)))
1394 .addImm(DL->getABITypeAlignment(U.getType()));
1395 return true;
1396}
1397
Volkan Keles04cb08c2017-03-10 19:08:28 +00001398bool IRTranslator::translateInsertElement(const User &U,
1399 MachineIRBuilder &MIRBuilder) {
1400 // If it is a <1 x Ty> vector, use the scalar as it is
1401 // not a legal vector type in LLT.
1402 if (U.getType()->getVectorNumElements() == 1) {
1403 unsigned Elt = getOrCreateVReg(*U.getOperand(1));
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001404 auto &Regs = *VMap.getVRegs(U);
1405 if (Regs.empty()) {
1406 Regs.push_back(Elt);
1407 VMap.getOffsets(U)->push_back(0);
1408 } else {
1409 MIRBuilder.buildCopy(Regs[0], Elt);
1410 }
Volkan Keles04cb08c2017-03-10 19:08:28 +00001411 return true;
1412 }
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001413
Kristof Beyls7a713502017-04-19 06:38:37 +00001414 unsigned Res = getOrCreateVReg(U);
1415 unsigned Val = getOrCreateVReg(*U.getOperand(0));
1416 unsigned Elt = getOrCreateVReg(*U.getOperand(1));
1417 unsigned Idx = getOrCreateVReg(*U.getOperand(2));
1418 MIRBuilder.buildInsertVectorElement(Res, Val, Elt, Idx);
Volkan Keles04cb08c2017-03-10 19:08:28 +00001419 return true;
1420}
1421
1422bool IRTranslator::translateExtractElement(const User &U,
1423 MachineIRBuilder &MIRBuilder) {
1424 // If it is a <1 x Ty> vector, use the scalar as it is
1425 // not a legal vector type in LLT.
1426 if (U.getOperand(0)->getType()->getVectorNumElements() == 1) {
1427 unsigned Elt = getOrCreateVReg(*U.getOperand(0));
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001428 auto &Regs = *VMap.getVRegs(U);
1429 if (Regs.empty()) {
1430 Regs.push_back(Elt);
1431 VMap.getOffsets(U)->push_back(0);
1432 } else {
1433 MIRBuilder.buildCopy(Regs[0], Elt);
1434 }
Volkan Keles04cb08c2017-03-10 19:08:28 +00001435 return true;
1436 }
Kristof Beyls7a713502017-04-19 06:38:37 +00001437 unsigned Res = getOrCreateVReg(U);
1438 unsigned Val = getOrCreateVReg(*U.getOperand(0));
Amara Emersoncbd86d82018-10-25 14:04:54 +00001439 const auto &TLI = *MF->getSubtarget().getTargetLowering();
1440 unsigned PreferredVecIdxWidth = TLI.getVectorIdxTy(*DL).getSizeInBits();
1441 unsigned Idx = 0;
1442 if (auto *CI = dyn_cast<ConstantInt>(U.getOperand(1))) {
1443 if (CI->getBitWidth() != PreferredVecIdxWidth) {
1444 APInt NewIdx = CI->getValue().sextOrTrunc(PreferredVecIdxWidth);
1445 auto *NewIdxCI = ConstantInt::get(CI->getContext(), NewIdx);
1446 Idx = getOrCreateVReg(*NewIdxCI);
1447 }
1448 }
1449 if (!Idx)
1450 Idx = getOrCreateVReg(*U.getOperand(1));
1451 if (MRI->getType(Idx).getSizeInBits() != PreferredVecIdxWidth) {
1452 const LLT &VecIdxTy = LLT::scalar(PreferredVecIdxWidth);
1453 Idx = MIRBuilder.buildSExtOrTrunc(VecIdxTy, Idx)->getOperand(0).getReg();
1454 }
Kristof Beyls7a713502017-04-19 06:38:37 +00001455 MIRBuilder.buildExtractVectorElement(Res, Val, Idx);
Volkan Keles04cb08c2017-03-10 19:08:28 +00001456 return true;
1457}
1458
Volkan Keles75bdc762017-03-21 08:44:13 +00001459bool IRTranslator::translateShuffleVector(const User &U,
1460 MachineIRBuilder &MIRBuilder) {
1461 MIRBuilder.buildInstr(TargetOpcode::G_SHUFFLE_VECTOR)
1462 .addDef(getOrCreateVReg(U))
1463 .addUse(getOrCreateVReg(*U.getOperand(0)))
1464 .addUse(getOrCreateVReg(*U.getOperand(1)))
1465 .addUse(getOrCreateVReg(*U.getOperand(2)));
1466 return true;
1467}
1468
Tim Northoverc53606e2016-12-07 21:29:15 +00001469bool IRTranslator::translatePHI(const User &U, MachineIRBuilder &MIRBuilder) {
Tim Northover357f1be2016-08-10 23:02:41 +00001470 const PHINode &PI = cast<PHINode>(U);
Tim Northover97d0cb32016-08-05 17:16:40 +00001471
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001472 SmallVector<MachineInstr *, 4> Insts;
1473 for (auto Reg : getOrCreateVRegs(PI)) {
Aditya Nandakumarcef44a22018-12-11 00:48:50 +00001474 auto MIB = MIRBuilder.buildInstr(TargetOpcode::G_PHI, {Reg}, {});
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001475 Insts.push_back(MIB.getInstr());
1476 }
1477
1478 PendingPHIs.emplace_back(&PI, std::move(Insts));
Tim Northover97d0cb32016-08-05 17:16:40 +00001479 return true;
1480}
1481
Daniel Sanders94813992018-07-09 19:33:40 +00001482bool IRTranslator::translateAtomicCmpXchg(const User &U,
1483 MachineIRBuilder &MIRBuilder) {
1484 const AtomicCmpXchgInst &I = cast<AtomicCmpXchgInst>(U);
1485
1486 if (I.isWeak())
1487 return false;
1488
1489 auto Flags = I.isVolatile() ? MachineMemOperand::MOVolatile
1490 : MachineMemOperand::MONone;
1491 Flags |= MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
1492
1493 Type *ResType = I.getType();
1494 Type *ValType = ResType->Type::getStructElementType(0);
1495
1496 auto Res = getOrCreateVRegs(I);
1497 unsigned OldValRes = Res[0];
1498 unsigned SuccessRes = Res[1];
1499 unsigned Addr = getOrCreateVReg(*I.getPointerOperand());
1500 unsigned Cmp = getOrCreateVReg(*I.getCompareOperand());
1501 unsigned NewVal = getOrCreateVReg(*I.getNewValOperand());
1502
1503 MIRBuilder.buildAtomicCmpXchgWithSuccess(
1504 OldValRes, SuccessRes, Addr, Cmp, NewVal,
1505 *MF->getMachineMemOperand(MachinePointerInfo(I.getPointerOperand()),
1506 Flags, DL->getTypeStoreSize(ValType),
1507 getMemOpAlignment(I), AAMDNodes(), nullptr,
1508 I.getSyncScopeID(), I.getSuccessOrdering(),
1509 I.getFailureOrdering()));
1510 return true;
1511}
1512
1513bool IRTranslator::translateAtomicRMW(const User &U,
1514 MachineIRBuilder &MIRBuilder) {
1515 const AtomicRMWInst &I = cast<AtomicRMWInst>(U);
1516
1517 auto Flags = I.isVolatile() ? MachineMemOperand::MOVolatile
1518 : MachineMemOperand::MONone;
1519 Flags |= MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
1520
1521 Type *ResType = I.getType();
1522
1523 unsigned Res = getOrCreateVReg(I);
1524 unsigned Addr = getOrCreateVReg(*I.getPointerOperand());
1525 unsigned Val = getOrCreateVReg(*I.getValOperand());
1526
1527 unsigned Opcode = 0;
1528 switch (I.getOperation()) {
1529 default:
1530 llvm_unreachable("Unknown atomicrmw op");
1531 return false;
1532 case AtomicRMWInst::Xchg:
1533 Opcode = TargetOpcode::G_ATOMICRMW_XCHG;
1534 break;
1535 case AtomicRMWInst::Add:
1536 Opcode = TargetOpcode::G_ATOMICRMW_ADD;
1537 break;
1538 case AtomicRMWInst::Sub:
1539 Opcode = TargetOpcode::G_ATOMICRMW_SUB;
1540 break;
1541 case AtomicRMWInst::And:
1542 Opcode = TargetOpcode::G_ATOMICRMW_AND;
1543 break;
1544 case AtomicRMWInst::Nand:
1545 Opcode = TargetOpcode::G_ATOMICRMW_NAND;
1546 break;
1547 case AtomicRMWInst::Or:
1548 Opcode = TargetOpcode::G_ATOMICRMW_OR;
1549 break;
1550 case AtomicRMWInst::Xor:
1551 Opcode = TargetOpcode::G_ATOMICRMW_XOR;
1552 break;
1553 case AtomicRMWInst::Max:
1554 Opcode = TargetOpcode::G_ATOMICRMW_MAX;
1555 break;
1556 case AtomicRMWInst::Min:
1557 Opcode = TargetOpcode::G_ATOMICRMW_MIN;
1558 break;
1559 case AtomicRMWInst::UMax:
1560 Opcode = TargetOpcode::G_ATOMICRMW_UMAX;
1561 break;
1562 case AtomicRMWInst::UMin:
1563 Opcode = TargetOpcode::G_ATOMICRMW_UMIN;
1564 break;
1565 }
1566
1567 MIRBuilder.buildAtomicRMW(
1568 Opcode, Res, Addr, Val,
1569 *MF->getMachineMemOperand(MachinePointerInfo(I.getPointerOperand()),
1570 Flags, DL->getTypeStoreSize(ResType),
1571 getMemOpAlignment(I), AAMDNodes(), nullptr,
1572 I.getSyncScopeID(), I.getOrdering()));
1573 return true;
1574}
1575
Tim Northover97d0cb32016-08-05 17:16:40 +00001576void IRTranslator::finishPendingPhis() {
Daniel Sanders3b390402018-10-31 17:31:23 +00001577#ifndef NDEBUG
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001578 DILocationVerifier Verifier;
1579 GISelObserverWrapper WrapperObserver(&Verifier);
1580 RAIIDelegateInstaller DelInstall(*MF, &WrapperObserver);
Daniel Sanders3b390402018-10-31 17:31:23 +00001581#endif // ifndef NDEBUG
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001582 for (auto &Phi : PendingPHIs) {
Tim Northover97d0cb32016-08-05 17:16:40 +00001583 const PHINode *PI = Phi.first;
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001584 ArrayRef<MachineInstr *> ComponentPHIs = Phi.second;
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001585 EntryBuilder->setDebugLoc(PI->getDebugLoc());
Daniel Sanders3b390402018-10-31 17:31:23 +00001586#ifndef NDEBUG
1587 Verifier.setCurrentInst(PI);
1588#endif // ifndef NDEBUG
Tim Northover97d0cb32016-08-05 17:16:40 +00001589
1590 // All MachineBasicBlocks exist, add them to the PHI. We assume IRTranslator
1591 // won't create extra control flow here, otherwise we need to find the
1592 // dominating predecessor here (or perhaps force the weirder IRTranslators
1593 // to provide a simple boundary).
Tim Northoverb6636fd2017-01-17 22:13:50 +00001594 SmallSet<const BasicBlock *, 4> HandledPreds;
1595
Tim Northover97d0cb32016-08-05 17:16:40 +00001596 for (unsigned i = 0; i < PI->getNumIncomingValues(); ++i) {
Tim Northoverb6636fd2017-01-17 22:13:50 +00001597 auto IRPred = PI->getIncomingBlock(i);
1598 if (HandledPreds.count(IRPred))
1599 continue;
1600
1601 HandledPreds.insert(IRPred);
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001602 ArrayRef<unsigned> ValRegs = getOrCreateVRegs(*PI->getIncomingValue(i));
Tim Northoverb6636fd2017-01-17 22:13:50 +00001603 for (auto Pred : getMachinePredBBs({IRPred, PI->getParent()})) {
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001604 assert(Pred->isSuccessor(ComponentPHIs[0]->getParent()) &&
Tim Northoverb6636fd2017-01-17 22:13:50 +00001605 "incorrect CFG at MachineBasicBlock level");
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001606 for (unsigned j = 0; j < ValRegs.size(); ++j) {
1607 MachineInstrBuilder MIB(*MF, ComponentPHIs[j]);
1608 MIB.addUse(ValRegs[j]);
1609 MIB.addMBB(Pred);
1610 }
Tim Northoverb6636fd2017-01-17 22:13:50 +00001611 }
Tim Northover97d0cb32016-08-05 17:16:40 +00001612 }
1613 }
1614}
1615
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001616bool IRTranslator::valueIsSplit(const Value &V,
1617 SmallVectorImpl<uint64_t> *Offsets) {
1618 SmallVector<LLT, 4> SplitTys;
Amara Emerson30e61402018-08-14 12:04:25 +00001619 if (Offsets && !Offsets->empty())
1620 Offsets->clear();
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001621 computeValueLLTs(*DL, *V.getType(), SplitTys, Offsets);
1622 return SplitTys.size() > 1;
1623}
1624
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001625bool IRTranslator::translate(const Instruction &Inst) {
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001626 CurBuilder->setDebugLoc(Inst.getDebugLoc());
1627 EntryBuilder->setDebugLoc(Inst.getDebugLoc());
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001628 switch(Inst.getOpcode()) {
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001629#define HANDLE_INST(NUM, OPCODE, CLASS) \
1630 case Instruction::OPCODE: \
1631 return translate##OPCODE(Inst, *CurBuilder.get());
Tim Northover357f1be2016-08-10 23:02:41 +00001632#include "llvm/IR/Instruction.def"
Quentin Colombet74d7d2f2016-02-11 18:53:28 +00001633 default:
Quentin Colombetee8a4f52017-03-11 00:28:33 +00001634 return false;
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001635 }
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001636}
1637
Tim Northover5ed648e2016-08-09 21:28:04 +00001638bool IRTranslator::translate(const Constant &C, unsigned Reg) {
Tim Northoverd403a3d2016-08-09 23:01:30 +00001639 if (auto CI = dyn_cast<ConstantInt>(&C))
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001640 EntryBuilder->buildConstant(Reg, *CI);
Tim Northoverb16734f2016-08-19 20:09:15 +00001641 else if (auto CF = dyn_cast<ConstantFP>(&C))
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001642 EntryBuilder->buildFConstant(Reg, *CF);
Tim Northoverd403a3d2016-08-09 23:01:30 +00001643 else if (isa<UndefValue>(C))
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001644 EntryBuilder->buildUndef(Reg);
Aditya Nandakumarb3297ef2018-03-22 17:31:38 +00001645 else if (isa<ConstantPointerNull>(C)) {
1646 // As we are trying to build a constant val of 0 into a pointer,
1647 // insert a cast to make them correct with respect to types.
1648 unsigned NullSize = DL->getTypeSizeInBits(C.getType());
1649 auto *ZeroTy = Type::getIntNTy(C.getContext(), NullSize);
1650 auto *ZeroVal = ConstantInt::get(ZeroTy, 0);
1651 unsigned ZeroReg = getOrCreateVReg(*ZeroVal);
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001652 EntryBuilder->buildCast(Reg, ZeroReg);
Aditya Nandakumarb3297ef2018-03-22 17:31:38 +00001653 } else if (auto GV = dyn_cast<GlobalValue>(&C))
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001654 EntryBuilder->buildGlobalValue(Reg, GV);
Volkan Keles970fee42017-03-10 21:23:13 +00001655 else if (auto CAZ = dyn_cast<ConstantAggregateZero>(&C)) {
1656 if (!CAZ->getType()->isVectorTy())
1657 return false;
Volkan Keles4862c632017-03-14 23:45:06 +00001658 // Return the scalar if it is a <1 x Ty> vector.
1659 if (CAZ->getNumElements() == 1)
1660 return translate(*CAZ->getElementValue(0u), Reg);
Amara Emerson5ec14602018-12-10 18:44:58 +00001661 SmallVector<unsigned, 4> Ops;
Volkan Keles970fee42017-03-10 21:23:13 +00001662 for (unsigned i = 0; i < CAZ->getNumElements(); ++i) {
1663 Constant &Elt = *CAZ->getElementValue(i);
1664 Ops.push_back(getOrCreateVReg(Elt));
1665 }
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001666 EntryBuilder->buildBuildVector(Reg, Ops);
Volkan Keles38a91a02017-03-13 21:36:19 +00001667 } else if (auto CV = dyn_cast<ConstantDataVector>(&C)) {
Volkan Keles4862c632017-03-14 23:45:06 +00001668 // Return the scalar if it is a <1 x Ty> vector.
1669 if (CV->getNumElements() == 1)
1670 return translate(*CV->getElementAsConstant(0), Reg);
Amara Emerson5ec14602018-12-10 18:44:58 +00001671 SmallVector<unsigned, 4> Ops;
Volkan Keles38a91a02017-03-13 21:36:19 +00001672 for (unsigned i = 0; i < CV->getNumElements(); ++i) {
1673 Constant &Elt = *CV->getElementAsConstant(i);
1674 Ops.push_back(getOrCreateVReg(Elt));
1675 }
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001676 EntryBuilder->buildBuildVector(Reg, Ops);
Volkan Keles970fee42017-03-10 21:23:13 +00001677 } else if (auto CE = dyn_cast<ConstantExpr>(&C)) {
Tim Northover357f1be2016-08-10 23:02:41 +00001678 switch(CE->getOpcode()) {
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001679#define HANDLE_INST(NUM, OPCODE, CLASS) \
1680 case Instruction::OPCODE: \
1681 return translate##OPCODE(*CE, *EntryBuilder.get());
Tim Northover357f1be2016-08-10 23:02:41 +00001682#include "llvm/IR/Instruction.def"
1683 default:
Quentin Colombetee8a4f52017-03-11 00:28:33 +00001684 return false;
Tim Northover357f1be2016-08-10 23:02:41 +00001685 }
Aditya Nandakumar117b6672017-05-04 21:43:12 +00001686 } else if (auto CV = dyn_cast<ConstantVector>(&C)) {
1687 if (CV->getNumOperands() == 1)
1688 return translate(*CV->getOperand(0), Reg);
1689 SmallVector<unsigned, 4> Ops;
1690 for (unsigned i = 0; i < CV->getNumOperands(); ++i) {
1691 Ops.push_back(getOrCreateVReg(*CV->getOperand(i)));
1692 }
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001693 EntryBuilder->buildBuildVector(Reg, Ops);
Amara Emerson6aff5a72018-07-31 00:08:50 +00001694 } else if (auto *BA = dyn_cast<BlockAddress>(&C)) {
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001695 EntryBuilder->buildBlockAddress(Reg, BA);
Quentin Colombetee8a4f52017-03-11 00:28:33 +00001696 } else
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001697 return false;
Tim Northover5ed648e2016-08-09 21:28:04 +00001698
Tim Northoverd403a3d2016-08-09 23:01:30 +00001699 return true;
Tim Northover5ed648e2016-08-09 21:28:04 +00001700}
1701
Tim Northover0d510442016-08-11 16:21:29 +00001702void IRTranslator::finalizeFunction() {
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001703 // Release the memory used by the different maps we
1704 // needed during the translation.
Tim Northover800638f2016-12-05 23:10:19 +00001705 PendingPHIs.clear();
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001706 VMap.reset();
Tim Northovercdf23f12016-10-31 18:30:59 +00001707 FrameIndices.clear();
Tim Northoverb6636fd2017-01-17 22:13:50 +00001708 MachinePreds.clear();
Aditya Nandakumarbe929932017-05-17 17:41:55 +00001709 // MachineIRBuilder::DebugLoc can outlive the DILocation it holds. Clear it
1710 // to avoid accessing free’d memory (in runOnMachineFunction) and to avoid
1711 // destroying it twice (in ~IRTranslator() and ~LLVMContext())
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001712 EntryBuilder.reset();
1713 CurBuilder.reset();
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001714}
1715
Tim Northover50db7f412016-12-07 21:17:47 +00001716bool IRTranslator::runOnMachineFunction(MachineFunction &CurMF) {
1717 MF = &CurMF;
Matthias Braunf1caa282017-12-15 22:22:58 +00001718 const Function &F = MF->getFunction();
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001719 if (F.empty())
1720 return false;
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001721 GISelCSEAnalysisWrapper &Wrapper =
1722 getAnalysis<GISelCSEAnalysisWrapperPass>().getCSEWrapper();
1723 // Set the CSEConfig and run the analysis.
1724 GISelCSEInfo *CSEInfo = nullptr;
1725 TPC = &getAnalysis<TargetPassConfig>();
Aditya Nandakumar3ba0d942019-01-24 23:11:25 +00001726 bool EnableCSE = EnableCSEInIRTranslator.getNumOccurrences()
1727 ? EnableCSEInIRTranslator
1728 : TPC->isGISelCSEEnabled();
1729
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001730 if (EnableCSE) {
1731 EntryBuilder = make_unique<CSEMIRBuilder>(CurMF);
Amara Emersond1896802019-04-15 04:53:46 +00001732 CSEInfo = &Wrapper.get(TPC->getCSEConfig());
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001733 EntryBuilder->setCSEInfo(CSEInfo);
1734 CurBuilder = make_unique<CSEMIRBuilder>(CurMF);
1735 CurBuilder->setCSEInfo(CSEInfo);
1736 } else {
1737 EntryBuilder = make_unique<MachineIRBuilder>();
1738 CurBuilder = make_unique<MachineIRBuilder>();
1739 }
Tim Northover50db7f412016-12-07 21:17:47 +00001740 CLI = MF->getSubtarget().getCallLowering();
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001741 CurBuilder->setMF(*MF);
1742 EntryBuilder->setMF(*MF);
Tim Northover50db7f412016-12-07 21:17:47 +00001743 MRI = &MF->getRegInfo();
Tim Northoverbd505462016-07-22 16:59:52 +00001744 DL = &F.getParent()->getDataLayout();
Eugene Zelenko76bf48d2017-06-26 22:44:03 +00001745 ORE = llvm::make_unique<OptimizationRemarkEmitter>(&F);
Tim Northoverbd505462016-07-22 16:59:52 +00001746
Tim Northover14e7f732016-08-05 17:50:36 +00001747 assert(PendingPHIs.empty() && "stale PHIs");
1748
Amara Emersondf9b5292017-12-11 16:58:29 +00001749 if (!DL->isLittleEndian()) {
1750 // Currently we don't properly handle big endian code.
1751 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
Matthias Braunf1caa282017-12-15 22:22:58 +00001752 F.getSubprogram(), &F.getEntryBlock());
Amara Emersondf9b5292017-12-11 16:58:29 +00001753 R << "unable to translate in big endian mode";
1754 reportTranslationError(*MF, *TPC, *ORE, R);
1755 }
1756
Ahmed Bougachaeceabdd2017-02-23 23:57:28 +00001757 // Release the per-function state when we return, whether we succeeded or not.
1758 auto FinalizeOnReturn = make_scope_exit([this]() { finalizeFunction(); });
1759
Ahmed Bougachaa61c2142017-03-15 18:22:33 +00001760 // Setup a separate basic-block for the arguments and constants
Tim Northover50db7f412016-12-07 21:17:47 +00001761 MachineBasicBlock *EntryBB = MF->CreateMachineBasicBlock();
1762 MF->push_back(EntryBB);
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001763 EntryBuilder->setMBB(*EntryBB);
Tim Northover05cc4852016-12-07 21:05:38 +00001764
Ahmed Bougachaa61c2142017-03-15 18:22:33 +00001765 // Create all blocks, in IR order, to preserve the layout.
1766 for (const BasicBlock &BB: F) {
1767 auto *&MBB = BBToMBB[&BB];
1768
1769 MBB = MF->CreateMachineBasicBlock(&BB);
1770 MF->push_back(MBB);
1771
1772 if (BB.hasAddressTaken())
1773 MBB->setHasAddressTaken();
1774 }
1775
1776 // Make our arguments/constants entry block fallthrough to the IR entry block.
1777 EntryBB->addSuccessor(&getMBB(F.front()));
1778
Tim Northover05cc4852016-12-07 21:05:38 +00001779 // Lower the actual args into this basic block.
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001780 SmallVector<unsigned, 8> VRegArgs;
Amara Emersond78d65c2017-11-30 20:06:02 +00001781 for (const Argument &Arg: F.args()) {
1782 if (DL->getTypeStoreSize(Arg.getType()) == 0)
1783 continue; // Don't handle zero sized types.
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001784 VRegArgs.push_back(
1785 MRI->createGenericVirtualRegister(getLLTForType(*Arg.getType(), *DL)));
Amara Emersond78d65c2017-11-30 20:06:02 +00001786 }
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001787
Amara Emersonfdd089a2018-07-26 01:25:58 +00001788 // We don't currently support translating swifterror or swiftself functions.
1789 for (auto &Arg : F.args()) {
1790 if (Arg.hasSwiftErrorAttr() || Arg.hasSwiftSelfAttr()) {
1791 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1792 F.getSubprogram(), &F.getEntryBlock());
1793 R << "unable to lower arguments due to swifterror/swiftself: "
1794 << ore::NV("Prototype", F.getType());
1795 reportTranslationError(*MF, *TPC, *ORE, R);
1796 return false;
1797 }
1798 }
1799
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001800 if (!CLI->lowerFormalArguments(*EntryBuilder.get(), F, VRegArgs)) {
Ahmed Bougacha7c88a4e2017-02-24 00:34:44 +00001801 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
Matthias Braunf1caa282017-12-15 22:22:58 +00001802 F.getSubprogram(), &F.getEntryBlock());
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001803 R << "unable to lower arguments: " << ore::NV("Prototype", F.getType());
1804 reportTranslationError(*MF, *TPC, *ORE, R);
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001805 return false;
Quentin Colombet3bb32cc2016-08-26 23:49:05 +00001806 }
Quentin Colombetfd9d0a02016-02-11 19:59:41 +00001807
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001808 auto ArgIt = F.arg_begin();
1809 for (auto &VArg : VRegArgs) {
1810 // If the argument is an unsplit scalar then don't use unpackRegs to avoid
1811 // creating redundant copies.
1812 if (!valueIsSplit(*ArgIt, VMap.getOffsets(*ArgIt))) {
1813 auto &VRegs = *VMap.getVRegs(cast<Value>(*ArgIt));
1814 assert(VRegs.empty() && "VRegs already populated?");
1815 VRegs.push_back(VArg);
1816 } else {
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001817 unpackRegs(*ArgIt, VArg, *EntryBuilder.get());
Amara Emerson0d6a26d2018-05-16 10:32:02 +00001818 }
1819 ArgIt++;
1820 }
1821
Amara Emerson6cdfe292018-08-01 02:17:42 +00001822 // Need to visit defs before uses when translating instructions.
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001823 GISelObserverWrapper WrapperObserver;
1824 if (EnableCSE && CSEInfo)
1825 WrapperObserver.addObserver(CSEInfo);
Daniel Sanders3b390402018-10-31 17:31:23 +00001826 {
1827 ReversePostOrderTraversal<const Function *> RPOT(&F);
1828#ifndef NDEBUG
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001829 DILocationVerifier Verifier;
1830 WrapperObserver.addObserver(&Verifier);
Daniel Sanders3b390402018-10-31 17:31:23 +00001831#endif // ifndef NDEBUG
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001832 RAIIDelegateInstaller DelInstall(*MF, &WrapperObserver);
Daniel Sanders3b390402018-10-31 17:31:23 +00001833 for (const BasicBlock *BB : RPOT) {
1834 MachineBasicBlock &MBB = getMBB(*BB);
1835 // Set the insertion point of all the following translations to
1836 // the end of this basic block.
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001837 CurBuilder->setMBB(MBB);
Tim Northovera9105be2016-11-09 22:39:54 +00001838
Daniel Sanders3b390402018-10-31 17:31:23 +00001839 for (const Instruction &Inst : *BB) {
1840#ifndef NDEBUG
1841 Verifier.setCurrentInst(&Inst);
1842#endif // ifndef NDEBUG
1843 if (translate(Inst))
1844 continue;
Ahmed Bougachaae9dade2017-02-23 21:05:42 +00001845
Daniel Sanders3b390402018-10-31 17:31:23 +00001846 OptimizationRemarkMissed R("gisel-irtranslator", "GISelFailure",
1847 Inst.getDebugLoc(), BB);
1848 R << "unable to translate instruction: " << ore::NV("Opcode", &Inst);
Ahmed Bougachad630a922017-09-18 18:50:09 +00001849
Daniel Sanders3b390402018-10-31 17:31:23 +00001850 if (ORE->allowExtraAnalysis("gisel-irtranslator")) {
1851 std::string InstStrStorage;
1852 raw_string_ostream InstStr(InstStrStorage);
1853 InstStr << Inst;
Ahmed Bougachad630a922017-09-18 18:50:09 +00001854
Daniel Sanders3b390402018-10-31 17:31:23 +00001855 R << ": '" << InstStr.str() << "'";
1856 }
1857
1858 reportTranslationError(*MF, *TPC, *ORE, R);
1859 return false;
Ahmed Bougachad630a922017-09-18 18:50:09 +00001860 }
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001861 }
Aditya Nandakumar500e3ea2019-01-16 00:40:37 +00001862#ifndef NDEBUG
1863 WrapperObserver.removeObserver(&Verifier);
1864#endif
Quentin Colombet2ecff3b2016-02-10 22:59:27 +00001865 }
Tim Northover72eebfa2016-07-12 22:23:42 +00001866
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001867 finishPendingPhis();
Tim Northover97d0cb32016-08-05 17:16:40 +00001868
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001869 // Merge the argument lowering and constants block with its single
1870 // successor, the LLVM-IR entry block. We want the basic block to
1871 // be maximal.
1872 assert(EntryBB->succ_size() == 1 &&
1873 "Custom BB used for lowering should have only one successor");
1874 // Get the successor of the current entry block.
1875 MachineBasicBlock &NewEntryBB = **EntryBB->succ_begin();
1876 assert(NewEntryBB.pred_size() == 1 &&
1877 "LLVM-IR entry block has a predecessor!?");
1878 // Move all the instruction from the current entry block to the
1879 // new entry block.
1880 NewEntryBB.splice(NewEntryBB.begin(), EntryBB, EntryBB->begin(),
1881 EntryBB->end());
Quentin Colombet327f9422016-12-15 23:32:25 +00001882
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001883 // Update the live-in information for the new entry block.
1884 for (const MachineBasicBlock::RegisterMaskPair &LiveIn : EntryBB->liveins())
1885 NewEntryBB.addLiveIn(LiveIn);
1886 NewEntryBB.sortUniqueLiveIns();
Quentin Colombet327f9422016-12-15 23:32:25 +00001887
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001888 // Get rid of the now empty basic block.
1889 EntryBB->removeSuccessor(&NewEntryBB);
1890 MF->remove(EntryBB);
1891 MF->DeleteMachineBasicBlock(EntryBB);
Quentin Colombet327f9422016-12-15 23:32:25 +00001892
Ahmed Bougacha4f8dd022017-02-23 23:57:36 +00001893 assert(&MF->front() == &NewEntryBB &&
1894 "New entry wasn't next in the list of basic block!");
Tim Northover800638f2016-12-05 23:10:19 +00001895
Matthias Braun90ad6832018-07-13 00:08:38 +00001896 // Initialize stack protector information.
1897 StackProtector &SP = getAnalysis<StackProtector>();
1898 SP.copyToMachineFrameInfo(MF->getFrameInfo());
1899
Quentin Colombet105cf2b2016-01-20 20:58:56 +00001900 return false;
1901}