Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:FType

601   QualType FType;
608 FType = CGM.getContext().UnsignedLongTy;
609 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
610 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
628 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
629 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
630 FType = CGM.getContext().IntTy;
631 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
632 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
633 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
634 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
636 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
1371 QualType FType = Field->getType();
1375 if (!FType->isIncompleteArrayType()) {
1380 : CGM.getContext().getTypeSize(FType);
1381 FieldAlign = CGM.getContext().getTypeAlign(FType);
1906 /// CreateMemberType - Create new member and increase Offset by FType's size.
1907 llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
1910 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1911 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1912 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
2142 QualType FType;
2150 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2151 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2152 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
2153 FType = CGM.getContext().IntTy;
2154 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2155 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2159 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2160 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2162 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2178 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2180 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
2184 FType = Type;
2185 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2186 FieldSize = CGM.getContext().getTypeSize(FType);