HomeSort by: relevance | last modified time | path
    Searched refs:IPE (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 59 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
60 warn(IPE.message(), std::string(Whence), std::string(""));
78 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
79 instrprof_error instrError = IPE.get();
85 exitWithError(IPE.message(), std::string(Whence), std::string(Hint));
117 auto IPE = instrprof_error::success;
119 [&IPE](std::unique_ptr<InstrProfError> E) -> Error {
120 IPE = E->get();
127 if (IPE != instrprof_error::success) {
128 switch (IPE) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 248 instrprof_error IPE = InstrProfError::take(std::move(E));
249 if (IPE == instrprof_error::hash_mismatch) {
253 } else if (IPE != instrprof_error::unknown_function)
254 return make_error<InstrProfError>(IPE);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.cpp 1028 auto IPE = llvm::InstrProfError::take(std::move(E));
1029 if (IPE == llvm::instrprof_error::unknown_function)
1031 else if (IPE == llvm::instrprof_error::hash_mismatch)
1033 else if (IPE == llvm::instrprof_error::malformed)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 329 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) {
331 Err = IPE.get();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1281 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
1282 auto Err = IPE.get();
1307 std::string Msg = IPE.message() + std::string(" ") + F.getName().str() +

Completed in 26 milliseconds