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 | //===----------------------------------------------------------------------===// |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
Jim Stichnoth | 92a6e5b | 2015-12-02 16:52:44 -0800 | [diff] [blame] | 11 | /// \brief Implements the LLVM to ICE converter. |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 12 | /// |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 15 | #include "IceConverter.h" |
Jim Stichnoth | a18cc9c | 2014-09-30 19:10:22 -0700 | [diff] [blame] | 16 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 17 | #include "IceCfg.h" |
| 18 | #include "IceCfgNode.h" |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 19 | #include "IceClFlags.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 20 | #include "IceDefs.h" |
| 21 | #include "IceGlobalContext.h" |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 22 | #include "IceGlobalInits.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 23 | #include "IceInst.h" |
| 24 | #include "IceOperand.h" |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 25 | #include "IceTargetLowering.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 26 | #include "IceTypes.h" |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 27 | #include "IceTypeConverter.h" |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 28 | |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame^] | 29 | #ifdef __clang__ |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 30 | #pragma clang diagnostic push |
| 31 | #pragma clang diagnostic ignored "-Wunused-parameter" |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame^] | 32 | #endif // __clang__ |
| 33 | |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 34 | #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 Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame^] | 41 | |
| 42 | #ifdef __clang__ |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 43 | #pragma clang diagnostic pop |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame^] | 44 | #endif // __clang__ |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 45 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 46 | // TODO(kschimpf): Remove two namespaces being visible at once. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 47 | using namespace llvm; |
| 48 | |
| 49 | namespace { |
| 50 | |
| 51 | // Debugging helper |
| 52 | template <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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 59 | // Base class for converting LLVM to ICE. |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 60 | // TODO(stichnot): Redesign Converter, LLVM2ICEConverter, |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 61 | // LLVM2ICEFunctionConverter, and LLVM2ICEGlobalsConverter with respect to |
| 62 | // Translator. In particular, the unique_ptr ownership rules in |
| 63 | // LLVM2ICEFunctionConverter. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 64 | class LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 65 | LLVM2ICEConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 66 | LLVM2ICEConverter(const LLVM2ICEConverter &) = delete; |
| 67 | LLVM2ICEConverter &operator=(const LLVM2ICEConverter &) = delete; |
| 68 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 69 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 70 | explicit LLVM2ICEConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 71 | : Converter(Converter), Ctx(Converter.getContext()), |
| 72 | TypeConverter(Converter.getModule()->getContext()) {} |
| 73 | |
| 74 | Ice::Converter &getConverter() const { return Converter; } |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 75 | |
| 76 | protected: |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 77 | Ice::Converter &Converter; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 78 | Ice::GlobalContext *Ctx; |
| 79 | const Ice::TypeConverter TypeConverter; |
| 80 | }; |
| 81 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 82 | // Converter from LLVM functions to ICE. The entry point is the convertFunction |
| 83 | // method. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 84 | // |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 85 | // Note: this currently assumes that the given IR was verified to be valid |
| 86 | // PNaCl bitcode. Otherwise, the behavior is undefined. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 87 | class LLVM2ICEFunctionConverter : LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 88 | LLVM2ICEFunctionConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 89 | LLVM2ICEFunctionConverter(const LLVM2ICEFunctionConverter &) = delete; |
| 90 | LLVM2ICEFunctionConverter & |
| 91 | operator=(const LLVM2ICEFunctionConverter &) = delete; |
| 92 | |
| 93 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 94 | explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 95 | : LLVM2ICEConverter(Converter), Func(nullptr) {} |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 96 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 97 | void convertFunction(const Function *F) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 98 | Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 99 | Ice::Cfg::setCurrentCfg(Func.get()); |
| 100 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 101 | VarMap.clear(); |
| 102 | NodeMap.clear(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 103 | Func->setFunctionName(F->getName()); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 104 | Func->setReturnType(convertToIceType(F->getReturnType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 105 | Func->setInternal(F->hasInternalLinkage()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 106 | Ice::TimerMarker T(Ice::TimerStack::TT_llvmConvert, Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 107 | |
| 108 | // The initial definition/use of each arg is the entry node. |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 109 | for (auto ArgI = F->arg_begin(), ArgE = F->arg_end(); ArgI != ArgE; |
| 110 | ++ArgI) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 111 | Func->addArg(mapValueToIceVar(ArgI)); |
| 112 | } |
| 113 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 114 | // 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 Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 117 | for (const BasicBlock &BBI : *F) |
| 118 | mapBasicBlockToNode(&BBI); |
| 119 | for (const BasicBlock &BBI : *F) |
| 120 | convertBasicBlock(&BBI); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 121 | Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock())); |
Jim Stichnoth | 69d3f9c | 2015-03-23 10:33:38 -0700 | [diff] [blame] | 122 | Func->computeInOutEdges(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 123 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 124 | Ice::Cfg::setCurrentCfg(nullptr); |
| 125 | Converter.translateFcn(std::move(Func)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 128 | // 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 130 | Ice::Constant *convertConstant(const Constant *Const) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 131 | if (const auto GV = dyn_cast<GlobalValue>(Const)) { |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 132 | Ice::GlobalDeclaration *Decl = getConverter().getGlobalDeclaration(GV); |
Jan Voung | 77973cc | 2015-02-03 12:48:38 -0800 | [diff] [blame] | 133 | 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 147 | } else if (const auto CI = dyn_cast<ConstantInt>(Const)) { |
Jan Voung | bc00463 | 2014-09-16 15:09:10 -0700 | [diff] [blame] | 148 | Ice::Type Ty = convertToIceType(CI->getType()); |
Jim Stichnoth | d2cb436 | 2014-11-20 11:24:42 -0800 | [diff] [blame] | 149 | return Ctx->getConstantInt(Ty, CI->getSExtValue()); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 150 | } else if (const auto CFP = dyn_cast<ConstantFP>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 151 | Ice::Type Type = convertToIceType(CFP->getType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 152 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 157 | return nullptr; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 158 | } else if (const auto CU = dyn_cast<UndefValue>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 159 | return Ctx->getConstantUndef(convertToIceType(CU->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 160 | } else { |
| 161 | llvm_unreachable("Unhandled constant type"); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 162 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
| 166 | private: |
| 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 Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 169 | // and a version that just uses convertToIceType on V. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 170 | Ice::Variable *mapValueToIceVar(const Value *V, Ice::Type IceTy) { |
| 171 | if (IceTy == Ice::IceType_void) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 172 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 173 | if (VarMap.find(V) == VarMap.end()) { |
Jim Stichnoth | 9a04c07 | 2014-12-11 15:51:42 -0800 | [diff] [blame] | 174 | VarMap[V] = Func->makeVariable(IceTy); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 175 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 176 | VarMap[V]->setName(Func.get(), V->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 177 | } |
| 178 | return VarMap[V]; |
| 179 | } |
| 180 | |
| 181 | Ice::Variable *mapValueToIceVar(const Value *V) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 182 | return mapValueToIceVar(V, convertToIceType(V->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | Ice::CfgNode *mapBasicBlockToNode(const BasicBlock *BB) { |
| 186 | if (NodeMap.find(BB) == NodeMap.end()) { |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 187 | NodeMap[BB] = Func->makeNode(); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 188 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 189 | NodeMap[BB]->setName(BB->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 190 | } |
| 191 | return NodeMap[BB]; |
| 192 | } |
| 193 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 194 | Ice::Type convertToIceType(Type *LLVMTy) const { |
| 195 | Ice::Type IceTy = TypeConverter.convertToIceType(LLVMTy); |
| 196 | if (IceTy == Ice::IceType_NUM) |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 197 | report_fatal_error(std::string("Invalid PNaCl type ") + |
| 198 | LLVMObjectAsString(LLVMTy)); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 199 | return IceTy; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 202 | // 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 204 | Ice::Operand *convertOperand(const Instruction *Inst, unsigned OpNum) { |
| 205 | if (OpNum >= Inst->getNumOperands()) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 206 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 207 | } |
| 208 | const Value *Op = Inst->getOperand(OpNum); |
| 209 | return convertValue(Op); |
| 210 | } |
| 211 | |
| 212 | Ice::Operand *convertValue(const Value *Op) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 213 | if (const auto Const = dyn_cast<Constant>(Op)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 214 | 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 Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 310 | case Instruction::ExtractElement: |
| 311 | return convertExtractElementInstruction(cast<ExtractElementInst>(Inst)); |
| 312 | case Instruction::InsertElement: |
| 313 | return convertInsertElementInstruction(cast<InsertElementInst>(Inst)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 314 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 326 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | Ice::Inst *convertLoadInstruction(const LoadInst *Inst) { |
| 330 | Ice::Operand *Src = convertOperand(Inst, 0); |
| 331 | Ice::Variable *Dest = mapValueToIceVar(Inst); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 332 | return Ice::InstLoad::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | Ice::Inst *convertStoreInstruction(const StoreInst *Inst) { |
| 336 | Ice::Operand *Addr = convertOperand(Inst, 1); |
| 337 | Ice::Operand *Val = convertOperand(Inst, 0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 338 | return Ice::InstStore::create(Func.get(), Val, Addr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | Ice::Inst *convertArithInstruction(const Instruction *Inst, |
| 342 | Ice::InstArithmetic::OpKind Opcode) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 343 | const auto BinOp = cast<BinaryOperator>(Inst); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 344 | Ice::Operand *Src0 = convertOperand(Inst, 0); |
| 345 | Ice::Operand *Src1 = convertOperand(Inst, 1); |
| 346 | Ice::Variable *Dest = mapValueToIceVar(BinOp); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 347 | return Ice::InstArithmetic::create(Func.get(), Opcode, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | Ice::Inst *convertPHINodeInstruction(const PHINode *Inst) { |
| 351 | unsigned NumValues = Inst->getNumIncomingValues(); |
| 352 | Ice::InstPhi *IcePhi = |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 353 | Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Inst)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 354 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 368 | return Ice::InstBr::create(Func.get(), Src, NodeThen, NodeElse); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 369 | } else { |
| 370 | BasicBlock *BBSucc = Inst->getSuccessor(0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 371 | return Ice::InstBr::create(Func.get(), mapBasicBlockToNode(BBSucc)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 372 | } |
| 373 | } |
| 374 | |
| 375 | Ice::Inst *convertIntToPtrInstruction(const IntToPtrInst *Inst) { |
| 376 | Ice::Operand *Src = convertOperand(Inst, 0); |
Karl Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 377 | Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 378 | return Ice::InstAssign::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Inst) { |
| 382 | Ice::Operand *Src = convertOperand(Inst, 0); |
| 383 | Ice::Variable *Dest = mapValueToIceVar(Inst); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 384 | return Ice::InstAssign::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | Ice::Inst *convertRetInstruction(const ReturnInst *Inst) { |
| 388 | Ice::Operand *RetOperand = convertOperand(Inst, 0); |
| 389 | if (RetOperand) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 390 | return Ice::InstRet::create(Func.get(), RetOperand); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 391 | } else { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 392 | return Ice::InstRet::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 393 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 400 | return Ice::InstCast::create(Func.get(), CastKind, Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 401 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 444 | return Ice::InstIcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 445 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 508 | return Ice::InstFcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 511 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 515 | return Ice::InstExtractElement::create(Func.get(), Dest, Source1, Source2); |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 516 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 523 | return Ice::InstInsertElement::create(Func.get(), Dest, Source1, Source2, |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 524 | Source3); |
| 525 | } |
| 526 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 527 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 532 | return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 533 | } |
| 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 540 | Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 541 | unsigned CurrentCase = 0; |
| 542 | for (SwitchInst::ConstCaseIt I = Inst->case_begin(), E = Inst->case_end(); |
| 543 | I != E; ++I, ++CurrentCase) { |
Jim Stichnoth | cabfa30 | 2014-09-03 15:19:12 -0700 | [diff] [blame] | 544 | uint64_t CaseValue = I.getCaseValue()->getSExtValue(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 545 | 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 Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 555 | // Note: Subzero doesn't (yet) do anything special with the Tail flag in |
| 556 | // the bitcode, i.e. CallInst::isTailCall(). |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 557 | Ice::InstCall *NewInst = nullptr; |
| 558 | const Ice::Intrinsics::FullIntrinsicInfo *Info = nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 559 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 560 | if (const auto Target = dyn_cast<Ice::ConstantRelocatable>(CallTarget)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 561 | // Check if this direct call is to an Intrinsic (starts with "llvm.") |
Jim Stichnoth | a67fc44 | 2015-03-03 16:13:11 -0800 | [diff] [blame] | 562 | 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 Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 569 | NewInst = Ice::InstIntrinsicCall::create(Func.get(), NumArgs, Dest, |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 570 | CallTarget, Info->Info); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | // Not an intrinsic call. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 574 | if (NewInst == nullptr) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 575 | NewInst = Ice::InstCall::create(Func.get(), NumArgs, Dest, CallTarget, |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 576 | Inst->isTailCall()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 577 | } |
| 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 Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 591 | Ice::Variable *Dest = mapValueToIceVar(Inst, Ice::getPointerType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 592 | |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 593 | return Ice::InstAlloca::create(Func.get(), Dest, ByteCount, Align); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | Ice::Inst *convertUnreachableInstruction(const UnreachableInst * /*Inst*/) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 597 | return Ice::InstUnreachable::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | Ice::CfgNode *convertBasicBlock(const BasicBlock *BB) { |
| 601 | Ice::CfgNode *Node = mapBasicBlockToNode(BB); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 602 | for (const Instruction &II : *BB) { |
| 603 | Ice::Inst *Inst = convertInstruction(&II); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 604 | Node->appendInst(Inst); |
| 605 | } |
| 606 | return Node; |
| 607 | } |
| 608 | |
| 609 | void validateIntrinsicCall(const Ice::InstCall *Call, |
| 610 | const Ice::Intrinsics::FullIntrinsicInfo *I) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 611 | Ice::SizeT ArgIndex = 0; |
| 612 | switch (I->validateCall(Call, ArgIndex)) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 613 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 622 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 623 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 630 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 631 | 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 Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 640 | } |
| 641 | } |
| 642 | |
| 643 | private: |
| 644 | // Data |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 645 | std::unique_ptr<Ice::Cfg> Func; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 646 | std::map<const Value *, Ice::Variable *> VarMap; |
| 647 | std::map<const BasicBlock *, Ice::CfgNode *> NodeMap; |
| 648 | }; |
| 649 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 650 | // Converter from LLVM global variables to ICE. The entry point is the |
| 651 | // convertGlobalsToIce method. |
| 652 | // |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 653 | // Note: this currently assumes that the given IR was verified to be valid |
| 654 | // PNaCl bitcode. Otherwise, the behavior is undefined. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 655 | class LLVM2ICEGlobalsConverter : public LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 656 | LLVM2ICEGlobalsConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 657 | LLVM2ICEGlobalsConverter(const LLVM2ICEGlobalsConverter &) = delete; |
| 658 | LLVM2ICEGlobalsConverter & |
Jim Stichnoth | f4fbf7f | 2015-08-08 08:37:02 -0700 | [diff] [blame] | 659 | operator=(const LLVM2ICEGlobalsConverter &) = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 660 | |
| 661 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 662 | explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 663 | : LLVM2ICEConverter(Converter) {} |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 664 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 665 | /// Converts global variables, and their initializers into ICE global variable |
| 666 | /// declarations, for module Mod. Returns the set of converted declarations. |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 667 | std::unique_ptr<Ice::VariableDeclarationList> |
| 668 | convertGlobalsToIce(Module *Mod); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 669 | |
| 670 | private: |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 671 | // Adds the Initializer to the list of initializers for the Global variable |
| 672 | // declaration. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 673 | void addGlobalInitializer(Ice::VariableDeclaration &Global, |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 674 | const Constant *Initializer) { |
Jim Stichnoth | 5bff61c | 2015-10-28 09:26:00 -0700 | [diff] [blame] | 675 | constexpr bool HasOffset = false; |
| 676 | constexpr Ice::RelocOffsetT Offset = 0; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 677 | addGlobalInitializer(Global, Initializer, HasOffset, Offset); |
| 678 | } |
| 679 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 680 | // Adds Initializer to the list of initializers for Global variable |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 681 | // declaration. HasOffset is true only if Initializer is a relocation |
| 682 | // initializer and Offset should be added to the relocation. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 683 | void addGlobalInitializer(Ice::VariableDeclaration &Global, |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 684 | const Constant *Initializer, bool HasOffset, |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 685 | Ice::RelocOffsetT Offset); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 686 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 687 | // Converts the given constant C to the corresponding integer literal it |
| 688 | // contains. |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 689 | Ice::RelocOffsetT getIntegerLiteralConstant(const Value *C) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 690 | 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 Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 702 | std::unique_ptr<Ice::VariableDeclarationList> |
| 703 | LLVM2ICEGlobalsConverter::convertGlobalsToIce(Module *Mod) { |
| 704 | std::unique_ptr<Ice::VariableDeclarationList> VariableDeclarations( |
| 705 | new Ice::VariableDeclarationList); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 706 | for (Module::const_global_iterator I = Mod->global_begin(), |
| 707 | E = Mod->global_end(); |
| 708 | I != E; ++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 | const GlobalVariable *GV = I; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 711 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 712 | Ice::GlobalDeclaration *Var = getConverter().getGlobalDeclaration(GV); |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 713 | auto *VarDecl = cast<Ice::VariableDeclaration>(Var); |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 714 | VariableDeclarations->push_back(VarDecl); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 715 | |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 716 | 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 Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 724 | if (Ctx->getFlags().getAllowUninitializedGlobals()) |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 725 | 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 Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 734 | 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 Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 740 | addGlobalInitializer(*VarDecl, Init); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | } else { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 744 | addGlobalInitializer(*VarDecl, Initializer); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 745 | } |
| 746 | } |
Andrew Scull | 6ef7949 | 2015-09-09 15:50:42 -0700 | [diff] [blame] | 747 | return VariableDeclarations; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | void LLVM2ICEGlobalsConverter::addGlobalInitializer( |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 751 | Ice::VariableDeclaration &Global, const Constant *Initializer, |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 752 | bool HasOffset, Ice::RelocOffsetT Offset) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 753 | (void)HasOffset; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 754 | 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 759 | Global.addInitializer(Ice::VariableDeclaration::DataInitializer::create( |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 760 | 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 Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 768 | Global.addInitializer(Ice::VariableDeclaration::ZeroInitializer::create( |
| 769 | AT->getNumElements())); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 770 | } 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 Schimpf | 4019f08 | 2014-12-15 13:45:00 -0800 | [diff] [blame] | 785 | Ice::getPointerType()); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 786 | const auto GV = dyn_cast<GlobalValue>(Exp->getOperand(0)); |
| 787 | assert(GV); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 788 | const Ice::GlobalDeclaration *Addr = |
| 789 | getConverter().getGlobalDeclaration(GV); |
| 790 | Global.addInitializer( |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 791 | Ice::VariableDeclaration::RelocInitializer::create(Addr, Offset)); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 792 | return; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 793 | } |
| 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 Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 805 | } // end of anonymous namespace |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 806 | |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 807 | namespace Ice { |
| 808 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 809 | void Converter::nameUnnamedGlobalVariables(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 810 | const IceString &GlobalPrefix = Ctx->getFlags().getDefaultGlobalPrefix(); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 811 | if (GlobalPrefix.empty()) |
| 812 | return; |
| 813 | uint32_t NameIndex = 0; |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 814 | 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 Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 819 | checkIfUnnamedNameSafe(V->getName(), "global", GlobalPrefix); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 820 | } |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | void Converter::nameUnnamedFunctions(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 825 | const IceString &FunctionPrefix = Ctx->getFlags().getDefaultFunctionPrefix(); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 826 | if (FunctionPrefix.empty()) |
| 827 | return; |
| 828 | uint32_t NameIndex = 0; |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 829 | for (Function &F : *Mod) { |
| 830 | if (!F.hasName()) { |
| 831 | F.setName(createUnnamedName(FunctionPrefix, NameIndex)); |
| 832 | ++NameIndex; |
| 833 | } else { |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 834 | checkIfUnnamedNameSafe(F.getName(), "function", FunctionPrefix); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 835 | } |
| 836 | } |
| 837 | } |
| 838 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 839 | void Converter::convertToIce() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 840 | TimerMarker T(TimerStack::TT_convertToIce, Ctx); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 841 | nameUnnamedGlobalVariables(Mod); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 842 | nameUnnamedFunctions(Mod); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 843 | installGlobalDeclarations(Mod); |
Jim Stichnoth | 2a063e2 | 2014-10-08 11:24:51 -0700 | [diff] [blame] | 844 | convertGlobals(Mod); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 845 | convertFunctions(); |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 846 | } |
| 847 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 848 | GlobalDeclaration *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 | |
| 859 | void 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 Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 871 | auto *IceFunc = FunctionDeclaration::create( |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 872 | Ctx, Signature, Func.getCallingConv(), Func.getLinkage(), Func.empty()); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 873 | IceFunc->setName(Func.getName()); |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 874 | 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 Stichnoth | 4e10aa2 | 2015-10-16 13:13:11 -0700 | [diff] [blame] | 879 | if (IceFunc->isExternal()) |
| 880 | StrBuf << "\n Use flag -allow-externally-defined-symbols to override"; |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 881 | report_fatal_error(StrBuf.str()); |
| 882 | } |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 883 | 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 Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 890 | auto *Var = VariableDeclaration::create(Ctx); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 891 | Var->setName(GV->getName()); |
| 892 | Var->setAlignment(GV->getAlignment()); |
| 893 | Var->setIsConstant(GV->isConstant()); |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 894 | Var->setLinkage(GV->getLinkage()); |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 895 | 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 Stichnoth | 4e10aa2 | 2015-10-16 13:13:11 -0700 | [diff] [blame] | 900 | if (Var->isExternal()) |
| 901 | StrBuf << "\n Use flag -allow-externally-defined-symbols to override"; |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 902 | report_fatal_error(StrBuf.str()); |
| 903 | } |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 904 | GlobalDeclarationMap[GV] = Var; |
| 905 | } |
| 906 | } |
| 907 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 908 | void Converter::convertGlobals(Module *Mod) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 909 | lowerGlobals(LLVM2ICEGlobalsConverter(*this).convertGlobalsToIce(Mod)); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 910 | } |
| 911 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 912 | void Converter::convertFunctions() { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 913 | const TimerStackIdT StackID = GlobalContext::TSK_Funcs; |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 914 | for (const Function &I : *Mod) { |
| 915 | if (I.empty()) |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 916 | continue; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 917 | |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 918 | TimerIdT TimerID = 0; |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 919 | const bool TimeThisFunction = Ctx->getFlags().getTimeEachFunction(); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 920 | if (TimeThisFunction) { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 921 | TimerID = Ctx->getTimerID(StackID, I.getName()); |
| 922 | Ctx->pushTimer(TimerID, StackID); |
| 923 | } |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 924 | LLVM2ICEFunctionConverter FunctionConverter(*this); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 925 | FunctionConverter.convertFunction(&I); |
| 926 | if (TimeThisFunction) |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 927 | Ctx->popTimer(TimerID, StackID); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 928 | } |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 929 | } |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 930 | |
Jim Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 931 | } // end of namespace Ice |