Searched refs:IntMask (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp61 Type *IntMask; member in class:__anon3966::SIAnnotateControlFlow
143 IntMask = ST.isWave32() ? Type::getInt32Ty(Context)
145 ReturnStruct = StructType::get(Boolean, IntMask);
150 IntMaskZero = ConstantInt::get(IntMask, 0);
152 If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if, { IntMask });
154 { IntMask, IntMask });
156 { IntMask });
157 Loop = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_loop, { IntMask });
158 EndCf = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_end_cf, { IntMask });
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h159 /// IntMask - This is the unshifted mask for valid bits of the int type.
160 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1),
163 ShiftedIntMask = (uintptr_t)(IntMask << IntShift)
172 return (Value >> IntShift) & IntMask;
186 assert((IntWord & ~IntMask) == 0 && "Integer too large for field");
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h2408 SmallVector<int, 16> IntMask; local
2409 ShuffleVectorInst::getShuffleMask(cast<Constant>(Mask), IntMask); local
2410 return CreateShuffleVector(V1, V2, IntMask, Name);
2417 SmallVector<int, 16> IntMask; variable
2418 IntMask.assign(Mask.begin(), Mask.end());
2419 return CreateShuffleVector(V1, V2, IntMask, Name);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp1796 SmallVector<int, 16> IntMask;
1797 ShuffleVectorInst::getShuffleMask(unwrap<Constant>(MaskConstant), IntMask);
1800 IntMask));

Completed in 86 milliseconds