• Home
  • Raw
  • Download

Lines Matching refs:Converter

71   explicit LLVM2ICEConverter(Ice::Converter &Converter)  in LLVM2ICEConverter()  argument
72 : Converter(Converter), Ctx(Converter.getContext()), in LLVM2ICEConverter()
73 TypeConverter(Converter.getModule()->getContext()) {} in LLVM2ICEConverter()
75 Ice::Converter &getConverter() const { return Converter; } in getConverter()
78 Ice::Converter &Converter; member in __anon6ae407240111::LLVM2ICEConverter
95 explicit LLVM2ICEFunctionConverter(Ice::Converter &Converter) in LLVM2ICEFunctionConverter() argument
96 : LLVM2ICEConverter(Converter), Func(nullptr) {} in LLVM2ICEFunctionConverter()
99 Func = Ice::Cfg::create(Ctx, Converter.getNextSequenceNumber()); in convertFunction()
127 Converter.translateFcn(std::move(Func)); in convertFunction()
664 explicit LLVM2ICEGlobalsConverter(Ice::Converter &Converter, in LLVM2ICEGlobalsConverter() argument
666 : LLVM2ICEConverter(Converter), GlobalPool(G) {} in LLVM2ICEGlobalsConverter()
809 void Converter::nameUnnamedGlobalVariables(Module *Mod) { in nameUnnamedGlobalVariables()
824 void Converter::nameUnnamedFunctions(Module *Mod) { in nameUnnamedFunctions()
839 void Converter::convertToIce() { in convertToIce()
848 GlobalDeclaration *Converter::getGlobalDeclaration(const GlobalValue *V) { in getGlobalDeclaration()
859 void Converter::installGlobalDeclarations(Module *Mod) { in installGlobalDeclarations()
860 const TypeConverter Converter(Mod->getContext()); in installGlobalDeclarations() local
866 Converter.convertToIceType(FuncType->getReturnType())); in installGlobalDeclarations()
869 Converter.convertToIceType(FuncType->getParamType(I))); in installGlobalDeclarations()
911 void Converter::convertGlobals(Module *Mod) { in convertGlobals()
917 void Converter::convertFunctions() { in convertFunctions()