|
static ErrorOr< std::unique_ptr< SampleProfileWriter > > | create (StringRef Filename, SampleProfileFormat Format) |
| Profile writer factory. More...
|
|
static ErrorOr< std::unique_ptr< SampleProfileWriter > > | create (std::unique_ptr< raw_ostream > &OS, SampleProfileFormat Format) |
| Create a new stream writer based on the value of Format . More...
|
|
uint64_t | markSectionStart (SecType Type, uint32_t LayoutIdx) |
| Return the current position and prepare to use it as the start position of a section given the section type Type and its position LayoutIdx in SectionHdrLayout. More...
|
|
std::error_code | addNewSection (SecType Sec, uint32_t LayoutIdx, uint64_t SectionStart) |
| Add a new section into section header table given the section type Type , its position LayoutIdx in SectionHdrLayout and the location SectionStart where the section should be written to. More...
|
|
template<class SecFlagType > |
void | addSectionFlag (SecType Type, SecFlagType Flag) |
|
template<class SecFlagType > |
void | addSectionFlag (uint32_t SectionIdx, SecFlagType Flag) |
|
void | addContext (const SampleContext &Context) override |
|
virtual std::error_code | writeOneSection (SecType Type, uint32_t LayoutIdx, const SampleProfileMap &ProfileMap) |
|
std::error_code | writeNameTable () override |
|
std::error_code | writeContextIdx (const SampleContext &Context) override |
|
std::error_code | writeCSNameIdx (const SampleContext &Context) |
|
std::error_code | writeCSNameTableSection () |
|
std::error_code | writeFuncMetadata (const SampleProfileMap &Profiles) |
|
std::error_code | writeFuncMetadata (const FunctionSamples &Profile) |
|
std::error_code | writeNameTableSection (const SampleProfileMap &ProfileMap) |
|
std::error_code | writeFuncOffsetTable () |
|
std::error_code | writeProfileSymbolListSection () |
|
virtual MapVector< StringRef, uint32_t > & | getNameTable () |
|
virtual std::error_code | writeMagicIdent (SampleProfileFormat Format) |
|
std::error_code | writeSummary () |
|
std::error_code | writeNameIdx (StringRef FName) |
|
std::error_code | writeBody (const FunctionSamples &S) |
|
void | stablizeNameTable (MapVector< StringRef, uint32_t > &NameTable, std::set< StringRef > &V) |
|
void | addName (StringRef FName) |
|
void | addNames (const FunctionSamples &S) |
|
| SampleProfileWriter (std::unique_ptr< raw_ostream > &OS) |
|
virtual std::error_code | writeFuncProfiles (const SampleProfileMap &ProfileMap) |
|
void | computeSummary (const SampleProfileMap &ProfileMap) |
| Compute summary for this profile. More...
|
|
SectionLayout | SecLayout = DefaultLayout |
|
SmallVector< SecHdrTableEntry, 8 > | SectionHdrLayout |
|
uint64_t | SecLBRProfileStart = 0 |
|
MapVector< StringRef, uint32_t > | NameTable |
|
std::unique_ptr< raw_ostream > | OutputStream |
| Output stream where to emit the profile to. More...
|
|
std::unique_ptr< ProfileSummary > | Summary |
| Profile summary. More...
|
|
SampleProfileFormat | Format = SPF_None |
| Profile format. More...
|
|
Definition at line 325 of file SampleProfWriter.h.