Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Driver/
DXRayArgs.cpp114 InstrumentationBundle.Mask = XRayInstrKind::All; in XRayArgs()
134 InstrumentationBundle.clear(); in XRayArgs()
138 InstrumentationBundle.Mask |= Mask; in XRayArgs()
273 if (InstrumentationBundle.full()) { in addArgs()
275 } else if (InstrumentationBundle.empty()) { in addArgs()
278 if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry) && in addArgs()
279 InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
281 else if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry)) in addArgs()
283 else if (InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
286 if (InstrumentationBundle.has(XRayInstrKind::Custom)) in addArgs()
[all …]
/external/llvm-project/clang/include/clang/Driver/
DXRayArgs.h27 XRayInstrSet InstrumentationBundle; variable
46 XRayInstrSet instrumentationBundle() const { return InstrumentationBundle; } in instrumentationBundle()