LLVM  8.0.1
Public Types | Public Member Functions | Static Public Member Functions | List of all members
llvm::InstrProfWriter Class Reference

#include "llvm/ProfileData/InstrProfWriter.h"

Public Types

enum  ProfKind { PF_Unknown = 0, PF_FE, PF_IRLevel }
 
using ProfilingData = SmallDenseMap< uint64_t, InstrProfRecord >
 

Public Member Functions

 InstrProfWriter (bool Sparse=false)
 
 ~InstrProfWriter ()
 
void addRecord (NamedInstrProfRecord &&I, uint64_t Weight, function_ref< void(Error)> Warn)
 Add function counts for the given function. More...
 
void addRecord (NamedInstrProfRecord &&I, function_ref< void(Error)> Warn)
 
void mergeRecordsFromWriter (InstrProfWriter &&IPW, function_ref< void(Error)> Warn)
 Merge existing function counts from the given writer. More...
 
void write (raw_fd_ostream &OS)
 Write the profile to OS. More...
 
Error writeText (raw_fd_ostream &OS)
 Write the profile in text format to OS. More...
 
std::unique_ptr< MemoryBufferwriteBuffer ()
 Write the profile, returning the raw data. For testing. More...
 
Error setIsIRLevelProfile (bool IsIRLevel)
 Set the ProfileKind. Report error if mixing FE and IR level profiles. More...
 
void setValueProfDataEndianness (support::endianness Endianness)
 
void setOutputSparse (bool Sparse)
 

Static Public Member Functions

static void writeRecordInText (StringRef Name, uint64_t Hash, const InstrProfRecord &Counters, InstrProfSymtab &Symtab, raw_fd_ostream &OS)
 Write Record in text format to OS. More...
 

Detailed Description

Definition at line 34 of file InstrProfWriter.h.

Member Typedef Documentation

◆ ProfilingData

Definition at line 36 of file InstrProfWriter.h.

Member Enumeration Documentation

◆ ProfKind

Enumerator
PF_Unknown 
PF_FE 
PF_IRLevel 

Definition at line 37 of file InstrProfWriter.h.

Constructor & Destructor Documentation

◆ InstrProfWriter()

InstrProfWriter::InstrProfWriter ( bool  Sparse = false)

Definition at line 165 of file InstrProfWriter.cpp.

◆ ~InstrProfWriter()

InstrProfWriter::~InstrProfWriter ( )

Definition at line 168 of file InstrProfWriter.cpp.

Member Function Documentation

◆ addRecord() [1/2]

void InstrProfWriter::addRecord ( NamedInstrProfRecord &&  I,
uint64_t  Weight,
function_ref< void(Error)>  Warn 
)

Add function counts for the given function.

If there are already counts for this function and the hash and number of counts match, each counter is summed. Optionally scale counts by Weight.

Definition at line 180 of file InstrProfWriter.cpp.

References E, I, llvm::InstrProfRecord::merge(), Name, llvm::InstrProfRecord::scale(), and llvm::InstrProfRecord::sortValueData().

Referenced by addRecord(), mergeRecordsFromWriter(), and setIsIRLevelProfile().

◆ addRecord() [2/2]

void llvm::InstrProfWriter::addRecord ( NamedInstrProfRecord &&  I,
function_ref< void(Error)>  Warn 
)
inline

◆ mergeRecordsFromWriter()

void InstrProfWriter::mergeRecordsFromWriter ( InstrProfWriter &&  IPW,
function_ref< void(Error)>  Warn 
)

Merge existing function counts from the given writer.

Definition at line 215 of file InstrProfWriter.cpp.

References addRecord(), llvm::any_of(), llvm::InstrProfRecord::Counts, I, and llvm::X86II::PD.

Referenced by addRecord().

◆ setIsIRLevelProfile()

Error llvm::InstrProfWriter::setIsIRLevelProfile ( bool  IsIRLevel)
inline

Set the ProfileKind. Report error if mixing FE and IR level profiles.

Definition at line 78 of file InstrProfWriter.h.

References addRecord(), llvm::msgpack::Endianness, I, llvm::X86II::PD, PF_FE, PF_IRLevel, PF_Unknown, setOutputSparse(), setValueProfDataEndianness(), llvm::Error::success(), and llvm::unsupported_version.

◆ setOutputSparse()

void InstrProfWriter::setOutputSparse ( bool  Sparse)

Definition at line 176 of file InstrProfWriter.cpp.

Referenced by setIsIRLevelProfile().

◆ setValueProfDataEndianness()

void InstrProfWriter::setValueProfDataEndianness ( support::endianness  Endianness)

◆ write()

void InstrProfWriter::write ( raw_fd_ostream OS)

Write the profile to OS.

Definition at line 314 of file InstrProfWriter.cpp.

Referenced by addRecord().

◆ writeBuffer()

std::unique_ptr< MemoryBuffer > InstrProfWriter::writeBuffer ( )

Write the profile, returning the raw data. For testing.

Definition at line 320 of file InstrProfWriter.cpp.

References llvm::Data, and llvm::MemoryBuffer::getMemBufferCopy().

Referenced by addRecord().

◆ writeRecordInText()

void InstrProfWriter::writeRecordInText ( StringRef  Name,
uint64_t  Hash,
const InstrProfRecord Counters,
InstrProfSymtab Symtab,
raw_fd_ostream OS 
)
static

◆ writeText()

Error InstrProfWriter::writeText ( raw_fd_ostream OS)

Write the profile in text format to OS.

Definition at line 376 of file InstrProfWriter.cpp.

References llvm::InstrProfSymtab::addFuncName(), E, I, PF_IRLevel, llvm::Error::success(), and writeRecordInText().

Referenced by addRecord().


The documentation for this class was generated from the following files: