aboutsummaryrefslogtreecommitdiff
path: root/llvm/include/llvm/ProfileData/InstrProfWriter.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2021-07-29 20:15:26 +0000
committerDimitry Andric <dim@FreeBSD.org>2021-07-29 20:15:26 +0000
commit344a3780b2e33f6ca763666c380202b18aab72a3 (patch)
treef0b203ee6eb71d7fdd792373e3c81eb18d6934dd /llvm/include/llvm/ProfileData/InstrProfWriter.h
parentb60736ec1405bb0a8dd40989f67ef4c93da068ab (diff)
downloadsrc-344a3780b2e33f6ca763666c380202b18aab72a3.tar.gz
src-344a3780b2e33f6ca763666c380202b18aab72a3.zip
the upstream release/13.x branch was created.
Diffstat (limited to 'llvm/include/llvm/ProfileData/InstrProfWriter.h')
-rw-r--r--llvm/include/llvm/ProfileData/InstrProfWriter.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProfWriter.h b/llvm/include/llvm/ProfileData/InstrProfWriter.h
index 35c2669d55a6..97c80de6aa23 100644
--- a/llvm/include/llvm/ProfileData/InstrProfWriter.h
+++ b/llvm/include/llvm/ProfileData/InstrProfWriter.h
@@ -64,11 +64,13 @@ public:
function_ref<void(Error)> Warn);
/// Write the profile to \c OS
- void write(raw_fd_ostream &OS);
+ Error write(raw_fd_ostream &OS);
/// Write the profile in text format to \c OS
Error writeText(raw_fd_ostream &OS);
+ Error validateRecord(const InstrProfRecord &Func);
+
/// Write \c Record in text format to \c OS
static void writeRecordInText(StringRef Name, uint64_t Hash,
const InstrProfRecord &Counters,
@@ -114,7 +116,8 @@ private:
void addRecord(StringRef Name, uint64_t Hash, InstrProfRecord &&I,
uint64_t Weight, function_ref<void(Error)> Warn);
bool shouldEncodeData(const ProfilingData &PD);
- void writeImpl(ProfOStream &OS);
+
+ Error writeImpl(ProfOStream &OS);
};
} // end namespace llvm