Skip to content

Commit c76cb92

Browse files
Ken Steelecopybara-github
Ken Steele
authored andcommitted
Use Profile::Sample::GuardedStatus for guarded_status instead of int.
This is the correct type and uses only 1 byte instead of 4. We can then group `guarded_status` and `allocation_type` into the padding after `allocation_time` to save 8 bytes. Cleanup the type casting that is no longer needed. Before: struct tcmalloc::tcmalloc_internal::StackTrace needs 7 bytes of padding, non-tail padding is 7 (fields: 18 padded fields: 2) total_size: 616 padding size alignment | Field name 8 8 | sampled_alloc_handle 8 8 | proxy 8 8 | requested_size 8 8 | requested_alignment 8 8 | allocated_size 1 1 | requested_size_returning 1 1 | access_hint 1 1 | cold_allocated 1 1 | has_context 4 4 | static_initialization_depth 8 8 | weight 4 12 4 | allocation_time 8 8 | span_start_address 8 8 | census_handle 4 4 | guarded_status 3 1 1 | allocation_type 8 8 | depth 512 8 | stack After: struct tcmalloc::tcmalloc_internal::StackTrace needs 2 bytes of padding, non-tail padding is 2 (fields: 18 padded fields: 1) total_size: 608 padding size alignment | Field name 8 8 | sampled_alloc_handle 8 8 | proxy 8 8 | requested_size 8 8 | requested_alignment 8 8 | allocated_size 1 1 | requested_size_returning 1 1 | access_hint 1 1 | cold_allocated 1 1 | has_context 4 4 | static_initialization_depth 8 8 | weight 12 4 | allocation_time 1 1 | guarded_status 2 1 1 | allocation_type 8 8 | span_start_address 8 8 | census_handle 8 8 | depth 512 8 | stack PiperOrigin-RevId: 716195113 Change-Id: I766ba0f572c5ebdfc891065ce75aca767b9e2a41
1 parent ccd1b2f commit c76cb92

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

tcmalloc/allocation_sampling.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ SampleifyAllocation(Static& state, Policy policy, size_t requested_size,
191191
1;
192192
stack_trace.span_start_address = span->start_address();
193193
stack_trace.allocation_time = absl::Now();
194-
stack_trace.guarded_status = static_cast<int>(alloc_with_status.status);
194+
stack_trace.guarded_status = alloc_with_status.status;
195195
stack_trace.allocation_type = policy.allocation_type();
196196

197197
// How many allocations does this sample represent, given the sampling

tcmalloc/internal/logging.h

+5-7
Original file line numberDiff line numberDiff line change
@@ -87,18 +87,16 @@ struct StackTrace {
8787
// Timestamp of allocation.
8888
absl::Time allocation_time;
8989

90+
Profile::Sample::GuardedStatus guarded_status;
91+
92+
// How the memory was allocated (new/malloc/etc.)
93+
Profile::Sample::AllocationType allocation_type;
94+
9095
// If not nullptr, this is the start address of the span corresponding to this
9196
// sampled allocation. This may be nullptr for cases where it is not useful
9297
// for residency analysis such as for peakheapz.
9398
void* span_start_address = nullptr;
9499

95-
// An integer representing the guarded status of the allocation.
96-
// The values are from the enum GuardedStatus in ../malloc_extension.h.
97-
int guarded_status;
98-
99-
// How the memory was allocated (new/malloc/etc.)
100-
Profile::Sample::AllocationType allocation_type;
101-
102100
uintptr_t depth; // Number of PC values stored in array below
103101
// Place stack as last member because it might not all be accessed.
104102
void* stack[kMaxStackDepth];

tcmalloc/stack_trace_table.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ void StackTraceTable::AddTrace(double sample_weight, const StackTrace& t) {
8686
s->sample.allocation_time = t.allocation_time;
8787

8888
s->sample.span_start_address = t.span_start_address;
89-
s->sample.guarded_status =
90-
static_cast<Profile::Sample::GuardedStatus>(t.guarded_status);
89+
s->sample.guarded_status = t.guarded_status;
9190
s->sample.type = t.allocation_type;
9291

9392
static_assert(kMaxStackDepth <= Profile::Sample::kMaxStackDepth,

0 commit comments

Comments
 (0)