blob: afffb9958c85af668821dc1fa8e0354e447b48b2 [file] [log] [blame]
Karl Schimpfe1e013c2014-06-27 09:15:29 -07001//===- subzero/src/IceConverter.cpp - Converts LLVM to Ice ---------------===//
2//
3// The Subzero Code Generator
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM to ICE converter.
11//
12//===----------------------------------------------------------------------===//
13
Jim Stichnotha18cc9c2014-09-30 19:10:22 -070014#include <iostream>
15
16#include "llvm/IR/Constant.h"
17#include "llvm/IR/Constants.h"
18#include "llvm/IR/DataLayout.h"
19#include "llvm/IR/Instruction.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/LLVMContext.h"
22#include "llvm/IR/Module.h"
23
Karl Schimpfe1e013c2014-06-27 09:15:29 -070024#include "IceCfg.h"
25#include "IceCfgNode.h"
Karl Schimpf8d7abae2014-07-07 14:50:30 -070026#include "IceClFlags.h"
Jim Stichnothc4554d72014-09-30 16:49:38 -070027#include "IceConverter.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070028#include "IceDefs.h"
29#include "IceGlobalContext.h"
Karl Schimpfe3f64d02014-10-07 10:38:22 -070030#include "IceGlobalInits.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070031#include "IceInst.h"
32#include "IceOperand.h"
Karl Schimpfb164d202014-07-11 10:26:34 -070033#include "IceTargetLowering.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070034#include "IceTypes.h"
Karl Schimpfd6064a12014-08-27 15:34:58 -070035#include "IceTypeConverter.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070036
Karl Schimpf9d98d792014-10-13 15:01:08 -070037// TODO(kschimpf): Remove two namespaces being visible at once.
Karl Schimpfe1e013c2014-06-27 09:15:29 -070038using namespace llvm;
39
40namespace {
41
42// Debugging helper
43template <typename T> static std::string LLVMObjectAsString(const T *O) {
44 std::string Dump;
45 raw_string_ostream Stream(Dump);
46 O->print(Stream);
47 return Stream.str();
48}
49
Karl Schimpfe3f64d02014-10-07 10:38:22 -070050// Base class for converting LLVM to ICE.
Jim Stichnoth8e928382015-02-02 17:03:08 -080051// TODO(stichnot): Redesign Converter, LLVM2ICEConverter,
52// LLVM2ICEFunctionConverter, and LLVM2ICEGlobalsConverter with
53// respect to Translator. In particular, the unique_ptr ownership
54// rules in LLVM2ICEFunctionConverter.
Karl Schimpfe1e013c2014-06-27 09:15:29 -070055class LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -080056 LLVM2ICEConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070057 LLVM2ICEConverter(const LLVM2ICEConverter &) = delete;
58 LLVM2ICEConverter &operator=(const LLVM2ICEConverter &) = delete;
59
Karl Schimpfe1e013c2014-06-27 09:15:29 -070060public:
Jim Stichnothc6ead202015-02-24 09:30:30 -080061 explicit LLVM2ICEConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -070062 : Converter(Converter), Ctx(Converter.getContext()),
63 TypeConverter(Converter.getModule()->getContext()) {}
64
65 Ice::Converter &getConverter() const { return Converter; }
Karl Schimpfe3f64d02014-10-07 10:38:22 -070066
67protected:
Karl Schimpf9d98d792014-10-13 15:01:08 -070068 Ice::Converter &Converter;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070069 Ice::GlobalContext *Ctx;
70 const Ice::TypeConverter TypeConverter;
71};
72
73// Converter from LLVM functions to ICE. The entry point is the
74// convertFunction method.
75//
76// Note: this currently assumes that the given IR was verified to be
77// valid PNaCl bitcode. Otherwise, the behavior is undefined.
78class LLVM2ICEFunctionConverter : LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -080079 LLVM2ICEFunctionConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070080 LLVM2ICEFunctionConverter(const LLVM2ICEFunctionConverter &) = delete;
81 LLVM2ICEFunctionConverter &
82 operator=(const LLVM2ICEFunctionConverter &) = delete;
83
84public:
Jim Stichnothc6ead202015-02-24 09:30:30 -080085 explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -070086 : LLVM2ICEConverter(Converter), Func(nullptr) {}
Karl Schimpfe1e013c2014-06-27 09:15:29 -070087
Jim Stichnoth8e928382015-02-02 17:03:08 -080088 void convertFunction(const Function *F) {
Jim Stichnothbbca7542015-02-11 16:08:31 -080089 if (Ctx->isIRGenerationDisabled())
90 return;
91 Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber());
Jim Stichnoth8e928382015-02-02 17:03:08 -080092 Ice::Cfg::setCurrentCfg(Func.get());
93
Karl Schimpfe1e013c2014-06-27 09:15:29 -070094 VarMap.clear();
95 NodeMap.clear();
Karl Schimpfe1e013c2014-06-27 09:15:29 -070096 Func->setFunctionName(F->getName());
Karl Schimpfd6064a12014-08-27 15:34:58 -070097 Func->setReturnType(convertToIceType(F->getReturnType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -070098 Func->setInternal(F->hasInternalLinkage());
Jim Stichnoth8e928382015-02-02 17:03:08 -080099 Ice::TimerMarker T(Ice::TimerStack::TT_llvmConvert, Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700100
101 // The initial definition/use of each arg is the entry node.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700102 for (auto ArgI = F->arg_begin(), ArgE = F->arg_end(); ArgI != ArgE;
103 ++ArgI) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700104 Func->addArg(mapValueToIceVar(ArgI));
105 }
106
107 // Make an initial pass through the block list just to resolve the
108 // blocks in the original linearized order. Otherwise the ICE
109 // linearized order will be affected by branch targets in
110 // terminator instructions.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700111 for (const BasicBlock &BBI : *F)
112 mapBasicBlockToNode(&BBI);
113 for (const BasicBlock &BBI : *F)
114 convertBasicBlock(&BBI);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700115 Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock()));
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700116 Func->computeInOutEdges();
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700117
Jim Stichnoth8e928382015-02-02 17:03:08 -0800118 Ice::Cfg::setCurrentCfg(nullptr);
119 Converter.translateFcn(std::move(Func));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700120 }
121
122 // convertConstant() does not use Func or require it to be a valid
123 // Ice::Cfg pointer. As such, it's suitable for e.g. constructing
124 // global initializers.
125 Ice::Constant *convertConstant(const Constant *Const) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700126 if (const auto GV = dyn_cast<GlobalValue>(Const)) {
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700127 Ice::GlobalDeclaration *Decl = getConverter().getGlobalDeclaration(GV);
Jan Voung77973cc2015-02-03 12:48:38 -0800128 bool IsUndefined = false;
129 if (const auto *Func = llvm::dyn_cast<Ice::FunctionDeclaration>(Decl))
130 IsUndefined = Func->isProto();
131 else if (const auto *Var = llvm::dyn_cast<Ice::VariableDeclaration>(Decl))
132 IsUndefined = !Var->hasInitializer();
133 else
134 report_fatal_error("Unhandled GlobalDeclaration type");
135 if (IsUndefined)
136 return Ctx->getConstantExternSym(Decl->getName());
137 else {
138 const Ice::RelocOffsetT Offset = 0;
139 return Ctx->getConstantSym(Offset, Decl->getName(),
140 Decl->getSuppressMangling());
141 }
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700142 } else if (const auto CI = dyn_cast<ConstantInt>(Const)) {
Jan Voungbc004632014-09-16 15:09:10 -0700143 Ice::Type Ty = convertToIceType(CI->getType());
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800144 return Ctx->getConstantInt(Ty, CI->getSExtValue());
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700145 } else if (const auto CFP = dyn_cast<ConstantFP>(Const)) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700146 Ice::Type Type = convertToIceType(CFP->getType());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700147 if (Type == Ice::IceType_f32)
148 return Ctx->getConstantFloat(CFP->getValueAPF().convertToFloat());
149 else if (Type == Ice::IceType_f64)
150 return Ctx->getConstantDouble(CFP->getValueAPF().convertToDouble());
151 llvm_unreachable("Unexpected floating point type");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700152 return nullptr;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700153 } else if (const auto CU = dyn_cast<UndefValue>(Const)) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700154 return Ctx->getConstantUndef(convertToIceType(CU->getType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700155 } else {
156 llvm_unreachable("Unhandled constant type");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700157 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700158 }
159 }
160
161private:
162 // LLVM values (instructions, etc.) are mapped directly to ICE variables.
163 // mapValueToIceVar has a version that forces an ICE type on the variable,
Karl Schimpfd6064a12014-08-27 15:34:58 -0700164 // and a version that just uses convertToIceType on V.
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700165 Ice::Variable *mapValueToIceVar(const Value *V, Ice::Type IceTy) {
166 if (IceTy == Ice::IceType_void)
Karl Schimpf9d98d792014-10-13 15:01:08 -0700167 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700168 if (VarMap.find(V) == VarMap.end()) {
Jim Stichnoth9a04c072014-12-11 15:51:42 -0800169 VarMap[V] = Func->makeVariable(IceTy);
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700170 if (Ice::BuildDefs::dump())
Jim Stichnoth8e928382015-02-02 17:03:08 -0800171 VarMap[V]->setName(Func.get(), V->getName());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700172 }
173 return VarMap[V];
174 }
175
176 Ice::Variable *mapValueToIceVar(const Value *V) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700177 return mapValueToIceVar(V, convertToIceType(V->getType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700178 }
179
180 Ice::CfgNode *mapBasicBlockToNode(const BasicBlock *BB) {
181 if (NodeMap.find(BB) == NodeMap.end()) {
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800182 NodeMap[BB] = Func->makeNode();
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700183 if (Ice::BuildDefs::dump())
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800184 NodeMap[BB]->setName(BB->getName());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700185 }
186 return NodeMap[BB];
187 }
188
Karl Schimpfd6064a12014-08-27 15:34:58 -0700189 Ice::Type convertToIceType(Type *LLVMTy) const {
190 Ice::Type IceTy = TypeConverter.convertToIceType(LLVMTy);
191 if (IceTy == Ice::IceType_NUM)
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700192 report_fatal_error(std::string("Invalid PNaCl type ") +
193 LLVMObjectAsString(LLVMTy));
Karl Schimpfd6064a12014-08-27 15:34:58 -0700194 return IceTy;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700195 }
196
197 // Given an LLVM instruction and an operand number, produce the
198 // Ice::Operand this refers to. If there's no such operand, return
Karl Schimpf9d98d792014-10-13 15:01:08 -0700199 // nullptr.
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700200 Ice::Operand *convertOperand(const Instruction *Inst, unsigned OpNum) {
201 if (OpNum >= Inst->getNumOperands()) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700202 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700203 }
204 const Value *Op = Inst->getOperand(OpNum);
205 return convertValue(Op);
206 }
207
208 Ice::Operand *convertValue(const Value *Op) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700209 if (const auto Const = dyn_cast<Constant>(Op)) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700210 return convertConstant(Const);
211 } else {
212 return mapValueToIceVar(Op);
213 }
214 }
215
216 // Note: this currently assumes a 1x1 mapping between LLVM IR and Ice
217 // instructions.
218 Ice::Inst *convertInstruction(const Instruction *Inst) {
219 switch (Inst->getOpcode()) {
220 case Instruction::PHI:
221 return convertPHINodeInstruction(cast<PHINode>(Inst));
222 case Instruction::Br:
223 return convertBrInstruction(cast<BranchInst>(Inst));
224 case Instruction::Ret:
225 return convertRetInstruction(cast<ReturnInst>(Inst));
226 case Instruction::IntToPtr:
227 return convertIntToPtrInstruction(cast<IntToPtrInst>(Inst));
228 case Instruction::PtrToInt:
229 return convertPtrToIntInstruction(cast<PtrToIntInst>(Inst));
230 case Instruction::ICmp:
231 return convertICmpInstruction(cast<ICmpInst>(Inst));
232 case Instruction::FCmp:
233 return convertFCmpInstruction(cast<FCmpInst>(Inst));
234 case Instruction::Select:
235 return convertSelectInstruction(cast<SelectInst>(Inst));
236 case Instruction::Switch:
237 return convertSwitchInstruction(cast<SwitchInst>(Inst));
238 case Instruction::Load:
239 return convertLoadInstruction(cast<LoadInst>(Inst));
240 case Instruction::Store:
241 return convertStoreInstruction(cast<StoreInst>(Inst));
242 case Instruction::ZExt:
243 return convertCastInstruction(cast<ZExtInst>(Inst), Ice::InstCast::Zext);
244 case Instruction::SExt:
245 return convertCastInstruction(cast<SExtInst>(Inst), Ice::InstCast::Sext);
246 case Instruction::Trunc:
247 return convertCastInstruction(cast<TruncInst>(Inst),
248 Ice::InstCast::Trunc);
249 case Instruction::FPTrunc:
250 return convertCastInstruction(cast<FPTruncInst>(Inst),
251 Ice::InstCast::Fptrunc);
252 case Instruction::FPExt:
253 return convertCastInstruction(cast<FPExtInst>(Inst),
254 Ice::InstCast::Fpext);
255 case Instruction::FPToSI:
256 return convertCastInstruction(cast<FPToSIInst>(Inst),
257 Ice::InstCast::Fptosi);
258 case Instruction::FPToUI:
259 return convertCastInstruction(cast<FPToUIInst>(Inst),
260 Ice::InstCast::Fptoui);
261 case Instruction::SIToFP:
262 return convertCastInstruction(cast<SIToFPInst>(Inst),
263 Ice::InstCast::Sitofp);
264 case Instruction::UIToFP:
265 return convertCastInstruction(cast<UIToFPInst>(Inst),
266 Ice::InstCast::Uitofp);
267 case Instruction::BitCast:
268 return convertCastInstruction(cast<BitCastInst>(Inst),
269 Ice::InstCast::Bitcast);
270 case Instruction::Add:
271 return convertArithInstruction(Inst, Ice::InstArithmetic::Add);
272 case Instruction::Sub:
273 return convertArithInstruction(Inst, Ice::InstArithmetic::Sub);
274 case Instruction::Mul:
275 return convertArithInstruction(Inst, Ice::InstArithmetic::Mul);
276 case Instruction::UDiv:
277 return convertArithInstruction(Inst, Ice::InstArithmetic::Udiv);
278 case Instruction::SDiv:
279 return convertArithInstruction(Inst, Ice::InstArithmetic::Sdiv);
280 case Instruction::URem:
281 return convertArithInstruction(Inst, Ice::InstArithmetic::Urem);
282 case Instruction::SRem:
283 return convertArithInstruction(Inst, Ice::InstArithmetic::Srem);
284 case Instruction::Shl:
285 return convertArithInstruction(Inst, Ice::InstArithmetic::Shl);
286 case Instruction::LShr:
287 return convertArithInstruction(Inst, Ice::InstArithmetic::Lshr);
288 case Instruction::AShr:
289 return convertArithInstruction(Inst, Ice::InstArithmetic::Ashr);
290 case Instruction::FAdd:
291 return convertArithInstruction(Inst, Ice::InstArithmetic::Fadd);
292 case Instruction::FSub:
293 return convertArithInstruction(Inst, Ice::InstArithmetic::Fsub);
294 case Instruction::FMul:
295 return convertArithInstruction(Inst, Ice::InstArithmetic::Fmul);
296 case Instruction::FDiv:
297 return convertArithInstruction(Inst, Ice::InstArithmetic::Fdiv);
298 case Instruction::FRem:
299 return convertArithInstruction(Inst, Ice::InstArithmetic::Frem);
300 case Instruction::And:
301 return convertArithInstruction(Inst, Ice::InstArithmetic::And);
302 case Instruction::Or:
303 return convertArithInstruction(Inst, Ice::InstArithmetic::Or);
304 case Instruction::Xor:
305 return convertArithInstruction(Inst, Ice::InstArithmetic::Xor);
Matt Wala49889232014-07-18 12:45:09 -0700306 case Instruction::ExtractElement:
307 return convertExtractElementInstruction(cast<ExtractElementInst>(Inst));
308 case Instruction::InsertElement:
309 return convertInsertElementInstruction(cast<InsertElementInst>(Inst));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700310 case Instruction::Call:
311 return convertCallInstruction(cast<CallInst>(Inst));
312 case Instruction::Alloca:
313 return convertAllocaInstruction(cast<AllocaInst>(Inst));
314 case Instruction::Unreachable:
315 return convertUnreachableInstruction(cast<UnreachableInst>(Inst));
316 default:
317 report_fatal_error(std::string("Invalid PNaCl instruction: ") +
318 LLVMObjectAsString(Inst));
319 }
320
321 llvm_unreachable("convertInstruction");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700322 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700323 }
324
325 Ice::Inst *convertLoadInstruction(const LoadInst *Inst) {
326 Ice::Operand *Src = convertOperand(Inst, 0);
327 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800328 return Ice::InstLoad::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700329 }
330
331 Ice::Inst *convertStoreInstruction(const StoreInst *Inst) {
332 Ice::Operand *Addr = convertOperand(Inst, 1);
333 Ice::Operand *Val = convertOperand(Inst, 0);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800334 return Ice::InstStore::create(Func.get(), Val, Addr);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700335 }
336
337 Ice::Inst *convertArithInstruction(const Instruction *Inst,
338 Ice::InstArithmetic::OpKind Opcode) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700339 const auto BinOp = cast<BinaryOperator>(Inst);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700340 Ice::Operand *Src0 = convertOperand(Inst, 0);
341 Ice::Operand *Src1 = convertOperand(Inst, 1);
342 Ice::Variable *Dest = mapValueToIceVar(BinOp);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800343 return Ice::InstArithmetic::create(Func.get(), Opcode, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700344 }
345
346 Ice::Inst *convertPHINodeInstruction(const PHINode *Inst) {
347 unsigned NumValues = Inst->getNumIncomingValues();
348 Ice::InstPhi *IcePhi =
Jim Stichnoth8e928382015-02-02 17:03:08 -0800349 Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Inst));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700350 for (unsigned N = 0, E = NumValues; N != E; ++N) {
351 IcePhi->addArgument(convertOperand(Inst, N),
352 mapBasicBlockToNode(Inst->getIncomingBlock(N)));
353 }
354 return IcePhi;
355 }
356
357 Ice::Inst *convertBrInstruction(const BranchInst *Inst) {
358 if (Inst->isConditional()) {
359 Ice::Operand *Src = convertOperand(Inst, 0);
360 BasicBlock *BBThen = Inst->getSuccessor(0);
361 BasicBlock *BBElse = Inst->getSuccessor(1);
362 Ice::CfgNode *NodeThen = mapBasicBlockToNode(BBThen);
363 Ice::CfgNode *NodeElse = mapBasicBlockToNode(BBElse);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800364 return Ice::InstBr::create(Func.get(), Src, NodeThen, NodeElse);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700365 } else {
366 BasicBlock *BBSucc = Inst->getSuccessor(0);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800367 return Ice::InstBr::create(Func.get(), mapBasicBlockToNode(BBSucc));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700368 }
369 }
370
371 Ice::Inst *convertIntToPtrInstruction(const IntToPtrInst *Inst) {
372 Ice::Operand *Src = convertOperand(Inst, 0);
Karl Schimpf4019f082014-12-15 13:45:00 -0800373 Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType());
Jim Stichnoth8e928382015-02-02 17:03:08 -0800374 return Ice::InstAssign::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700375 }
376
377 Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Inst) {
378 Ice::Operand *Src = convertOperand(Inst, 0);
379 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800380 return Ice::InstAssign::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700381 }
382
383 Ice::Inst *convertRetInstruction(const ReturnInst *Inst) {
384 Ice::Operand *RetOperand = convertOperand(Inst, 0);
385 if (RetOperand) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800386 return Ice::InstRet::create(Func.get(), RetOperand);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700387 } else {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800388 return Ice::InstRet::create(Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700389 }
390 }
391
392 Ice::Inst *convertCastInstruction(const Instruction *Inst,
393 Ice::InstCast::OpKind CastKind) {
394 Ice::Operand *Src = convertOperand(Inst, 0);
395 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800396 return Ice::InstCast::create(Func.get(), CastKind, Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700397 }
398
399 Ice::Inst *convertICmpInstruction(const ICmpInst *Inst) {
400 Ice::Operand *Src0 = convertOperand(Inst, 0);
401 Ice::Operand *Src1 = convertOperand(Inst, 1);
402 Ice::Variable *Dest = mapValueToIceVar(Inst);
403
404 Ice::InstIcmp::ICond Cond;
405 switch (Inst->getPredicate()) {
406 default:
407 llvm_unreachable("ICmpInst predicate");
408 case CmpInst::ICMP_EQ:
409 Cond = Ice::InstIcmp::Eq;
410 break;
411 case CmpInst::ICMP_NE:
412 Cond = Ice::InstIcmp::Ne;
413 break;
414 case CmpInst::ICMP_UGT:
415 Cond = Ice::InstIcmp::Ugt;
416 break;
417 case CmpInst::ICMP_UGE:
418 Cond = Ice::InstIcmp::Uge;
419 break;
420 case CmpInst::ICMP_ULT:
421 Cond = Ice::InstIcmp::Ult;
422 break;
423 case CmpInst::ICMP_ULE:
424 Cond = Ice::InstIcmp::Ule;
425 break;
426 case CmpInst::ICMP_SGT:
427 Cond = Ice::InstIcmp::Sgt;
428 break;
429 case CmpInst::ICMP_SGE:
430 Cond = Ice::InstIcmp::Sge;
431 break;
432 case CmpInst::ICMP_SLT:
433 Cond = Ice::InstIcmp::Slt;
434 break;
435 case CmpInst::ICMP_SLE:
436 Cond = Ice::InstIcmp::Sle;
437 break;
438 }
439
Jim Stichnoth8e928382015-02-02 17:03:08 -0800440 return Ice::InstIcmp::create(Func.get(), Cond, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700441 }
442
443 Ice::Inst *convertFCmpInstruction(const FCmpInst *Inst) {
444 Ice::Operand *Src0 = convertOperand(Inst, 0);
445 Ice::Operand *Src1 = convertOperand(Inst, 1);
446 Ice::Variable *Dest = mapValueToIceVar(Inst);
447
448 Ice::InstFcmp::FCond Cond;
449 switch (Inst->getPredicate()) {
450
451 default:
452 llvm_unreachable("FCmpInst predicate");
453
454 case CmpInst::FCMP_FALSE:
455 Cond = Ice::InstFcmp::False;
456 break;
457 case CmpInst::FCMP_OEQ:
458 Cond = Ice::InstFcmp::Oeq;
459 break;
460 case CmpInst::FCMP_OGT:
461 Cond = Ice::InstFcmp::Ogt;
462 break;
463 case CmpInst::FCMP_OGE:
464 Cond = Ice::InstFcmp::Oge;
465 break;
466 case CmpInst::FCMP_OLT:
467 Cond = Ice::InstFcmp::Olt;
468 break;
469 case CmpInst::FCMP_OLE:
470 Cond = Ice::InstFcmp::Ole;
471 break;
472 case CmpInst::FCMP_ONE:
473 Cond = Ice::InstFcmp::One;
474 break;
475 case CmpInst::FCMP_ORD:
476 Cond = Ice::InstFcmp::Ord;
477 break;
478 case CmpInst::FCMP_UEQ:
479 Cond = Ice::InstFcmp::Ueq;
480 break;
481 case CmpInst::FCMP_UGT:
482 Cond = Ice::InstFcmp::Ugt;
483 break;
484 case CmpInst::FCMP_UGE:
485 Cond = Ice::InstFcmp::Uge;
486 break;
487 case CmpInst::FCMP_ULT:
488 Cond = Ice::InstFcmp::Ult;
489 break;
490 case CmpInst::FCMP_ULE:
491 Cond = Ice::InstFcmp::Ule;
492 break;
493 case CmpInst::FCMP_UNE:
494 Cond = Ice::InstFcmp::Une;
495 break;
496 case CmpInst::FCMP_UNO:
497 Cond = Ice::InstFcmp::Uno;
498 break;
499 case CmpInst::FCMP_TRUE:
500 Cond = Ice::InstFcmp::True;
501 break;
502 }
503
Jim Stichnoth8e928382015-02-02 17:03:08 -0800504 return Ice::InstFcmp::create(Func.get(), Cond, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700505 }
506
Matt Wala49889232014-07-18 12:45:09 -0700507 Ice::Inst *convertExtractElementInstruction(const ExtractElementInst *Inst) {
508 Ice::Variable *Dest = mapValueToIceVar(Inst);
509 Ice::Operand *Source1 = convertValue(Inst->getOperand(0));
510 Ice::Operand *Source2 = convertValue(Inst->getOperand(1));
Jim Stichnoth8e928382015-02-02 17:03:08 -0800511 return Ice::InstExtractElement::create(Func.get(), Dest, Source1, Source2);
Matt Wala49889232014-07-18 12:45:09 -0700512 }
513
514 Ice::Inst *convertInsertElementInstruction(const InsertElementInst *Inst) {
515 Ice::Variable *Dest = mapValueToIceVar(Inst);
516 Ice::Operand *Source1 = convertValue(Inst->getOperand(0));
517 Ice::Operand *Source2 = convertValue(Inst->getOperand(1));
518 Ice::Operand *Source3 = convertValue(Inst->getOperand(2));
Jim Stichnoth8e928382015-02-02 17:03:08 -0800519 return Ice::InstInsertElement::create(Func.get(), Dest, Source1, Source2,
Matt Wala49889232014-07-18 12:45:09 -0700520 Source3);
521 }
522
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700523 Ice::Inst *convertSelectInstruction(const SelectInst *Inst) {
524 Ice::Variable *Dest = mapValueToIceVar(Inst);
525 Ice::Operand *Cond = convertValue(Inst->getCondition());
526 Ice::Operand *Source1 = convertValue(Inst->getTrueValue());
527 Ice::Operand *Source2 = convertValue(Inst->getFalseValue());
Jim Stichnoth8e928382015-02-02 17:03:08 -0800528 return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700529 }
530
531 Ice::Inst *convertSwitchInstruction(const SwitchInst *Inst) {
532 Ice::Operand *Source = convertValue(Inst->getCondition());
533 Ice::CfgNode *LabelDefault = mapBasicBlockToNode(Inst->getDefaultDest());
534 unsigned NumCases = Inst->getNumCases();
535 Ice::InstSwitch *Switch =
Jim Stichnoth8e928382015-02-02 17:03:08 -0800536 Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700537 unsigned CurrentCase = 0;
538 for (SwitchInst::ConstCaseIt I = Inst->case_begin(), E = Inst->case_end();
539 I != E; ++I, ++CurrentCase) {
Jim Stichnothcabfa302014-09-03 15:19:12 -0700540 uint64_t CaseValue = I.getCaseValue()->getSExtValue();
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700541 Ice::CfgNode *CaseSuccessor = mapBasicBlockToNode(I.getCaseSuccessor());
542 Switch->addBranch(CurrentCase, CaseValue, CaseSuccessor);
543 }
544 return Switch;
545 }
546
547 Ice::Inst *convertCallInstruction(const CallInst *Inst) {
548 Ice::Variable *Dest = mapValueToIceVar(Inst);
549 Ice::Operand *CallTarget = convertValue(Inst->getCalledValue());
550 unsigned NumArgs = Inst->getNumArgOperands();
551 // Note: Subzero doesn't (yet) do anything special with the Tail
552 // flag in the bitcode, i.e. CallInst::isTailCall().
Karl Schimpf9d98d792014-10-13 15:01:08 -0700553 Ice::InstCall *NewInst = nullptr;
554 const Ice::Intrinsics::FullIntrinsicInfo *Info = nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700555
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700556 if (const auto Target = dyn_cast<Ice::ConstantRelocatable>(CallTarget)) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700557 // Check if this direct call is to an Intrinsic (starts with "llvm.")
Jim Stichnotha67fc442015-03-03 16:13:11 -0800558 bool BadIntrinsic;
559 Info = Ctx->getIntrinsicsInfo().find(Target->getName(), BadIntrinsic);
560 if (BadIntrinsic) {
561 report_fatal_error(std::string("Invalid PNaCl intrinsic call: ") +
562 LLVMObjectAsString(Inst));
563 }
564 if (Info)
Jim Stichnoth8e928382015-02-02 17:03:08 -0800565 NewInst = Ice::InstIntrinsicCall::create(Func.get(), NumArgs, Dest,
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700566 CallTarget, Info->Info);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700567 }
568
569 // Not an intrinsic call.
Karl Schimpf9d98d792014-10-13 15:01:08 -0700570 if (NewInst == nullptr) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800571 NewInst = Ice::InstCall::create(Func.get(), NumArgs, Dest, CallTarget,
Karl Schimpf8df26f32014-09-19 09:33:26 -0700572 Inst->isTailCall());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700573 }
574 for (unsigned i = 0; i < NumArgs; ++i) {
575 NewInst->addArg(convertOperand(Inst, i));
576 }
577 if (Info) {
578 validateIntrinsicCall(NewInst, Info);
579 }
580 return NewInst;
581 }
582
583 Ice::Inst *convertAllocaInstruction(const AllocaInst *Inst) {
584 // PNaCl bitcode only contains allocas of byte-granular objects.
585 Ice::Operand *ByteCount = convertValue(Inst->getArraySize());
586 uint32_t Align = Inst->getAlignment();
Karl Schimpf4019f082014-12-15 13:45:00 -0800587 Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700588
Jim Stichnoth8e928382015-02-02 17:03:08 -0800589 return Ice::InstAlloca::create(Func.get(), ByteCount, Align, Dest);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700590 }
591
592 Ice::Inst *convertUnreachableInstruction(const UnreachableInst * /*Inst*/) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800593 return Ice::InstUnreachable::create(Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700594 }
595
596 Ice::CfgNode *convertBasicBlock(const BasicBlock *BB) {
597 Ice::CfgNode *Node = mapBasicBlockToNode(BB);
Jim Stichnothf44f3712014-10-01 14:05:51 -0700598 for (const Instruction &II : *BB) {
599 Ice::Inst *Inst = convertInstruction(&II);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700600 Node->appendInst(Inst);
601 }
602 return Node;
603 }
604
605 void validateIntrinsicCall(const Ice::InstCall *Call,
606 const Ice::Intrinsics::FullIntrinsicInfo *I) {
Karl Schimpf8df26f32014-09-19 09:33:26 -0700607 Ice::SizeT ArgIndex = 0;
608 switch (I->validateCall(Call, ArgIndex)) {
Karl Schimpf8df26f32014-09-19 09:33:26 -0700609 case Ice::Intrinsics::IsValidCall:
610 break;
611 case Ice::Intrinsics::BadReturnType: {
612 std::string Buffer;
613 raw_string_ostream StrBuf(Buffer);
614 StrBuf << "Intrinsic call expects return type " << I->getReturnType()
615 << ". Found: " << Call->getReturnType();
616 report_fatal_error(StrBuf.str());
617 break;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700618 }
Karl Schimpf8df26f32014-09-19 09:33:26 -0700619 case Ice::Intrinsics::WrongNumOfArgs: {
620 std::string Buffer;
621 raw_string_ostream StrBuf(Buffer);
622 StrBuf << "Intrinsic call expects " << I->getNumArgs()
623 << ". Found: " << Call->getNumArgs();
624 report_fatal_error(StrBuf.str());
625 break;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700626 }
Karl Schimpf8df26f32014-09-19 09:33:26 -0700627 case Ice::Intrinsics::WrongCallArgType: {
628 std::string Buffer;
629 raw_string_ostream StrBuf(Buffer);
630 StrBuf << "Intrinsic call argument " << ArgIndex << " expects type "
631 << I->getArgType(ArgIndex)
632 << ". Found: " << Call->getArg(ArgIndex)->getType();
633 report_fatal_error(StrBuf.str());
634 break;
635 }
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700636 }
637 }
638
639private:
640 // Data
Jim Stichnoth8e928382015-02-02 17:03:08 -0800641 std::unique_ptr<Ice::Cfg> Func;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700642 std::map<const Value *, Ice::Variable *> VarMap;
643 std::map<const BasicBlock *, Ice::CfgNode *> NodeMap;
644};
645
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700646// Converter from LLVM global variables to ICE. The entry point is the
647// convertGlobalsToIce method.
648//
649// Note: this currently assumes that the given IR was verified to be
650// valid PNaCl bitcode. Othewise, the behavior is undefined.
651class LLVM2ICEGlobalsConverter : public LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800652 LLVM2ICEGlobalsConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700653 LLVM2ICEGlobalsConverter(const LLVM2ICEGlobalsConverter &) = delete;
654 LLVM2ICEGlobalsConverter &
655 operator-(const LLVM2ICEGlobalsConverter &) = delete;
656
657public:
Jim Stichnothc6ead202015-02-24 09:30:30 -0800658 explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -0700659 : LLVM2ICEConverter(Converter) {}
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700660
Karl Schimpf9d98d792014-10-13 15:01:08 -0700661 /// Converts global variables, and their initializers into ICE
Jim Stichnothbbca7542015-02-11 16:08:31 -0800662 /// global variable declarations, for module Mod. Returns the set of
663 /// converted declarations.
664 std::unique_ptr<Ice::VariableDeclarationList>
665 convertGlobalsToIce(Module *Mod);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700666
667private:
Karl Schimpf9d98d792014-10-13 15:01:08 -0700668 // Adds the Initializer to the list of initializers for the Global
669 // variable declaraation.
670 void addGlobalInitializer(Ice::VariableDeclaration &Global,
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700671 const Constant *Initializer) {
672 const bool HasOffset = false;
Jan Voungc0d965f2014-11-04 16:55:01 -0800673 const Ice::RelocOffsetT Offset = 0;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700674 addGlobalInitializer(Global, Initializer, HasOffset, Offset);
675 }
676
Karl Schimpf9d98d792014-10-13 15:01:08 -0700677 // Adds Initializer to the list of initializers for Global variable
678 // declaration. HasOffset is true only if Initializer is a
679 // relocation initializer and Offset should be added to the
680 // relocation.
681 void addGlobalInitializer(Ice::VariableDeclaration &Global,
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700682 const Constant *Initializer, bool HasOffset,
Jan Voungc0d965f2014-11-04 16:55:01 -0800683 Ice::RelocOffsetT Offset);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700684
685 // Converts the given constant C to the corresponding integer
686 // literal it contains.
Jan Voungc0d965f2014-11-04 16:55:01 -0800687 Ice::RelocOffsetT getIntegerLiteralConstant(const Value *C) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700688 const auto CI = dyn_cast<ConstantInt>(C);
689 if (CI && CI->getType()->isIntegerTy(32))
690 return CI->getSExtValue();
691
692 std::string Buffer;
693 raw_string_ostream StrBuf(Buffer);
694 StrBuf << "Constant not i32 literal: " << *C;
695 report_fatal_error(StrBuf.str());
696 return 0;
697 }
698};
699
Jim Stichnothbbca7542015-02-11 16:08:31 -0800700std::unique_ptr<Ice::VariableDeclarationList>
701LLVM2ICEGlobalsConverter::convertGlobalsToIce(Module *Mod) {
702 std::unique_ptr<Ice::VariableDeclarationList> VariableDeclarations(
703 new Ice::VariableDeclarationList);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700704 for (Module::const_global_iterator I = Mod->global_begin(),
705 E = Mod->global_end();
706 I != E; ++I) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700707
Karl Schimpf9d98d792014-10-13 15:01:08 -0700708 const GlobalVariable *GV = I;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700709
Karl Schimpf9d98d792014-10-13 15:01:08 -0700710 Ice::GlobalDeclaration *Var = getConverter().getGlobalDeclaration(GV);
Jim Stichnothdd842db2015-01-27 12:53:53 -0800711 Ice::VariableDeclaration *VarDecl = cast<Ice::VariableDeclaration>(Var);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800712 VariableDeclarations->push_back(VarDecl);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700713
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700714 if (!GV->hasInternalLinkage() && GV->hasInitializer()) {
715 std::string Buffer;
716 raw_string_ostream StrBuf(Buffer);
717 StrBuf << "Can't define external global declaration: " << GV->getName();
718 report_fatal_error(StrBuf.str());
719 }
720
721 if (!GV->hasInitializer()) {
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800722 if (Ctx->getFlags().getAllowUninitializedGlobals())
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700723 continue;
724 else {
725 std::string Buffer;
726 raw_string_ostream StrBuf(Buffer);
727 StrBuf << "Global declaration missing initializer: " << GV->getName();
728 report_fatal_error(StrBuf.str());
729 }
730 }
731
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700732 const Constant *Initializer = GV->getInitializer();
733 if (const auto CompoundInit = dyn_cast<ConstantStruct>(Initializer)) {
734 for (ConstantStruct::const_op_iterator I = CompoundInit->op_begin(),
735 E = CompoundInit->op_end();
736 I != E; ++I) {
737 if (const auto Init = dyn_cast<Constant>(I)) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700738 addGlobalInitializer(*VarDecl, Init);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700739 }
740 }
741 } else {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700742 addGlobalInitializer(*VarDecl, Initializer);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700743 }
744 }
Jim Stichnothbbca7542015-02-11 16:08:31 -0800745 return std::move(VariableDeclarations);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700746}
747
748void LLVM2ICEGlobalsConverter::addGlobalInitializer(
Karl Schimpf9d98d792014-10-13 15:01:08 -0700749 Ice::VariableDeclaration &Global, const Constant *Initializer,
Jan Voungc0d965f2014-11-04 16:55:01 -0800750 bool HasOffset, Ice::RelocOffsetT Offset) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700751 (void)HasOffset;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700752 assert(HasOffset || Offset == 0);
753
754 if (const auto CDA = dyn_cast<ConstantDataArray>(Initializer)) {
755 assert(!HasOffset && isa<IntegerType>(CDA->getElementType()) &&
756 (cast<IntegerType>(CDA->getElementType())->getBitWidth() == 8));
John Porto1bec8bc2015-06-22 10:51:13 -0700757 Global.addInitializer(Ice::VariableDeclaration::DataInitializer::create(
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700758 CDA->getRawDataValues().data(), CDA->getNumElements()));
759 return;
760 }
761
762 if (isa<ConstantAggregateZero>(Initializer)) {
763 if (const auto AT = dyn_cast<ArrayType>(Initializer->getType())) {
764 assert(!HasOffset && isa<IntegerType>(AT->getElementType()) &&
765 (cast<IntegerType>(AT->getElementType())->getBitWidth() == 8));
John Porto1bec8bc2015-06-22 10:51:13 -0700766 Global.addInitializer(Ice::VariableDeclaration::ZeroInitializer::create(
767 AT->getNumElements()));
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700768 } else {
769 llvm_unreachable("Unhandled constant aggregate zero type");
770 }
771 return;
772 }
773
774 if (const auto Exp = dyn_cast<ConstantExpr>(Initializer)) {
775 switch (Exp->getOpcode()) {
776 case Instruction::Add:
777 assert(!HasOffset);
778 addGlobalInitializer(Global, Exp->getOperand(0), true,
779 getIntegerLiteralConstant(Exp->getOperand(1)));
780 return;
781 case Instruction::PtrToInt: {
782 assert(TypeConverter.convertToIceType(Exp->getType()) ==
Karl Schimpf4019f082014-12-15 13:45:00 -0800783 Ice::getPointerType());
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700784 const auto GV = dyn_cast<GlobalValue>(Exp->getOperand(0));
785 assert(GV);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700786 const Ice::GlobalDeclaration *Addr =
787 getConverter().getGlobalDeclaration(GV);
788 Global.addInitializer(
John Porto1bec8bc2015-06-22 10:51:13 -0700789 Ice::VariableDeclaration::RelocInitializer::create(Addr, Offset));
Karl Schimpf9d98d792014-10-13 15:01:08 -0700790 return;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700791 }
792 default:
793 break;
794 }
795 }
796
797 std::string Buffer;
798 raw_string_ostream StrBuf(Buffer);
799 StrBuf << "Unhandled global initializer: " << Initializer;
800 report_fatal_error(StrBuf.str());
801}
802
Jim Stichnoth989a7032014-08-08 10:13:44 -0700803} // end of anonymous namespace
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700804
Karl Schimpfb164d202014-07-11 10:26:34 -0700805namespace Ice {
806
Karl Schimpf9d98d792014-10-13 15:01:08 -0700807void Converter::nameUnnamedGlobalVariables(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800808 const IceString &GlobalPrefix = Ctx->getFlags().getDefaultGlobalPrefix();
Karl Schimpf9d98d792014-10-13 15:01:08 -0700809 if (GlobalPrefix.empty())
810 return;
811 uint32_t NameIndex = 0;
Karl Schimpf9d98d792014-10-13 15:01:08 -0700812 for (auto V = Mod->global_begin(), E = Mod->global_end(); V != E; ++V) {
813 if (!V->hasName()) {
814 V->setName(createUnnamedName(GlobalPrefix, NameIndex));
815 ++NameIndex;
816 } else {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800817 checkIfUnnamedNameSafe(V->getName(), "global", GlobalPrefix);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700818 }
819 }
820}
821
822void Converter::nameUnnamedFunctions(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800823 const IceString &FunctionPrefix = Ctx->getFlags().getDefaultFunctionPrefix();
Karl Schimpf9d98d792014-10-13 15:01:08 -0700824 if (FunctionPrefix.empty())
825 return;
826 uint32_t NameIndex = 0;
Karl Schimpf9d98d792014-10-13 15:01:08 -0700827 for (Function &F : *Mod) {
828 if (!F.hasName()) {
829 F.setName(createUnnamedName(FunctionPrefix, NameIndex));
830 ++NameIndex;
831 } else {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800832 checkIfUnnamedNameSafe(F.getName(), "function", FunctionPrefix);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700833 }
834 }
835}
836
Karl Schimpfd6064a12014-08-27 15:34:58 -0700837void Converter::convertToIce() {
Jim Stichnoth8363a062014-10-07 10:02:38 -0700838 TimerMarker T(TimerStack::TT_convertToIce, Ctx);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700839 nameUnnamedGlobalVariables(Mod);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700840 nameUnnamedFunctions(Mod);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700841 installGlobalDeclarations(Mod);
Jim Stichnoth2a063e22014-10-08 11:24:51 -0700842 convertGlobals(Mod);
Karl Schimpfd6064a12014-08-27 15:34:58 -0700843 convertFunctions();
Karl Schimpfb164d202014-07-11 10:26:34 -0700844}
845
Karl Schimpf9d98d792014-10-13 15:01:08 -0700846GlobalDeclaration *Converter::getGlobalDeclaration(const GlobalValue *V) {
847 GlobalDeclarationMapType::const_iterator Pos = GlobalDeclarationMap.find(V);
848 if (Pos == GlobalDeclarationMap.end()) {
849 std::string Buffer;
850 raw_string_ostream StrBuf(Buffer);
851 StrBuf << "Can't find global declaration for: " << V->getName();
852 report_fatal_error(StrBuf.str());
853 }
854 return Pos->second;
855}
856
857void Converter::installGlobalDeclarations(Module *Mod) {
858 const TypeConverter Converter(Mod->getContext());
859 // Install function declarations.
860 for (const Function &Func : *Mod) {
861 FuncSigType Signature;
862 FunctionType *FuncType = Func.getFunctionType();
863 Signature.setReturnType(
864 Converter.convertToIceType(FuncType->getReturnType()));
865 for (size_t I = 0; I < FuncType->getNumParams(); ++I) {
866 Signature.appendArgType(
867 Converter.convertToIceType(FuncType->getParamType(I)));
868 }
869 FunctionDeclaration *IceFunc = FunctionDeclaration::create(
John Porto1bec8bc2015-06-22 10:51:13 -0700870 Ctx, Signature, Func.getCallingConv(), Func.getLinkage(), Func.empty());
Karl Schimpf9d98d792014-10-13 15:01:08 -0700871 IceFunc->setName(Func.getName());
872 GlobalDeclarationMap[&Func] = IceFunc;
873 }
874 // Install global variable declarations.
875 for (Module::const_global_iterator I = Mod->global_begin(),
876 E = Mod->global_end();
877 I != E; ++I) {
878 const GlobalVariable *GV = I;
John Porto1bec8bc2015-06-22 10:51:13 -0700879 VariableDeclaration *Var = VariableDeclaration::create(Ctx);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700880 Var->setName(GV->getName());
881 Var->setAlignment(GV->getAlignment());
882 Var->setIsConstant(GV->isConstant());
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700883 Var->setLinkage(GV->getLinkage());
Karl Schimpf9d98d792014-10-13 15:01:08 -0700884 GlobalDeclarationMap[GV] = Var;
885 }
886}
887
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700888void Converter::convertGlobals(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800889 lowerGlobals(LLVM2ICEGlobalsConverter(*this).convertGlobalsToIce(Mod));
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700890}
891
Karl Schimpfd6064a12014-08-27 15:34:58 -0700892void Converter::convertFunctions() {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800893 const TimerStackIdT StackID = GlobalContext::TSK_Funcs;
Jim Stichnothf44f3712014-10-01 14:05:51 -0700894 for (const Function &I : *Mod) {
895 if (I.empty())
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700896 continue;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700897
Jim Stichnoth8363a062014-10-07 10:02:38 -0700898 TimerIdT TimerID = 0;
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800899 const bool TimeThisFunction = Ctx->getFlags().getTimeEachFunction();
Jim Stichnoth8e928382015-02-02 17:03:08 -0800900 if (TimeThisFunction) {
Jim Stichnoth8363a062014-10-07 10:02:38 -0700901 TimerID = Ctx->getTimerID(StackID, I.getName());
902 Ctx->pushTimer(TimerID, StackID);
903 }
Karl Schimpf9d98d792014-10-13 15:01:08 -0700904 LLVM2ICEFunctionConverter FunctionConverter(*this);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800905 FunctionConverter.convertFunction(&I);
906 if (TimeThisFunction)
Jim Stichnoth8363a062014-10-07 10:02:38 -0700907 Ctx->popTimer(TimerID, StackID);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700908 }
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700909}
Karl Schimpfb164d202014-07-11 10:26:34 -0700910
Jim Stichnoth989a7032014-08-08 10:13:44 -0700911} // end of namespace Ice