Home
last modified time | relevance | path

Searched refs:object_type (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_external.cpp24 const char *object_type; member
41 return tag_data ? tag_data->object_type : nullptr; in GetObjectTypeFromTag()
77 void *__tsan_external_register_tag(const char *object_type) { in __tsan_external_register_tag() argument
80 GetTagData(new_tag)->object_type = internal_strdup(object_type); in __tsan_external_register_tag()
82 internal_snprintf(header, sizeof(header), "race on %s", object_type); in __tsan_external_register_tag()
H A Dtsan_report.cpp155 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop() local
156 if (object_type == nullptr) in PrintMop()
157 object_type = "external object"; in PrintMop()
159 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
185 const char *object_type = GetObjectTypeFromTag(loc->external_tag); in PrintLocation() local
186 if (!object_type) { in PrintLocation()
193 object_type, loc->heap_chunk_size, in PrintLocation()
H A Dtsan_debugging.cpp144 const char **object_type) { in __tsan_get_report_loc_object_type() argument
148 *object_type = GetObjectTypeFromTag(loc->external_tag); in __tsan_get_report_loc_object_type()
H A Dtsan_interface.h82 void *__tsan_external_register_tag(const char *object_type);
157 const char **object_type);
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_external.cpp24 const char *object_type; member
41 return tag_data ? tag_data->object_type : nullptr; in GetObjectTypeFromTag()
77 void *__tsan_external_register_tag(const char *object_type) { in __tsan_external_register_tag() argument
80 GetTagData(new_tag)->object_type = internal_strdup(object_type); in __tsan_external_register_tag()
82 internal_snprintf(header, sizeof(header), "race on %s", object_type); in __tsan_external_register_tag()
H A Dtsan_report.cpp155 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop() local
156 if (object_type == nullptr) in PrintMop()
157 object_type = "external object"; in PrintMop()
159 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
185 const char *object_type = GetObjectTypeFromTag(loc->external_tag); in PrintLocation() local
186 if (!object_type) { in PrintLocation()
193 object_type, loc->heap_chunk_size, in PrintLocation()
H A Dtsan_debugging.cpp144 const char **object_type) { in __tsan_get_report_loc_object_type() argument
148 *object_type = GetObjectTypeFromTag(loc->external_tag); in __tsan_get_report_loc_object_type()
H A Dtsan_interface.h82 void *__tsan_external_register_tag(const char *object_type);
157 const char **object_type);
/llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/
H A Ddebug_external.cpp19 const char **object_type);
58 const char *object_type; in __tsan_on_report() local
59 __tsan_get_report_loc_object_type(report, 0, &object_type); in __tsan_on_report()
60 fprintf(stderr, "object_type = %s\n", object_type); in __tsan_on_report()
H A Dexternal-lib.cpp25 void *(*callback_register_tag)(const char *object_type);
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-dyn-sbtype/
H A DTestObjCDynamicSBType.py53 object_type = v_object.GetType()
56 object_type.GetName(), "MyDerivedClass *",
61 object_pointee_type = object_type.GetPointeeType()
/llvm-project-15.0.7/clang/tools/clang-format/
H A Dgit-clang-format254 object_type = get_object_type(commit)
255 if object_type not in ('commit', 'tag'):
256 if object_type is None:
259 die("'%s' is a %s, but a commit was expected" % (commit, object_type))
281 object_type = get_object_type(value)
282 if object_type is None:
284 if object_type in ('commit', 'tag'):
287 (value, object_type))
/llvm-project-15.0.7/llvm/utils/
H A Drevert_checker.py205 object_type = subprocess.check_output(
216 if object_type == 'commit':
221 object_type, reverted_sha)
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp659 std::string object_type = std::string(loc->GetAsDictionary() in GenerateSummary() local
663 if (!object_type.empty()) { in GenerateSummary()
664 summary = "Race on " + object_type + " object"; in GenerateSummary()
758 std::string object_type = std::string(loc->GetAsDictionary() in GetLocationDescription() local
762 if (!object_type.empty()) { in GetLocationDescription()
764 object_type.c_str(), addr); in GetLocationDescription()
/llvm-project-15.0.7/compiler-rt/include/sanitizer/
H A Dtsan_interface.h139 void *__tsan_external_register_tag(const char *object_type);
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8276 const clang::ObjCObjectType *object_type = in StartTagDeclarationDefinition() local
8278 if (object_type) { in StartTagDeclarationDefinition()
8279 clang::ObjCInterfaceDecl *interface_decl = object_type->getInterface(); in StartTagDeclarationDefinition()