HomeSort by: relevance | last modified time | path
    Searched refs:IntMask (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 43 Type *IntMask;
127 IntMask = ST.isWave32() ? Type::getInt32Ty(Context)
129 ReturnStruct = StructType::get(Boolean, IntMask);
134 IntMaskZero = ConstantInt::get(IntMask, 0);
136 If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if, { IntMask });
138 { IntMask, IntMask });
140 { IntMask });
141 Loop = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_loop, { IntMask });
142 EndCf = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_end_cf, { IntMask });
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
PointerIntPair.h 159 /// 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");
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h 2420 SmallVector<int, 16> IntMask;
2421 ShuffleVectorInst::getShuffleMask(cast<Constant>(Mask), IntMask);
2422 return CreateShuffleVector(V1, V2, IntMask, Name);
2429 SmallVector<int, 16> IntMask;
2430 IntMask.assign(Mask.begin(), Mask.end());
2431 return CreateShuffleVector(V1, V2, IntMask, Name);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp 1836 SmallVector<int, 16> IntMask;
1837 ShuffleVectorInst::getShuffleMask(unwrap<Constant>(MaskConstant), IntMask);
1840 IntMask));

Completed in 31 milliseconds