summaryrefslogtreecommitdiff
path: root/lib/esan
diff options
context:
space:
mode:
Diffstat (limited to 'lib/esan')
-rw-r--r--lib/esan/cache_frag.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/esan/cache_frag.cpp b/lib/esan/cache_frag.cpp
index 2096bec75..e3384a982 100644
--- a/lib/esan/cache_frag.cpp
+++ b/lib/esan/cache_frag.cpp
@@ -30,8 +30,9 @@ struct StructInfo {
u32 NumFields;
u32 *FieldOffsets;
u32 *FieldSize;
- u64 *FieldCounters;
const char **FieldTypeNames;
+ u64 *FieldCounters;
+ u64 *ArrayCounter;
};
// This should be kept consistent with LLVM's EfficiencySanitizer CacheFragInfo.
@@ -96,8 +97,8 @@ static void reportStructCounter(StructHashMap::Handle &Handle) {
end = strchr(start, '#');
CHECK(end != nullptr);
Report(" %s %.*s\n", type, end - start, start);
- Report(" size = %u, count = %llu, ratio = %llu\n", Struct->Size,
- Handle->Count, Handle->Ratio);
+ Report(" size = %u, count = %llu, ratio = %llu, array access = %llu\n",
+ Struct->Size, Handle->Count, Handle->Ratio, *Struct->ArrayCounter);
for (u32 i = 0; i < Struct->NumFields; ++i) {
Report(" #%2u: offset = %u,\t size = %u,\t count = %llu,\t type = %.*s\n",
i, Struct->FieldOffsets[i], Struct->FieldSize[i],