HomeSort by relevance Sort by last modified time
    Searched refs:ErrInfo (Results 1 - 13 of 13) sorted by null

  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 221 std::string ErrInfo;
222 if (GV->Materialize(&ErrInfo)) {
223 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
233 std::string ErrInfo;
234 if (G.Materialize(&ErrInfo)) {
235 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
242 std::string ErrInfo;
243 if (F.Materialize(&ErrInfo)) {
244 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 110 std::string ErrInfo;
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 75 std::string ErrInfo;
76 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_None);
77 if (ErrInfo.empty())
  /external/llvm/lib/IR/
Module.cpp 393 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
400 if (ErrInfo)
401 *ErrInfo = EC.message();
Globals.cpp 37 bool GlobalValue::Materialize(std::string *ErrInfo) {
38 return getParent()->Materialize(this, ErrInfo);
  /external/llvm/lib/Target/R600/
SIInstrInfo.h 114 StringRef &ErrInfo) const override;
SIInstrInfo.cpp 545 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 = "VOP3 src2 cannot be a literal constant."
    [all...]
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 164 std::string ErrInfo;
165 tool_output_file Out(path, ErrInfo, sys::fs::F_None);
166 if (!ErrInfo.empty()) {
  /external/llvm/include/llvm/IR/
GlobalValue.h 312 bool Materialize(std::string *ErrInfo = nullptr);
Module.h 469 bool Materialize(GlobalValue *GV, std::string *ErrInfo = nullptr);
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 287 StringRef &ErrInfo) const override;
ARMBaseInstrInfo.cpp     [all...]

Completed in 408 milliseconds