14#ifndef LLVM_XRAY_INSTRUMENTATIONMAP_H
15#define LLVM_XRAY_INSTRUMENTATIONMAP_H
22#include <unordered_map>
30class InstrumentationMap;
106template <>
struct ScalarEnumerationTraits<xray::SledEntry::FunctionKinds> {
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);
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);
129 static constexpr bool flow =
true;
#define LLVM_YAML_IS_SEQUENCE_VECTOR(type)
Tagged union holding either a T or a Error.
StringRef - Represent a constant reference to a string, i.e.
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.
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)