reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  188   if (loc->type == ReportLocationGlobal) {
  189     const DataInfo &global = loc->global;
  198   } else if (loc->type == ReportLocationHeap) {
  200     const char *object_type = GetObjectTypeFromTag(loc->external_tag);
  203              loc->heap_chunk_size, loc->heap_chunk_start,
  203              loc->heap_chunk_size, loc->heap_chunk_start,
  204              thread_name(thrbuf, loc->tid));
  207              object_type, loc->heap_chunk_size, loc->heap_chunk_start,
  207              object_type, loc->heap_chunk_size, loc->heap_chunk_start,
  208              thread_name(thrbuf, loc->tid));
  211   } else if (loc->type == ReportLocationStack) {
  212     Printf("  Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
  213   } else if (loc->type == ReportLocationTLS) {
  214     Printf("  Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
  215   } else if (loc->type == ReportLocationFD) {
  217         loc->fd, thread_name(thrbuf, loc->tid));
  217         loc->fd, thread_name(thrbuf, loc->tid));
  222     PrintStack(loc->stack);