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.cc496 uptr pc_or_addr = 0; in OutputReport() local
497 for (uptr i = 0; pc_or_addr == 0 && i < rep->mops.Size(); i++) in OutputReport()
498 pc_or_addr = IsSuppressed(rep->typ, rep->mops[i]->stack, &supp); in OutputReport()
499 for (uptr i = 0; pc_or_addr == 0 && i < rep->stacks.Size(); i++) in OutputReport()
500 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp); in OutputReport()
501 for (uptr i = 0; pc_or_addr == 0 && i < rep->threads.Size(); i++) in OutputReport()
502 pc_or_addr = IsSuppressed(rep->typ, rep->threads[i]->stack, &supp); in OutputReport()
503 for (uptr i = 0; pc_or_addr == 0 && i < rep->locs.Size(); i++) in OutputReport()
504 pc_or_addr = IsSuppressed(rep->typ, rep->locs[i], &supp); in OutputReport()
505 if (pc_or_addr != 0) { in OutputReport()
[all …]
Dtsan_rtl.h468 uptr pc_or_addr; member