HomeSort by relevance Sort by last modified time
    Searched refs:ElemTy (Results 1 - 22 of 22) sorted by null

  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 56 template <class ElemTy>
71 ElemTy Data;
74 ECValue(const ElemTy &Elt)
102 const ElemTy &getData() const { return Data; }
112 /// TheMapping - This implicitly provides a mapping from ElemTy values to the
158 iterator findValue(const ElemTy &V) const {
165 const ElemTy &getLeaderValue(const ElemTy &V) const {
174 const ElemTy &getOrInsertLeaderValue(const ElemTy &V)
    [all...]
  /external/clang/lib/AST/
APValue.cpp 360 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
361 getVectorElt(0).printPretty(Out, Ctx, ElemTy);
364 getVectorElt(i).printPretty(Out, Ctx, ElemTy);
427 QualType ElemTy;
430 ElemTy = VD->getType();
435 ElemTy = E->getType();
441 if (ElemTy->getAs<RecordType>()) {
448 ElemTy = Ctx.getRecordType(RD);
455 ElemTy = VD->getType();
460 ElemTy = Ctx.getAsArrayType(ElemTy)->getElementType()
    [all...]
RecordLayoutBuilder.cpp 399 QualType ElemTy = Context.getBaseElementType(AT);
400 const RecordType *RT = ElemTy->getAs<RecordType>();
496 QualType ElemTy = Context.getBaseElementType(AT);
497 const RecordType *RT = ElemTy->getAs<RecordType>();
    [all...]
ExprConstant.cpp     [all...]
  /external/llvm/lib/IR/
Type.cpp 596 bool StructType::isValidElementType(Type *ElemTy) {
597 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
598 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
689 bool ArrayType::isValidElementType(Type *ElemTy) {
690 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
691 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy()
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 84 Type *ElemTy = PtrTy->getPointerElementType();
86 if (ElemTy == v16i8) {
  /external/llvm/include/llvm/IR/
DerivedTypes.h 273 static bool isValidElementType(Type *ElemTy);
346 static bool isValidElementType(Type *ElemTy);
425 static bool isValidElementType(Type *ElemTy);
462 static bool isValidElementType(Type *ElemTy);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 596 Type *ElemTy = STy->getElementType(i);
597 if (ElemTy->isIntegerTy())
599 APInt(ElemTy->getPrimitiveSizeInBits(), 0);
600 else if (ElemTy->isAggregateType()) {
601 const Constant *ElemUndef = UndefValue::get(ElemTy);
611 const Type *ElemTy = VTy->getElementType();
614 if (ElemTy->isIntegerTy())
617 APInt(ElemTy->getPrimitiveSizeInBits(), 0);
901 Type* ElemTy;
908 ElemTy = CDV->getElementType()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 105 VectorLayout() : VecTy(nullptr), ElemTy(nullptr), VecAlign(0), ElemSize(0) {}
116 Type *ElemTy;
347 Layout.ElemTy = Layout.VecTy->getElementType();
348 if (DL->getTypeSizeInBits(Layout.ElemTy) !=
349 DL->getTypeStoreSizeInBits(Layout.ElemTy))
356 Layout.ElemSize = DL->getTypeStoreSize(Layout.ElemTy);
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 729 llvm::Type *ElemTy = AType->getElementType();
747 RewriteType |= (C->getType() != ElemTy);
757 fillC = llvm::Constant::getNullValue(ElemTy);
760 RewriteType |= (fillC->getType() != ElemTy);
    [all...]
TargetInfo.cpp     [all...]
CodeGenModule.cpp     [all...]
CGExpr.cpp 687 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
688 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 76 const QualType ElemTy =
84 if (ElemTy->isCharType())
86 if (IsWideCharCompatible(ElemTy, Context))
95 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
97 if (ElemTy->isCharType())
99 if (IsWideCharCompatible(ElemTy, Context))
103 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
105 if (ElemTy->isCharType())
107 if (IsWideCharCompatible(ElemTy, Context))
111 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
    [all...]
SemaExprCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 464 static inline VectorType *getVecTypeForPair(Type *ElemTy, Type *Elem2Ty) {
465 assert(ElemTy->getScalarType() == Elem2Ty->getScalarType() &&
467 Type *STy = ElemTy->getScalarType();
470 if (VectorType *VTy = dyn_cast<VectorType>(ElemTy)) {
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 99 MVT ElemTy = VT.getVectorElementType();
100 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
104 if (ElemTy == MVT::i32) {
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 387 milliseconds