reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ProfileData/InstrProf.h
  469       return make_error<InstrProfError>(instrprof_error::malformed);
lib/ProfileData/Coverage/CoverageMappingReader.cpp
  436         return make_error<InstrProfError>(instrprof_error::malformed);
lib/ProfileData/InstrProf.cpp
   96   case instrprof_error::malformed:
  857     return make_error<InstrProfError>(instrprof_error::malformed);
  860     return make_error<InstrProfError>(instrprof_error::malformed);
  865       return make_error<InstrProfError>(instrprof_error::malformed);
  868       return make_error<InstrProfError>(instrprof_error::malformed);
lib/ProfileData/InstrProfReader.cpp
  200     return error(instrprof_error::malformed);
  204     VP_READ_ADVANCE(ValueKind);
  206       return error(instrprof_error::malformed);
  207     VP_READ_ADVANCE(NumValueSites);
  213       VP_READ_ADVANCE(NumValueData);
  229           READ_NUM(VD.first, Value);
  231         READ_NUM(VD.second, TakenCount);
  264     return error(instrprof_error::malformed);
  271     return error(instrprof_error::malformed);
  273     return error(instrprof_error::malformed);
  283       return error(instrprof_error::malformed);
  328     return make_error<InstrProfError>(instrprof_error::malformed);
  331     return make_error<InstrProfError>(instrprof_error::malformed);
  414     return error(instrprof_error::malformed);
  422     return error(instrprof_error::malformed);
  426     return error(instrprof_error::malformed);
  583     return make_error<InstrProfError>(instrprof_error::malformed);
  597     return make_error<InstrProfError>(instrprof_error::malformed);
lib/Transforms/Instrumentation/PGOInstrumentation.cpp
 1155                  Err == instrprof_error::malformed) {
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  977     else if (IPE == llvm::instrprof_error::malformed)
unittests/ProfileData/InstrProfTest.cpp
  886   EXPECT_TRUE(ErrorEquals(instrprof_error::malformed, Symtab.addFuncName("")));