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

  /external/llvm/include/llvm/
GVMaterializer.h 48 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0) = 0;
61 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0) = 0;
Module.h 456 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
466 bool MaterializeAll(std::string *ErrInfo = 0);
473 bool MaterializeAllPermanently(std::string *ErrInfo = 0);
GlobalValue.h 251 bool Materialize(std::string *ErrInfo = 0);
  /external/llvm/tools/opt/
GraphPrinters.cpp 30 std::string ErrInfo;
31 tool_output_file F(Filename.c_str(), ErrInfo);
33 if (ErrInfo.empty()) {
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 173 std::string ErrInfo;
174 if (GV->Materialize(&ErrInfo)) {
175 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
187 std::string ErrInfo;
188 if (G->Materialize(&ErrInfo)) {
189 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
197 std::string ErrInfo;
198 if (F->Materialize(&ErrInfo)) {
199 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 53 std::string ErrInfo;
54 tool_output_file Out(Filename.c_str(), ErrInfo,
56 if (ErrInfo.empty()) {
134 std::string ErrInfo;
135 tool_output_file InFile(inputFilename.c_str(), ErrInfo,
139 if (!ErrInfo.empty()) {
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 110 std::string ErrInfo;
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
  /external/llvm/lib/VMCore/
Module.cpp 408 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
410 return Materializer->Materialize(GV, ErrInfo);
419 bool Module::MaterializeAll(std::string *ErrInfo) {
422 return Materializer->MaterializeModule(this, ErrInfo);
425 bool Module::MaterializeAllPermanently(std::string *ErrInfo) {
426 if (MaterializeAll(ErrInfo))
Globals.cpp 35 bool GlobalValue::Materialize(std::string *ErrInfo) {
36 return getParent()->Materialize(this, ErrInfo);
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 128 std::string ErrInfo;
129 tool_output_file Out(path, ErrInfo,
131 if (!ErrInfo.empty()) {
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 209 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
210 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.h 207 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
208 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.h 200 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
201 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 266 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const;
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h     [all...]

Completed in 1633 milliseconds