Searched refs:Sleds (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | InstrumentationMap.cpp | 55 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 D | xray-extract.cpp | 61 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 D | xray_interface.cpp | 191 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 D | xray_init.cpp | 85 XRayInstrMap.Sleds = __start_xray_instr_map; in __xray_init() 95 const auto &Sled = XRayInstrMap.Sleds[I]; in __xray_init()
|
H A D | xray_interface_internal.h | 75 const XRaySledEntry *Sleds; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | InstrumentationMap.h | 82 SledContainer Sleds; 99 const SledContainer &sleds() const { return Sleds; }; in sleds()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | AsmPrinter.h | 357 SmallVector<XRayFunctionEntry, 4> Sleds; variable
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 4202 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()
|