Searched refs:ErrInfo (Results 1 - 14 of 14) sorted by relevance

/external/llvm/include/llvm/
H A DGVMaterializer.h48 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0) = 0;
61 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0) = 0;
/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp221 std::string ErrInfo; local
222 if (GV->Materialize(&ErrInfo)) {
223 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
235 std::string ErrInfo; local
236 if (G->Materialize(&ErrInfo)) {
237 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
245 std::string ErrInfo; local
246 if (F->Materialize(&ErrInfo)) {
247 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
/external/llvm/lib/IR/
H A DModule.cpp401 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
403 return Materializer->Materialize(GV, ErrInfo);
412 bool Module::MaterializeAll(std::string *ErrInfo) { argument
415 return Materializer->MaterializeModule(this, ErrInfo);
418 bool Module::MaterializeAllPermanently(std::string *ErrInfo) { argument
419 if (MaterializeAll(ErrInfo))
H A DGlobals.cpp36 bool GlobalValue::Materialize(std::string *ErrInfo) { argument
37 return getParent()->Materialize(this, ErrInfo);
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp109 std::string ErrInfo; local
110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
/external/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp73 std::string ErrInfo; local
74 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_Binary);
75 if (ErrInfo.empty())
/external/llvm/include/llvm/IR/
H A DModule.h461 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
471 bool MaterializeAll(std::string *ErrInfo = 0);
478 bool MaterializeAllPermanently(std::string *ErrInfo = 0);
H A DGlobalValue.h270 bool Materialize(std::string *ErrInfo = 0);
/external/llvm/tools/lto/
H A DLTOCodeGenerator.cpp169 std::string ErrInfo; local
170 tool_output_file Out(path, ErrInfo, sys::fs::F_Binary);
171 if (!ErrInfo.empty()) {
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h221 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
222 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
H A DBitcodeReader.cpp3011 bool BitcodeReader::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
3027 if (ErrInfo) *ErrInfo = ErrorString;
3066 bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) { argument
3074 Materialize(F, ErrInfo))
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h282 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const;
H A DARMBaseInstrInfo.cpp3691 StringRef &ErrInfo) const {
3693 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h859 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const {

Completed in 1118 milliseconds