Searched defs:ElemTy (Results 1 - 14 of 14) sorted by relevance

/external/clang/lib/AST/
H A DAPValue.cpp325 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); local
326 getVectorElt(0).printPretty(Out, Ctx, ElemTy);
329 getVectorElt(i).printPretty(Out, Ctx, ElemTy);
385 QualType ElemTy; local
388 ElemTy = VD->getType();
392 ElemTy = E->getType();
398 if (ElemTy->getAs<RecordType>()) {
405 ElemTy = Ctx.getRecordType(RD);
412 ElemTy = VD->getType();
417 ElemTy
433 QualType ElemTy = AT->getElementType(); local
[all...]
H A DRecordLayoutBuilder.cpp409 QualType ElemTy = Context.getBaseElementType(AT); local
410 const RecordType *RT = ElemTy->getAs<RecordType>();
511 QualType ElemTy = Context.getBaseElementType(AT); local
512 const RecordType *RT = ElemTy->getAs<RecordType>();
H A DExprConstant.cpp3857 QualType ElemTy = E->getType(); local
3859 Info.Ctx.getAsConstantArrayType(ElemTy)) {
3867 ElemTy = CAT->getElementType();
3870 if (!ElemTy->isRecordType())
3881 ImplicitValueInitExpr VIE(ElemTy);
3902 ImplicitValueInitExpr VIE(ElemTy);
5765 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType(); local
5766 if (ElemTy->isRealFloatingType()) {
5768 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
5773 APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
[all...]
/external/llvm/lib/VMCore/
H A DType.cpp623 bool StructType::isValidElementType(Type *ElemTy) { argument
624 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
625 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
717 bool ArrayType::isValidElementType(Type *ElemTy) { argument
718 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
719 !ElemTy->isMetadataTy() && !ElemTy
746 isValidElementType(Type *ElemTy) argument
786 isValidElementType(Type *ElemTy) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp381 static inline VectorType *getVecTypeForPair(Type *ElemTy, Type *Elem2Ty) { argument
382 assert(ElemTy->getScalarType() == Elem2Ty->getScalarType() &&
384 Type *STy = ElemTy->getScalarType();
387 if (VectorType *VTy = dyn_cast<VectorType>(ElemTy)) {
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp769 llvm::Type *ElemTy = AType->getElementType(); local
787 RewriteType |= (C->getType() != ElemTy);
797 fillC = llvm::Constant::getNullValue(ElemTy);
800 RewriteType |= (fillC->getType() != ElemTy);
H A DCodeGenModule.cpp2299 llvm::Type *ElemTy = AType->getElementType(); local
2303 if (ElemTy->getPrimitiveSizeInBits() == 16) {
2313 assert(ElemTy->getPrimitiveSizeInBits() == 32);
H A DCGExpr.cpp622 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType(); local
623 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1950 Type *ElemTy = GV->getType()->getElementType(); local
1952 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI);
2716 Type *ElemTy = cast<PointerType>(GV->getType())->getElementType(); local
2719 TD->getTypeStoreSize(ElemTy))
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp838 QualType ElemTy = Ty; local
843 ElemTy = Context.getBaseElementType(Ty);
847 RequireCompleteType(TyBeginLoc, ElemTy,
H A DSemaExpr.cpp4558 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); local
4562 Literal = ImpCastExprToType(Literal.take(), ElemTy,
4563 PrepareScalarCast(Literal, ElemTy));
4580 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); local
4584 Literal = ImpCastExprToType(Literal.take(), ElemTy,
4585 PrepareScalarCast(Literal, ElemTy));
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp2109 QualType ElemTy = Context->getBaseElementType(T); local
2110 return needToScanForQualifiers(ElemTy);
H A DRewriteModernObjC.cpp2120 QualType ElemTy = Context->getBaseElementType(T); local
2121 return needToScanForQualifiers(ElemTy);
3708 QualType ElemTy = Context->getBaseElementType(Type); local
3709 return RewriteObjCFieldDeclType(ElemTy, Result);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp103 MVT ElemTy = VT.getVectorElementType(); local
104 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
108 if (ElemTy == MVT::i32) {

Completed in 346 milliseconds