Searched refs:DynamicTypeInfo (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | DynamicType.cpp | 28 clang::ento::DynamicTypeInfo) 39 clang::ento::DynamicTypeInfo) 44 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State, const MemRegion *MR) { in getDynamicTypeInfo() 48 if (const DynamicTypeInfo *DTI = State->get<DynamicTypeMap>(MR)) in getDynamicTypeInfo() 53 return DynamicTypeInfo(TR->getLocationType(), /*CanBeSub=*/false); in getDynamicTypeInfo() 57 return DynamicTypeInfo(Sym->getType()); in getDynamicTypeInfo() 63 const DynamicTypeInfo *getRawDynamicTypeInfo(ProgramStateRef State, in getRawDynamicTypeInfo() 93 DynamicTypeInfo getClassObjectDynamicTypeInfo(ProgramStateRef State, in getClassObjectDynamicTypeInfo() 95 const DynamicTypeInfo *DTI = State->get<DynamicClassObjectMap>(Sym); in getClassObjectDynamicTypeInfo() 96 return DTI ? *DTI : DynamicTypeInfo{}; in getClassObjectDynamicTypeInfo() [all …]
|
H A D | CallEvent.cpp | 767 DynamicTypeInfo DynType = getDynamicTypeInfo(getState(), R); in getRuntimeDefinition() 1294 DynamicTypeInfo DTI = getDynamicTypeInfo(getState(), Receiver); in getRuntimeDefinition() 1324 DynamicTypeInfo DTI = in getRuntimeDefinition()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_type_hash_win.cpp | 45 __ubsan::DynamicTypeInfo 54 return DynamicTypeInfo(0, 0, 0); in getDynamicTypeInfoFromVtable() 59 return DynamicTypeInfo(0, 0, 0); in getDynamicTypeInfoFromVtable() 69 return DynamicTypeInfo(0, 0, 0); in getDynamicTypeInfoFromVtable() 72 return DynamicTypeInfo(0, 0, 0); in getDynamicTypeInfoFromVtable() 76 return DynamicTypeInfo(tinfo->name(), obj_locator->offset_to_top, in getDynamicTypeInfoFromVtable()
|
H A D | ubsan_type_hash.h | 23 class DynamicTypeInfo { 29 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN) in DynamicTypeInfo() function 43 DynamicTypeInfo getDynamicTypeInfoFromObject(void *Object); 46 DynamicTypeInfo getDynamicTypeInfoFromVtable(void *Vtable);
|
H A D | ubsan_type_hash_itanium.cpp | 259 __ubsan::DynamicTypeInfo 263 return DynamicTypeInfo(nullptr, 0, nullptr); in getDynamicTypeInfoFromVtable() 265 return DynamicTypeInfo(nullptr, Vtable->Offset, nullptr); in getDynamicTypeInfoFromVtable() 269 return DynamicTypeInfo(Vtable->TypeInfo->name(), -Vtable->Offset, in getDynamicTypeInfoFromVtable()
|
H A D | ubsan_handlers_cxx.cpp | 41 DynamicTypeInfo DTI = getDynamicTypeInfoFromObject((void*)Pointer); in HandleDynamicTypeCacheMiss() 107 DynamicTypeInfo DTI = ValidVtable in __ubsan_handle_cfi_bad_type() 109 : DynamicTypeInfo(0, 0, 0); in __ubsan_handle_cfi_bad_type()
|
H A D | ubsan_type_hash.cpp | 28 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) { in getDynamicTypeInfoFromObject()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | DynamicTypeInfo.h | 19 class DynamicTypeInfo { 21 DynamicTypeInfo() {} in DynamicTypeInfo() function 23 DynamicTypeInfo(QualType Ty, bool CanBeSub = true) 38 bool operator==(const DynamicTypeInfo &RHS) const {
|