Home
last modified time | relevance | path

Searched refs:InstrumentationBundle (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Driver/
H A DXRayArgs.cpp115 InstrumentationBundle.Mask = XRayInstrKind::All; in XRayArgs()
135 InstrumentationBundle.clear(); in XRayArgs()
139 InstrumentationBundle.Mask |= Mask; in XRayArgs()
274 if (InstrumentationBundle.full()) { in addArgs()
276 } else if (InstrumentationBundle.empty()) { in addArgs()
279 if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry) && in addArgs()
280 InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
282 else if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry)) in addArgs()
284 else if (InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
287 if (InstrumentationBundle.has(XRayInstrKind::Custom)) in addArgs()
[all …]
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DXRayArgs.h27 XRayInstrSet InstrumentationBundle; variable
46 XRayInstrSet instrumentationBundle() const { return InstrumentationBundle; } in instrumentationBundle()