LLVM 19.0.0git
PseudoProbePrinter.cpp
Go to the documentation of this file.
1//===- llvm/CodeGen/PseudoProbePrinter.cpp - Pseudo Probe Emission -------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains support for writing pseudo probe info into asm files.
10//
11//===----------------------------------------------------------------------===//
12
13#include "PseudoProbePrinter.h"
16#include "llvm/IR/Function.h"
17#include "llvm/IR/PseudoProbe.h"
19#include "llvm/MC/MCStreamer.h"
20
21using namespace llvm;
22
24
27 const DILocation *DebugLoc) {
28 // Gather all the inlined-at nodes.
29 // When it's done ReversedInlineStack looks like ([66, B], [88, A])
30 // which means, Function A inlines function B at calliste with a probe id 88,
31 // and B inlines C at probe 66 where C is represented by Guid.
32 SmallVector<InlineSite, 8> ReversedInlineStack;
33 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr;
34 while (InlinedAt) {
35 auto Name = InlinedAt->getSubprogramLinkageName();
36 // Use caching to avoid redundant md5 computation for build speed.
37 uint64_t &CallerGuid = NameGuidMap[Name];
38 if (!CallerGuid)
39 CallerGuid = Function::getGUID(Name);
41 InlinedAt->getDiscriminator());
42 ReversedInlineStack.emplace_back(CallerGuid, CallerProbeId);
43 InlinedAt = InlinedAt->getInlinedAt();
44 }
45 uint64_t Discriminator = 0;
46 // For now only block probes have FS discriminators. See
47 // MIRFSDiscriminator.cpp for more details.
50 Discriminator = DebugLoc->getDiscriminator();
51 assert((EnableFSDiscriminator || Discriminator == 0) &&
52 "Discriminator should not be set in non-FSAFDO mode");
53 SmallVector<InlineSite, 8> InlineStack(llvm::reverse(ReversedInlineStack));
54 Asm->OutStreamer->emitPseudoProbe(Guid, Index, Type, Attr, Discriminator,
55 InlineStack, Asm->CurrentFnSym);
56}
std::string Name
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
MCSymbol * CurrentFnSym
The symbol for the current function.
Definition: AsmPrinter.h:121
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
Definition: AsmPrinter.h:99
Debug location.
A debug info location.
Definition: DebugLoc.h:33
GUID getGUID() const
Return a 64-bit global unique ID constructed from global value name (i.e.
Definition: GlobalValue.h:594
~PseudoProbeHandler() override
void emitPseudoProbe(uint64_t Guid, uint64_t Index, uint64_t Type, uint64_t Attr, const DILocation *DebugLoc)
reference emplace_back(ArgTypes &&... Args)
Definition: SmallVector.h:950
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
cl::opt< bool > EnableFSDiscriminator
auto reverse(ContainerTy &&C)
Definition: STLExtras.h:428
static uint32_t extractProbeIndex(uint32_t Value)
Definition: PseudoProbe.h:61