Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h476 unsigned getCVRUQualifiers() const { return Mask & (CVRMask | UMask); }
494 assert(!(mask & ~CVRMask & ~UMask) && "bitmask contains non-CVRU bits");
498 bool hasUnaligned() const { return Mask & UMask; }
500 Mask = (Mask & ~UMask) | (flag ? UMask : 0);
502 void removeUnaligned() { Mask &= ~UMask; }
503 void addUnaligned() { Mask |= UMask; }
818 static constexpr uint64_t UMask = 0x8;
825 ~(CVRMask | UMask | GCAttrMask | LifetimeMask);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4647 uint64_t UMask = SMask; in matchBitfieldExtractFromShrAnd() local
4648 UMask |= maskTrailingOnes<uint64_t>(ShrAmt); in matchBitfieldExtractFromShrAnd()
4649 UMask &= maskTrailingOnes<uint64_t>(Size); in matchBitfieldExtractFromShrAnd()
4650 if (!isMask_64(UMask)) in matchBitfieldExtractFromShrAnd()
4655 const int64_t Width = llvm::countr_one(UMask) - ShrAmt; in matchBitfieldExtractFromShrAnd()