/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Log.h | 141 using MaskType = uint64_t; 143 template <MaskType Bit> 144 static constexpr MaskType ChannelFlag = MaskType(1) << Bit; 150 MaskType flag; 155 : name(name), description(description), flag(MaskType(mask)) { in Category() 157 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Category() 169 const MaskType default_flags; 175 default_flags(MaskType(default_flags)) { in Channel() 177 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Channel() 184 Log *GetLog(MaskType mask) { in GetLog() [all …]
|
H A D | LLDBLog.h | 18 enum class LLDBLog : Log::MaskType {
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Log.cpp | 64 Log::MaskType Log::GetFlags(llvm::raw_ostream &stream, in GetFlags() 68 Log::MaskType flags = 0; in GetFlags() 71 flags |= std::numeric_limits<Log::MaskType>::max(); in GetFlags() 96 uint32_t options, Log::MaskType flags) { in Enable() 99 MaskType mask = m_mask.fetch_or(flags, std::memory_order_relaxed); in Enable() 107 void Log::Disable(Log::MaskType flags) { in Disable() 110 MaskType mask = m_mask.fetch_and(~flags, std::memory_order_relaxed); in Disable() 131 Log::MaskType Log::GetMask() const { in GetMask() 220 iter->second.Disable(std::numeric_limits<MaskType>::max()); in Unregister() 233 MaskType flags = categories.empty() in EnableLogChannel() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OSLog.h | 77 StringRef MaskType; variable 83 MaskType(maskType) { in TheKind() 108 StringRef getMaskType() const { return MaskType; } in getMaskType()
|
H A D | FormatString.h | 536 StringRef MaskType; variable 622 StringRef getMaskType() const { return MaskType; } in getMaskType() 623 void setMaskType(StringRef S) { MaskType = S; } in setMaskType() 759 virtual void handleInvalidMaskType(StringRef MaskType) {} in handleInvalidMaskType() argument
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OSLog.cpp | 30 StringRef MaskType; member 132 ArgsData.back().MaskType = FS.getMaskType(); in HandlePrintfSpecifier() 139 if (!Data.MaskType.empty()) { in computeLayout() 142 Size, 0, Data.MaskType); in computeLayout()
|
H A D | PrintfFormatString.cpp | 144 StringRef MaskType = MatchedStr.substr(sizeof("mask.") - 1); in ParsePrintfSpecifier() local 145 unsigned Size = MaskType.size(); in ParsePrintfSpecifier() 147 H.handleInvalidMaskType(MaskType); in ParsePrintfSpecifier() 148 FS.setMaskType(MaskType); in ParsePrintfSpecifier()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | LogChannelDWARF.h | 17 enum class DWARFLog : Log::MaskType {
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
H A D | ProcessPOSIXLog.h | 18 enum class POSIXLog : Log::MaskType {
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemoteLog.h | 18 enum class GDBRLog : Log::MaskType {
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 28089 EVT MaskType = EVT::getVectorVT(*DAG.getContext(), MaskEltType, IndexLen); in GenerateFixedLengthSVETBL() local 28139 EVT MaskContainerVT = getContainerForFixedLengthVector(DAG, MaskType); in GenerateFixedLengthSVETBL() 28141 DAG.getBuildVector(MaskType, DL, ArrayRef(TBLMask.data(), IndexLen)); in GenerateFixedLengthSVETBL() 28157 DAG.getBuildVector(MaskType, DL, ArrayRef(TBLMask.data(), IndexLen)); in GenerateFixedLengthSVETBL() 28159 ISD::MUL, DL, MaskType, in GenerateFixedLengthSVETBL() 28160 DAG.getNode(ISD::SPLAT_VECTOR, DL, MaskType, VScale), in GenerateFixedLengthSVETBL() 28161 DAG.getBuildVector(MaskType, DL, in GenerateFixedLengthSVETBL() 28164 DAG.getNode(ISD::ADD, DL, MaskType, VecMask, MulByMask); in GenerateFixedLengthSVETBL() 28166 DAG, getContainerForFixedLengthVector(DAG, MaskType), UpdatedVecMask); in GenerateFixedLengthSVETBL()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 6631 void handleInvalidMaskType(StringRef MaskType) override; 6684 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) { in handleInvalidMaskType() argument 6685 S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size); in handleInvalidMaskType()
|