blob: 0907167ae526055b9d7193ca4fb61c482edc69fd [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//===----------------------------------------------------------------------===//
Andrew Scull9612d322015-07-06 14:53:25 -07009///
10/// \file
Jim Stichnoth92a6e5b2015-12-02 16:52:44 -080011/// \brief Implements the LLVM to ICE converter.
Andrew Scull9612d322015-07-06 14:53:25 -070012///
Karl Schimpfe1e013c2014-06-27 09:15:29 -070013//===----------------------------------------------------------------------===//
14
John Porto67f8de92015-06-25 10:14:17 -070015#include "IceConverter.h"
Jim Stichnotha18cc9c2014-09-30 19:10:22 -070016
Karl Schimpfe1e013c2014-06-27 09:15:29 -070017#include "IceCfg.h"
18#include "IceCfgNode.h"
Karl Schimpf8d7abae2014-07-07 14:50:30 -070019#include "IceClFlags.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070020#include "IceDefs.h"
21#include "IceGlobalContext.h"
Karl Schimpfe3f64d02014-10-07 10:38:22 -070022#include "IceGlobalInits.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070023#include "IceInst.h"
24#include "IceOperand.h"
Karl Schimpfb164d202014-07-11 10:26:34 -070025#include "IceTargetLowering.h"
Karl Schimpfe1e013c2014-06-27 09:15:29 -070026#include "IceTypes.h"
Karl Schimpfd6064a12014-08-27 15:34:58 -070027#include "IceTypeConverter.h"
Jim Stichnoth98da9662015-06-27 06:38:08 -070028
Jim Stichnothb0051df2016-01-13 11:39:15 -080029#ifdef __clang__
Jim Stichnoth98da9662015-06-27 06:38:08 -070030#pragma clang diagnostic push
31#pragma clang diagnostic ignored "-Wunused-parameter"
Jim Stichnothb0051df2016-01-13 11:39:15 -080032#endif // __clang__
33
John Porto67f8de92015-06-25 10:14:17 -070034#include "llvm/IR/Constant.h"
35#include "llvm/IR/Constants.h"
36#include "llvm/IR/DataLayout.h"
37#include "llvm/IR/Instruction.h"
38#include "llvm/IR/Instructions.h"
39#include "llvm/IR/LLVMContext.h"
40#include "llvm/IR/Module.h"
Jim Stichnothb0051df2016-01-13 11:39:15 -080041
42#ifdef __clang__
Jim Stichnoth98da9662015-06-27 06:38:08 -070043#pragma clang diagnostic pop
Jim Stichnothb0051df2016-01-13 11:39:15 -080044#endif // __clang__
John Porto67f8de92015-06-25 10:14:17 -070045
Karl Schimpf9d98d792014-10-13 15:01:08 -070046// TODO(kschimpf): Remove two namespaces being visible at once.
Karl Schimpfe1e013c2014-06-27 09:15:29 -070047using namespace llvm;
48
49namespace {
50
51// Debugging helper
52template <typename T> static std::string LLVMObjectAsString(const T *O) {
53 std::string Dump;
54 raw_string_ostream Stream(Dump);
55 O->print(Stream);
56 return Stream.str();
57}
58
Karl Schimpfe3f64d02014-10-07 10:38:22 -070059// Base class for converting LLVM to ICE.
Jim Stichnoth8e928382015-02-02 17:03:08 -080060// TODO(stichnot): Redesign Converter, LLVM2ICEConverter,
Andrew Scull57e12682015-09-16 11:30:19 -070061// LLVM2ICEFunctionConverter, and LLVM2ICEGlobalsConverter with respect to
62// Translator. In particular, the unique_ptr ownership rules in
63// LLVM2ICEFunctionConverter.
Karl Schimpfe1e013c2014-06-27 09:15:29 -070064class LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -080065 LLVM2ICEConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070066 LLVM2ICEConverter(const LLVM2ICEConverter &) = delete;
67 LLVM2ICEConverter &operator=(const LLVM2ICEConverter &) = delete;
68
Karl Schimpfe1e013c2014-06-27 09:15:29 -070069public:
Jim Stichnothc6ead202015-02-24 09:30:30 -080070 explicit LLVM2ICEConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -070071 : Converter(Converter), Ctx(Converter.getContext()),
72 TypeConverter(Converter.getModule()->getContext()) {}
73
74 Ice::Converter &getConverter() const { return Converter; }
Karl Schimpfe3f64d02014-10-07 10:38:22 -070075
76protected:
Karl Schimpf9d98d792014-10-13 15:01:08 -070077 Ice::Converter &Converter;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070078 Ice::GlobalContext *Ctx;
79 const Ice::TypeConverter TypeConverter;
80};
81
Andrew Scull57e12682015-09-16 11:30:19 -070082// Converter from LLVM functions to ICE. The entry point is the convertFunction
83// method.
Karl Schimpfe3f64d02014-10-07 10:38:22 -070084//
Andrew Scull57e12682015-09-16 11:30:19 -070085// Note: this currently assumes that the given IR was verified to be valid
86// PNaCl bitcode. Otherwise, the behavior is undefined.
Karl Schimpfe3f64d02014-10-07 10:38:22 -070087class LLVM2ICEFunctionConverter : LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -080088 LLVM2ICEFunctionConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -070089 LLVM2ICEFunctionConverter(const LLVM2ICEFunctionConverter &) = delete;
90 LLVM2ICEFunctionConverter &
91 operator=(const LLVM2ICEFunctionConverter &) = delete;
92
93public:
Jim Stichnothc6ead202015-02-24 09:30:30 -080094 explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -070095 : LLVM2ICEConverter(Converter), Func(nullptr) {}
Karl Schimpfe1e013c2014-06-27 09:15:29 -070096
Jim Stichnoth8e928382015-02-02 17:03:08 -080097 void convertFunction(const Function *F) {
Jim Stichnothbbca7542015-02-11 16:08:31 -080098 Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber());
Jim Stichnoth8e928382015-02-02 17:03:08 -080099 Ice::Cfg::setCurrentCfg(Func.get());
100
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700101 VarMap.clear();
102 NodeMap.clear();
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700103 Func->setFunctionName(F->getName());
Karl Schimpfd6064a12014-08-27 15:34:58 -0700104 Func->setReturnType(convertToIceType(F->getReturnType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700105 Func->setInternal(F->hasInternalLinkage());
Jim Stichnoth8e928382015-02-02 17:03:08 -0800106 Ice::TimerMarker T(Ice::TimerStack::TT_llvmConvert, Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700107
108 // The initial definition/use of each arg is the entry node.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700109 for (auto ArgI = F->arg_begin(), ArgE = F->arg_end(); ArgI != ArgE;
110 ++ArgI) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700111 Func->addArg(mapValueToIceVar(ArgI));
112 }
113
Andrew Scull57e12682015-09-16 11:30:19 -0700114 // Make an initial pass through the block list just to resolve the blocks
115 // in the original linearized order. Otherwise the ICE linearized order
116 // will be affected by branch targets in terminator instructions.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700117 for (const BasicBlock &BBI : *F)
118 mapBasicBlockToNode(&BBI);
119 for (const BasicBlock &BBI : *F)
120 convertBasicBlock(&BBI);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700121 Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock()));
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700122 Func->computeInOutEdges();
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700123
Jim Stichnoth8e928382015-02-02 17:03:08 -0800124 Ice::Cfg::setCurrentCfg(nullptr);
125 Converter.translateFcn(std::move(Func));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700126 }
127
Andrew Scull57e12682015-09-16 11:30:19 -0700128 // convertConstant() does not use Func or require it to be a valid Ice::Cfg
129 // pointer. As such, it's suitable for e.g. constructing global initializers.
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700130 Ice::Constant *convertConstant(const Constant *Const) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700131 if (const auto GV = dyn_cast<GlobalValue>(Const)) {
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700132 Ice::GlobalDeclaration *Decl = getConverter().getGlobalDeclaration(GV);
Jan Voung77973cc2015-02-03 12:48:38 -0800133 bool IsUndefined = false;
134 if (const auto *Func = llvm::dyn_cast<Ice::FunctionDeclaration>(Decl))
135 IsUndefined = Func->isProto();
136 else if (const auto *Var = llvm::dyn_cast<Ice::VariableDeclaration>(Decl))
137 IsUndefined = !Var->hasInitializer();
138 else
139 report_fatal_error("Unhandled GlobalDeclaration type");
140 if (IsUndefined)
141 return Ctx->getConstantExternSym(Decl->getName());
142 else {
143 const Ice::RelocOffsetT Offset = 0;
144 return Ctx->getConstantSym(Offset, Decl->getName(),
145 Decl->getSuppressMangling());
146 }
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700147 } else if (const auto CI = dyn_cast<ConstantInt>(Const)) {
Jan Voungbc004632014-09-16 15:09:10 -0700148 Ice::Type Ty = convertToIceType(CI->getType());
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800149 return Ctx->getConstantInt(Ty, CI->getSExtValue());
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700150 } else if (const auto CFP = dyn_cast<ConstantFP>(Const)) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700151 Ice::Type Type = convertToIceType(CFP->getType());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700152 if (Type == Ice::IceType_f32)
153 return Ctx->getConstantFloat(CFP->getValueAPF().convertToFloat());
154 else if (Type == Ice::IceType_f64)
155 return Ctx->getConstantDouble(CFP->getValueAPF().convertToDouble());
156 llvm_unreachable("Unexpected floating point type");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700157 return nullptr;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700158 } else if (const auto CU = dyn_cast<UndefValue>(Const)) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700159 return Ctx->getConstantUndef(convertToIceType(CU->getType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700160 } else {
161 llvm_unreachable("Unhandled constant type");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700162 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700163 }
164 }
165
166private:
167 // LLVM values (instructions, etc.) are mapped directly to ICE variables.
168 // mapValueToIceVar has a version that forces an ICE type on the variable,
Karl Schimpfd6064a12014-08-27 15:34:58 -0700169 // and a version that just uses convertToIceType on V.
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700170 Ice::Variable *mapValueToIceVar(const Value *V, Ice::Type IceTy) {
171 if (IceTy == Ice::IceType_void)
Karl Schimpf9d98d792014-10-13 15:01:08 -0700172 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700173 if (VarMap.find(V) == VarMap.end()) {
Jim Stichnoth9a04c072014-12-11 15:51:42 -0800174 VarMap[V] = Func->makeVariable(IceTy);
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700175 if (Ice::BuildDefs::dump())
Jim Stichnoth8e928382015-02-02 17:03:08 -0800176 VarMap[V]->setName(Func.get(), V->getName());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700177 }
178 return VarMap[V];
179 }
180
181 Ice::Variable *mapValueToIceVar(const Value *V) {
Karl Schimpfd6064a12014-08-27 15:34:58 -0700182 return mapValueToIceVar(V, convertToIceType(V->getType()));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700183 }
184
185 Ice::CfgNode *mapBasicBlockToNode(const BasicBlock *BB) {
186 if (NodeMap.find(BB) == NodeMap.end()) {
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800187 NodeMap[BB] = Func->makeNode();
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700188 if (Ice::BuildDefs::dump())
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800189 NodeMap[BB]->setName(BB->getName());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700190 }
191 return NodeMap[BB];
192 }
193
Karl Schimpfd6064a12014-08-27 15:34:58 -0700194 Ice::Type convertToIceType(Type *LLVMTy) const {
195 Ice::Type IceTy = TypeConverter.convertToIceType(LLVMTy);
196 if (IceTy == Ice::IceType_NUM)
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700197 report_fatal_error(std::string("Invalid PNaCl type ") +
198 LLVMObjectAsString(LLVMTy));
Karl Schimpfd6064a12014-08-27 15:34:58 -0700199 return IceTy;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700200 }
201
Andrew Scull57e12682015-09-16 11:30:19 -0700202 // Given an LLVM instruction and an operand number, produce the Ice::Operand
203 // this refers to. If there's no such operand, return nullptr.
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700204 Ice::Operand *convertOperand(const Instruction *Inst, unsigned OpNum) {
205 if (OpNum >= Inst->getNumOperands()) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700206 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700207 }
208 const Value *Op = Inst->getOperand(OpNum);
209 return convertValue(Op);
210 }
211
212 Ice::Operand *convertValue(const Value *Op) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700213 if (const auto Const = dyn_cast<Constant>(Op)) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700214 return convertConstant(Const);
215 } else {
216 return mapValueToIceVar(Op);
217 }
218 }
219
220 // Note: this currently assumes a 1x1 mapping between LLVM IR and Ice
221 // instructions.
222 Ice::Inst *convertInstruction(const Instruction *Inst) {
223 switch (Inst->getOpcode()) {
224 case Instruction::PHI:
225 return convertPHINodeInstruction(cast<PHINode>(Inst));
226 case Instruction::Br:
227 return convertBrInstruction(cast<BranchInst>(Inst));
228 case Instruction::Ret:
229 return convertRetInstruction(cast<ReturnInst>(Inst));
230 case Instruction::IntToPtr:
231 return convertIntToPtrInstruction(cast<IntToPtrInst>(Inst));
232 case Instruction::PtrToInt:
233 return convertPtrToIntInstruction(cast<PtrToIntInst>(Inst));
234 case Instruction::ICmp:
235 return convertICmpInstruction(cast<ICmpInst>(Inst));
236 case Instruction::FCmp:
237 return convertFCmpInstruction(cast<FCmpInst>(Inst));
238 case Instruction::Select:
239 return convertSelectInstruction(cast<SelectInst>(Inst));
240 case Instruction::Switch:
241 return convertSwitchInstruction(cast<SwitchInst>(Inst));
242 case Instruction::Load:
243 return convertLoadInstruction(cast<LoadInst>(Inst));
244 case Instruction::Store:
245 return convertStoreInstruction(cast<StoreInst>(Inst));
246 case Instruction::ZExt:
247 return convertCastInstruction(cast<ZExtInst>(Inst), Ice::InstCast::Zext);
248 case Instruction::SExt:
249 return convertCastInstruction(cast<SExtInst>(Inst), Ice::InstCast::Sext);
250 case Instruction::Trunc:
251 return convertCastInstruction(cast<TruncInst>(Inst),
252 Ice::InstCast::Trunc);
253 case Instruction::FPTrunc:
254 return convertCastInstruction(cast<FPTruncInst>(Inst),
255 Ice::InstCast::Fptrunc);
256 case Instruction::FPExt:
257 return convertCastInstruction(cast<FPExtInst>(Inst),
258 Ice::InstCast::Fpext);
259 case Instruction::FPToSI:
260 return convertCastInstruction(cast<FPToSIInst>(Inst),
261 Ice::InstCast::Fptosi);
262 case Instruction::FPToUI:
263 return convertCastInstruction(cast<FPToUIInst>(Inst),
264 Ice::InstCast::Fptoui);
265 case Instruction::SIToFP:
266 return convertCastInstruction(cast<SIToFPInst>(Inst),
267 Ice::InstCast::Sitofp);
268 case Instruction::UIToFP:
269 return convertCastInstruction(cast<UIToFPInst>(Inst),
270 Ice::InstCast::Uitofp);
271 case Instruction::BitCast:
272 return convertCastInstruction(cast<BitCastInst>(Inst),
273 Ice::InstCast::Bitcast);
274 case Instruction::Add:
275 return convertArithInstruction(Inst, Ice::InstArithmetic::Add);
276 case Instruction::Sub:
277 return convertArithInstruction(Inst, Ice::InstArithmetic::Sub);
278 case Instruction::Mul:
279 return convertArithInstruction(Inst, Ice::InstArithmetic::Mul);
280 case Instruction::UDiv:
281 return convertArithInstruction(Inst, Ice::InstArithmetic::Udiv);
282 case Instruction::SDiv:
283 return convertArithInstruction(Inst, Ice::InstArithmetic::Sdiv);
284 case Instruction::URem:
285 return convertArithInstruction(Inst, Ice::InstArithmetic::Urem);
286 case Instruction::SRem:
287 return convertArithInstruction(Inst, Ice::InstArithmetic::Srem);
288 case Instruction::Shl:
289 return convertArithInstruction(Inst, Ice::InstArithmetic::Shl);
290 case Instruction::LShr:
291 return convertArithInstruction(Inst, Ice::InstArithmetic::Lshr);
292 case Instruction::AShr:
293 return convertArithInstruction(Inst, Ice::InstArithmetic::Ashr);
294 case Instruction::FAdd:
295 return convertArithInstruction(Inst, Ice::InstArithmetic::Fadd);
296 case Instruction::FSub:
297 return convertArithInstruction(Inst, Ice::InstArithmetic::Fsub);
298 case Instruction::FMul:
299 return convertArithInstruction(Inst, Ice::InstArithmetic::Fmul);
300 case Instruction::FDiv:
301 return convertArithInstruction(Inst, Ice::InstArithmetic::Fdiv);
302 case Instruction::FRem:
303 return convertArithInstruction(Inst, Ice::InstArithmetic::Frem);
304 case Instruction::And:
305 return convertArithInstruction(Inst, Ice::InstArithmetic::And);
306 case Instruction::Or:
307 return convertArithInstruction(Inst, Ice::InstArithmetic::Or);
308 case Instruction::Xor:
309 return convertArithInstruction(Inst, Ice::InstArithmetic::Xor);
Matt Wala49889232014-07-18 12:45:09 -0700310 case Instruction::ExtractElement:
311 return convertExtractElementInstruction(cast<ExtractElementInst>(Inst));
312 case Instruction::InsertElement:
313 return convertInsertElementInstruction(cast<InsertElementInst>(Inst));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700314 case Instruction::Call:
315 return convertCallInstruction(cast<CallInst>(Inst));
316 case Instruction::Alloca:
317 return convertAllocaInstruction(cast<AllocaInst>(Inst));
318 case Instruction::Unreachable:
319 return convertUnreachableInstruction(cast<UnreachableInst>(Inst));
320 default:
321 report_fatal_error(std::string("Invalid PNaCl instruction: ") +
322 LLVMObjectAsString(Inst));
323 }
324
325 llvm_unreachable("convertInstruction");
Karl Schimpf9d98d792014-10-13 15:01:08 -0700326 return nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700327 }
328
329 Ice::Inst *convertLoadInstruction(const LoadInst *Inst) {
330 Ice::Operand *Src = convertOperand(Inst, 0);
331 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800332 return Ice::InstLoad::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700333 }
334
335 Ice::Inst *convertStoreInstruction(const StoreInst *Inst) {
336 Ice::Operand *Addr = convertOperand(Inst, 1);
337 Ice::Operand *Val = convertOperand(Inst, 0);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800338 return Ice::InstStore::create(Func.get(), Val, Addr);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700339 }
340
341 Ice::Inst *convertArithInstruction(const Instruction *Inst,
342 Ice::InstArithmetic::OpKind Opcode) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700343 const auto BinOp = cast<BinaryOperator>(Inst);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700344 Ice::Operand *Src0 = convertOperand(Inst, 0);
345 Ice::Operand *Src1 = convertOperand(Inst, 1);
346 Ice::Variable *Dest = mapValueToIceVar(BinOp);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800347 return Ice::InstArithmetic::create(Func.get(), Opcode, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700348 }
349
350 Ice::Inst *convertPHINodeInstruction(const PHINode *Inst) {
351 unsigned NumValues = Inst->getNumIncomingValues();
352 Ice::InstPhi *IcePhi =
Jim Stichnoth8e928382015-02-02 17:03:08 -0800353 Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Inst));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700354 for (unsigned N = 0, E = NumValues; N != E; ++N) {
355 IcePhi->addArgument(convertOperand(Inst, N),
356 mapBasicBlockToNode(Inst->getIncomingBlock(N)));
357 }
358 return IcePhi;
359 }
360
361 Ice::Inst *convertBrInstruction(const BranchInst *Inst) {
362 if (Inst->isConditional()) {
363 Ice::Operand *Src = convertOperand(Inst, 0);
364 BasicBlock *BBThen = Inst->getSuccessor(0);
365 BasicBlock *BBElse = Inst->getSuccessor(1);
366 Ice::CfgNode *NodeThen = mapBasicBlockToNode(BBThen);
367 Ice::CfgNode *NodeElse = mapBasicBlockToNode(BBElse);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800368 return Ice::InstBr::create(Func.get(), Src, NodeThen, NodeElse);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700369 } else {
370 BasicBlock *BBSucc = Inst->getSuccessor(0);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800371 return Ice::InstBr::create(Func.get(), mapBasicBlockToNode(BBSucc));
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700372 }
373 }
374
375 Ice::Inst *convertIntToPtrInstruction(const IntToPtrInst *Inst) {
376 Ice::Operand *Src = convertOperand(Inst, 0);
Karl Schimpf4019f082014-12-15 13:45:00 -0800377 Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType());
Jim Stichnoth8e928382015-02-02 17:03:08 -0800378 return Ice::InstAssign::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700379 }
380
381 Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Inst) {
382 Ice::Operand *Src = convertOperand(Inst, 0);
383 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800384 return Ice::InstAssign::create(Func.get(), Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700385 }
386
387 Ice::Inst *convertRetInstruction(const ReturnInst *Inst) {
388 Ice::Operand *RetOperand = convertOperand(Inst, 0);
389 if (RetOperand) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800390 return Ice::InstRet::create(Func.get(), RetOperand);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700391 } else {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800392 return Ice::InstRet::create(Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700393 }
394 }
395
396 Ice::Inst *convertCastInstruction(const Instruction *Inst,
397 Ice::InstCast::OpKind CastKind) {
398 Ice::Operand *Src = convertOperand(Inst, 0);
399 Ice::Variable *Dest = mapValueToIceVar(Inst);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800400 return Ice::InstCast::create(Func.get(), CastKind, Dest, Src);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700401 }
402
403 Ice::Inst *convertICmpInstruction(const ICmpInst *Inst) {
404 Ice::Operand *Src0 = convertOperand(Inst, 0);
405 Ice::Operand *Src1 = convertOperand(Inst, 1);
406 Ice::Variable *Dest = mapValueToIceVar(Inst);
407
408 Ice::InstIcmp::ICond Cond;
409 switch (Inst->getPredicate()) {
410 default:
411 llvm_unreachable("ICmpInst predicate");
412 case CmpInst::ICMP_EQ:
413 Cond = Ice::InstIcmp::Eq;
414 break;
415 case CmpInst::ICMP_NE:
416 Cond = Ice::InstIcmp::Ne;
417 break;
418 case CmpInst::ICMP_UGT:
419 Cond = Ice::InstIcmp::Ugt;
420 break;
421 case CmpInst::ICMP_UGE:
422 Cond = Ice::InstIcmp::Uge;
423 break;
424 case CmpInst::ICMP_ULT:
425 Cond = Ice::InstIcmp::Ult;
426 break;
427 case CmpInst::ICMP_ULE:
428 Cond = Ice::InstIcmp::Ule;
429 break;
430 case CmpInst::ICMP_SGT:
431 Cond = Ice::InstIcmp::Sgt;
432 break;
433 case CmpInst::ICMP_SGE:
434 Cond = Ice::InstIcmp::Sge;
435 break;
436 case CmpInst::ICMP_SLT:
437 Cond = Ice::InstIcmp::Slt;
438 break;
439 case CmpInst::ICMP_SLE:
440 Cond = Ice::InstIcmp::Sle;
441 break;
442 }
443
Jim Stichnoth8e928382015-02-02 17:03:08 -0800444 return Ice::InstIcmp::create(Func.get(), Cond, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700445 }
446
447 Ice::Inst *convertFCmpInstruction(const FCmpInst *Inst) {
448 Ice::Operand *Src0 = convertOperand(Inst, 0);
449 Ice::Operand *Src1 = convertOperand(Inst, 1);
450 Ice::Variable *Dest = mapValueToIceVar(Inst);
451
452 Ice::InstFcmp::FCond Cond;
453 switch (Inst->getPredicate()) {
454
455 default:
456 llvm_unreachable("FCmpInst predicate");
457
458 case CmpInst::FCMP_FALSE:
459 Cond = Ice::InstFcmp::False;
460 break;
461 case CmpInst::FCMP_OEQ:
462 Cond = Ice::InstFcmp::Oeq;
463 break;
464 case CmpInst::FCMP_OGT:
465 Cond = Ice::InstFcmp::Ogt;
466 break;
467 case CmpInst::FCMP_OGE:
468 Cond = Ice::InstFcmp::Oge;
469 break;
470 case CmpInst::FCMP_OLT:
471 Cond = Ice::InstFcmp::Olt;
472 break;
473 case CmpInst::FCMP_OLE:
474 Cond = Ice::InstFcmp::Ole;
475 break;
476 case CmpInst::FCMP_ONE:
477 Cond = Ice::InstFcmp::One;
478 break;
479 case CmpInst::FCMP_ORD:
480 Cond = Ice::InstFcmp::Ord;
481 break;
482 case CmpInst::FCMP_UEQ:
483 Cond = Ice::InstFcmp::Ueq;
484 break;
485 case CmpInst::FCMP_UGT:
486 Cond = Ice::InstFcmp::Ugt;
487 break;
488 case CmpInst::FCMP_UGE:
489 Cond = Ice::InstFcmp::Uge;
490 break;
491 case CmpInst::FCMP_ULT:
492 Cond = Ice::InstFcmp::Ult;
493 break;
494 case CmpInst::FCMP_ULE:
495 Cond = Ice::InstFcmp::Ule;
496 break;
497 case CmpInst::FCMP_UNE:
498 Cond = Ice::InstFcmp::Une;
499 break;
500 case CmpInst::FCMP_UNO:
501 Cond = Ice::InstFcmp::Uno;
502 break;
503 case CmpInst::FCMP_TRUE:
504 Cond = Ice::InstFcmp::True;
505 break;
506 }
507
Jim Stichnoth8e928382015-02-02 17:03:08 -0800508 return Ice::InstFcmp::create(Func.get(), Cond, Dest, Src0, Src1);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700509 }
510
Matt Wala49889232014-07-18 12:45:09 -0700511 Ice::Inst *convertExtractElementInstruction(const ExtractElementInst *Inst) {
512 Ice::Variable *Dest = mapValueToIceVar(Inst);
513 Ice::Operand *Source1 = convertValue(Inst->getOperand(0));
514 Ice::Operand *Source2 = convertValue(Inst->getOperand(1));
Jim Stichnoth8e928382015-02-02 17:03:08 -0800515 return Ice::InstExtractElement::create(Func.get(), Dest, Source1, Source2);
Matt Wala49889232014-07-18 12:45:09 -0700516 }
517
518 Ice::Inst *convertInsertElementInstruction(const InsertElementInst *Inst) {
519 Ice::Variable *Dest = mapValueToIceVar(Inst);
520 Ice::Operand *Source1 = convertValue(Inst->getOperand(0));
521 Ice::Operand *Source2 = convertValue(Inst->getOperand(1));
522 Ice::Operand *Source3 = convertValue(Inst->getOperand(2));
Jim Stichnoth8e928382015-02-02 17:03:08 -0800523 return Ice::InstInsertElement::create(Func.get(), Dest, Source1, Source2,
Matt Wala49889232014-07-18 12:45:09 -0700524 Source3);
525 }
526
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700527 Ice::Inst *convertSelectInstruction(const SelectInst *Inst) {
528 Ice::Variable *Dest = mapValueToIceVar(Inst);
529 Ice::Operand *Cond = convertValue(Inst->getCondition());
530 Ice::Operand *Source1 = convertValue(Inst->getTrueValue());
531 Ice::Operand *Source2 = convertValue(Inst->getFalseValue());
Jim Stichnoth8e928382015-02-02 17:03:08 -0800532 return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700533 }
534
535 Ice::Inst *convertSwitchInstruction(const SwitchInst *Inst) {
536 Ice::Operand *Source = convertValue(Inst->getCondition());
537 Ice::CfgNode *LabelDefault = mapBasicBlockToNode(Inst->getDefaultDest());
538 unsigned NumCases = Inst->getNumCases();
539 Ice::InstSwitch *Switch =
Jim Stichnoth8e928382015-02-02 17:03:08 -0800540 Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700541 unsigned CurrentCase = 0;
542 for (SwitchInst::ConstCaseIt I = Inst->case_begin(), E = Inst->case_end();
543 I != E; ++I, ++CurrentCase) {
Jim Stichnothcabfa302014-09-03 15:19:12 -0700544 uint64_t CaseValue = I.getCaseValue()->getSExtValue();
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700545 Ice::CfgNode *CaseSuccessor = mapBasicBlockToNode(I.getCaseSuccessor());
546 Switch->addBranch(CurrentCase, CaseValue, CaseSuccessor);
547 }
548 return Switch;
549 }
550
551 Ice::Inst *convertCallInstruction(const CallInst *Inst) {
552 Ice::Variable *Dest = mapValueToIceVar(Inst);
553 Ice::Operand *CallTarget = convertValue(Inst->getCalledValue());
554 unsigned NumArgs = Inst->getNumArgOperands();
Andrew Scull57e12682015-09-16 11:30:19 -0700555 // Note: Subzero doesn't (yet) do anything special with the Tail flag in
556 // the bitcode, i.e. CallInst::isTailCall().
Karl Schimpf9d98d792014-10-13 15:01:08 -0700557 Ice::InstCall *NewInst = nullptr;
558 const Ice::Intrinsics::FullIntrinsicInfo *Info = nullptr;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700559
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700560 if (const auto Target = dyn_cast<Ice::ConstantRelocatable>(CallTarget)) {
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700561 // Check if this direct call is to an Intrinsic (starts with "llvm.")
Jim Stichnotha67fc442015-03-03 16:13:11 -0800562 bool BadIntrinsic;
563 Info = Ctx->getIntrinsicsInfo().find(Target->getName(), BadIntrinsic);
564 if (BadIntrinsic) {
565 report_fatal_error(std::string("Invalid PNaCl intrinsic call: ") +
566 LLVMObjectAsString(Inst));
567 }
568 if (Info)
Jim Stichnoth8e928382015-02-02 17:03:08 -0800569 NewInst = Ice::InstIntrinsicCall::create(Func.get(), NumArgs, Dest,
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700570 CallTarget, Info->Info);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700571 }
572
573 // Not an intrinsic call.
Karl Schimpf9d98d792014-10-13 15:01:08 -0700574 if (NewInst == nullptr) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800575 NewInst = Ice::InstCall::create(Func.get(), NumArgs, Dest, CallTarget,
Karl Schimpf8df26f32014-09-19 09:33:26 -0700576 Inst->isTailCall());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700577 }
578 for (unsigned i = 0; i < NumArgs; ++i) {
579 NewInst->addArg(convertOperand(Inst, i));
580 }
581 if (Info) {
582 validateIntrinsicCall(NewInst, Info);
583 }
584 return NewInst;
585 }
586
587 Ice::Inst *convertAllocaInstruction(const AllocaInst *Inst) {
588 // PNaCl bitcode only contains allocas of byte-granular objects.
589 Ice::Operand *ByteCount = convertValue(Inst->getArraySize());
590 uint32_t Align = Inst->getAlignment();
Karl Schimpf4019f082014-12-15 13:45:00 -0800591 Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700592
David Sehr2f3b8ec2015-11-16 16:51:39 -0800593 return Ice::InstAlloca::create(Func.get(), Dest, ByteCount, Align);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700594 }
595
596 Ice::Inst *convertUnreachableInstruction(const UnreachableInst * /*Inst*/) {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800597 return Ice::InstUnreachable::create(Func.get());
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700598 }
599
600 Ice::CfgNode *convertBasicBlock(const BasicBlock *BB) {
601 Ice::CfgNode *Node = mapBasicBlockToNode(BB);
Jim Stichnothf44f3712014-10-01 14:05:51 -0700602 for (const Instruction &II : *BB) {
603 Ice::Inst *Inst = convertInstruction(&II);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700604 Node->appendInst(Inst);
605 }
606 return Node;
607 }
608
609 void validateIntrinsicCall(const Ice::InstCall *Call,
610 const Ice::Intrinsics::FullIntrinsicInfo *I) {
Karl Schimpf8df26f32014-09-19 09:33:26 -0700611 Ice::SizeT ArgIndex = 0;
612 switch (I->validateCall(Call, ArgIndex)) {
Karl Schimpf8df26f32014-09-19 09:33:26 -0700613 case Ice::Intrinsics::IsValidCall:
614 break;
615 case Ice::Intrinsics::BadReturnType: {
616 std::string Buffer;
617 raw_string_ostream StrBuf(Buffer);
618 StrBuf << "Intrinsic call expects return type " << I->getReturnType()
619 << ". Found: " << Call->getReturnType();
620 report_fatal_error(StrBuf.str());
621 break;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700622 }
Karl Schimpf8df26f32014-09-19 09:33:26 -0700623 case Ice::Intrinsics::WrongNumOfArgs: {
624 std::string Buffer;
625 raw_string_ostream StrBuf(Buffer);
626 StrBuf << "Intrinsic call expects " << I->getNumArgs()
627 << ". Found: " << Call->getNumArgs();
628 report_fatal_error(StrBuf.str());
629 break;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700630 }
Karl Schimpf8df26f32014-09-19 09:33:26 -0700631 case Ice::Intrinsics::WrongCallArgType: {
632 std::string Buffer;
633 raw_string_ostream StrBuf(Buffer);
634 StrBuf << "Intrinsic call argument " << ArgIndex << " expects type "
635 << I->getArgType(ArgIndex)
636 << ". Found: " << Call->getArg(ArgIndex)->getType();
637 report_fatal_error(StrBuf.str());
638 break;
639 }
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700640 }
641 }
642
643private:
644 // Data
Jim Stichnoth8e928382015-02-02 17:03:08 -0800645 std::unique_ptr<Ice::Cfg> Func;
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700646 std::map<const Value *, Ice::Variable *> VarMap;
647 std::map<const BasicBlock *, Ice::CfgNode *> NodeMap;
648};
649
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700650// Converter from LLVM global variables to ICE. The entry point is the
651// convertGlobalsToIce method.
652//
Andrew Scull57e12682015-09-16 11:30:19 -0700653// Note: this currently assumes that the given IR was verified to be valid
654// PNaCl bitcode. Otherwise, the behavior is undefined.
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700655class LLVM2ICEGlobalsConverter : public LLVM2ICEConverter {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800656 LLVM2ICEGlobalsConverter() = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700657 LLVM2ICEGlobalsConverter(const LLVM2ICEGlobalsConverter &) = delete;
658 LLVM2ICEGlobalsConverter &
Jim Stichnothf4fbf7f2015-08-08 08:37:02 -0700659 operator=(const LLVM2ICEGlobalsConverter &) = delete;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700660
661public:
Jim Stichnothc6ead202015-02-24 09:30:30 -0800662 explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter)
Karl Schimpf9d98d792014-10-13 15:01:08 -0700663 : LLVM2ICEConverter(Converter) {}
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700664
Andrew Scull57e12682015-09-16 11:30:19 -0700665 /// Converts global variables, and their initializers into ICE global variable
666 /// declarations, for module Mod. Returns the set of converted declarations.
Jim Stichnothbbca7542015-02-11 16:08:31 -0800667 std::unique_ptr<Ice::VariableDeclarationList>
668 convertGlobalsToIce(Module *Mod);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700669
670private:
Andrew Scull57e12682015-09-16 11:30:19 -0700671 // Adds the Initializer to the list of initializers for the Global variable
672 // declaration.
Karl Schimpf9d98d792014-10-13 15:01:08 -0700673 void addGlobalInitializer(Ice::VariableDeclaration &Global,
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700674 const Constant *Initializer) {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700675 constexpr bool HasOffset = false;
676 constexpr Ice::RelocOffsetT Offset = 0;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700677 addGlobalInitializer(Global, Initializer, HasOffset, Offset);
678 }
679
Karl Schimpf9d98d792014-10-13 15:01:08 -0700680 // Adds Initializer to the list of initializers for Global variable
Andrew Scull57e12682015-09-16 11:30:19 -0700681 // declaration. HasOffset is true only if Initializer is a relocation
682 // initializer and Offset should be added to the relocation.
Karl Schimpf9d98d792014-10-13 15:01:08 -0700683 void addGlobalInitializer(Ice::VariableDeclaration &Global,
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700684 const Constant *Initializer, bool HasOffset,
Jan Voungc0d965f2014-11-04 16:55:01 -0800685 Ice::RelocOffsetT Offset);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700686
Andrew Scull57e12682015-09-16 11:30:19 -0700687 // Converts the given constant C to the corresponding integer literal it
688 // contains.
Jan Voungc0d965f2014-11-04 16:55:01 -0800689 Ice::RelocOffsetT getIntegerLiteralConstant(const Value *C) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700690 const auto CI = dyn_cast<ConstantInt>(C);
691 if (CI && CI->getType()->isIntegerTy(32))
692 return CI->getSExtValue();
693
694 std::string Buffer;
695 raw_string_ostream StrBuf(Buffer);
696 StrBuf << "Constant not i32 literal: " << *C;
697 report_fatal_error(StrBuf.str());
698 return 0;
699 }
700};
701
Jim Stichnothbbca7542015-02-11 16:08:31 -0800702std::unique_ptr<Ice::VariableDeclarationList>
703LLVM2ICEGlobalsConverter::convertGlobalsToIce(Module *Mod) {
704 std::unique_ptr<Ice::VariableDeclarationList> VariableDeclarations(
705 new Ice::VariableDeclarationList);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700706 for (Module::const_global_iterator I = Mod->global_begin(),
707 E = Mod->global_end();
708 I != E; ++I) {
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700709
Karl Schimpf9d98d792014-10-13 15:01:08 -0700710 const GlobalVariable *GV = I;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700711
Karl Schimpf9d98d792014-10-13 15:01:08 -0700712 Ice::GlobalDeclaration *Var = getConverter().getGlobalDeclaration(GV);
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800713 auto *VarDecl = cast<Ice::VariableDeclaration>(Var);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800714 VariableDeclarations->push_back(VarDecl);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700715
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700716 if (!GV->hasInternalLinkage() && GV->hasInitializer()) {
717 std::string Buffer;
718 raw_string_ostream StrBuf(Buffer);
719 StrBuf << "Can't define external global declaration: " << GV->getName();
720 report_fatal_error(StrBuf.str());
721 }
722
723 if (!GV->hasInitializer()) {
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800724 if (Ctx->getFlags().getAllowUninitializedGlobals())
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700725 continue;
726 else {
727 std::string Buffer;
728 raw_string_ostream StrBuf(Buffer);
729 StrBuf << "Global declaration missing initializer: " << GV->getName();
730 report_fatal_error(StrBuf.str());
731 }
732 }
733
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700734 const Constant *Initializer = GV->getInitializer();
735 if (const auto CompoundInit = dyn_cast<ConstantStruct>(Initializer)) {
736 for (ConstantStruct::const_op_iterator I = CompoundInit->op_begin(),
737 E = CompoundInit->op_end();
738 I != E; ++I) {
739 if (const auto Init = dyn_cast<Constant>(I)) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700740 addGlobalInitializer(*VarDecl, Init);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700741 }
742 }
743 } else {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700744 addGlobalInitializer(*VarDecl, Initializer);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700745 }
746 }
Andrew Scull6ef79492015-09-09 15:50:42 -0700747 return VariableDeclarations;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700748}
749
750void LLVM2ICEGlobalsConverter::addGlobalInitializer(
Karl Schimpf9d98d792014-10-13 15:01:08 -0700751 Ice::VariableDeclaration &Global, const Constant *Initializer,
Jan Voungc0d965f2014-11-04 16:55:01 -0800752 bool HasOffset, Ice::RelocOffsetT Offset) {
Karl Schimpf9d98d792014-10-13 15:01:08 -0700753 (void)HasOffset;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700754 assert(HasOffset || Offset == 0);
755
756 if (const auto CDA = dyn_cast<ConstantDataArray>(Initializer)) {
757 assert(!HasOffset && isa<IntegerType>(CDA->getElementType()) &&
758 (cast<IntegerType>(CDA->getElementType())->getBitWidth() == 8));
John Porto1bec8bc2015-06-22 10:51:13 -0700759 Global.addInitializer(Ice::VariableDeclaration::DataInitializer::create(
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700760 CDA->getRawDataValues().data(), CDA->getNumElements()));
761 return;
762 }
763
764 if (isa<ConstantAggregateZero>(Initializer)) {
765 if (const auto AT = dyn_cast<ArrayType>(Initializer->getType())) {
766 assert(!HasOffset && isa<IntegerType>(AT->getElementType()) &&
767 (cast<IntegerType>(AT->getElementType())->getBitWidth() == 8));
John Porto1bec8bc2015-06-22 10:51:13 -0700768 Global.addInitializer(Ice::VariableDeclaration::ZeroInitializer::create(
769 AT->getNumElements()));
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700770 } else {
771 llvm_unreachable("Unhandled constant aggregate zero type");
772 }
773 return;
774 }
775
776 if (const auto Exp = dyn_cast<ConstantExpr>(Initializer)) {
777 switch (Exp->getOpcode()) {
778 case Instruction::Add:
779 assert(!HasOffset);
780 addGlobalInitializer(Global, Exp->getOperand(0), true,
781 getIntegerLiteralConstant(Exp->getOperand(1)));
782 return;
783 case Instruction::PtrToInt: {
784 assert(TypeConverter.convertToIceType(Exp->getType()) ==
Karl Schimpf4019f082014-12-15 13:45:00 -0800785 Ice::getPointerType());
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700786 const auto GV = dyn_cast<GlobalValue>(Exp->getOperand(0));
787 assert(GV);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700788 const Ice::GlobalDeclaration *Addr =
789 getConverter().getGlobalDeclaration(GV);
790 Global.addInitializer(
John Porto1bec8bc2015-06-22 10:51:13 -0700791 Ice::VariableDeclaration::RelocInitializer::create(Addr, Offset));
Karl Schimpf9d98d792014-10-13 15:01:08 -0700792 return;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700793 }
794 default:
795 break;
796 }
797 }
798
799 std::string Buffer;
800 raw_string_ostream StrBuf(Buffer);
801 StrBuf << "Unhandled global initializer: " << Initializer;
802 report_fatal_error(StrBuf.str());
803}
804
Jim Stichnoth989a7032014-08-08 10:13:44 -0700805} // end of anonymous namespace
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700806
Karl Schimpfb164d202014-07-11 10:26:34 -0700807namespace Ice {
808
Karl Schimpf9d98d792014-10-13 15:01:08 -0700809void Converter::nameUnnamedGlobalVariables(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800810 const IceString &GlobalPrefix = Ctx->getFlags().getDefaultGlobalPrefix();
Karl Schimpf9d98d792014-10-13 15:01:08 -0700811 if (GlobalPrefix.empty())
812 return;
813 uint32_t NameIndex = 0;
Karl Schimpf9d98d792014-10-13 15:01:08 -0700814 for (auto V = Mod->global_begin(), E = Mod->global_end(); V != E; ++V) {
815 if (!V->hasName()) {
816 V->setName(createUnnamedName(GlobalPrefix, NameIndex));
817 ++NameIndex;
818 } else {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800819 checkIfUnnamedNameSafe(V->getName(), "global", GlobalPrefix);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700820 }
821 }
822}
823
824void Converter::nameUnnamedFunctions(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800825 const IceString &FunctionPrefix = Ctx->getFlags().getDefaultFunctionPrefix();
Karl Schimpf9d98d792014-10-13 15:01:08 -0700826 if (FunctionPrefix.empty())
827 return;
828 uint32_t NameIndex = 0;
Karl Schimpf9d98d792014-10-13 15:01:08 -0700829 for (Function &F : *Mod) {
830 if (!F.hasName()) {
831 F.setName(createUnnamedName(FunctionPrefix, NameIndex));
832 ++NameIndex;
833 } else {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800834 checkIfUnnamedNameSafe(F.getName(), "function", FunctionPrefix);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700835 }
836 }
837}
838
Karl Schimpfd6064a12014-08-27 15:34:58 -0700839void Converter::convertToIce() {
Jim Stichnoth8363a062014-10-07 10:02:38 -0700840 TimerMarker T(TimerStack::TT_convertToIce, Ctx);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700841 nameUnnamedGlobalVariables(Mod);
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700842 nameUnnamedFunctions(Mod);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700843 installGlobalDeclarations(Mod);
Jim Stichnoth2a063e22014-10-08 11:24:51 -0700844 convertGlobals(Mod);
Karl Schimpfd6064a12014-08-27 15:34:58 -0700845 convertFunctions();
Karl Schimpfb164d202014-07-11 10:26:34 -0700846}
847
Karl Schimpf9d98d792014-10-13 15:01:08 -0700848GlobalDeclaration *Converter::getGlobalDeclaration(const GlobalValue *V) {
849 GlobalDeclarationMapType::const_iterator Pos = GlobalDeclarationMap.find(V);
850 if (Pos == GlobalDeclarationMap.end()) {
851 std::string Buffer;
852 raw_string_ostream StrBuf(Buffer);
853 StrBuf << "Can't find global declaration for: " << V->getName();
854 report_fatal_error(StrBuf.str());
855 }
856 return Pos->second;
857}
858
859void Converter::installGlobalDeclarations(Module *Mod) {
860 const TypeConverter Converter(Mod->getContext());
861 // Install function declarations.
862 for (const Function &Func : *Mod) {
863 FuncSigType Signature;
864 FunctionType *FuncType = Func.getFunctionType();
865 Signature.setReturnType(
866 Converter.convertToIceType(FuncType->getReturnType()));
867 for (size_t I = 0; I < FuncType->getNumParams(); ++I) {
868 Signature.appendArgType(
869 Converter.convertToIceType(FuncType->getParamType(I)));
870 }
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800871 auto *IceFunc = FunctionDeclaration::create(
John Porto1bec8bc2015-06-22 10:51:13 -0700872 Ctx, Signature, Func.getCallingConv(), Func.getLinkage(), Func.empty());
Karl Schimpf9d98d792014-10-13 15:01:08 -0700873 IceFunc->setName(Func.getName());
Karl Schimpf57d31ac2015-10-07 09:53:12 -0700874 if (!IceFunc->verifyLinkageCorrect(Ctx)) {
875 std::string Buffer;
876 raw_string_ostream StrBuf(Buffer);
877 StrBuf << "Function " << IceFunc->getName()
878 << " has incorrect linkage: " << IceFunc->getLinkageName();
Jim Stichnoth4e10aa22015-10-16 13:13:11 -0700879 if (IceFunc->isExternal())
880 StrBuf << "\n Use flag -allow-externally-defined-symbols to override";
Karl Schimpf57d31ac2015-10-07 09:53:12 -0700881 report_fatal_error(StrBuf.str());
882 }
Karl Schimpf9d98d792014-10-13 15:01:08 -0700883 GlobalDeclarationMap[&Func] = IceFunc;
884 }
885 // Install global variable declarations.
886 for (Module::const_global_iterator I = Mod->global_begin(),
887 E = Mod->global_end();
888 I != E; ++I) {
889 const GlobalVariable *GV = I;
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800890 auto *Var = VariableDeclaration::create(Ctx);
Karl Schimpf9d98d792014-10-13 15:01:08 -0700891 Var->setName(GV->getName());
892 Var->setAlignment(GV->getAlignment());
893 Var->setIsConstant(GV->isConstant());
Karl Schimpfdf6f9d12014-10-20 14:09:00 -0700894 Var->setLinkage(GV->getLinkage());
Karl Schimpf57d31ac2015-10-07 09:53:12 -0700895 if (!Var->verifyLinkageCorrect(Ctx)) {
896 std::string Buffer;
897 raw_string_ostream StrBuf(Buffer);
898 StrBuf << "Global " << Var->getName()
899 << " has incorrect linkage: " << Var->getLinkageName();
Jim Stichnoth4e10aa22015-10-16 13:13:11 -0700900 if (Var->isExternal())
901 StrBuf << "\n Use flag -allow-externally-defined-symbols to override";
Karl Schimpf57d31ac2015-10-07 09:53:12 -0700902 report_fatal_error(StrBuf.str());
903 }
Karl Schimpf9d98d792014-10-13 15:01:08 -0700904 GlobalDeclarationMap[GV] = Var;
905 }
906}
907
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700908void Converter::convertGlobals(Module *Mod) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800909 lowerGlobals(LLVM2ICEGlobalsConverter(*this).convertGlobalsToIce(Mod));
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700910}
911
Karl Schimpfd6064a12014-08-27 15:34:58 -0700912void Converter::convertFunctions() {
Jim Stichnoth8e928382015-02-02 17:03:08 -0800913 const TimerStackIdT StackID = GlobalContext::TSK_Funcs;
Jim Stichnothf44f3712014-10-01 14:05:51 -0700914 for (const Function &I : *Mod) {
915 if (I.empty())
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700916 continue;
Karl Schimpfe3f64d02014-10-07 10:38:22 -0700917
Jim Stichnoth8363a062014-10-07 10:02:38 -0700918 TimerIdT TimerID = 0;
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800919 const bool TimeThisFunction = Ctx->getFlags().getTimeEachFunction();
Jim Stichnoth8e928382015-02-02 17:03:08 -0800920 if (TimeThisFunction) {
Jim Stichnoth8363a062014-10-07 10:02:38 -0700921 TimerID = Ctx->getTimerID(StackID, I.getName());
922 Ctx->pushTimer(TimerID, StackID);
923 }
Karl Schimpf9d98d792014-10-13 15:01:08 -0700924 LLVM2ICEFunctionConverter FunctionConverter(*this);
Jim Stichnoth8e928382015-02-02 17:03:08 -0800925 FunctionConverter.convertFunction(&I);
926 if (TimeThisFunction)
Jim Stichnoth8363a062014-10-07 10:02:38 -0700927 Ctx->popTimer(TimerID, StackID);
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700928 }
Karl Schimpfe1e013c2014-06-27 09:15:29 -0700929}
Karl Schimpfb164d202014-07-11 10:26:34 -0700930
Jim Stichnoth989a7032014-08-08 10:13:44 -0700931} // end of namespace Ice