Lines Matching defs:II
20 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const InlineInfo &II) {
21 if (!II.isValid())
24 for (auto Range : II.Ranges) {
31 OS << " Name = " << HEX32(II.Name) << ", CallFile = " << II.CallFile
32 << ", CallLine = " << II.CallFile << '\n';
33 for (const auto &Child : II.Children)
38 static bool getInlineStackHelper(const InlineInfo &II, uint64_t Addr,
40 if (II.Ranges.contains(Addr)) {
44 if (II.Name != 0)
45 InlineStack.insert(InlineStack.begin(), &II);
46 for (const auto &Child : II.Children) {
267 static uint64_t GetTotalNumChildren(const InlineInfo &II) {
268 uint64_t NumChildren = II.Children.size();
269 for (const auto &Child : II.Children)