HomeSort by relevance Sort by last modified time
    Searched refs:ErrInfo (Results 1 - 18 of 18) 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;
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 220 std::string ErrInfo;
221 if (GV->Materialize(&ErrInfo)) {
222 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
234 std::string ErrInfo;
235 if (G->Materialize(&ErrInfo)) {
236 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n";
244 std::string ErrInfo;
245 if (F->Materialize(&ErrInfo)) {
246 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/lib/IR/
Module.cpp 406 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
408 return Materializer->Materialize(GV, ErrInfo);
417 bool Module::MaterializeAll(std::string *ErrInfo) {
420 return Materializer->MaterializeModule(this, ErrInfo);
423 bool Module::MaterializeAllPermanently(std::string *ErrInfo) {
424 if (MaterializeAll(ErrInfo))
Globals.cpp 36 bool GlobalValue::Materialize(std::string *ErrInfo) {
37 return getParent()->Materialize(this, ErrInfo);
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 109 std::string ErrInfo;
110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
  /external/llvm/include/llvm/IR/
Module.h 453 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
463 bool MaterializeAll(std::string *ErrInfo = 0);
470 bool MaterializeAllPermanently(std::string *ErrInfo = 0);
GlobalValue.h 260 bool Materialize(std::string *ErrInfo = 0);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.h 214 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
215 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.h 208 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
209 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 134 std::string ErrInfo;
135 tool_output_file Out(path, ErrInfo,
137 if (!ErrInfo.empty()) {
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 221 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
222 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 284 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const;
ARMBaseInstrInfo.cpp     [all...]

Completed in 395 milliseconds