Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DXRayArgs.cpp79 InstrumentationBundle.Mask = XRayInstrKind::All; in XRayArgs()
99 InstrumentationBundle.clear(); in XRayArgs()
103 InstrumentationBundle.Mask |= Mask; in XRayArgs()
241 if (InstrumentationBundle.full()) { in addArgs()
243 } else if (InstrumentationBundle.empty()) { in addArgs()
246 if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry) && in addArgs()
247 InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
249 else if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry)) in addArgs()
251 else if (InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
254 if (InstrumentationBundle.has(XRayInstrKind::Custom)) in addArgs()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DXRayArgs.h27 XRayInstrSet InstrumentationBundle; variable
39 XRayInstrSet instrumentationBundle() const { return InstrumentationBundle; } in instrumentationBundle()