Searched refs:getElementType (Results 226 - 250 of 289) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp212 auto ElementType = ThisElementRegion->getElementType();
H A DExprEngine.cpp1249 Ty = NTy->getElementType().getDesugaredType(getContext());
1428 DTy = AT->getElementType();
1605 T = AT->getElementType();
/openbsd-current/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp239 switch (Ty.getElementType().getSizeInBits()) {
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DConstants.h626 Type *getElementType() const;
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h405 TypeIndex getElementType() const { return ElementType; } function in class:llvm::codeview::ArrayRecord
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2617 return Visit(T->getElementType());
2622 return Visit(T->getElementType());
2626 return Visit(T->getElementType());
H A DSemaOverload.cpp2376 return IsFloatingPointPromotion(FromComplex->getElementType(),
2377 ToComplex->getElementType()) ||
2378 IsIntegralPromotion(nullptr, FromComplex->getElementType(),
2379 ToComplex->getElementType());
3954 if (S.Context.hasSameUnqualifiedType(CAT1->getElementType(),
3955 CAT2->getElementType())) {
5124 InitTy = IAT->getElementType();
5184 InitTy = AT->getElementType();
8903 /// * (M1, M1.getElementType()) -> M1
8904 /// * (M2.getElementType(), M
[all...]
H A DSemaType.cpp7106 T = cast<ArrayType>(Ty)->getElementType();
7187 QualType New = wrap(C, CAT->getElementType(), I);
7194 QualType New = wrap(C, VAT->getElementType(), I);
7201 QualType New = wrap(C, IAT->getElementType(), I);
8263 QualType ElemType = CurType->castAs<PipeType>()->getElementType();
9393 return AT->getElementType();
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp890 if (cast<VectorType>(ValTy)->getElementType()->isIntegerTy())
1112 if (VecWidth != 128 && VecTy->getElementType()->isFloatingPointTy())
1474 cast<VectorType>(Src)->getElementType()->isDoubleTy()) {
H A DARMISelLowering.cpp20875 Type *VecTy = cast<StructType>(I.getType())->getElementType(1);
21397 unsigned ElSize = DL.getTypeSizeInBits(VecTy->getElementType());
21405 if (Subtarget->hasNEON() && VecTy->getElementType()->isHalfTy())
21457 Type *EltTy = VecTy->getElementType();
21483 VecTy = FixedVectorType::get(VecTy->getElementType(),
21491 VecTy->getElementType()->getPointerTo(LI->getPointerAddressSpace()));
21517 VecTy->getElementType()->getPointerTo(LI->getPointerAddressSpace());
21537 BaseAddr = Builder.CreateConstGEP1_32(VecTy->getElementType(), BaseAddr,
21554 FixedVectorType::get(SV->getType()->getElementType(), VecTy));
21610 Type *EltTy = VecTy->getElementType();
[all...]
/openbsd-current/lib/libexpat/lib/
H A Dxmlparse.c578 static ELEMENT_TYPE *getElementType(XML_Parser parser, const ENCODING *enc,
4974 parser->m_declElementType = getElementType(parser, enc, s, next);
5571 parser->m_declElementType = getElementType(parser, enc, s, next);
5636 el = getElementType(parser, enc, s, nxt);
7743 getElementType(XML_Parser parser, const ENCODING *enc, const char *ptr, function
/openbsd-current/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp148 EltTy = STy->getElementType(IdxVal);
151 EltTy = ATy->getElementType();
3051 auto *EltTy = cast<IntegerType>(VecTy->getElementType());
4961 SrcTy = cast<VectorType>(SrcTy)->getElementType();
4962 DestTy = cast<VectorType>(DestTy)->getElementType();
6132 if (!LHSTy || !LHSTy->getElementType()->isIntegerTy())
6135 LHSTy->getNumElements() * LHSTy->getElementType()->getIntegerBitWidth();
H A DInstCombineSimplifyDemanded.cpp1268 Type *EltTy = cast<VectorType>(V->getType())->getElementType();
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCMac.cpp2506 FQT = CArray->getElementType();
2510 FQT = CArray->getElementType();
4925 llvm::Type* DestTy = AddrWeakObj.getElementType();
5358 fieldType = arrayType->getElementType();
5363 fieldType = arrayType->getElementType();
7720 llvm::Type *DestTy = AddrWeakObj.getElementType();
H A DCGClass.cpp225 assert(This.getElementType() == ConvertType(Derived));
2033 llvm::Type *elementType = arrayBase.getElementType();
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp675 Ty.getElementType());
1030 LLT EltTy = Ty.getElementType();
1045 LLT EltTy = Ty.getElementType();
1773 if (!StoreVT.isVector() || StoreVT.getElementType() != S16)
H A DAMDGPULibCalls.cpp826 eltType = VTy->getElementType();
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DASTImporter.cpp1145 ExpectedType ToElementTypeOrErr = import(T->getElementType());
1207 auto ToElementType = importChecked(Err, T->getElementType());
1219 ExpectedType ToElementTypeOrErr = import(T->getElementType());
1231 QualType ToElementType = importChecked(Err, T->getElementType());
1244 QualType ToElementType = importChecked(Err, T->getElementType());
1258 ExpectedType ToElementTypeOrErr = import(T->getElementType());
1268 ExpectedType ToElementTypeOrErr = import(T->getElementType());
3339 return CheckType(T->getElementType());
9955 Importer.FromContext.getAsArrayType(FromElemTy)->getElementType();
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4978 return UndefValue::get(VecVTy->getElementType());
4984 return PoisonValue::get(VecVTy->getElementType());
4992 return PoisonValue::get(VecVTy->getElementType());
5312 NewC[i] = (ConstantFP::getNaN(VecTy->getElementType()));
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1020 RewriteVal = new LoadInst(StructTy->getElementType(aggIdx), GEP,
H A DSCCPSolver.cpp79 : UndefValue::get(ST->getElementType(i)));
H A DLoopUtils.cpp1028 auto *SrcVecEltTy = cast<VectorType>(Src->getType())->getElementType();
/openbsd-current/gnu/llvm/llvm/tools/bugpoint/
H A DCrashDebugger.cpp233 auto *NewValElemTy = OldUsedVal->getType()->getElementType();
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1501 Type *EltTy = VTy->getElementType();
1520 Type *Elm = VTy->getElementType();
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp344 if (isGCPointerType(VT->getElementType()))
358 return containsGCPtrType(AT->getElementType());

Completed in 748 milliseconds

1234567891011>>