Home
last modified time | relevance | path

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

/src/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_rawprofile.cpp20 using SegmentEntry = ::llvm::memprof::SegmentEntry; typedef
47 + sizeof(SegmentEntry) * NumSegmentsToRecord; in SegmentSizeBytes()
72 SegmentEntry Entry(Segment.beg, Segment.end, Module.base_address()); in SerializeSegmentsToBuffer()
76 memcpy(Ptr, &Entry, sizeof(SegmentEntry)); in SerializeSegmentsToBuffer()
77 Ptr += sizeof(SegmentEntry); in SerializeSegmentsToBuffer()
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProfData.inc60 PACKED(struct SegmentEntry {
68 SegmentEntry(uint64_t S, uint64_t E, uint64_t O)
71 SegmentEntry(const SegmentEntry& S) {
79 SegmentEntry& operator=(const SegmentEntry& S) {
88 bool operator==(const SegmentEntry& S) const {
H A DMemProfReader.h170 llvm::SmallVectorImpl<SegmentEntry> &Seg,
225 llvm::SmallVector<SegmentEntry, 2> SegmentInfo;
/src/contrib/llvm-project/compiler-rt/include/profile/
H A DMemProfData.inc60 PACKED(struct SegmentEntry {
68 SegmentEntry(uint64_t S, uint64_t E, uint64_t O)
71 SegmentEntry(const SegmentEntry& S) {
79 SegmentEntry& operator=(const SegmentEntry& S) {
88 bool operator==(const SegmentEntry& S) const {
/src/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProfReader.cpp91 llvm::SmallVector<SegmentEntry> readSegmentEntries(const char *Ptr) { in readSegmentEntries()
96 llvm::SmallVector<SegmentEntry> Items; in readSegmentEntries()
98 Items.push_back(*reinterpret_cast<const SegmentEntry *>( in readSegmentEntries()
99 Ptr + I * sizeof(SegmentEntry))); in readSegmentEntries()
222 std::string getBuildIdString(const SegmentEntry &Entry) { in getBuildIdString()
664 const llvm::SmallVector<SegmentEntry> Entries = in peekBuildIds()
701 const llvm::SmallVector<SegmentEntry> Entries = in readRawProfile()