Searched defs:ErrInfo (Results 1 - 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/examples/BrainF/
H A DBrainFDriver.cpp110 std::string ErrInfo; local
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
/external/swiftshader/third_party/LLVM/tools/llvm-extract/
H A Dllvm-extract.cpp173 std::string ErrInfo; local
174 if (GV->Materialize(&ErrInfo)) {
175 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
187 std::string ErrInfo; local
188 if (G->Materialize(&ErrInfo)) {
189 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
197 std::string ErrInfo; local
198 if (F->Materialize(&ErrInfo)) {
199 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
/external/swiftshader/third_party/LLVM/tools/opt/
H A DGraphPrinters.cpp30 std::string ErrInfo; local
31 tool_output_file F(Filename.c_str(), ErrInfo);
33 if (ErrInfo.empty()) {
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DOptimizerDriver.cpp53 std::string ErrInfo; local
54 tool_output_file Out(Filename.c_str(), ErrInfo,
56 if (ErrInfo.empty()) {
131 std::string ErrInfo; local
132 tool_output_file InFile(inputFilename.c_str(), ErrInfo,
136 if (!ErrInfo.empty()) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DGlobals.cpp35 bool GlobalValue::Materialize(std::string *ErrInfo) { argument
36 return getParent()->Materialize(this, ErrInfo);
H A DModule.cpp352 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
354 return Materializer->Materialize(GV, ErrInfo);
363 bool Module::MaterializeAll(std::string *ErrInfo) { argument
366 return Materializer->MaterializeModule(this, ErrInfo);
369 bool Module::MaterializeAllPermanently(std::string *ErrInfo) { argument
370 if (MaterializeAll(ErrInfo))
/external/swiftshader/third_party/LLVM/tools/lto/
H A DLTOCodeGenerator.cpp157 std::string ErrInfo; local
158 tool_output_file Out(path, ErrInfo,
160 if (!ErrInfo.empty()) {
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2861 bool BitcodeReader::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
2873 if (ErrInfo) *ErrInfo = ErrorString;
2912 bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) { argument
2920 Materialize(F, ErrInfo))

Completed in 284 milliseconds