Home
last modified time | relevance | path

Searched refs:IPE (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp61 warn(IPE.message(), std::string(Whence), std::string("")); in warn()
80 instrprof_error instrError = IPE.get(); in exitWithError()
118 auto IPE = instrprof_error::success; in handleMergeWriterError() local
121 IPE = E->get(); in handleMergeWriterError()
128 if (IPE != instrprof_error::success) { in handleMergeWriterError()
129 switch (IPE) { in handleMergeWriterError()
217 instrprof_error IPE = InstrProfError::take(std::move(E)); in overlapInput() local
218 if (IPE != instrprof_error::empty_raw_profile) in overlapInput()
246 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadInput() local
247 if (IPE != instrprof_error::empty_raw_profile) in loadInput()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp248 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadFunctionRecord() local
249 if (IPE == instrprof_error::hash_mismatch) { in loadFunctionRecord()
253 } else if (IPE != instrprof_error::unknown_function) in loadFunctionRecord()
254 return make_error<InstrProfError>(IPE); in loadFunctionRecord()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp1028 auto IPE = llvm::InstrProfError::take(std::move(E)); in loadRegionCounts() local
1029 if (IPE == llvm::instrprof_error::unknown_function) in loadRegionCounts()
1031 else if (IPE == llvm::instrprof_error::hash_mismatch) in loadRegionCounts()
1033 else if (IPE == llvm::instrprof_error::malformed) in loadRegionCounts()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h329 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) { in take()
331 Err = IPE.get(); in take()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1281 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in readCounters() argument
1282 auto Err = IPE.get(); in readCounters()
1307 std::string Msg = IPE.message() + std::string(" ") + F.getName().str() + in readCounters()