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.cpp100 InstrumentationBundle.Mask = XRayInstrKind::All; in XRayArgs()
120 InstrumentationBundle.clear(); in XRayArgs()
124 InstrumentationBundle.Mask |= Mask; in XRayArgs()
266 if (InstrumentationBundle.full()) { in addArgs()
268 } else if (InstrumentationBundle.empty()) { in addArgs()
271 if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry) && in addArgs()
272 InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
274 else if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry)) in addArgs()
276 else if (InstrumentationBundle.has(XRayInstrKind::FunctionExit)) in addArgs()
279 if (InstrumentationBundle.has(XRayInstrKind::Custom)) in addArgs()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DXRayArgs.h27 XRayInstrSet InstrumentationBundle; variable
41 XRayInstrSet instrumentationBundle() const { return InstrumentationBundle; } in instrumentationBundle()