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

/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
233 std::string ErrInfo; local
234 if (G.Materialize(&ErrInfo)) {
235 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
242 std::string ErrInfo; local
243 if (F.Materialize(&ErrInfo)) {
244 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp110 std::string ErrInfo; local
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
/external/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp75 std::string ErrInfo; local
76 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_None);
77 if (ErrInfo.empty())
/external/llvm/lib/IR/
H A DModule.cpp393 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
400 if (ErrInfo)
401 *ErrInfo = EC.message();
H A DGlobals.cpp37 bool GlobalValue::Materialize(std::string *ErrInfo) { argument
38 return getParent()->Materialize(this, ErrInfo);
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp164 std::string ErrInfo; local
165 tool_output_file Out(path, ErrInfo, sys::fs::F_None);
166 if (!ErrInfo.empty()) {
/external/llvm/lib/Target/R600/
H A DSIInstrInfo.h114 StringRef &ErrInfo) const override;
H A DSIInstrInfo.cpp545 StringRef &ErrInfo) const {
555 ErrInfo = "Instruction has wrong number of operands.";
566 ErrInfo = "Expected register, but got immediate";
573 ErrInfo = "Expected immediate, but got non-immediate";
592 ErrInfo = "Operand has incorrect register class.";
628 ErrInfo = "VOP* instruction uses the constant bus more than once";
637 ErrInfo = "VOP[2C] src1 cannot be an immediate.";
645 ErrInfo = "VOP3 src0 cannot be a literal constant.";
649 ErrInfo = "VOP3 src1 cannot be a literal constant.";
653 ErrInfo
[all...]
/external/llvm/include/llvm/IR/
H A DGlobalValue.h312 bool Materialize(std::string *ErrInfo = nullptr);
H A DModule.h469 bool Materialize(GlobalValue *GV, std::string *ErrInfo = nullptr);
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h905 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const {
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h287 StringRef &ErrInfo) const override;
H A DARMBaseInstrInfo.cpp3928 StringRef &ErrInfo) const {
3930 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";

Completed in 962 milliseconds