Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:FType

780   QualType FType;
786 FType = CGM.getContext().UnsignedLongTy;
787 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
788 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
806 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
807 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
808 FType = CGM.getContext().IntTy;
809 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
810 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
811 FType = CGM.getContext().getPointerType(Ty->getPointeeType());
812 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
814 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
1977 QualType FType = Field->getType();
1981 if (!FType->isIncompleteArrayType()) {
1986 : CGM.getContext().getTypeSize(FType);
1987 FieldAlign = CGM.getContext().getTypeAlign(FType);
2593 llvm::DIType *CGDebugInfo::CreateMemberType(llvm::DIFile *Unit, QualType FType,
2595 llvm::DIType *FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2596 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
2597 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
3051 QualType FType;
3059 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
3060 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
3061 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
3062 FType = CGM.getContext().IntTy;
3063 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
3064 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
3068 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
3070 CreateMemberType(Unit, FType, "__copy_helper", &FieldOffset));
3072 CreateMemberType(Unit, FType, "__destroy_helper", &FieldOffset));
3079 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
3081 CreateMemberType(Unit, FType, "__byref_variable_layout", &FieldOffset));
3094 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
3096 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
3100 FType = Type;
3101 llvm::DIType *FieldTy = getOrCreateType(FType, Unit);
3102 FieldSize = CGM.getContext().getTypeSize(FType);