Home
last modified time | relevance | path

Searched refs:InstrProfError (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProfReader.cpp66 return make_error<InstrProfError>(instrprof_error::too_large); in create()
69 return make_error<InstrProfError>(instrprof_error::empty_raw_profile); in create()
82 return make_error<InstrProfError>(instrprof_error::unrecognized_format); in create()
117 return make_error<InstrProfError>(instrprof_error::too_large); in create()
121 return make_error<InstrProfError>(instrprof_error::bad_magic); in create()
135 InstrProfError::take(std::move(E)); in Increment()
324 return make_error<InstrProfError>(instrprof_error::eof); in readNextHeader()
328 return make_error<InstrProfError>(instrprof_error::malformed); in readNextHeader()
331 return make_error<InstrProfError>(instrprof_error::malformed); in readNextHeader()
335 return make_error<InstrProfError>(instrprof_error::bad_magic); in readNextHeader()
[all …]
DInstrProf.cpp209 std::string InstrProfError::message() const { in message()
213 char InstrProfError::ID = 0;
412 return make_error<InstrProfError>(instrprof_error::compress_failed); in collectPGOFuncNameStrings()
450 return make_error<InstrProfError>(instrprof_error::zlib_unavailable); in readPGOFuncNameStrings()
458 return make_error<InstrProfError>(instrprof_error::uncompress_failed); in readPGOFuncNameStrings()
857 return make_error<InstrProfError>(instrprof_error::malformed); in checkIntegrity()
860 return make_error<InstrProfError>(instrprof_error::malformed); in checkIntegrity()
865 return make_error<InstrProfError>(instrprof_error::malformed); in checkIntegrity()
868 return make_error<InstrProfError>(instrprof_error::malformed); in checkIntegrity()
880 return make_error<InstrProfError>(instrprof_error::truncated); in getValueProfData()
[all …]
DInstrProfWriter.cpp236 Warn(make_error<InstrProfError>(E)); in addRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProf.h301 class InstrProfError : public ErrorInfo<InstrProfError> {
303 InstrProfError(instrprof_error Err) : Err(Err) { in InstrProfError() function
321 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) { in take()
383 auto E = make_error<InstrProfError>(FirstError); in takeError()
469 return make_error<InstrProfError>(instrprof_error::malformed); in addFuncName()
DInstrProfReader.h105 return make_error<InstrProfError>(Err); in error()
108 Error error(Error &&E) { return error(InstrProfError::take(std::move(E))); } in error()
123 return make_error<InstrProfError>(LastError); in getError()
DInstrProfWriter.h90 return make_error<InstrProfError>(instrprof_error::unsupported_version); in setIsIRLevelProfile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp223 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadFunctionRecord()
228 return make_error<InstrProfError>(IPE); in loadFunctionRecord()
DCoverageMappingReader.cpp436 return make_error<InstrProfError>(instrprof_error::malformed); in insertFunctionRecordIfNeeded()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp1146 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in readCounters()