OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NamedInstrProfRecord
(Results
1 - 6
of
6
) sorted by null
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
InstrProfReader.h
43
NamedInstrProfRecord
> {
73
virtual Error readNextRecord(
NamedInstrProfRecord
&Record) = 0;
164
Error readNextRecord(
NamedInstrProfRecord
&Record) override;
210
Error readNextRecord(
NamedInstrProfRecord
&Record) override;
244
Error readName(
NamedInstrProfRecord
&Record);
245
Error readFuncHash(
NamedInstrProfRecord
&Record);
282
std::vector<
NamedInstrProfRecord
> DataBuffer;
294
using data_type = ArrayRef<
NamedInstrProfRecord
>;
335
virtual Error getRecords(ArrayRef<
NamedInstrProfRecord
> &Data) = 0;
339
ArrayRef<
NamedInstrProfRecord
> &Data) = 0
[
all
...]
InstrProfWriter.h
53
void addRecord(
NamedInstrProfRecord
&&I, uint64_t Weight,
55
void addRecord(
NamedInstrProfRecord
&&I, function_ref<void(Error)> Warn) {
InstrProf.h
767
struct
NamedInstrProfRecord
: InstrProfRecord {
771
NamedInstrProfRecord
() = default;
772
NamedInstrProfRecord
(StringRef Name, uint64_t Hash,
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfReader.cpp
228
Error TextInstrProfReader::readNextRecord(
NamedInstrProfRecord
&Record) {
379
Error RawInstrProfReader<IntPtrT>::readName(
NamedInstrProfRecord
&Record) {
385
Error RawInstrProfReader<IntPtrT>::readFuncHash(
NamedInstrProfRecord
&Record) {
447
Error RawInstrProfReader<IntPtrT>::readNextRecord(
NamedInstrProfRecord
&Record) {
552
StringRef FuncName, ArrayRef<
NamedInstrProfRecord
> &Data) {
566
ArrayRef<
NamedInstrProfRecord
> &Data) {
709
ArrayRef<
NamedInstrProfRecord
> Data;
734
Error IndexedInstrProfReader::readNextRecord(
NamedInstrProfRecord
&Record) {
735
ArrayRef<
NamedInstrProfRecord
> Data;
InstrProfWriter.cpp
180
void InstrProfWriter::addRecord(
NamedInstrProfRecord
&&I, uint64_t Weight,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ProfileData/
InstrProfTest.cpp
231
NamedInstrProfRecord
Record1("caller", 0x1234, {1, 2});
275
NamedInstrProfRecord
Record("caller", 0x1234, {1, 2});
371
NamedInstrProfRecord
Record1("caller", 0x1234, {1, 2});
414
NamedInstrProfRecord
Record1("caller", 0x1234, {1, 2});
462
NamedInstrProfRecord
Record11(caller, 0x1234, {1, 2});
463
NamedInstrProfRecord
Record12(caller, 0x1234, {1, 2});
585
NamedInstrProfRecord
Record4("baz", 0x5678, {3, 4});
594
NamedInstrProfRecord
Record5("baz", 0x5678, {5, 6});
627
NamedInstrProfRecord
Record11(caller, 0x1234, {1, 2});
628
NamedInstrProfRecord
Record12(caller, 0x1234, {1, 2})
[
all
...]
Completed in 1035 milliseconds