Searched refs:IntMask (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIAnnotateControlFlow.cpp | 43 Type *IntMask; member in __anoncca68f760111::SIAnnotateControlFlow 128 IntMask = ST.isWave32() ? Type::getInt32Ty(Context) in initialize() 130 ReturnStruct = StructType::get(Boolean, IntMask); in initialize() 135 IntMaskZero = ConstantInt::get(IntMask, 0); in initialize() 137 If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if, { IntMask }); in initialize() 139 { IntMask, IntMask }); in initialize() 141 { IntMask }); in initialize() 142 Loop = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_loop, { IntMask }); in initialize() 143 EndCf = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_end_cf, { IntMask }); in initialize() 262 PHINode *Broken = PHINode::Create(IntMask, 0, "phi.broken", &Target->front()); in handleLoop()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | PointerIntPair.h | 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.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 2467 SmallVector<int, 16> IntMask; variable 2468 ShuffleVectorInst::getShuffleMask(cast<Constant>(Mask), IntMask); 2469 return CreateShuffleVector(V1, V2, IntMask, Name); 2476 SmallVector<int, 16> IntMask; variable 2477 IntMask.assign(Mask.begin(), Mask.end()); 2478 return CreateShuffleVector(V1, V2, IntMask, Name);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 1836 SmallVector<int, 16> IntMask; in LLVMConstShuffleVector() local 1837 ShuffleVectorInst::getShuffleMask(unwrap<Constant>(MaskConstant), IntMask); in LLVMConstShuffleVector() 1840 IntMask)); in LLVMConstShuffleVector()
|