Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DXRayInstr.h26 using XRayInstrMask = uint32_t; variable
31 enum XRayInstrOrdinal : XRayInstrMask {
38 constexpr XRayInstrMask None = 0;
39 constexpr XRayInstrMask Function = 1U << XRIO_Function;
40 constexpr XRayInstrMask Custom = 1U << XRIO_Custom;
41 constexpr XRayInstrMask Typed = 1U << XRIO_Typed;
42 constexpr XRayInstrMask All = Function | Custom | Typed;
47 bool has(XRayInstrMask K) const { in has()
54 void set(XRayInstrMask K, bool Value) { in set()
65 XRayInstrMask Mask = 0;
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DXRayInstr.cpp19 XRayInstrMask parseXRayInstrValue(StringRef Value) { in parseXRayInstrValue()
20 XRayInstrMask ParsedKind = llvm::StringSwitch<XRayInstrMask>(Value) in parseXRayInstrValue()