Home
last modified time | relevance | path

Searched refs:ClassTy (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h419 const DIType *ClassTy = nullptr);
438 codeview::TypeIndex lowerType(const DIType *Ty, const DIType *ClassTy);
453 const DISubroutineType *Ty, const DIType *ClassTy, int ThisAdjustment,
486 const DIType *ClassTy = nullptr);
H A DCodeViewDebug.cpp425 const DICompositeType *ClassTy = nullptr, in getFunctionOptions() argument
437 if (isNonTrivial(ReturnDCTy) || ClassTy) in getFunctionOptions()
441 if (ClassTy && isNonTrivial(ClassTy) && SPName == ClassTy->getName()) { in getFunctionOptions()
478 const DIType *ClassTy) { in recordTypeIndexForDINode() argument
479 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode()
1684 if (ClassTy) { in lowerType()
2097 const DIType *ClassTy, in lowerTypeMemberFunction() argument
2102 TypeIndex ClassType = getTypeIndex(ClassTy); in lowerTypeMemberFunction()
2690 auto I = TypeIndices.find({Ty, ClassTy}); in getTypeIndex()
2695 TypeIndex TI = lowerType(Ty, ClassTy); in getTypeIndex()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp83 TypeIndex ClassTy = MFRecord.getClassType(); in getName() local
84 QualifiedName.append(std::string(Types.getTypeName(ClassTy))); in getName()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp534 llvm::StructType *ClassTy; member in __anonf068995f0111::ObjCTypesHelper
2100 llvm::Type *ClassTy = in GenerateMessageSendSuper() local
2102 Target = CGF.Builder.CreateBitCast(Target, ClassTy); in GenerateMessageSendSuper()
3585 assert(GV->getValueType() == ObjCTypes.ClassTy && in GenerateClass()
3646 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitMetaClass()
3677 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitMetaClassRef()
3691 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitSuperClassRef()
5898 ClassTy->setBody(llvm::PointerType::getUnqual(ClassTy), in ObjCTypesHelper()
5903 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy); in ObjCTypesHelper()
7567 llvm::Type *ClassTy = in GenerateMessageSendSuper() local
[all …]
H A DCGDebugInfo.cpp677 if (!ClassTy) in CreateType()
678 ClassTy = in CreateType()
681 return ClassTy; in CreateType()
691 if (!ClassTy) in CreateType()
692 ClassTy = in CreateType()
698 auto *ISATy = DBuilder.createPointerType(ClassTy, Size); in CreateType()
3406 llvm::DIType *ClassTy = getOrCreateType(ED->getIntegerType(), DefUnit); in CreateTypeDefinition() local
3408 EnumContext, ED->getName(), DefUnit, Line, Size, Align, EltArray, ClassTy, in CreateTypeDefinition()
H A DCGDebugInfo.h68 llvm::DIType *ClassTy = nullptr; variable
H A DCGClass.cpp2762 auto *ClassTy = T->getAs<RecordType>(); in EmitVTablePtrCheckForCast() local
2763 if (!ClassTy) in EmitVTablePtrCheckForCast()
2766 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassTy->getDecl()); in EmitVTablePtrCheckForCast()
H A DCGObjCGNU.cpp3120 llvm::StructType *ClassTy = llvm::StructType::get( in GenerateClassStructure() local
3144 auto Elements = Builder.beginStruct(ClassTy); in GenerateClassStructure()
3162 td.getTypeSizeInBits(ClassTy) / in GenerateClassStructure()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2538 QualType ClassTy = C.getTypeDeclType(Decl); in getThisObjectType() local
2539 return C.getQualifiedType(ClassTy, FPT->getMethodQuals()); in getThisObjectType()
2785 CanQualType ClassTy in isCopyOrMoveConstructor() local
2787 if (PointeeType.getUnqualifiedType() != ClassTy) in isCopyOrMoveConstructor()
2825 CanQualType ClassTy in isSpecializationCopyingObject() local
2827 if (ParamType.getUnqualifiedType() != ClassTy) in isSpecializationCopyingObject()
H A DType.cpp2339 const Type *ClassTy = MPTy->getClass(); in isIncompleteType() local
2341 if (ClassTy->isDependentType()) in isIncompleteType()
2343 const CXXRecordDecl *RD = ClassTy->getAsCXXRecordDecl(); in isIncompleteType()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h632 unsigned NumElements, LLVMMetadataRef ClassTy);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp1278 unsigned NumElements, LLVMMetadataRef ClassTy) { in LLVMDIBuilderCreateEnumerationType() argument
1283 LineNumber, SizeInBits, AlignInBits, Elts, unwrapDI<DIType>(ClassTy))); in LLVMDIBuilderCreateEnumerationType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1241 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC)); in getCurrentThisType() local
1244 ThisTy = Context.getPointerType(ClassTy); in getCurrentThisType()
H A DSemaOverload.cpp8536 const Type *ClassTy = PointerTy->getClass(); in AddMemberPointerWithMoreQualifiedTypeVariants() local
8546 Context.getMemberPointerType(QPointeeTy, ClassTy)); in AddMemberPointerWithMoreQualifiedTypeVariants()
H A DSemaDeclCXX.cpp10916 QualType ClassTy = Context.getTagDeclType(ClassDecl); in CheckConstructor() local
10917 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { in CheckConstructor()