Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h379 const DIType *ClassTy = nullptr);
398 codeview::TypeIndex lowerType(const DIType *Ty, const DIType *ClassTy);
412 const DISubroutineType *Ty, const DIType *ClassTy, int ThisAdjustment,
445 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()
1537 TypeIndex CodeViewDebug::lowerType(const DIType *Ty, const DIType *ClassTy) { in lowerType() argument
1561 if (ClassTy) { in lowerType()
1564 return lowerTypeMemberFunction(cast<DISubroutineType>(Ty), ClassTy, in lowerType()
1938 const DIType *ClassTy, in lowerTypeMemberFunction() argument
1943 TypeIndex ClassType = getTypeIndex(ClassTy); in lowerTypeMemberFunction()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Ddebuginfo.c62 LLVMMetadataRef ClassTy = declare_objc_class(DIB, File); in llvm_test_dibuilder() local
66 DIB, Module, "globalClass", 11, "", 0, File, 1, ClassTy, true, in llvm_test_dibuilder()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCMac.cpp533 llvm::StructType *ClassTy; member in __anon0cc8f9a20111::ObjCTypesHelper
2099 llvm::Type *ClassTyPtr = llvm::PointerType::getUnqual(ObjCTypes.ClassTy); in GenerateMessageSendSuper()
2110 Target = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, Target, 0); in GenerateMessageSendSuper()
2116 CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, MetaClassPtr, 1); in GenerateMessageSendSuper()
2125 ClassPtr = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, ClassPtr, 1); in GenerateMessageSendSuper()
2131 llvm::Type *ClassTy = in GenerateMessageSendSuper() local
2133 Target = CGF.Builder.CreateBitCast(Target, ClassTy); in GenerateMessageSendSuper()
3623 auto values = builder.beginStruct(ObjCTypes.ClassTy); in GenerateClass()
3655 assert(GV->getValueType() == ObjCTypes.ClassTy && in GenerateClass()
3673 unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ClassTy); in EmitMetaClass()
[all …]
H A DCGDebugInfo.cpp663 if (!ClassTy) in CreateType()
664 ClassTy = in CreateType()
667 return ClassTy; in CreateType()
677 if (!ClassTy) in CreateType()
678 ClassTy = in CreateType()
684 auto *ISATy = DBuilder.createPointerType(ClassTy, Size); in CreateType()
3118 llvm::DIType *ClassTy = getOrCreateType(ED->getIntegerType(), DefUnit); in CreateTypeDefinition() local
3120 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.cpp2908 llvm::StructType *ClassTy = llvm::StructType::get( in GenerateClassStructure() local
2932 auto Elements = Builder.beginStruct(ClassTy); in GenerateClassStructure()
2950 td.getTypeSizeInBits(ClassTy) / in GenerateClassStructure()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp2453 QualType ClassTy = C.getTypeDeclType(Decl); in getThisObjectType() local
2454 return C.getQualifiedType(ClassTy, FPT->getMethodQuals()); in getThisObjectType()
2700 CanQualType ClassTy in isCopyOrMoveConstructor() local
2702 if (PointeeType.getUnqualifiedType() != ClassTy) in isCopyOrMoveConstructor()
2740 CanQualType ClassTy in isSpecializationCopyingObject() local
2742 if (ParamType.getUnqualifiedType() != ClassTy) in isSpecializationCopyingObject()
H A DType.cpp2247 const Type *ClassTy = MPTy->getClass(); in isIncompleteType() local
2249 if (ClassTy->isDependentType()) in isIncompleteType()
2251 const CXXRecordDecl *RD = ClassTy->getAsCXXRecordDecl(); in isIncompleteType()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
H A Ddebuginfo_ocaml.c400 LLVMMetadataRef ClassTy) { in llvm_dibuild_create_enumeration_type_native() argument
405 Wosize_val(Elements), ClassTy); in llvm_dibuild_create_enumeration_type_native()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DDebugInfo.h607 unsigned NumElements, LLVMMetadataRef ClassTy);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfo.cpp1088 unsigned NumElements, LLVMMetadataRef ClassTy) { in LLVMDIBuilderCreateEnumerationType() argument
1093 LineNumber, SizeInBits, AlignInBits, Elts, unwrapDI<DIType>(ClassTy))); in LLVMDIBuilderCreateEnumerationType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp1184 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC)); in getCurrentThisType() local
1187 ThisTy = Context.getPointerType(ClassTy); in getCurrentThisType()
H A DSemaOverload.cpp7956 const Type *ClassTy = PointerTy->getClass(); in AddMemberPointerWithMoreQualifiedTypeVariants() local
7966 Context.getMemberPointerType(QPointeeTy, ClassTy)); in AddMemberPointerWithMoreQualifiedTypeVariants()
H A DSemaDeclCXX.cpp10331 QualType ClassTy = Context.getTagDeclType(ClassDecl); in CheckConstructor() local
10332 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { in CheckConstructor()