Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h381 const DIType *ClassTy = nullptr);
400 codeview::TypeIndex lowerType(const DIType *Ty, const DIType *ClassTy);
414 const DISubroutineType *Ty, const DIType *ClassTy, int ThisAdjustment,
447 const DIType *ClassTy = nullptr);
H A DCodeViewDebug.cpp419 const DICompositeType *ClassTy = nullptr, in getFunctionOptions() argument
431 if (isNonTrivial(ReturnDCTy) || ClassTy) in getFunctionOptions()
435 if (ClassTy && isNonTrivial(ClassTy) && SPName == ClassTy->getName()) { in getFunctionOptions()
472 const DIType *ClassTy) { in recordTypeIndexForDINode() argument
473 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode()
1561 if (ClassTy) { in lowerType()
1938 const DIType *ClassTy, in lowerTypeMemberFunction() argument
1943 TypeIndex ClassType = getTypeIndex(ClassTy); in lowerTypeMemberFunction()
2530 auto I = TypeIndices.find({Ty, ClassTy}); in getTypeIndex()
2535 TypeIndex TI = lowerType(Ty, ClassTy); in getTypeIndex()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp77 TypeIndex ClassTy = MFRecord.getClassType(); in getName() local
78 QualifiedName.append(std::string(Types.getTypeName(ClassTy))); in getName()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp533 llvm::StructType *ClassTy; member in __anon8be0494b0111::ObjCTypesHelper
2131 llvm::Type *ClassTy = in GenerateMessageSendSuper() local
2133 Target = CGF.Builder.CreateBitCast(Target, ClassTy); in GenerateMessageSendSuper()
3655 assert(GV->getValueType() == ObjCTypes.ClassTy && in GenerateClass()
3718 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitMetaClass()
3749 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitMetaClassRef()
3763 assert(GV->getValueType() == ObjCTypes.ClassTy && in EmitSuperClassRef()
5981 ClassTy->setBody(llvm::PointerType::getUnqual(ClassTy), in ObjCTypesHelper()
5986 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy); in ObjCTypesHelper()
7638 llvm::Type *ClassTy = in GenerateMessageSendSuper() local
[all …]
H A DCGDebugInfo.cpp641 if (!ClassTy) in CreateType()
642 ClassTy = in CreateType()
645 return ClassTy; in CreateType()
655 if (!ClassTy) in CreateType()
656 ClassTy = in CreateType()
662 auto *ISATy = DBuilder.createPointerType(ClassTy, Size); in CreateType()
3100 llvm::DIType *ClassTy = getOrCreateType(ED->getIntegerType(), DefUnit); in CreateTypeDefinition() local
3102 Line, Size, Align, EltArray, ClassTy, in CreateTypeDefinition()
H A DCGDebugInfo.h69 llvm::DIType *ClassTy = nullptr; variable
H A DCGClass.cpp2707 auto *ClassTy = T->getAs<RecordType>(); in EmitVTablePtrCheckForCast() local
2708 if (!ClassTy) in EmitVTablePtrCheckForCast()
2711 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassTy->getDecl()); in EmitVTablePtrCheckForCast()
H A DCGObjCGNU.cpp2911 llvm::StructType *ClassTy = llvm::StructType::get( in GenerateClassStructure() local
2935 auto Elements = Builder.beginStruct(ClassTy); in GenerateClassStructure()
2953 td.getTypeSizeInBits(ClassTy) / in GenerateClassStructure()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2439 QualType ClassTy = C.getTypeDeclType(Decl); in getThisObjectType() local
2440 return C.getQualifiedType(ClassTy, FPT->getMethodQuals()); in getThisObjectType()
2686 CanQualType ClassTy in isCopyOrMoveConstructor() local
2688 if (PointeeType.getUnqualifiedType() != ClassTy) in isCopyOrMoveConstructor()
2726 CanQualType ClassTy in isSpecializationCopyingObject() local
2728 if (ParamType.getUnqualifiedType() != ClassTy) in isSpecializationCopyingObject()
H A DType.cpp2250 const Type *ClassTy = MPTy->getClass(); in isIncompleteType() local
2252 if (ClassTy->isDependentType()) in isIncompleteType()
2254 const CXXRecordDecl *RD = ClassTy->getAsCXXRecordDecl(); in isIncompleteType()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h607 unsigned NumElements, LLVMMetadataRef ClassTy);
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp1124 unsigned NumElements, LLVMMetadataRef ClassTy) { in LLVMDIBuilderCreateEnumerationType() argument
1129 LineNumber, SizeInBits, AlignInBits, Elts, unwrapDI<DIType>(ClassTy))); in LLVMDIBuilderCreateEnumerationType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1201 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC)); in getCurrentThisType() local
1204 ThisTy = Context.getPointerType(ClassTy); in getCurrentThisType()
H A DSemaOverload.cpp7952 const Type *ClassTy = PointerTy->getClass(); in AddMemberPointerWithMoreQualifiedTypeVariants() local
7962 Context.getMemberPointerType(QPointeeTy, ClassTy)); in AddMemberPointerWithMoreQualifiedTypeVariants()
H A DSemaDeclCXX.cpp10338 QualType ClassTy = Context.getTagDeclType(ClassDecl); in CheckConstructor() local
10339 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { in CheckConstructor()