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.h488 unsigned getCVRUQualifiers() const { return Mask & (CVRMask | UMask); }
506 assert(!(mask & ~CVRMask & ~UMask) && "bitmask contains non-CVRU bits");
510 bool hasUnaligned() const { return Mask & UMask; }
512 Mask = (Mask & ~UMask) | (flag ? UMask : 0);
514 void removeUnaligned() { Mask &= ~UMask; }
515 void addUnaligned() { Mask |= UMask; }
815 static constexpr uint64_t UMask = 0x8;
822 ~(CVRMask | UMask | GCAttrMask | LifetimeMask | PtrAuthMask);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4775 uint64_t UMask = SMask; in matchBitfieldExtractFromShrAnd() local
4776 UMask |= maskTrailingOnes<uint64_t>(ShrAmt); in matchBitfieldExtractFromShrAnd()
4777 UMask &= maskTrailingOnes<uint64_t>(Size); in matchBitfieldExtractFromShrAnd()
4778 if (!isMask_64(UMask)) in matchBitfieldExtractFromShrAnd()
4783 const int64_t Width = llvm::countr_one(UMask) - ShrAmt; in matchBitfieldExtractFromShrAnd()