Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ElementTy

832     const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
863 ElementTy = ConvertTypeForMem(AllocType);
864 CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy);
1086 Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1,
1099 QualType ElementType, llvm::Type *ElementTy,
1104 CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
1440 llvm::Type *elementTy = ConvertTypeForMem(allocType);
1441 Address result = Builder.CreateElementBitCast(allocation, elementTy);
1451 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,