Home
last modified time | relevance | path

Searched refs:ErrInfo (Results 1 – 15 of 15) sorted by relevance

/external/llvm/tools/llvm-extract/
Dllvm-extract.cpp173 std::string ErrInfo; in main() local
174 if (GV->Materialize(&ErrInfo)) { in main()
175 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main()
187 std::string ErrInfo; in main() local
188 if (G->Materialize(&ErrInfo)) { in main()
189 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main()
197 std::string ErrInfo; in main() local
198 if (F->Materialize(&ErrInfo)) { in main()
199 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main()
/external/llvm/tools/bugpoint/
DOptimizerDriver.cpp53 std::string ErrInfo; in writeProgramToFile() local
54 tool_output_file Out(Filename.c_str(), ErrInfo, in writeProgramToFile()
56 if (ErrInfo.empty()) { in writeProgramToFile()
134 std::string ErrInfo; in runPasses() local
135 tool_output_file InFile(inputFilename.c_str(), ErrInfo, in runPasses()
139 if (!ErrInfo.empty()) { in runPasses()
/external/llvm/tools/opt/
DGraphPrinters.cpp30 std::string ErrInfo; in WriteGraphToFile() local
31 tool_output_file F(Filename.c_str(), ErrInfo); in WriteGraphToFile()
33 if (ErrInfo.empty()) { in WriteGraphToFile()
/external/llvm/include/llvm/
DGVMaterializer.h48 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0) = 0;
61 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0) = 0;
DModule.h452 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
462 bool MaterializeAll(std::string *ErrInfo = 0);
469 bool MaterializeAllPermanently(std::string *ErrInfo = 0);
DGlobalValue.h260 bool Materialize(std::string *ErrInfo = 0);
/external/llvm/lib/VMCore/
DModule.cpp407 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { in Materialize() argument
409 return Materializer->Materialize(GV, ErrInfo); in Materialize()
418 bool Module::MaterializeAll(std::string *ErrInfo) { in MaterializeAll() argument
421 return Materializer->MaterializeModule(this, ErrInfo); in MaterializeAll()
424 bool Module::MaterializeAllPermanently(std::string *ErrInfo) { in MaterializeAllPermanently() argument
425 if (MaterializeAll(ErrInfo)) in MaterializeAllPermanently()
DGlobals.cpp35 bool GlobalValue::Materialize(std::string *ErrInfo) { in Materialize() argument
36 return getParent()->Materialize(this, ErrInfo); in Materialize()
/external/llvm/examples/BrainF/
DBrainFDriver.cpp109 std::string ErrInfo; in main() local
110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo, in main()
/external/llvm/tools/lto/
DLTOCodeGenerator.cpp130 std::string ErrInfo; in writeMergedModules() local
131 tool_output_file Out(path, ErrInfo, in writeMergedModules()
133 if (!ErrInfo.empty()) { in writeMergedModules()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.h209 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
210 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
DBitcodeReader.cpp2767 bool BitcodeReader::Materialize(GlobalValue *GV, std::string *ErrInfo) { in Materialize() argument
2783 if (ErrInfo) *ErrInfo = ErrorString; in Materialize()
2822 bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) { in MaterializeModule() argument
2830 Materialize(F, ErrInfo)) in MaterializeModule()
/external/llvm/lib/Target/ARM/
DARMBaseInstrInfo.h278 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const;
DARMBaseInstrInfo.cpp3307 StringRef &ErrInfo) const { in verifyInstruction()
3309 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG"; in verifyInstruction()
/external/llvm/include/llvm/Target/
DTargetInstrInfo.h852 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const { in verifyInstruction() argument