Searched refs:ElemSize (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp105 VectorLayout() : VecTy(nullptr), ElemTy(nullptr), VecAlign(0), ElemSize(0) {}
109 return MinAlign(VecAlign, I * ElemSize);
122 uint64_t ElemSize; member in struct:__anon12992::VectorLayout
367 Layout.ElemSize = DL.getTypeStoreSize(Layout.ElemTy);
H A DLoopUnrollPass.cpp424 int ElemSize = CDS->getElementType()->getPrimitiveSizeInBits() / 8U; local
427 int64_t Index = SimplifiedAddrOp->getSExtValue() / ElemSize;
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp828 APInt ElemSize(BitWidth, DL.getTypeAllocSize(ATy->getElementType()));
829 if (ElemSize == 0)
837 APInt NewIdx = Offset.udiv(ElemSize);
838 Offset -= NewIdx * ElemSize;
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1100 uint64_t ElemSize = Ctx.getTypeSize(ElementTy); local
1112 uint64_t UpperOffset = LowerOffset + *NumElements * ElemSize;
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1942 llvm::Value* ElemSize = llvm::ConstantInt::get(ResultType, local
1946 Offset = Builder.CreateMul(Idx, ElemSize);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6323 unsigned ElemSize = VT.getVectorElementType().getSizeInBits(); local
6332 (ElemSize == 32 || ElemSize == 64)) {
6333 unsigned SubIdx = ElemSize == 32 ? AArch64::ssub : AArch64::dsub;
/external/clang/lib/AST/
H A DExprConstant.cpp7407 APSInt ElemSize(
7409 APSInt TrueResult = (LHS - RHS) / ElemSize;

Completed in 459 milliseconds