Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:FType

701   QualType FType;
708 FType = CGM.getContext().UnsignedLongTy;
709 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
710 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
728 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
729 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
730 FType = CGM.getContext().IntTy;
731 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
732 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
733 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
734 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
736 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
1623 QualType FType = Field->getType();
1627 if (!FType->isIncompleteArrayType()) {
1632 : CGM.getContext().getTypeSize(FType);
1633 FieldAlign = CGM.getContext().getTypeAlign(FType);
2275 /// CreateMemberType - Create new member and increase Offset by FType's size.
2276 llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
2279 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2280 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
2281 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
2581 QualType FType;
2589 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2590 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2591 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
2592 FType = CGM.getContext().IntTy;
2593 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2594 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2598 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2599 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2601 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2609 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2610 EltTys.push_back(CreateMemberType(Unit, FType,
2627 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2629 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
2633 FType = Type;
2634 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2635 FieldSize = CGM.getContext().getTypeSize(FType);