//=-- Profilesummary.cpp - Profile summary support --------------------------=// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains support for converting profile summary data from/to // metadata. // //===----------------------------------------------------------------------===// #include "llvm/IR/ProfileSummary.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/Metadata.h" #include "llvm/IR/Type.h" #include "llvm/Support/Casting.h" #include "llvm/Support/Format.h" usingnamespacellvm; // Return an MDTuple with two elements. The first element is a string Key and // the second is a uint64_t Value. static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, uint64_t Val) { … } static Metadata *getKeyFPValMD(LLVMContext &Context, const char *Key, double Val) { … } // Return an MDTuple with two elements. The first element is a string Key and // the second is a string Value. static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, const char *Val) { … } // This returns an MDTuple representing the detiled summary. The tuple has two // elements: a string "DetailedSummary" and an MDTuple representing the value // of the detailed summary. Each element of this tuple is again an MDTuple whose // elements are the (Cutoff, MinCount, NumCounts) triplet of the // DetailedSummaryEntry. Metadata *ProfileSummary::getDetailedSummaryMD(LLVMContext &Context) { … } // This returns an MDTuple representing this ProfileSummary object. The first // entry of this tuple is another MDTuple of two elements: a string // "ProfileFormat" and a string representing the format ("InstrProf" or // "SampleProfile"). The rest of the elements of the outer MDTuple are specific // to the kind of profile summary as returned by getFormatSpecificMD. // IsPartialProfile is an optional field and \p AddPartialField will decide // whether to add a field for it. // PartialProfileRatio is an optional field and \p AddPartialProfileRatioField // will decide whether to add a field for it. Metadata *ProfileSummary::getMD(LLVMContext &Context, bool AddPartialField, bool AddPartialProfileRatioField) { … } // Get the value metadata for the input MD/Key. static ConstantAsMetadata *getValMD(MDTuple *MD, const char *Key) { … } // Parse an MDTuple representing (Key, Val) pair. static bool getVal(MDTuple *MD, const char *Key, uint64_t &Val) { … } static bool getVal(MDTuple *MD, const char *Key, double &Val) { … } // Check if an MDTuple represents a (Key, Val) pair. static bool isKeyValuePair(MDTuple *MD, const char *Key, const char *Val) { … } // Parse an MDTuple representing detailed summary. static bool getSummaryFromMD(MDTuple *MD, SummaryEntryVector &Summary) { … } // Get the value of an optional field. Increment 'Idx' if it was present. Return // true if we can move onto the next field. template <typename ValueType> static bool getOptionalVal(MDTuple *Tuple, unsigned &Idx, const char *Key, ValueType &Value) { … } ProfileSummary *ProfileSummary::getFromMD(Metadata *MD) { … } void ProfileSummary::printSummary(raw_ostream &OS) const { … } void ProfileSummary::printDetailedSummary(raw_ostream &OS) const { … }