Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 1 | //===- 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 Stichnoth | a18cc9c | 2014-09-30 19:10:22 -0700 | [diff] [blame] | 14 | #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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 24 | #include "IceCfg.h" |
| 25 | #include "IceCfgNode.h" |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 26 | #include "IceClFlags.h" |
Jim Stichnoth | c4554d7 | 2014-09-30 16:49:38 -0700 | [diff] [blame] | 27 | #include "IceConverter.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 28 | #include "IceDefs.h" |
| 29 | #include "IceGlobalContext.h" |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 30 | #include "IceGlobalInits.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 31 | #include "IceInst.h" |
| 32 | #include "IceOperand.h" |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 33 | #include "IceTargetLowering.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 34 | #include "IceTypes.h" |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 35 | #include "IceTypeConverter.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 36 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 37 | // TODO(kschimpf): Remove two namespaces being visible at once. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 38 | using namespace llvm; |
| 39 | |
| 40 | namespace { |
| 41 | |
| 42 | // Debugging helper |
| 43 | template <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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 50 | // Base class for converting LLVM to ICE. |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 51 | // 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 55 | class LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 56 | LLVM2ICEConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 57 | LLVM2ICEConverter(const LLVM2ICEConverter &) = delete; |
| 58 | LLVM2ICEConverter &operator=(const LLVM2ICEConverter &) = delete; |
| 59 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 60 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 61 | explicit LLVM2ICEConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 62 | : Converter(Converter), Ctx(Converter.getContext()), |
| 63 | TypeConverter(Converter.getModule()->getContext()) {} |
| 64 | |
| 65 | Ice::Converter &getConverter() const { return Converter; } |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 66 | |
| 67 | protected: |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 68 | Ice::Converter &Converter; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 69 | 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. |
| 78 | class LLVM2ICEFunctionConverter : LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 79 | LLVM2ICEFunctionConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 80 | LLVM2ICEFunctionConverter(const LLVM2ICEFunctionConverter &) = delete; |
| 81 | LLVM2ICEFunctionConverter & |
| 82 | operator=(const LLVM2ICEFunctionConverter &) = delete; |
| 83 | |
| 84 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 85 | explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 86 | : LLVM2ICEConverter(Converter), Func(nullptr) {} |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 87 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 88 | void convertFunction(const Function *F) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 89 | if (Ctx->isIRGenerationDisabled()) |
| 90 | return; |
| 91 | Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 92 | Ice::Cfg::setCurrentCfg(Func.get()); |
| 93 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 94 | VarMap.clear(); |
| 95 | NodeMap.clear(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 96 | Func->setFunctionName(F->getName()); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 97 | Func->setReturnType(convertToIceType(F->getReturnType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 98 | Func->setInternal(F->hasInternalLinkage()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 99 | Ice::TimerMarker T(Ice::TimerStack::TT_llvmConvert, Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 100 | |
| 101 | // The initial definition/use of each arg is the entry node. |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 102 | for (auto ArgI = F->arg_begin(), ArgE = F->arg_end(); ArgI != ArgE; |
| 103 | ++ArgI) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 104 | 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 Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 111 | for (const BasicBlock &BBI : *F) |
| 112 | mapBasicBlockToNode(&BBI); |
| 113 | for (const BasicBlock &BBI : *F) |
| 114 | convertBasicBlock(&BBI); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 115 | Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock())); |
Jim Stichnoth | 69d3f9c | 2015-03-23 10:33:38 -0700 | [diff] [blame] | 116 | Func->computeInOutEdges(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 117 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 118 | Ice::Cfg::setCurrentCfg(nullptr); |
| 119 | Converter.translateFcn(std::move(Func)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 120 | } |
| 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 126 | if (const auto GV = dyn_cast<GlobalValue>(Const)) { |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 127 | Ice::GlobalDeclaration *Decl = getConverter().getGlobalDeclaration(GV); |
Jan Voung | 77973cc | 2015-02-03 12:48:38 -0800 | [diff] [blame] | 128 | 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 142 | } else if (const auto CI = dyn_cast<ConstantInt>(Const)) { |
Jan Voung | bc00463 | 2014-09-16 15:09:10 -0700 | [diff] [blame] | 143 | Ice::Type Ty = convertToIceType(CI->getType()); |
Jim Stichnoth | d2cb436 | 2014-11-20 11:24:42 -0800 | [diff] [blame] | 144 | return Ctx->getConstantInt(Ty, CI->getSExtValue()); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 145 | } else if (const auto CFP = dyn_cast<ConstantFP>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 146 | Ice::Type Type = convertToIceType(CFP->getType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 147 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 152 | return nullptr; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 153 | } else if (const auto CU = dyn_cast<UndefValue>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 154 | return Ctx->getConstantUndef(convertToIceType(CU->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 155 | } else { |
| 156 | llvm_unreachable("Unhandled constant type"); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 157 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 158 | } |
| 159 | } |
| 160 | |
| 161 | private: |
| 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 Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 164 | // and a version that just uses convertToIceType on V. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 165 | Ice::Variable *mapValueToIceVar(const Value *V, Ice::Type IceTy) { |
| 166 | if (IceTy == Ice::IceType_void) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 167 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 168 | if (VarMap.find(V) == VarMap.end()) { |
Jim Stichnoth | 9a04c07 | 2014-12-11 15:51:42 -0800 | [diff] [blame] | 169 | VarMap[V] = Func->makeVariable(IceTy); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame^] | 170 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 171 | VarMap[V]->setName(Func.get(), V->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 172 | } |
| 173 | return VarMap[V]; |
| 174 | } |
| 175 | |
| 176 | Ice::Variable *mapValueToIceVar(const Value *V) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 177 | return mapValueToIceVar(V, convertToIceType(V->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | Ice::CfgNode *mapBasicBlockToNode(const BasicBlock *BB) { |
| 181 | if (NodeMap.find(BB) == NodeMap.end()) { |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 182 | NodeMap[BB] = Func->makeNode(); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame^] | 183 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 184 | NodeMap[BB]->setName(BB->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 185 | } |
| 186 | return NodeMap[BB]; |
| 187 | } |
| 188 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 189 | Ice::Type convertToIceType(Type *LLVMTy) const { |
| 190 | Ice::Type IceTy = TypeConverter.convertToIceType(LLVMTy); |
| 191 | if (IceTy == Ice::IceType_NUM) |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 192 | report_fatal_error(std::string("Invalid PNaCl type ") + |
| 193 | LLVMObjectAsString(LLVMTy)); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 194 | return IceTy; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 195 | } |
| 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 199 | // nullptr. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 200 | Ice::Operand *convertOperand(const Instruction *Inst, unsigned OpNum) { |
| 201 | if (OpNum >= Inst->getNumOperands()) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 202 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 203 | } |
| 204 | const Value *Op = Inst->getOperand(OpNum); |
| 205 | return convertValue(Op); |
| 206 | } |
| 207 | |
| 208 | Ice::Operand *convertValue(const Value *Op) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 209 | if (const auto Const = dyn_cast<Constant>(Op)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 210 | 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 Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 306 | case Instruction::ExtractElement: |
| 307 | return convertExtractElementInstruction(cast<ExtractElementInst>(Inst)); |
| 308 | case Instruction::InsertElement: |
| 309 | return convertInsertElementInstruction(cast<InsertElementInst>(Inst)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 310 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 322 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | Ice::Inst *convertLoadInstruction(const LoadInst *Inst) { |
| 326 | Ice::Operand *Src = convertOperand(Inst, 0); |
| 327 | Ice::Variable *Dest = mapValueToIceVar(Inst); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 328 | return Ice::InstLoad::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | Ice::Inst *convertStoreInstruction(const StoreInst *Inst) { |
| 332 | Ice::Operand *Addr = convertOperand(Inst, 1); |
| 333 | Ice::Operand *Val = convertOperand(Inst, 0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 334 | return Ice::InstStore::create(Func.get(), Val, Addr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | Ice::Inst *convertArithInstruction(const Instruction *Inst, |
| 338 | Ice::InstArithmetic::OpKind Opcode) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 339 | const auto BinOp = cast<BinaryOperator>(Inst); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 340 | Ice::Operand *Src0 = convertOperand(Inst, 0); |
| 341 | Ice::Operand *Src1 = convertOperand(Inst, 1); |
| 342 | Ice::Variable *Dest = mapValueToIceVar(BinOp); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 343 | return Ice::InstArithmetic::create(Func.get(), Opcode, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | Ice::Inst *convertPHINodeInstruction(const PHINode *Inst) { |
| 347 | unsigned NumValues = Inst->getNumIncomingValues(); |
| 348 | Ice::InstPhi *IcePhi = |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 349 | Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Inst)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 350 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 364 | return Ice::InstBr::create(Func.get(), Src, NodeThen, NodeElse); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 365 | } else { |
| 366 | BasicBlock *BBSucc = Inst->getSuccessor(0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 367 | return Ice::InstBr::create(Func.get(), mapBasicBlockToNode(BBSucc)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | |
| 371 | Ice::Inst *convertIntToPtrInstruction(const IntToPtrInst *Inst) { |
| 372 | Ice::Operand *Src = convertOperand(Inst, 0); |
Karl Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 373 | Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 374 | return Ice::InstAssign::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Inst) { |
| 378 | Ice::Operand *Src = convertOperand(Inst, 0); |
| 379 | Ice::Variable *Dest = mapValueToIceVar(Inst); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 380 | return Ice::InstAssign::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | Ice::Inst *convertRetInstruction(const ReturnInst *Inst) { |
| 384 | Ice::Operand *RetOperand = convertOperand(Inst, 0); |
| 385 | if (RetOperand) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 386 | return Ice::InstRet::create(Func.get(), RetOperand); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 387 | } else { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 388 | return Ice::InstRet::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 389 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 396 | return Ice::InstCast::create(Func.get(), CastKind, Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 397 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 440 | return Ice::InstIcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 441 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 504 | return Ice::InstFcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 505 | } |
| 506 | |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 507 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 511 | return Ice::InstExtractElement::create(Func.get(), Dest, Source1, Source2); |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 512 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 519 | return Ice::InstInsertElement::create(Func.get(), Dest, Source1, Source2, |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 520 | Source3); |
| 521 | } |
| 522 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 523 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 528 | return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 529 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 536 | Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 537 | unsigned CurrentCase = 0; |
| 538 | for (SwitchInst::ConstCaseIt I = Inst->case_begin(), E = Inst->case_end(); |
| 539 | I != E; ++I, ++CurrentCase) { |
Jim Stichnoth | cabfa30 | 2014-09-03 15:19:12 -0700 | [diff] [blame] | 540 | uint64_t CaseValue = I.getCaseValue()->getSExtValue(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 541 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 553 | Ice::InstCall *NewInst = nullptr; |
| 554 | const Ice::Intrinsics::FullIntrinsicInfo *Info = nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 555 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 556 | if (const auto Target = dyn_cast<Ice::ConstantRelocatable>(CallTarget)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 557 | // Check if this direct call is to an Intrinsic (starts with "llvm.") |
Jim Stichnoth | a67fc44 | 2015-03-03 16:13:11 -0800 | [diff] [blame] | 558 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 565 | NewInst = Ice::InstIntrinsicCall::create(Func.get(), NumArgs, Dest, |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 566 | CallTarget, Info->Info); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | // Not an intrinsic call. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 570 | if (NewInst == nullptr) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 571 | NewInst = Ice::InstCall::create(Func.get(), NumArgs, Dest, CallTarget, |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 572 | Inst->isTailCall()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 573 | } |
| 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 Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 587 | Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 588 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 589 | return Ice::InstAlloca::create(Func.get(), ByteCount, Align, Dest); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | Ice::Inst *convertUnreachableInstruction(const UnreachableInst * /*Inst*/) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 593 | return Ice::InstUnreachable::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | Ice::CfgNode *convertBasicBlock(const BasicBlock *BB) { |
| 597 | Ice::CfgNode *Node = mapBasicBlockToNode(BB); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 598 | for (const Instruction &II : *BB) { |
| 599 | Ice::Inst *Inst = convertInstruction(&II); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 600 | Node->appendInst(Inst); |
| 601 | } |
| 602 | return Node; |
| 603 | } |
| 604 | |
| 605 | void validateIntrinsicCall(const Ice::InstCall *Call, |
| 606 | const Ice::Intrinsics::FullIntrinsicInfo *I) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 607 | Ice::SizeT ArgIndex = 0; |
| 608 | switch (I->validateCall(Call, ArgIndex)) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 609 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 618 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 619 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 626 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 627 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | |
| 639 | private: |
| 640 | // Data |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 641 | std::unique_ptr<Ice::Cfg> Func; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 642 | std::map<const Value *, Ice::Variable *> VarMap; |
| 643 | std::map<const BasicBlock *, Ice::CfgNode *> NodeMap; |
| 644 | }; |
| 645 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 646 | // 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. |
| 651 | class LLVM2ICEGlobalsConverter : public LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 652 | LLVM2ICEGlobalsConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 653 | LLVM2ICEGlobalsConverter(const LLVM2ICEGlobalsConverter &) = delete; |
| 654 | LLVM2ICEGlobalsConverter & |
| 655 | operator-(const LLVM2ICEGlobalsConverter &) = delete; |
| 656 | |
| 657 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 658 | explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 659 | : LLVM2ICEConverter(Converter) {} |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 660 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 661 | /// Converts global variables, and their initializers into ICE |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 662 | /// global variable declarations, for module Mod. Returns the set of |
| 663 | /// converted declarations. |
| 664 | std::unique_ptr<Ice::VariableDeclarationList> |
| 665 | convertGlobalsToIce(Module *Mod); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 666 | |
| 667 | private: |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 668 | // Adds the Initializer to the list of initializers for the Global |
| 669 | // variable declaraation. |
| 670 | void addGlobalInitializer(Ice::VariableDeclaration &Global, |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 671 | const Constant *Initializer) { |
| 672 | const bool HasOffset = false; |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 673 | const Ice::RelocOffsetT Offset = 0; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 674 | addGlobalInitializer(Global, Initializer, HasOffset, Offset); |
| 675 | } |
| 676 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 677 | // 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 682 | const Constant *Initializer, bool HasOffset, |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 683 | Ice::RelocOffsetT Offset); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 684 | |
| 685 | // Converts the given constant C to the corresponding integer |
| 686 | // literal it contains. |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 687 | Ice::RelocOffsetT getIntegerLiteralConstant(const Value *C) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 688 | 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 Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 700 | std::unique_ptr<Ice::VariableDeclarationList> |
| 701 | LLVM2ICEGlobalsConverter::convertGlobalsToIce(Module *Mod) { |
| 702 | std::unique_ptr<Ice::VariableDeclarationList> VariableDeclarations( |
| 703 | new Ice::VariableDeclarationList); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 704 | for (Module::const_global_iterator I = Mod->global_begin(), |
| 705 | E = Mod->global_end(); |
| 706 | I != E; ++I) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 707 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 708 | const GlobalVariable *GV = I; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 709 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 710 | Ice::GlobalDeclaration *Var = getConverter().getGlobalDeclaration(GV); |
Jim Stichnoth | dd842db | 2015-01-27 12:53:53 -0800 | [diff] [blame] | 711 | Ice::VariableDeclaration *VarDecl = cast<Ice::VariableDeclaration>(Var); |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 712 | VariableDeclarations->push_back(VarDecl); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 713 | |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 714 | 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 Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 722 | if (Ctx->getFlags().getAllowUninitializedGlobals()) |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 723 | 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 732 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 738 | addGlobalInitializer(*VarDecl, Init); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 739 | } |
| 740 | } |
| 741 | } else { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 742 | addGlobalInitializer(*VarDecl, Initializer); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 743 | } |
| 744 | } |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 745 | return std::move(VariableDeclarations); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | void LLVM2ICEGlobalsConverter::addGlobalInitializer( |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 749 | Ice::VariableDeclaration &Global, const Constant *Initializer, |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 750 | bool HasOffset, Ice::RelocOffsetT Offset) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 751 | (void)HasOffset; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 752 | 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 757 | Global.addInitializer(Ice::VariableDeclaration::DataInitializer::create( |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 758 | 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 766 | Global.addInitializer(Ice::VariableDeclaration::ZeroInitializer::create( |
| 767 | AT->getNumElements())); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 768 | } 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 Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 783 | Ice::getPointerType()); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 784 | const auto GV = dyn_cast<GlobalValue>(Exp->getOperand(0)); |
| 785 | assert(GV); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 786 | const Ice::GlobalDeclaration *Addr = |
| 787 | getConverter().getGlobalDeclaration(GV); |
| 788 | Global.addInitializer( |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 789 | Ice::VariableDeclaration::RelocInitializer::create(Addr, Offset)); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 790 | return; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 791 | } |
| 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 Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 803 | } // end of anonymous namespace |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 804 | |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 805 | namespace Ice { |
| 806 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 807 | void Converter::nameUnnamedGlobalVariables(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 808 | const IceString &GlobalPrefix = Ctx->getFlags().getDefaultGlobalPrefix(); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 809 | if (GlobalPrefix.empty()) |
| 810 | return; |
| 811 | uint32_t NameIndex = 0; |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 812 | 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 Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 817 | checkIfUnnamedNameSafe(V->getName(), "global", GlobalPrefix); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 818 | } |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | void Converter::nameUnnamedFunctions(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 823 | const IceString &FunctionPrefix = Ctx->getFlags().getDefaultFunctionPrefix(); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 824 | if (FunctionPrefix.empty()) |
| 825 | return; |
| 826 | uint32_t NameIndex = 0; |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 827 | for (Function &F : *Mod) { |
| 828 | if (!F.hasName()) { |
| 829 | F.setName(createUnnamedName(FunctionPrefix, NameIndex)); |
| 830 | ++NameIndex; |
| 831 | } else { |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 832 | checkIfUnnamedNameSafe(F.getName(), "function", FunctionPrefix); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | } |
| 836 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 837 | void Converter::convertToIce() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 838 | TimerMarker T(TimerStack::TT_convertToIce, Ctx); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 839 | nameUnnamedGlobalVariables(Mod); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 840 | nameUnnamedFunctions(Mod); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 841 | installGlobalDeclarations(Mod); |
Jim Stichnoth | 2a063e2 | 2014-10-08 11:24:51 -0700 | [diff] [blame] | 842 | convertGlobals(Mod); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 843 | convertFunctions(); |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 844 | } |
| 845 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 846 | GlobalDeclaration *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 | |
| 857 | void 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 870 | Ctx, Signature, Func.getCallingConv(), Func.getLinkage(), Func.empty()); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 871 | 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 879 | VariableDeclaration *Var = VariableDeclaration::create(Ctx); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 880 | Var->setName(GV->getName()); |
| 881 | Var->setAlignment(GV->getAlignment()); |
| 882 | Var->setIsConstant(GV->isConstant()); |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 883 | Var->setLinkage(GV->getLinkage()); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 884 | GlobalDeclarationMap[GV] = Var; |
| 885 | } |
| 886 | } |
| 887 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 888 | void Converter::convertGlobals(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 889 | lowerGlobals(LLVM2ICEGlobalsConverter(*this).convertGlobalsToIce(Mod)); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 892 | void Converter::convertFunctions() { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 893 | const TimerStackIdT StackID = GlobalContext::TSK_Funcs; |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 894 | for (const Function &I : *Mod) { |
| 895 | if (I.empty()) |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 896 | continue; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 897 | |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 898 | TimerIdT TimerID = 0; |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 899 | const bool TimeThisFunction = Ctx->getFlags().getTimeEachFunction(); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 900 | if (TimeThisFunction) { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 901 | TimerID = Ctx->getTimerID(StackID, I.getName()); |
| 902 | Ctx->pushTimer(TimerID, StackID); |
| 903 | } |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 904 | LLVM2ICEFunctionConverter FunctionConverter(*this); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 905 | FunctionConverter.convertFunction(&I); |
| 906 | if (TimeThisFunction) |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 907 | Ctx->popTimer(TimerID, StackID); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 908 | } |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 909 | } |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 910 | |
Jim Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 911 | } // end of namespace Ice |