reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ProfileData/InstrProfData.inc
  432   ValueProfData *(*AllocValueProfData)(size_t TotalSizeInBytes);
  436 getFirstValueProfRecord(ValueProfData *VPD);
  522 ValueProfRecord *getFirstValueProfRecord(ValueProfData *This) {
  523   return (ValueProfRecord *)((char *)This + sizeof(ValueProfData));
  535   uint32_t TotalSize = sizeof(ValueProfData);
  577 INSTR_PROF_VISIBILITY ValueProfData *
  579                            ValueProfData *DstData) {
  584   ValueProfData *VPD =
lib/ProfileData/InstrProf.cpp
  754 ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) {
  755   ValueProfData *VD =
  756       (ValueProfData *)(new (::operator new(TotalSizeInBytes)) ValueProfData());
  779 std::unique_ptr<ValueProfData>
  850 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) {
  852                                             ValueProfData());
  873 Expected<std::unique_ptr<ValueProfData>>
lib/ProfileData/InstrProfReader.cpp
  454   Expected<std::unique_ptr<ValueProfData>> VDataPtrOrErr =
  455       ValueProfData::getValueProfData(
  515   Expected<std::unique_ptr<ValueProfData>> VDataPtrOrErr =
  516       ValueProfData::getValueProfData(D, End, ValueProfDataEndianness);
lib/ProfileData/InstrProfWriter.cpp
  129       M += ValueProfData::getSize(ProfileData.second);
  157       std::unique_ptr<ValueProfData> VDataPtr =
  158           ValueProfData::serializeFrom(ProfileData.second);
unittests/ProfileData/InstrProfTest.cpp
  697   std::unique_ptr<ValueProfData> VPData =
  698       ValueProfData::serializeFrom(SrcRecord);
  763   std::unique_ptr<ValueProfData> VPData =
  764       ValueProfData::serializeFrom(SrcRecord);