Home
last modified time | relevance | path

Searched refs:InstrProfRecord (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h33 struct InstrProfRecord { struct
34 InstrProfRecord() {} in InstrProfRecord() function
35 InstrProfRecord(StringRef Name, uint64_t Hash, ArrayRef<uint64_t> Counts) in InstrProfRecord() argument
44 InstrProfRecord> { argument
46 InstrProfRecord Record;
56 InstrProfRecord &operator*() { return Record; }
57 InstrProfRecord *operator->() { return &Record; }
72 virtual std::error_code readNextRecord(InstrProfRecord &Record) = 0;
129 std::error_code readNextRecord(InstrProfRecord &Record) override;
180 std::error_code readNextRecord(InstrProfRecord &Record) override;
[all …]
/external/llvm/lib/ProfileData/
DInstrProfReader.cpp102 std::error_code TextInstrProfReader::readNextRecord(InstrProfRecord &Record) { in readNextRecord()
259 RawInstrProfReader<IntPtrT>::readNextRecord(InstrProfRecord &Record) { in readNextRecord()
382 IndexedInstrProfReader::readNextRecord(InstrProfRecord &Record) { in readNextRecord()