Home
last modified time | relevance | path

Searched refs:VecSize (Results 1 – 6 of 6) sorted by relevance

/external/llvm/test/Linker/
Dtestlink1.ll16 ; CHECK: %VecSize = type { <5 x i32> }
17 ; CHECK: %VecSize.{{[0-9]}} = type { <10 x i32> }
18 %VecSize = type { <5 x i32> }
101 declare void @VecSizeCrash(%VecSize)
Dtestlink2.ll11 %VecSize = type { <10 x i32> }
58 declare void @VecSizeCrash1(%VecSize)
/external/llvm/lib/IR/
DConstants.cpp839 unsigned VecSize = V.size(); in getTypeForElements() local
840 SmallVector<Type*, 16> EltTypes(VecSize); in getTypeForElements()
841 for (unsigned i = 0; i != VecSize; ++i) in getTypeForElements()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp905 uint64_t VecSize = TD.getTypeAllocSizeInBits(VTy); in ConvertScalar_InsertValue() local
910 if (ValSize == VecSize) in ConvertScalar_InsertValue()
/external/clang/lib/CodeGen/
DTargetInfo.cpp3141 unsigned VecSize = Context.getTypeSize(VT); in isHomogeneousAggregate() local
3142 if (VecSize != 64 && VecSize != 128) in isHomogeneousAggregate()
/external/clang/lib/AST/
DExprConstant.cpp1242 unsigned VecSize = Info.Ctx.getTypeSize(VecTy); in EvalAndBitcastToAPInt() local
1246 Res = llvm::APInt::getNullValue(VecSize); in EvalAndBitcastToAPInt()
1262 Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize); in EvalAndBitcastToAPInt()
1264 Res |= EltAsInt.zextOrTrunc(VecSize).rotl(i*EltSize); in EvalAndBitcastToAPInt()