Easwaran Raman | e5a17e3 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 1 | //=-- Profilesummary.cpp - Profile summary support --------------------------=// |
Easwaran Raman | d68aae2 | 2016-02-04 23:34:31 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Easwaran Raman | d68aae2 | 2016-02-04 23:34:31 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
Easwaran Raman | e5a17e3 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 9 | // This file contains support for converting profile summary data from/to |
| 10 | // metadata. |
Easwaran Raman | d68aae2 | 2016-02-04 23:34:31 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Easwaran Raman | e5a17e3 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 14 | #include "llvm/IR/ProfileSummary.h" |
Dehao Chen | f84b630 | 2016-02-23 03:39:24 +0000 | [diff] [blame] | 15 | #include "llvm/IR/Attributes.h" |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 16 | #include "llvm/IR/Constants.h" |
Dehao Chen | f84b630 | 2016-02-23 03:39:24 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Function.h" |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 18 | #include "llvm/IR/Metadata.h" |
| 19 | #include "llvm/IR/Type.h" |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Casting.h" |
Simon Pilgrim | 7a55d98 | 2020-06-23 09:43:09 +0100 | [diff] [blame] | 21 | #include "llvm/Support/Format.h" |
Easwaran Raman | d68aae2 | 2016-02-04 23:34:31 +0000 | [diff] [blame] | 22 | |
| 23 | using namespace llvm; |
| 24 | |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 25 | // Return an MDTuple with two elements. The first element is a string Key and |
| 26 | // the second is a uint64_t Value. |
| 27 | static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, |
| 28 | uint64_t Val) { |
| 29 | Type *Int64Ty = Type::getInt64Ty(Context); |
| 30 | Metadata *Ops[2] = {MDString::get(Context, Key), |
| 31 | ConstantAsMetadata::get(ConstantInt::get(Int64Ty, Val))}; |
| 32 | return MDTuple::get(Context, Ops); |
| 33 | } |
| 34 | |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 35 | static Metadata *getKeyFPValMD(LLVMContext &Context, const char *Key, |
| 36 | double Val) { |
| 37 | Type *DoubleTy = Type::getDoubleTy(Context); |
| 38 | Metadata *Ops[2] = {MDString::get(Context, Key), |
| 39 | ConstantAsMetadata::get(ConstantFP::get(DoubleTy, Val))}; |
| 40 | return MDTuple::get(Context, Ops); |
| 41 | } |
| 42 | |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 43 | // Return an MDTuple with two elements. The first element is a string Key and |
| 44 | // the second is a string Value. |
| 45 | static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, |
| 46 | const char *Val) { |
| 47 | Metadata *Ops[2] = {MDString::get(Context, Key), MDString::get(Context, Val)}; |
| 48 | return MDTuple::get(Context, Ops); |
| 49 | } |
| 50 | |
| 51 | // This returns an MDTuple representing the detiled summary. The tuple has two |
| 52 | // elements: a string "DetailedSummary" and an MDTuple representing the value |
| 53 | // of the detailed summary. Each element of this tuple is again an MDTuple whose |
| 54 | // elements are the (Cutoff, MinCount, NumCounts) triplet of the |
| 55 | // DetailedSummaryEntry. |
| 56 | Metadata *ProfileSummary::getDetailedSummaryMD(LLVMContext &Context) { |
| 57 | std::vector<Metadata *> Entries; |
| 58 | Type *Int32Ty = Type::getInt32Ty(Context); |
| 59 | Type *Int64Ty = Type::getInt64Ty(Context); |
| 60 | for (auto &Entry : DetailedSummary) { |
| 61 | Metadata *EntryMD[3] = { |
| 62 | ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Entry.Cutoff)), |
| 63 | ConstantAsMetadata::get(ConstantInt::get(Int64Ty, Entry.MinCount)), |
| 64 | ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Entry.NumCounts))}; |
| 65 | Entries.push_back(MDTuple::get(Context, EntryMD)); |
| 66 | } |
| 67 | Metadata *Ops[2] = {MDString::get(Context, "DetailedSummary"), |
| 68 | MDTuple::get(Context, Entries)}; |
| 69 | return MDTuple::get(Context, Ops); |
| 70 | } |
| 71 | |
| 72 | // This returns an MDTuple representing this ProfileSummary object. The first |
| 73 | // entry of this tuple is another MDTuple of two elements: a string |
| 74 | // "ProfileFormat" and a string representing the format ("InstrProf" or |
| 75 | // "SampleProfile"). The rest of the elements of the outer MDTuple are specific |
| 76 | // to the kind of profile summary as returned by getFormatSpecificMD. |
Wei Mi | 10b57ca | 2020-04-21 14:32:28 -0700 | [diff] [blame] | 77 | // IsPartialProfile is an optional field and \p AddPartialField will decide |
| 78 | // whether to add a field for it. |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 79 | // PartialProfileRatio is an optional field and \p AddPartialProfileRatioField |
| 80 | // will decide whether to add a field for it. |
| 81 | Metadata *ProfileSummary::getMD(LLVMContext &Context, bool AddPartialField, |
| 82 | bool AddPartialProfileRatioField) { |
Rong Xu | a6ff69f | 2019-02-28 19:55:07 +0000 | [diff] [blame] | 83 | const char *KindStr[3] = {"InstrProf", "CSInstrProf", "SampleProfile"}; |
Wei Mi | 10b57ca | 2020-04-21 14:32:28 -0700 | [diff] [blame] | 84 | SmallVector<Metadata *, 16> Components; |
| 85 | Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK])); |
| 86 | Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount())); |
| 87 | Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount())); |
| 88 | Components.push_back( |
| 89 | getKeyValMD(Context, "MaxInternalCount", getMaxInternalCount())); |
| 90 | Components.push_back( |
| 91 | getKeyValMD(Context, "MaxFunctionCount", getMaxFunctionCount())); |
| 92 | Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts())); |
| 93 | Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions())); |
| 94 | if (AddPartialField) |
| 95 | Components.push_back( |
| 96 | getKeyValMD(Context, "IsPartialProfile", isPartialProfile())); |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 97 | if (AddPartialProfileRatioField) |
| 98 | Components.push_back(getKeyFPValMD(Context, "PartialProfileRatio", |
| 99 | getPartialProfileRatio())); |
Wei Mi | 10b57ca | 2020-04-21 14:32:28 -0700 | [diff] [blame] | 100 | Components.push_back(getDetailedSummaryMD(Context)); |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 101 | return MDTuple::get(Context, Components); |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 104 | // Get the value metadata for the input MD/Key. |
| 105 | static ConstantAsMetadata *getValMD(MDTuple *MD, const char *Key) { |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 106 | if (!MD) |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 107 | return nullptr; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 108 | if (MD->getNumOperands() != 2) |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 109 | return nullptr; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 110 | MDString *KeyMD = dyn_cast<MDString>(MD->getOperand(0)); |
| 111 | ConstantAsMetadata *ValMD = dyn_cast<ConstantAsMetadata>(MD->getOperand(1)); |
| 112 | if (!KeyMD || !ValMD) |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 113 | return nullptr; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 114 | if (!KeyMD->getString().equals(Key)) |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 115 | return nullptr; |
| 116 | return ValMD; |
| 117 | } |
| 118 | |
| 119 | // Parse an MDTuple representing (Key, Val) pair. |
| 120 | static bool getVal(MDTuple *MD, const char *Key, uint64_t &Val) { |
| 121 | if (auto *ValMD = getValMD(MD, Key)) { |
| 122 | Val = cast<ConstantInt>(ValMD->getValue())->getZExtValue(); |
| 123 | return true; |
| 124 | } |
| 125 | return false; |
| 126 | } |
| 127 | |
| 128 | static bool getVal(MDTuple *MD, const char *Key, double &Val) { |
| 129 | if (auto *ValMD = getValMD(MD, Key)) { |
| 130 | Val = cast<ConstantFP>(ValMD->getValue())->getValueAPF().convertToDouble(); |
| 131 | return true; |
| 132 | } |
| 133 | return false; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // Check if an MDTuple represents a (Key, Val) pair. |
| 137 | static bool isKeyValuePair(MDTuple *MD, const char *Key, const char *Val) { |
| 138 | if (!MD || MD->getNumOperands() != 2) |
| 139 | return false; |
| 140 | MDString *KeyMD = dyn_cast<MDString>(MD->getOperand(0)); |
| 141 | MDString *ValMD = dyn_cast<MDString>(MD->getOperand(1)); |
| 142 | if (!KeyMD || !ValMD) |
| 143 | return false; |
| 144 | if (!KeyMD->getString().equals(Key) || !ValMD->getString().equals(Val)) |
| 145 | return false; |
| 146 | return true; |
| 147 | } |
| 148 | |
| 149 | // Parse an MDTuple representing detailed summary. |
| 150 | static bool getSummaryFromMD(MDTuple *MD, SummaryEntryVector &Summary) { |
| 151 | if (!MD || MD->getNumOperands() != 2) |
| 152 | return false; |
| 153 | MDString *KeyMD = dyn_cast<MDString>(MD->getOperand(0)); |
| 154 | if (!KeyMD || !KeyMD->getString().equals("DetailedSummary")) |
| 155 | return false; |
| 156 | MDTuple *EntriesMD = dyn_cast<MDTuple>(MD->getOperand(1)); |
| 157 | if (!EntriesMD) |
| 158 | return false; |
| 159 | for (auto &&MDOp : EntriesMD->operands()) { |
| 160 | MDTuple *EntryMD = dyn_cast<MDTuple>(MDOp); |
| 161 | if (!EntryMD || EntryMD->getNumOperands() != 3) |
| 162 | return false; |
| 163 | ConstantAsMetadata *Op0 = |
| 164 | dyn_cast<ConstantAsMetadata>(EntryMD->getOperand(0)); |
| 165 | ConstantAsMetadata *Op1 = |
| 166 | dyn_cast<ConstantAsMetadata>(EntryMD->getOperand(1)); |
| 167 | ConstantAsMetadata *Op2 = |
| 168 | dyn_cast<ConstantAsMetadata>(EntryMD->getOperand(2)); |
| 169 | |
| 170 | if (!Op0 || !Op1 || !Op2) |
| 171 | return false; |
| 172 | Summary.emplace_back(cast<ConstantInt>(Op0->getValue())->getZExtValue(), |
| 173 | cast<ConstantInt>(Op1->getValue())->getZExtValue(), |
| 174 | cast<ConstantInt>(Op2->getValue())->getZExtValue()); |
| 175 | } |
| 176 | return true; |
| 177 | } |
| 178 | |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 179 | // Get the value of an optional field. Increment 'Idx' if it was present. Return |
| 180 | // true if we can move onto the next field. |
| 181 | template <typename ValueType> |
| 182 | static bool getOptionalVal(MDTuple *Tuple, unsigned &Idx, const char *Key, |
| 183 | ValueType &Value) { |
| 184 | if (getVal(dyn_cast<MDTuple>(Tuple->getOperand(Idx)), Key, Value)) { |
| 185 | Idx++; |
| 186 | // Need to make sure when the key is present, we won't step over the bound |
| 187 | // of Tuple operand array. Since (non-optional) DetailedSummary always comes |
| 188 | // last, the next entry in the tuple operand array must exist. |
| 189 | return Idx < Tuple->getNumOperands(); |
| 190 | } |
| 191 | // It was absent, keep going. |
| 192 | return true; |
| 193 | } |
| 194 | |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 195 | ProfileSummary *ProfileSummary::getFromMD(Metadata *MD) { |
George Burgess IV | 85fc4c3 | 2018-04-12 19:48:05 +0000 | [diff] [blame] | 196 | MDTuple *Tuple = dyn_cast_or_null<MDTuple>(MD); |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 197 | if (!Tuple || Tuple->getNumOperands() < 8 || Tuple->getNumOperands() > 10) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 198 | return nullptr; |
| 199 | |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 200 | unsigned I = 0; |
| 201 | auto &FormatMD = Tuple->getOperand(I++); |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 202 | ProfileSummary::Kind SummaryKind; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 203 | if (isKeyValuePair(dyn_cast_or_null<MDTuple>(FormatMD), "ProfileFormat", |
| 204 | "SampleProfile")) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 205 | SummaryKind = PSK_Sample; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 206 | else if (isKeyValuePair(dyn_cast_or_null<MDTuple>(FormatMD), "ProfileFormat", |
| 207 | "InstrProf")) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 208 | SummaryKind = PSK_Instr; |
Rong Xu | a6ff69f | 2019-02-28 19:55:07 +0000 | [diff] [blame] | 209 | else if (isKeyValuePair(dyn_cast_or_null<MDTuple>(FormatMD), "ProfileFormat", |
| 210 | "CSInstrProf")) |
| 211 | SummaryKind = PSK_CSInstr; |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 212 | else |
| 213 | return nullptr; |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 214 | |
| 215 | uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, |
| 216 | MaxInternalCount; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 217 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "TotalCount", |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 218 | TotalCount)) |
| 219 | return nullptr; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 220 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "MaxCount", MaxCount)) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 221 | return nullptr; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 222 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "MaxInternalCount", |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 223 | MaxInternalCount)) |
| 224 | return nullptr; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 225 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "MaxFunctionCount", |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 226 | MaxFunctionCount)) |
| 227 | return nullptr; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 228 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "NumCounts", |
Wei Mi | 10b57ca | 2020-04-21 14:32:28 -0700 | [diff] [blame] | 229 | NumCounts)) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 230 | return nullptr; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 231 | if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "NumFunctions", |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 232 | NumFunctions)) |
| 233 | return nullptr; |
Wei Mi | 10b57ca | 2020-04-21 14:32:28 -0700 | [diff] [blame] | 234 | |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 235 | // Optional fields. Need to initialize because the fields are optional. |
| 236 | uint64_t IsPartialProfile = 0; |
| 237 | if (!getOptionalVal(Tuple, I, "IsPartialProfile", IsPartialProfile)) |
| 238 | return nullptr; |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 239 | double PartialProfileRatio = 0; |
| 240 | if (!getOptionalVal(Tuple, I, "PartialProfileRatio", PartialProfileRatio)) |
| 241 | return nullptr; |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 242 | |
| 243 | SummaryEntryVector Summary; |
Hiroshi Yamauchi | f9a6163 | 2020-05-19 12:12:26 -0700 | [diff] [blame] | 244 | if (!getSummaryFromMD(dyn_cast<MDTuple>(Tuple->getOperand(I++)), Summary)) |
Easwaran Raman | 7cefdb8 | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 245 | return nullptr; |
George Burgess IV | 4933124 | 2018-04-12 20:54:05 +0000 | [diff] [blame] | 246 | return new ProfileSummary(SummaryKind, std::move(Summary), TotalCount, |
| 247 | MaxCount, MaxInternalCount, MaxFunctionCount, |
Hiroshi Yamauchi | b5c59d7 | 2020-05-14 10:21:53 -0700 | [diff] [blame] | 248 | NumCounts, NumFunctions, IsPartialProfile, |
| 249 | PartialProfileRatio); |
Easwaran Raman | 7c4f25d | 2016-03-01 18:30:58 +0000 | [diff] [blame] | 250 | } |
Wenlei He | 17fc651 | 2020-05-02 08:34:10 -0700 | [diff] [blame] | 251 | |
| 252 | void ProfileSummary::printSummary(raw_ostream &OS) { |
| 253 | OS << "Total functions: " << NumFunctions << "\n"; |
| 254 | OS << "Maximum function count: " << MaxFunctionCount << "\n"; |
| 255 | OS << "Maximum block count: " << MaxCount << "\n"; |
| 256 | OS << "Total number of blocks: " << NumCounts << "\n"; |
| 257 | OS << "Total count: " << TotalCount << "\n"; |
| 258 | } |
| 259 | |
| 260 | void ProfileSummary::printDetailedSummary(raw_ostream &OS) { |
| 261 | OS << "Detailed summary:\n"; |
Simon Pilgrim | 53f1748 | 2020-09-21 16:28:10 +0100 | [diff] [blame] | 262 | for (const auto &Entry : DetailedSummary) { |
Wenlei He | 17fc651 | 2020-05-02 08:34:10 -0700 | [diff] [blame] | 263 | OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount |
| 264 | << " account for " |
| 265 | << format("%0.6g", (float)Entry.Cutoff / Scale * 100) |
| 266 | << " percentage of the total counts.\n"; |
| 267 | } |
| 268 | } |