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" |
Jim Stichnoth | 98ba006 | 2016-03-07 09:26:22 -0800 | [diff] [blame] | 24 | #include "IceMangling.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 25 | #include "IceOperand.h" |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 26 | #include "IceTargetLowering.h" |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 27 | #include "IceTypes.h" |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 28 | #include "IceTypeConverter.h" |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 29 | |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame] | 30 | #ifdef __clang__ |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 31 | #pragma clang diagnostic push |
| 32 | #pragma clang diagnostic ignored "-Wunused-parameter" |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame] | 33 | #endif // __clang__ |
| 34 | |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 35 | #include "llvm/IR/Constant.h" |
| 36 | #include "llvm/IR/Constants.h" |
| 37 | #include "llvm/IR/DataLayout.h" |
| 38 | #include "llvm/IR/Instruction.h" |
| 39 | #include "llvm/IR/Instructions.h" |
| 40 | #include "llvm/IR/LLVMContext.h" |
| 41 | #include "llvm/IR/Module.h" |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame] | 42 | |
| 43 | #ifdef __clang__ |
Jim Stichnoth | 98da966 | 2015-06-27 06:38:08 -0700 | [diff] [blame] | 44 | #pragma clang diagnostic pop |
Jim Stichnoth | b0051df | 2016-01-13 11:39:15 -0800 | [diff] [blame] | 45 | #endif // __clang__ |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 46 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 47 | // TODO(kschimpf): Remove two namespaces being visible at once. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 48 | using namespace llvm; |
| 49 | |
| 50 | namespace { |
| 51 | |
| 52 | // Debugging helper |
| 53 | template <typename T> static std::string LLVMObjectAsString(const T *O) { |
| 54 | std::string Dump; |
| 55 | raw_string_ostream Stream(Dump); |
| 56 | O->print(Stream); |
| 57 | return Stream.str(); |
| 58 | } |
| 59 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 60 | // Base class for converting LLVM to ICE. |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 61 | // TODO(stichnot): Redesign Converter, LLVM2ICEConverter, |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 62 | // LLVM2ICEFunctionConverter, and LLVM2ICEGlobalsConverter with respect to |
| 63 | // Translator. In particular, the unique_ptr ownership rules in |
| 64 | // LLVM2ICEFunctionConverter. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 65 | class LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 66 | LLVM2ICEConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 67 | LLVM2ICEConverter(const LLVM2ICEConverter &) = delete; |
| 68 | LLVM2ICEConverter &operator=(const LLVM2ICEConverter &) = delete; |
| 69 | |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 70 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 71 | explicit LLVM2ICEConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 72 | : Converter(Converter), Ctx(Converter.getContext()), |
| 73 | TypeConverter(Converter.getModule()->getContext()) {} |
| 74 | |
| 75 | Ice::Converter &getConverter() const { return Converter; } |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 76 | |
| 77 | protected: |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 78 | Ice::Converter &Converter; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 79 | Ice::GlobalContext *Ctx; |
| 80 | const Ice::TypeConverter TypeConverter; |
| 81 | }; |
| 82 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 83 | // Converter from LLVM functions to ICE. The entry point is the convertFunction |
| 84 | // method. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 85 | // |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 86 | // Note: this currently assumes that the given IR was verified to be valid |
| 87 | // PNaCl bitcode. Otherwise, the behavior is undefined. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 88 | class LLVM2ICEFunctionConverter : LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 89 | LLVM2ICEFunctionConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 90 | LLVM2ICEFunctionConverter(const LLVM2ICEFunctionConverter &) = delete; |
| 91 | LLVM2ICEFunctionConverter & |
| 92 | operator=(const LLVM2ICEFunctionConverter &) = delete; |
| 93 | |
| 94 | public: |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 95 | explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 96 | : LLVM2ICEConverter(Converter), Func(nullptr) {} |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 97 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 98 | void convertFunction(const Function *F) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 99 | Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber()); |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 100 | { |
| 101 | Ice::CfgLocalAllocatorScope _(Func.get()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 102 | |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 103 | VarMap.clear(); |
| 104 | NodeMap.clear(); |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 105 | Func->setFunctionName( |
| 106 | Ctx->getGlobalString(Ice::mangleName(F->getName()))); |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 107 | Func->setReturnType(convertToIceType(F->getReturnType())); |
| 108 | Func->setInternal(F->hasInternalLinkage()); |
| 109 | Ice::TimerMarker T(Ice::TimerStack::TT_llvmConvert, Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 110 | |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 111 | // The initial definition/use of each arg is the entry node. |
| 112 | for (auto ArgI = F->arg_begin(), ArgE = F->arg_end(); ArgI != ArgE; |
| 113 | ++ArgI) { |
Jim Stichnoth | f5fdd23 | 2016-05-09 12:24:36 -0700 | [diff] [blame^] | 114 | Func->addArg(mapValueToIceVar(&*ArgI)); |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | // Make an initial pass through the block list just to resolve the blocks |
| 118 | // in the original linearized order. Otherwise the ICE linearized order |
| 119 | // will be affected by branch targets in terminator instructions. |
| 120 | for (const BasicBlock &BBI : *F) |
| 121 | mapBasicBlockToNode(&BBI); |
| 122 | for (const BasicBlock &BBI : *F) |
| 123 | convertBasicBlock(&BBI); |
| 124 | Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock())); |
| 125 | Func->computeInOutEdges(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 126 | } |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 127 | Converter.translateFcn(std::move(Func)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 130 | // convertConstant() does not use Func or require it to be a valid Ice::Cfg |
| 131 | // pointer. As such, it's suitable for e.g. constructing global initializers. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 132 | Ice::Constant *convertConstant(const Constant *Const) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 133 | if (const auto GV = dyn_cast<GlobalValue>(Const)) { |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 134 | Ice::GlobalDeclaration *Decl = getConverter().getGlobalDeclaration(GV); |
Jan Voung | 77973cc | 2015-02-03 12:48:38 -0800 | [diff] [blame] | 135 | bool IsUndefined = false; |
| 136 | if (const auto *Func = llvm::dyn_cast<Ice::FunctionDeclaration>(Decl)) |
| 137 | IsUndefined = Func->isProto(); |
| 138 | else if (const auto *Var = llvm::dyn_cast<Ice::VariableDeclaration>(Decl)) |
| 139 | IsUndefined = !Var->hasInitializer(); |
| 140 | else |
| 141 | report_fatal_error("Unhandled GlobalDeclaration type"); |
| 142 | if (IsUndefined) |
| 143 | return Ctx->getConstantExternSym(Decl->getName()); |
| 144 | else { |
| 145 | const Ice::RelocOffsetT Offset = 0; |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 146 | return Ctx->getConstantSym( |
| 147 | Offset, Ctx->getGlobalString(Decl->getName().toString())); |
Jan Voung | 77973cc | 2015-02-03 12:48:38 -0800 | [diff] [blame] | 148 | } |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 149 | } else if (const auto CI = dyn_cast<ConstantInt>(Const)) { |
Jan Voung | bc00463 | 2014-09-16 15:09:10 -0700 | [diff] [blame] | 150 | Ice::Type Ty = convertToIceType(CI->getType()); |
Jim Stichnoth | d2cb436 | 2014-11-20 11:24:42 -0800 | [diff] [blame] | 151 | return Ctx->getConstantInt(Ty, CI->getSExtValue()); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 152 | } else if (const auto CFP = dyn_cast<ConstantFP>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 153 | Ice::Type Type = convertToIceType(CFP->getType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 154 | if (Type == Ice::IceType_f32) |
| 155 | return Ctx->getConstantFloat(CFP->getValueAPF().convertToFloat()); |
| 156 | else if (Type == Ice::IceType_f64) |
| 157 | return Ctx->getConstantDouble(CFP->getValueAPF().convertToDouble()); |
| 158 | llvm_unreachable("Unexpected floating point type"); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 159 | return nullptr; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 160 | } else if (const auto CU = dyn_cast<UndefValue>(Const)) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 161 | return Ctx->getConstantUndef(convertToIceType(CU->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 162 | } else { |
| 163 | llvm_unreachable("Unhandled constant type"); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 164 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
| 168 | private: |
| 169 | // LLVM values (instructions, etc.) are mapped directly to ICE variables. |
| 170 | // mapValueToIceVar has a version that forces an ICE type on the variable, |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 171 | // and a version that just uses convertToIceType on V. |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 172 | Ice::Variable *mapValueToIceVar(const Value *V, Ice::Type IceTy) { |
| 173 | if (IceTy == Ice::IceType_void) |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 174 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 175 | if (VarMap.find(V) == VarMap.end()) { |
Jim Stichnoth | 9a04c07 | 2014-12-11 15:51:42 -0800 | [diff] [blame] | 176 | VarMap[V] = Func->makeVariable(IceTy); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 177 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 178 | VarMap[V]->setName(Func.get(), V->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 179 | } |
| 180 | return VarMap[V]; |
| 181 | } |
| 182 | |
| 183 | Ice::Variable *mapValueToIceVar(const Value *V) { |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 184 | return mapValueToIceVar(V, convertToIceType(V->getType())); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | Ice::CfgNode *mapBasicBlockToNode(const BasicBlock *BB) { |
| 188 | if (NodeMap.find(BB) == NodeMap.end()) { |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 189 | NodeMap[BB] = Func->makeNode(); |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 190 | if (Ice::BuildDefs::dump()) |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 191 | NodeMap[BB]->setName(BB->getName()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 192 | } |
| 193 | return NodeMap[BB]; |
| 194 | } |
| 195 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 196 | Ice::Type convertToIceType(Type *LLVMTy) const { |
| 197 | Ice::Type IceTy = TypeConverter.convertToIceType(LLVMTy); |
| 198 | if (IceTy == Ice::IceType_NUM) |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 199 | report_fatal_error(std::string("Invalid PNaCl type ") + |
| 200 | LLVMObjectAsString(LLVMTy)); |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 201 | return IceTy; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 204 | // Given an LLVM instruction and an operand number, produce the Ice::Operand |
| 205 | // this refers to. If there's no such operand, return nullptr. |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 206 | Ice::Operand *convertOperand(const Instruction *Instr, unsigned OpNum) { |
| 207 | if (OpNum >= Instr->getNumOperands()) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 208 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 209 | } |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 210 | const Value *Op = Instr->getOperand(OpNum); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 211 | return convertValue(Op); |
| 212 | } |
| 213 | |
| 214 | Ice::Operand *convertValue(const Value *Op) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 215 | if (const auto Const = dyn_cast<Constant>(Op)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 216 | return convertConstant(Const); |
| 217 | } else { |
| 218 | return mapValueToIceVar(Op); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | // Note: this currently assumes a 1x1 mapping between LLVM IR and Ice |
| 223 | // instructions. |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 224 | Ice::Inst *convertInstruction(const Instruction *Instr) { |
| 225 | switch (Instr->getOpcode()) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 226 | case Instruction::PHI: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 227 | return convertPHINodeInstruction(cast<PHINode>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 228 | case Instruction::Br: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 229 | return convertBrInstruction(cast<BranchInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 230 | case Instruction::Ret: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 231 | return convertRetInstruction(cast<ReturnInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 232 | case Instruction::IntToPtr: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 233 | return convertIntToPtrInstruction(cast<IntToPtrInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 234 | case Instruction::PtrToInt: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 235 | return convertPtrToIntInstruction(cast<PtrToIntInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 236 | case Instruction::ICmp: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 237 | return convertICmpInstruction(cast<ICmpInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 238 | case Instruction::FCmp: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 239 | return convertFCmpInstruction(cast<FCmpInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 240 | case Instruction::Select: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 241 | return convertSelectInstruction(cast<SelectInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 242 | case Instruction::Switch: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 243 | return convertSwitchInstruction(cast<SwitchInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 244 | case Instruction::Load: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 245 | return convertLoadInstruction(cast<LoadInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 246 | case Instruction::Store: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 247 | return convertStoreInstruction(cast<StoreInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 248 | case Instruction::ZExt: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 249 | return convertCastInstruction(cast<ZExtInst>(Instr), Ice::InstCast::Zext); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 250 | case Instruction::SExt: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 251 | return convertCastInstruction(cast<SExtInst>(Instr), Ice::InstCast::Sext); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 252 | case Instruction::Trunc: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 253 | return convertCastInstruction(cast<TruncInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 254 | Ice::InstCast::Trunc); |
| 255 | case Instruction::FPTrunc: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 256 | return convertCastInstruction(cast<FPTruncInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 257 | Ice::InstCast::Fptrunc); |
| 258 | case Instruction::FPExt: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 259 | return convertCastInstruction(cast<FPExtInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 260 | Ice::InstCast::Fpext); |
| 261 | case Instruction::FPToSI: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 262 | return convertCastInstruction(cast<FPToSIInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 263 | Ice::InstCast::Fptosi); |
| 264 | case Instruction::FPToUI: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 265 | return convertCastInstruction(cast<FPToUIInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 266 | Ice::InstCast::Fptoui); |
| 267 | case Instruction::SIToFP: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 268 | return convertCastInstruction(cast<SIToFPInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 269 | Ice::InstCast::Sitofp); |
| 270 | case Instruction::UIToFP: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 271 | return convertCastInstruction(cast<UIToFPInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 272 | Ice::InstCast::Uitofp); |
| 273 | case Instruction::BitCast: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 274 | return convertCastInstruction(cast<BitCastInst>(Instr), |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 275 | Ice::InstCast::Bitcast); |
| 276 | case Instruction::Add: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 277 | return convertArithInstruction(Instr, Ice::InstArithmetic::Add); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 278 | case Instruction::Sub: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 279 | return convertArithInstruction(Instr, Ice::InstArithmetic::Sub); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 280 | case Instruction::Mul: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 281 | return convertArithInstruction(Instr, Ice::InstArithmetic::Mul); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 282 | case Instruction::UDiv: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 283 | return convertArithInstruction(Instr, Ice::InstArithmetic::Udiv); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 284 | case Instruction::SDiv: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 285 | return convertArithInstruction(Instr, Ice::InstArithmetic::Sdiv); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 286 | case Instruction::URem: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 287 | return convertArithInstruction(Instr, Ice::InstArithmetic::Urem); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 288 | case Instruction::SRem: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 289 | return convertArithInstruction(Instr, Ice::InstArithmetic::Srem); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 290 | case Instruction::Shl: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 291 | return convertArithInstruction(Instr, Ice::InstArithmetic::Shl); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 292 | case Instruction::LShr: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 293 | return convertArithInstruction(Instr, Ice::InstArithmetic::Lshr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 294 | case Instruction::AShr: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 295 | return convertArithInstruction(Instr, Ice::InstArithmetic::Ashr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 296 | case Instruction::FAdd: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 297 | return convertArithInstruction(Instr, Ice::InstArithmetic::Fadd); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 298 | case Instruction::FSub: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 299 | return convertArithInstruction(Instr, Ice::InstArithmetic::Fsub); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 300 | case Instruction::FMul: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 301 | return convertArithInstruction(Instr, Ice::InstArithmetic::Fmul); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 302 | case Instruction::FDiv: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 303 | return convertArithInstruction(Instr, Ice::InstArithmetic::Fdiv); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 304 | case Instruction::FRem: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 305 | return convertArithInstruction(Instr, Ice::InstArithmetic::Frem); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 306 | case Instruction::And: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 307 | return convertArithInstruction(Instr, Ice::InstArithmetic::And); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 308 | case Instruction::Or: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 309 | return convertArithInstruction(Instr, Ice::InstArithmetic::Or); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 310 | case Instruction::Xor: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 311 | return convertArithInstruction(Instr, Ice::InstArithmetic::Xor); |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 312 | case Instruction::ExtractElement: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 313 | return convertExtractElementInstruction(cast<ExtractElementInst>(Instr)); |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 314 | case Instruction::InsertElement: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 315 | return convertInsertElementInstruction(cast<InsertElementInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 316 | case Instruction::Call: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 317 | return convertCallInstruction(cast<CallInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 318 | case Instruction::Alloca: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 319 | return convertAllocaInstruction(cast<AllocaInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 320 | case Instruction::Unreachable: |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 321 | return convertUnreachableInstruction(cast<UnreachableInst>(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 322 | default: |
| 323 | report_fatal_error(std::string("Invalid PNaCl instruction: ") + |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 324 | LLVMObjectAsString(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | llvm_unreachable("convertInstruction"); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 328 | return nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 331 | Ice::Inst *convertLoadInstruction(const LoadInst *Instr) { |
| 332 | Ice::Operand *Src = convertOperand(Instr, 0); |
| 333 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 334 | return Ice::InstLoad::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 337 | Ice::Inst *convertStoreInstruction(const StoreInst *Instr) { |
| 338 | Ice::Operand *Addr = convertOperand(Instr, 1); |
| 339 | Ice::Operand *Val = convertOperand(Instr, 0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 340 | return Ice::InstStore::create(Func.get(), Val, Addr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 343 | Ice::Inst *convertArithInstruction(const Instruction *Instr, |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 344 | Ice::InstArithmetic::OpKind Opcode) { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 345 | const auto BinOp = cast<BinaryOperator>(Instr); |
| 346 | Ice::Operand *Src0 = convertOperand(Instr, 0); |
| 347 | Ice::Operand *Src1 = convertOperand(Instr, 1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 348 | Ice::Variable *Dest = mapValueToIceVar(BinOp); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 349 | return Ice::InstArithmetic::create(Func.get(), Opcode, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 352 | Ice::Inst *convertPHINodeInstruction(const PHINode *Instr) { |
| 353 | unsigned NumValues = Instr->getNumIncomingValues(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 354 | Ice::InstPhi *IcePhi = |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 355 | Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Instr)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 356 | for (unsigned N = 0, E = NumValues; N != E; ++N) { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 357 | IcePhi->addArgument(convertOperand(Instr, N), |
| 358 | mapBasicBlockToNode(Instr->getIncomingBlock(N))); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 359 | } |
| 360 | return IcePhi; |
| 361 | } |
| 362 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 363 | Ice::Inst *convertBrInstruction(const BranchInst *Instr) { |
| 364 | if (Instr->isConditional()) { |
| 365 | Ice::Operand *Src = convertOperand(Instr, 0); |
| 366 | BasicBlock *BBThen = Instr->getSuccessor(0); |
| 367 | BasicBlock *BBElse = Instr->getSuccessor(1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 368 | Ice::CfgNode *NodeThen = mapBasicBlockToNode(BBThen); |
| 369 | Ice::CfgNode *NodeElse = mapBasicBlockToNode(BBElse); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 370 | return Ice::InstBr::create(Func.get(), Src, NodeThen, NodeElse); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 371 | } else { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 372 | BasicBlock *BBSucc = Instr->getSuccessor(0); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 373 | return Ice::InstBr::create(Func.get(), mapBasicBlockToNode(BBSucc)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 377 | Ice::Inst *convertIntToPtrInstruction(const IntToPtrInst *Instr) { |
| 378 | Ice::Operand *Src = convertOperand(Instr, 0); |
| 379 | Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); |
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 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 383 | Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Instr) { |
| 384 | Ice::Operand *Src = convertOperand(Instr, 0); |
| 385 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 386 | return Ice::InstAssign::create(Func.get(), Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 389 | Ice::Inst *convertRetInstruction(const ReturnInst *Instr) { |
| 390 | Ice::Operand *RetOperand = convertOperand(Instr, 0); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 391 | if (RetOperand) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 392 | return Ice::InstRet::create(Func.get(), RetOperand); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 393 | } else { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 394 | return Ice::InstRet::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 395 | } |
| 396 | } |
| 397 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 398 | Ice::Inst *convertCastInstruction(const Instruction *Instr, |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 399 | Ice::InstCast::OpKind CastKind) { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 400 | Ice::Operand *Src = convertOperand(Instr, 0); |
| 401 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 402 | return Ice::InstCast::create(Func.get(), CastKind, Dest, Src); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 405 | Ice::Inst *convertICmpInstruction(const ICmpInst *Instr) { |
| 406 | Ice::Operand *Src0 = convertOperand(Instr, 0); |
| 407 | Ice::Operand *Src1 = convertOperand(Instr, 1); |
| 408 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 409 | |
| 410 | Ice::InstIcmp::ICond Cond; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 411 | switch (Instr->getPredicate()) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 412 | default: |
| 413 | llvm_unreachable("ICmpInst predicate"); |
| 414 | case CmpInst::ICMP_EQ: |
| 415 | Cond = Ice::InstIcmp::Eq; |
| 416 | break; |
| 417 | case CmpInst::ICMP_NE: |
| 418 | Cond = Ice::InstIcmp::Ne; |
| 419 | break; |
| 420 | case CmpInst::ICMP_UGT: |
| 421 | Cond = Ice::InstIcmp::Ugt; |
| 422 | break; |
| 423 | case CmpInst::ICMP_UGE: |
| 424 | Cond = Ice::InstIcmp::Uge; |
| 425 | break; |
| 426 | case CmpInst::ICMP_ULT: |
| 427 | Cond = Ice::InstIcmp::Ult; |
| 428 | break; |
| 429 | case CmpInst::ICMP_ULE: |
| 430 | Cond = Ice::InstIcmp::Ule; |
| 431 | break; |
| 432 | case CmpInst::ICMP_SGT: |
| 433 | Cond = Ice::InstIcmp::Sgt; |
| 434 | break; |
| 435 | case CmpInst::ICMP_SGE: |
| 436 | Cond = Ice::InstIcmp::Sge; |
| 437 | break; |
| 438 | case CmpInst::ICMP_SLT: |
| 439 | Cond = Ice::InstIcmp::Slt; |
| 440 | break; |
| 441 | case CmpInst::ICMP_SLE: |
| 442 | Cond = Ice::InstIcmp::Sle; |
| 443 | break; |
| 444 | } |
| 445 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 446 | return Ice::InstIcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 449 | Ice::Inst *convertFCmpInstruction(const FCmpInst *Instr) { |
| 450 | Ice::Operand *Src0 = convertOperand(Instr, 0); |
| 451 | Ice::Operand *Src1 = convertOperand(Instr, 1); |
| 452 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 453 | |
| 454 | Ice::InstFcmp::FCond Cond; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 455 | switch (Instr->getPredicate()) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 456 | |
| 457 | default: |
| 458 | llvm_unreachable("FCmpInst predicate"); |
| 459 | |
| 460 | case CmpInst::FCMP_FALSE: |
| 461 | Cond = Ice::InstFcmp::False; |
| 462 | break; |
| 463 | case CmpInst::FCMP_OEQ: |
| 464 | Cond = Ice::InstFcmp::Oeq; |
| 465 | break; |
| 466 | case CmpInst::FCMP_OGT: |
| 467 | Cond = Ice::InstFcmp::Ogt; |
| 468 | break; |
| 469 | case CmpInst::FCMP_OGE: |
| 470 | Cond = Ice::InstFcmp::Oge; |
| 471 | break; |
| 472 | case CmpInst::FCMP_OLT: |
| 473 | Cond = Ice::InstFcmp::Olt; |
| 474 | break; |
| 475 | case CmpInst::FCMP_OLE: |
| 476 | Cond = Ice::InstFcmp::Ole; |
| 477 | break; |
| 478 | case CmpInst::FCMP_ONE: |
| 479 | Cond = Ice::InstFcmp::One; |
| 480 | break; |
| 481 | case CmpInst::FCMP_ORD: |
| 482 | Cond = Ice::InstFcmp::Ord; |
| 483 | break; |
| 484 | case CmpInst::FCMP_UEQ: |
| 485 | Cond = Ice::InstFcmp::Ueq; |
| 486 | break; |
| 487 | case CmpInst::FCMP_UGT: |
| 488 | Cond = Ice::InstFcmp::Ugt; |
| 489 | break; |
| 490 | case CmpInst::FCMP_UGE: |
| 491 | Cond = Ice::InstFcmp::Uge; |
| 492 | break; |
| 493 | case CmpInst::FCMP_ULT: |
| 494 | Cond = Ice::InstFcmp::Ult; |
| 495 | break; |
| 496 | case CmpInst::FCMP_ULE: |
| 497 | Cond = Ice::InstFcmp::Ule; |
| 498 | break; |
| 499 | case CmpInst::FCMP_UNE: |
| 500 | Cond = Ice::InstFcmp::Une; |
| 501 | break; |
| 502 | case CmpInst::FCMP_UNO: |
| 503 | Cond = Ice::InstFcmp::Uno; |
| 504 | break; |
| 505 | case CmpInst::FCMP_TRUE: |
| 506 | Cond = Ice::InstFcmp::True; |
| 507 | break; |
| 508 | } |
| 509 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 510 | return Ice::InstFcmp::create(Func.get(), Cond, Dest, Src0, Src1); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 513 | Ice::Inst *convertExtractElementInstruction(const ExtractElementInst *Instr) { |
| 514 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
| 515 | Ice::Operand *Source1 = convertValue(Instr->getOperand(0)); |
| 516 | Ice::Operand *Source2 = convertValue(Instr->getOperand(1)); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 517 | return Ice::InstExtractElement::create(Func.get(), Dest, Source1, Source2); |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 520 | Ice::Inst *convertInsertElementInstruction(const InsertElementInst *Instr) { |
| 521 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
| 522 | Ice::Operand *Source1 = convertValue(Instr->getOperand(0)); |
| 523 | Ice::Operand *Source2 = convertValue(Instr->getOperand(1)); |
| 524 | Ice::Operand *Source3 = convertValue(Instr->getOperand(2)); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 525 | return Ice::InstInsertElement::create(Func.get(), Dest, Source1, Source2, |
Matt Wala | 4988923 | 2014-07-18 12:45:09 -0700 | [diff] [blame] | 526 | Source3); |
| 527 | } |
| 528 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 529 | Ice::Inst *convertSelectInstruction(const SelectInst *Instr) { |
| 530 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
| 531 | Ice::Operand *Cond = convertValue(Instr->getCondition()); |
| 532 | Ice::Operand *Source1 = convertValue(Instr->getTrueValue()); |
| 533 | Ice::Operand *Source2 = convertValue(Instr->getFalseValue()); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 534 | return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 535 | } |
| 536 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 537 | Ice::Inst *convertSwitchInstruction(const SwitchInst *Instr) { |
| 538 | Ice::Operand *Source = convertValue(Instr->getCondition()); |
| 539 | Ice::CfgNode *LabelDefault = mapBasicBlockToNode(Instr->getDefaultDest()); |
| 540 | unsigned NumCases = Instr->getNumCases(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 541 | Ice::InstSwitch *Switch = |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 542 | Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 543 | unsigned CurrentCase = 0; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 544 | for (SwitchInst::ConstCaseIt I = Instr->case_begin(), E = Instr->case_end(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 545 | I != E; ++I, ++CurrentCase) { |
Jim Stichnoth | cabfa30 | 2014-09-03 15:19:12 -0700 | [diff] [blame] | 546 | uint64_t CaseValue = I.getCaseValue()->getSExtValue(); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 547 | Ice::CfgNode *CaseSuccessor = mapBasicBlockToNode(I.getCaseSuccessor()); |
| 548 | Switch->addBranch(CurrentCase, CaseValue, CaseSuccessor); |
| 549 | } |
| 550 | return Switch; |
| 551 | } |
| 552 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 553 | Ice::Inst *convertCallInstruction(const CallInst *Instr) { |
| 554 | Ice::Variable *Dest = mapValueToIceVar(Instr); |
| 555 | Ice::Operand *CallTarget = convertValue(Instr->getCalledValue()); |
| 556 | unsigned NumArgs = Instr->getNumArgOperands(); |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 557 | // Note: Subzero doesn't (yet) do anything special with the Tail flag in |
| 558 | // the bitcode, i.e. CallInst::isTailCall(). |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 559 | Ice::InstCall *NewInst = nullptr; |
| 560 | const Ice::Intrinsics::FullIntrinsicInfo *Info = nullptr; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 561 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 562 | if (const auto Target = dyn_cast<Ice::ConstantRelocatable>(CallTarget)) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 563 | // Check if this direct call is to an Intrinsic (starts with "llvm.") |
Jim Stichnoth | a67fc44 | 2015-03-03 16:13:11 -0800 | [diff] [blame] | 564 | bool BadIntrinsic; |
| 565 | Info = Ctx->getIntrinsicsInfo().find(Target->getName(), BadIntrinsic); |
| 566 | if (BadIntrinsic) { |
| 567 | report_fatal_error(std::string("Invalid PNaCl intrinsic call: ") + |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 568 | LLVMObjectAsString(Instr)); |
Jim Stichnoth | a67fc44 | 2015-03-03 16:13:11 -0800 | [diff] [blame] | 569 | } |
| 570 | if (Info) |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 571 | NewInst = Ice::InstIntrinsicCall::create(Func.get(), NumArgs, Dest, |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 572 | CallTarget, Info->Info); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | // Not an intrinsic call. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 576 | if (NewInst == nullptr) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 577 | NewInst = Ice::InstCall::create(Func.get(), NumArgs, Dest, CallTarget, |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 578 | Instr->isTailCall()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 579 | } |
| 580 | for (unsigned i = 0; i < NumArgs; ++i) { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 581 | NewInst->addArg(convertOperand(Instr, i)); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 582 | } |
| 583 | if (Info) { |
| 584 | validateIntrinsicCall(NewInst, Info); |
| 585 | } |
| 586 | return NewInst; |
| 587 | } |
| 588 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 589 | Ice::Inst *convertAllocaInstruction(const AllocaInst *Instr) { |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 590 | // PNaCl bitcode only contains allocas of byte-granular objects. |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 591 | Ice::Operand *ByteCount = convertValue(Instr->getArraySize()); |
| 592 | uint32_t Align = Instr->getAlignment(); |
| 593 | Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 594 | |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 595 | return Ice::InstAlloca::create(Func.get(), Dest, ByteCount, Align); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 598 | Ice::Inst *convertUnreachableInstruction(const UnreachableInst * /*Instr*/) { |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 599 | return Ice::InstUnreachable::create(Func.get()); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | Ice::CfgNode *convertBasicBlock(const BasicBlock *BB) { |
| 603 | Ice::CfgNode *Node = mapBasicBlockToNode(BB); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 604 | for (const Instruction &II : *BB) { |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 605 | Ice::Inst *Instr = convertInstruction(&II); |
| 606 | Node->appendInst(Instr); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 607 | } |
| 608 | return Node; |
| 609 | } |
| 610 | |
| 611 | void validateIntrinsicCall(const Ice::InstCall *Call, |
| 612 | const Ice::Intrinsics::FullIntrinsicInfo *I) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 613 | Ice::SizeT ArgIndex = 0; |
| 614 | switch (I->validateCall(Call, ArgIndex)) { |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 615 | case Ice::Intrinsics::IsValidCall: |
| 616 | break; |
| 617 | case Ice::Intrinsics::BadReturnType: { |
| 618 | std::string Buffer; |
| 619 | raw_string_ostream StrBuf(Buffer); |
| 620 | StrBuf << "Intrinsic call expects return type " << I->getReturnType() |
| 621 | << ". Found: " << Call->getReturnType(); |
| 622 | report_fatal_error(StrBuf.str()); |
| 623 | break; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 624 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 625 | case Ice::Intrinsics::WrongNumOfArgs: { |
| 626 | std::string Buffer; |
| 627 | raw_string_ostream StrBuf(Buffer); |
| 628 | StrBuf << "Intrinsic call expects " << I->getNumArgs() |
| 629 | << ". Found: " << Call->getNumArgs(); |
| 630 | report_fatal_error(StrBuf.str()); |
| 631 | break; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 632 | } |
Karl Schimpf | 8df26f3 | 2014-09-19 09:33:26 -0700 | [diff] [blame] | 633 | case Ice::Intrinsics::WrongCallArgType: { |
| 634 | std::string Buffer; |
| 635 | raw_string_ostream StrBuf(Buffer); |
| 636 | StrBuf << "Intrinsic call argument " << ArgIndex << " expects type " |
| 637 | << I->getArgType(ArgIndex) |
| 638 | << ". Found: " << Call->getArg(ArgIndex)->getType(); |
| 639 | report_fatal_error(StrBuf.str()); |
| 640 | break; |
| 641 | } |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 642 | } |
| 643 | } |
| 644 | |
| 645 | private: |
| 646 | // Data |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 647 | std::unique_ptr<Ice::Cfg> Func; |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 648 | std::map<const Value *, Ice::Variable *> VarMap; |
| 649 | std::map<const BasicBlock *, Ice::CfgNode *> NodeMap; |
| 650 | }; |
| 651 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 652 | // Converter from LLVM global variables to ICE. The entry point is the |
| 653 | // convertGlobalsToIce method. |
| 654 | // |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 655 | // Note: this currently assumes that the given IR was verified to be valid |
| 656 | // PNaCl bitcode. Otherwise, the behavior is undefined. |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 657 | class LLVM2ICEGlobalsConverter : public LLVM2ICEConverter { |
Jim Stichnoth | c6ead20 | 2015-02-24 09:30:30 -0800 | [diff] [blame] | 658 | LLVM2ICEGlobalsConverter() = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 659 | LLVM2ICEGlobalsConverter(const LLVM2ICEGlobalsConverter &) = delete; |
| 660 | LLVM2ICEGlobalsConverter & |
Jim Stichnoth | f4fbf7f | 2015-08-08 08:37:02 -0700 | [diff] [blame] | 661 | operator=(const LLVM2ICEGlobalsConverter &) = delete; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 662 | |
| 663 | public: |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 664 | explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter, |
| 665 | Ice::VariableDeclarationList *G) |
| 666 | : LLVM2ICEConverter(Converter), GlobalPool(G) {} |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 667 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 668 | /// Converts global variables, and their initializers into ICE global variable |
| 669 | /// declarations, for module Mod. Returns the set of converted declarations. |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 670 | void convertGlobalsToIce(Module *Mod); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 671 | |
| 672 | private: |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 673 | // Adds the Initializer to the list of initializers for the Global variable |
| 674 | // declaration. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 675 | void addGlobalInitializer(Ice::VariableDeclaration &Global, |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 676 | const Constant *Initializer) { |
Jim Stichnoth | 5bff61c | 2015-10-28 09:26:00 -0700 | [diff] [blame] | 677 | constexpr bool HasOffset = false; |
| 678 | constexpr Ice::RelocOffsetT Offset = 0; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 679 | addGlobalInitializer(Global, Initializer, HasOffset, Offset); |
| 680 | } |
| 681 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 682 | // Adds Initializer to the list of initializers for Global variable |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 683 | // declaration. HasOffset is true only if Initializer is a relocation |
| 684 | // initializer and Offset should be added to the relocation. |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 685 | void addGlobalInitializer(Ice::VariableDeclaration &Global, |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 686 | const Constant *Initializer, bool HasOffset, |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 687 | Ice::RelocOffsetT Offset); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 688 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 689 | // Converts the given constant C to the corresponding integer literal it |
| 690 | // contains. |
Jan Voung | c0d965f | 2014-11-04 16:55:01 -0800 | [diff] [blame] | 691 | Ice::RelocOffsetT getIntegerLiteralConstant(const Value *C) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 692 | const auto CI = dyn_cast<ConstantInt>(C); |
| 693 | if (CI && CI->getType()->isIntegerTy(32)) |
| 694 | return CI->getSExtValue(); |
| 695 | |
| 696 | std::string Buffer; |
| 697 | raw_string_ostream StrBuf(Buffer); |
| 698 | StrBuf << "Constant not i32 literal: " << *C; |
| 699 | report_fatal_error(StrBuf.str()); |
| 700 | return 0; |
| 701 | } |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 702 | |
| 703 | Ice::VariableDeclarationList *GlobalPool; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 704 | }; |
| 705 | |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 706 | void LLVM2ICEGlobalsConverter::convertGlobalsToIce(Module *Mod) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 707 | for (Module::const_global_iterator I = Mod->global_begin(), |
| 708 | E = Mod->global_end(); |
| 709 | I != E; ++I) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 710 | |
Jim Stichnoth | f5fdd23 | 2016-05-09 12:24:36 -0700 | [diff] [blame^] | 711 | const GlobalVariable *GV = &*I; |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 712 | |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 713 | Ice::GlobalDeclaration *Var = getConverter().getGlobalDeclaration(GV); |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 714 | auto *VarDecl = cast<Ice::VariableDeclaration>(Var); |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 715 | GlobalPool->push_back(VarDecl); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 716 | |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 717 | if (!GV->hasInternalLinkage() && GV->hasInitializer()) { |
| 718 | std::string Buffer; |
| 719 | raw_string_ostream StrBuf(Buffer); |
| 720 | StrBuf << "Can't define external global declaration: " << GV->getName(); |
| 721 | report_fatal_error(StrBuf.str()); |
| 722 | } |
| 723 | |
| 724 | if (!GV->hasInitializer()) { |
Karl Schimpf | d469994 | 2016-04-02 09:55:31 -0700 | [diff] [blame] | 725 | if (Ice::getFlags().getAllowUninitializedGlobals()) |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 726 | continue; |
| 727 | else { |
| 728 | std::string Buffer; |
| 729 | raw_string_ostream StrBuf(Buffer); |
| 730 | StrBuf << "Global declaration missing initializer: " << GV->getName(); |
| 731 | report_fatal_error(StrBuf.str()); |
| 732 | } |
| 733 | } |
| 734 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 735 | const Constant *Initializer = GV->getInitializer(); |
| 736 | if (const auto CompoundInit = dyn_cast<ConstantStruct>(Initializer)) { |
| 737 | for (ConstantStruct::const_op_iterator I = CompoundInit->op_begin(), |
| 738 | E = CompoundInit->op_end(); |
| 739 | I != E; ++I) { |
| 740 | if (const auto Init = dyn_cast<Constant>(I)) { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 741 | addGlobalInitializer(*VarDecl, Init); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 742 | } |
| 743 | } |
| 744 | } else { |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 745 | addGlobalInitializer(*VarDecl, Initializer); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 746 | } |
| 747 | } |
| 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( |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 760 | GlobalPool, CDA->getRawDataValues().data(), CDA->getNumElements())); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 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( |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 769 | GlobalPool, 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); |
John Porto | 844211e | 2016-02-04 08:42:48 -0800 | [diff] [blame] | 790 | Global.addInitializer(Ice::VariableDeclaration::RelocInitializer::create( |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 791 | GlobalPool, Addr, {Ice::RelocOffset::create(Ctx, 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) { |
Karl Schimpf | d469994 | 2016-04-02 09:55:31 -0700 | [diff] [blame] | 810 | const std::string GlobalPrefix = 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) { |
Karl Schimpf | d469994 | 2016-04-02 09:55:31 -0700 | [diff] [blame] | 825 | const std::string FunctionPrefix = 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()); |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 873 | IceFunc->setName(Ctx, 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 | bba7768 | 2016-01-15 07:33:15 -0800 | [diff] [blame] | 883 | if (!IceFunc->validateTypeSignature(Ctx)) |
| 884 | report_fatal_error(IceFunc->getTypeSignatureError(Ctx)); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 885 | GlobalDeclarationMap[&Func] = IceFunc; |
| 886 | } |
| 887 | // Install global variable declarations. |
| 888 | for (Module::const_global_iterator I = Mod->global_begin(), |
| 889 | E = Mod->global_end(); |
| 890 | I != E; ++I) { |
Jim Stichnoth | f5fdd23 | 2016-05-09 12:24:36 -0700 | [diff] [blame^] | 891 | const GlobalVariable *GV = &*I; |
Jim Stichnoth | 98ba006 | 2016-03-07 09:26:22 -0800 | [diff] [blame] | 892 | constexpr bool NoSuppressMangling = false; |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 893 | auto *Var = VariableDeclaration::create( |
| 894 | GlobalDeclarationsPool.get(), NoSuppressMangling, GV->getLinkage()); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 895 | Var->setAlignment(GV->getAlignment()); |
| 896 | Var->setIsConstant(GV->isConstant()); |
Jim Stichnoth | 467ffe5 | 2016-03-29 15:01:06 -0700 | [diff] [blame] | 897 | Var->setName(Ctx, GV->getName()); |
Karl Schimpf | d469994 | 2016-04-02 09:55:31 -0700 | [diff] [blame] | 898 | if (!Var->verifyLinkageCorrect()) { |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 899 | std::string Buffer; |
| 900 | raw_string_ostream StrBuf(Buffer); |
| 901 | StrBuf << "Global " << Var->getName() |
| 902 | << " has incorrect linkage: " << Var->getLinkageName(); |
Jim Stichnoth | 4e10aa2 | 2015-10-16 13:13:11 -0700 | [diff] [blame] | 903 | if (Var->isExternal()) |
| 904 | StrBuf << "\n Use flag -allow-externally-defined-symbols to override"; |
Karl Schimpf | 57d31ac | 2015-10-07 09:53:12 -0700 | [diff] [blame] | 905 | report_fatal_error(StrBuf.str()); |
| 906 | } |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 907 | GlobalDeclarationMap[GV] = Var; |
| 908 | } |
| 909 | } |
| 910 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 911 | void Converter::convertGlobals(Module *Mod) { |
John Porto | a78e4ba | 2016-03-15 09:28:04 -0700 | [diff] [blame] | 912 | LLVM2ICEGlobalsConverter(*this, GlobalDeclarationsPool.get()) |
| 913 | .convertGlobalsToIce(Mod); |
| 914 | lowerGlobals(std::move(GlobalDeclarationsPool)); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 915 | } |
| 916 | |
Karl Schimpf | d6064a1 | 2014-08-27 15:34:58 -0700 | [diff] [blame] | 917 | void Converter::convertFunctions() { |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 918 | for (const Function &I : *Mod) { |
| 919 | if (I.empty()) |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 920 | continue; |
Jim Stichnoth | b88d8c8 | 2016-03-11 15:33:00 -0800 | [diff] [blame] | 921 | TimerMarker _(Ctx, I.getName()); |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 922 | LLVM2ICEFunctionConverter FunctionConverter(*this); |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 923 | FunctionConverter.convertFunction(&I); |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 924 | } |
Karl Schimpf | e1e013c | 2014-06-27 09:15:29 -0700 | [diff] [blame] | 925 | } |
Karl Schimpf | b164d20 | 2014-07-11 10:26:34 -0700 | [diff] [blame] | 926 | |
Jim Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 927 | } // end of namespace Ice |