Home
last modified time | relevance | path

Searched refs:NumLowBitsAvailable (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DPointerLikeTypeTraits.h60 static constexpr int NumLowBitsAvailable =
75 static constexpr int NumLowBitsAvailable = 2;
88 static constexpr int NumLowBitsAvailable = NonConst::NumLowBitsAvailable;
101 static constexpr int NumLowBitsAvailable = NonConst::NumLowBitsAvailable;
113 static constexpr int NumLowBitsAvailable = 0;
126 static constexpr int NumLowBitsAvailable =
130 ~((uintptr_t)-1 << NumLowBitsAvailable)) == 0 &&
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitFuture.h38 static constexpr int NumLowBitsAvailable = 2;
82 static constexpr int NumLowBitsAvailable =
83 llvm::PointerLikeTypeTraits<PairTy>::NumLowBitsAvailable;
101 static constexpr int NumLowBitsAvailable = T::NumLowBitsAvailable;
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h169 static_assert(PtrTraits::NumLowBitsAvailable <
172 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable,
177 ~(uintptr_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable) - 1),
181 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable - IntBits,
223 Val <<= PointerLikeTypeTraits<Ty>::NumLowBitsAvailable;
229 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
261 static constexpr int NumLowBitsAvailable =
262 PtrTraits::NumLowBitsAvailable - IntBits;
H A DPointerUnion.h38 return std::min<int>({PointerLikeTypeTraits<Ts>::NumLowBitsAvailable...}); in lowBitsAvailable()
52 static constexpr int NumLowBitsAvailable = lowBitsAvailable<PTs...>(); variable
282 static constexpr int NumLowBitsAvailable = PointerLikeTypeTraits<decltype(
283 PointerUnion<PTs...>::Val)>::NumLowBitsAvailable;
H A DPointerEmbeddedInt.h97 static constexpr int NumLowBitsAvailable = T::Shift;
H A DPointerSumType.h237 enum { NumTagBits = Min<MemberTs::TraitsT::NumLowBitsAvailable...>::value };
H A DStringMap.h95 << PointerLikeTypeTraits<StringMapEntryBase *>::NumLowBitsAvailable;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h77 << NumLowBitsAvailable); in getOpaqueValue()
81 V.Index = reinterpret_cast<uintptr_t>(Value) >> NumLowBitsAvailable; in getFromOpaqueValue()
86 return (std::numeric_limits<unsigned>::max() >> NumLowBitsAvailable) - 1; in getMaxIndex()
89 static constexpr int NumLowBitsAvailable = 3; variable
103 static constexpr int NumLowBitsAvailable = 3;
113 static constexpr int NumLowBitsAvailable =
114 clang::DynamicAllocLValue::NumLowBitsAvailable;
H A DRedeclarable.h420 static constexpr int NumLowBitsAvailable =
421 PointerLikeTypeTraits<decl_type *>::NumLowBitsAvailable;
H A DDeclGroup.h146 static constexpr int NumLowBitsAvailable = 0;
H A DExternalASTSource.h532 static constexpr int NumLowBitsAvailable =
533 PointerLikeTypeTraits<T>::NumLowBitsAvailable - 1;
H A DTemplateName.h647 static constexpr int NumLowBitsAvailable = 0;
H A DTemplateBase.h46 static constexpr int NumLowBitsAvailable = 2;
H A DCanonicalType.h390 static constexpr int NumLowBitsAvailable = 0;
H A DDeclarationName.h958 static constexpr int NumLowBitsAvailable = 0;
H A DDeclBase.h1320 static constexpr int NumLowBitsAvailable = 3;
H A DType.h98 static constexpr int NumLowBitsAvailable = clang::TypeAlignmentInBits;
109 static constexpr int NumLowBitsAvailable = clang::TypeAlignmentInBits;
1675 static constexpr int NumLowBitsAvailable = 0;
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h118 << PointerLikeTypeTraits<PoolEntryPtr>::NumLowBitsAvailable;
122 << PointerLikeTypeTraits<PoolEntryPtr>::NumLowBitsAvailable;
126 << PointerLikeTypeTraits<PoolEntryPtr>::NumLowBitsAvailable;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDirectoryEntry.h204 static constexpr int NumLowBitsAvailable = PointerLikeTypeTraits<
205 const clang::DirectoryEntryRef::MapEntry *>::NumLowBitsAvailable;
H A DIdentifierTable.h1230 static constexpr int NumLowBitsAvailable = 0;
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h480 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
486 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
1052 Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
1058 Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp81 static constexpr int NumLowBitsAvailable = 3; member
82 static_assert(alignof(AlignedMap) >= (1 << NumLowBitsAvailable),
97 AlignedMapPointerTraits::NumLowBitsAvailable) == 0,
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h53 static constexpr int NumLowBitsAvailable = 1;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp38 1 << llvm::PointerLikeTypeTraits<TypeInfoLValue>::NumLowBitsAvailable <=
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp455 Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable; in getEmptyKey()
461 Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable; in getTombstoneKey()

12