Home
last modified time | relevance | path

Searched refs:pc_or_addr (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_report.cc503 uptr pc_or_addr = 0; in OutputReport() local
504 for (uptr i = 0; pc_or_addr == 0 && i < rep->mops.Size(); i++) in OutputReport()
505 pc_or_addr = IsSuppressed(rep->typ, rep->mops[i]->stack, &supp); in OutputReport()
506 for (uptr i = 0; pc_or_addr == 0 && i < rep->stacks.Size(); i++) in OutputReport()
507 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp); in OutputReport()
508 for (uptr i = 0; pc_or_addr == 0 && i < rep->threads.Size(); i++) in OutputReport()
509 pc_or_addr = IsSuppressed(rep->typ, rep->threads[i]->stack, &supp); in OutputReport()
510 for (uptr i = 0; pc_or_addr == 0 && i < rep->locs.Size(); i++) in OutputReport()
511 pc_or_addr = IsSuppressed(rep->typ, rep->locs[i], &supp); in OutputReport()
512 if (pc_or_addr != 0) { in OutputReport()
[all …]
Dtsan_rtl.h501 uptr pc_or_addr; member