Searched refs:ScalarTy (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/CodeGen/
H A Dparameter-passing.c14 typedef int ScalarTy; typedef
24 static ScalarTy scalar_id(ScalarTy a) { return a; }
33 static void scalar_mul(ScalarTy a) { result *= a; }
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1168 Type *ScalarTy = VL[0]->getType(); local
1170 if (DL.getTypeSizeInBits(ScalarTy) !=
1171 DL.getTypeAllocSizeInBits(ScalarTy)) {
1472 Type *ScalarTy = VL[0]->getType(); local
1474 ScalarTy = SI->getValueOperand()->getType();
1475 VectorType *VecTy = VectorType::get(ScalarTy, VL.size());
1556 TTI->getCmpSelInstrCost(Opcode, ScalarTy, Builder.getInt1Ty());
1597 TTI->getArithmeticInstrCost(Opcode, ScalarTy, Op1VK, Op2VK,
1612 TTI->getArithmeticInstrCost(Instruction::Add, ScalarTy, Op1VK, Op2VK);
1621 TTI->getMemoryOpCost(Instruction::Load, ScalarTy,
1826 Type *ScalarTy = VL[0]->getType(); local
2162 Type *ScalarTy = VL[0]->getType(); local
2179 Type *ScalarTy = VL0->getType(); local
3832 Type *ScalarTy = FirstReducedVal->getType(); local
[all...]
H A DLoopVectorize.cpp2243 Type *ScalarTy = LI ? LI->getType() : SI->getValueOperand()->getType(); local
2245 Type *VecTy = VectorType::get(ScalarTy, InterleaveFactor * VF);
2298 if (Member->getType() != ScalarTy) {
2314 VectorType *SubVT = VectorType::get(ScalarTy, VF);
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp1301 Type *ScalarTy = DataTy->getScalarType(); local
1302 int DataWidth = isa<PointerType>(ScalarTy) ?
1303 DL.getPointerSizeInBits() : ScalarTy->getPrimitiveSizeInBits();
1325 Type *ScalarTy = DataTy->getScalarType();
1326 int DataWidth = isa<PointerType>(ScalarTy) ?
1327 DL.getPointerSizeInBits() : ScalarTy->getPrimitiveSizeInBits();
/external/clang/lib/Sema/
H A DSema.cpp409 /// to the conversion from scalar type ScalarTy to the Boolean type.
410 CastKind Sema::ScalarTypeToBooleanCastKind(QualType ScalarTy) { argument
411 switch (ScalarTy->getScalarTypeKind()) {
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2632 Type *ScalarTy = AllocaTy->getScalarType();
2640 !DL.isLegalInteger(DL.getTypeSizeInBits(ScalarTy)) ||
2641 DL.getTypeSizeInBits(ScalarTy) % 8 != 0)) {
2661 assert(ElementTy == ScalarTy);
2703 V = getIntegerSplat(II.getValue(), DL.getTypeSizeInBits(ScalarTy) / 8);
/external/llvm/lib/IR/
H A DConstants.cpp234 Type *ScalarTy = Ty->getScalarType(); local
240 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
/external/clang/include/clang/Sema/
H A DSema.h8212 /// to the conversion from scalar type ScalarTy to the Boolean type.
8213 static CastKind ScalarTypeToBooleanCastKind(QualType ScalarTy);

Completed in 197 milliseconds