LLVM 19.0.0git
InstrumentationMap.h
Go to the documentation of this file.
1//===- InstrumentationMap.h - XRay Instrumentation Map ----------*- C++ -*-===//
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// Defines the interface for extracting the instrumentation map from an
10// XRay-instrumented binary.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_XRAY_INSTRUMENTATIONMAP_H
15#define LLVM_XRAY_INSTRUMENTATIONMAP_H
16
17#include "llvm/ADT/StringRef.h"
18#include "llvm/Support/Error.h"
20#include <cstdint>
21#include <optional>
22#include <unordered_map>
23#include <vector>
24
25namespace llvm {
26
27namespace xray {
28
29// Forward declare to make a friend.
30class InstrumentationMap;
31
32/// Loads the instrumentation map from |Filename|. This auto-deduces the type of
33/// the instrumentation map.
34Expected<InstrumentationMap> loadInstrumentationMap(StringRef Filename);
35
36/// Represents an XRay instrumentation sled entry from an object file.
37struct SledEntry {
38 /// Each entry here represents the kinds of supported instrumentation map
39 /// entries.
41
42 /// The address of the sled.
44
45 /// The address of the function.
47
48 /// The kind of sled.
50
51 /// Whether the sled was annotated to always be instrumented.
53
54 unsigned char Version;
55};
56
58 int32_t FuncId;
59 yaml::Hex64 Address;
60 yaml::Hex64 Function;
63 std::string FunctionName;
64 unsigned char Version;
65};
66
67/// The InstrumentationMap represents the computed function id's and indicated
68/// function addresses from an object file (or a YAML file). This provides an
69/// interface to just the mapping between the function id, and the function
70/// address.
71///
72/// We also provide raw access to the actual instrumentation map entries we find
73/// associated with a particular object file.
74///
76public:
77 using FunctionAddressMap = std::unordered_map<int32_t, uint64_t>;
78 using FunctionAddressReverseMap = std::unordered_map<uint64_t, int32_t>;
79 using SledContainer = std::vector<SledEntry>;
80
81private:
82 SledContainer Sleds;
83 FunctionAddressMap FunctionAddresses;
84 FunctionAddressReverseMap FunctionIds;
85
87
88public:
89 /// Provides a raw accessor to the unordered map of function addresses.
90 const FunctionAddressMap &getFunctionAddresses() { return FunctionAddresses; }
91
92 /// Returns an XRay computed function id, provided a function address.
93 std::optional<int32_t> getFunctionId(uint64_t Addr) const;
94
95 /// Returns the function address for a function id.
96 std::optional<uint64_t> getFunctionAddr(int32_t FuncId) const;
97
98 /// Provide read-only access to the entries of the instrumentation map.
99 const SledContainer &sleds() const { return Sleds; };
100};
101
102} // end namespace xray
103
104namespace yaml {
105
106template <> struct ScalarEnumerationTraits<xray::SledEntry::FunctionKinds> {
107 static void enumeration(IO &IO, xray::SledEntry::FunctionKinds &Kind) {
108 IO.enumCase(Kind, "function-enter", xray::SledEntry::FunctionKinds::ENTRY);
109 IO.enumCase(Kind, "function-exit", xray::SledEntry::FunctionKinds::EXIT);
110 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
111 IO.enumCase(Kind, "log-args-enter",
112 xray::SledEntry::FunctionKinds::LOG_ARGS_ENTER);
113 IO.enumCase(Kind, "custom-event",
114 xray::SledEntry::FunctionKinds::CUSTOM_EVENT);
115 }
116};
117
118template <> struct MappingTraits<xray::YAMLXRaySledEntry> {
119 static void mapping(IO &IO, xray::YAMLXRaySledEntry &Entry) {
120 IO.mapRequired("id", Entry.FuncId);
121 IO.mapRequired("address", Entry.Address);
122 IO.mapRequired("function", Entry.Function);
123 IO.mapRequired("kind", Entry.Kind);
124 IO.mapRequired("always-instrument", Entry.AlwaysInstrument);
125 IO.mapOptional("function-name", Entry.FunctionName);
126 IO.mapOptional("version", Entry.Version, 0);
127 }
128
129 static constexpr bool flow = true;
130};
131
132} // end namespace yaml
133
134} // end namespace llvm
135
136LLVM_YAML_IS_SEQUENCE_VECTOR(xray::YAMLXRaySledEntry)
137
138#endif // LLVM_XRAY_INSTRUMENTATIONMAP_H
uint64_t Addr
Profile::FuncID FuncId
Definition: Profile.cpp:321
#define LLVM_YAML_IS_SEQUENCE_VECTOR(type)
Tagged union holding either a T or a Error.
Definition: Error.h:474
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
The InstrumentationMap represents the computed function id's and indicated function addresses from an...
std::unordered_map< int32_t, uint64_t > FunctionAddressMap
std::unordered_map< uint64_t, int32_t > FunctionAddressReverseMap
const SledContainer & sleds() const
Provide read-only access to the entries of the instrumentation map.
friend Expected< InstrumentationMap > loadInstrumentationMap(StringRef)
Loads the instrumentation map from |Filename|.
std::vector< SledEntry > SledContainer
std::optional< int32_t > getFunctionId(uint64_t Addr) const
Returns an XRay computed function id, provided a function address.
const FunctionAddressMap & getFunctionAddresses()
Provides a raw accessor to the unordered map of function addresses.
std::optional< uint64_t > getFunctionAddr(int32_t FuncId) const
Returns the function address for a function id.
Expected< InstrumentationMap > loadInstrumentationMap(StringRef Filename)
Loads the instrumentation map from |Filename|.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Represents an XRay instrumentation sled entry from an object file.
uint64_t Address
The address of the sled.
uint64_t Function
The address of the function.
FunctionKinds
Each entry here represents the kinds of supported instrumentation map entries.
bool AlwaysInstrument
Whether the sled was annotated to always be instrumented.
FunctionKinds Kind
The kind of sled.
SledEntry::FunctionKinds Kind
static void mapping(IO &IO, xray::YAMLXRaySledEntry &Entry)
static void enumeration(IO &IO, xray::SledEntry::FunctionKinds &Kind)