Home
last modified time | relevance | path

Searched refs:Sleds (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp55 InstrumentationMap::SledContainer &Sleds, in loadObj() argument
173 Sleds.push_back({}); in loadObj()
174 auto &Entry = Sleds.back(); in loadObj()
223 InstrumentationMap::SledContainer &Sleds, in loadYAML() argument
242 Sleds.reserve(YAMLSleds.size()); in loadYAML()
246 Sleds.push_back(SledEntry{Y.Address, Y.Function, Y.Kind, Y.AlwaysInstrument, in loadYAML()
284 if (auto E = loadYAML(*FdOrErr, FileSize, Filename, Map.Sleds, in loadInstrumentationMap()
287 } else if (auto E = loadObj(Filename, *ObjectFileOrError, Map.Sleds, in loadInstrumentationMap()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-extract.cpp61 auto Sleds = Map.sleds(); in exportAsYAML() local
62 YAMLSleds.reserve(std::distance(Sleds.begin(), Sleds.end())); in exportAsYAML()
63 for (const auto &Sled : Sleds) { in exportAsYAML()
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_interface.cpp191 const auto &Sled = InstrMap.Sleds[I]; in findFunctionSleds()
301 auto *MinSled = &InstrMap.Sleds[0]; in controlPatching()
302 auto *MaxSled = &InstrMap.Sleds[InstrMap.Entries - 1]; in controlPatching()
304 const auto &Sled = InstrMap.Sleds[I]; in controlPatching()
331 auto &Sled = InstrMap.Sleds[I]; in controlPatching()
H A Dxray_init.cpp85 XRayInstrMap.Sleds = __start_xray_instr_map; in __xray_init()
95 const auto &Sled = XRayInstrMap.Sleds[I]; in __xray_init()
H A Dxray_interface_internal.h75 const XRaySledEntry *Sleds; member
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h82 SledContainer Sleds;
99 const SledContainer &sleds() const { return Sleds; }; in sleds()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h357 SmallVector<XRayFunctionEntry, 4> Sleds; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp4202 if (Sleds.empty()) in emitXRayTable()
4249 for (const auto &Sled : Sleds) { in emitXRayTable()
4286 OutStreamer->emitValueImpl(MCConstantExpr::create(Sleds.size(), Ctx), in emitXRayTable()
4290 Sleds.clear(); in emitXRayTable()
4302 Sleds.emplace_back(XRayFunctionEntry{Sled, CurrentFnSym, Kind, in recordSled()