| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/trace_event/heap_profiler_allocation_context.h" | 5 #include "base/trace_event/heap_profiler_allocation_context.h" |
| 6 | 6 |
| 7 #include <cstring> | 7 #include <cstring> |
| 8 | 8 |
| 9 #include "base/hash.h" | 9 #include "base/hash.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 namespace trace_event { | 13 namespace trace_event { |
| 14 | 14 |
| 15 // Constructor that does not initialize members. | 15 // Constructor that does not initialize members. |
| 16 AllocationContext::AllocationContext() {} | 16 AllocationContext::AllocationContext() {} |
| 17 | 17 |
| 18 // static | 18 // static |
| 19 AllocationContext AllocationContext::Empty() { | 19 AllocationContext AllocationContext::Empty() { |
| 20 AllocationContext ctx; | 20 AllocationContext ctx; |
| 21 | 21 |
| 22 for (size_t i = 0; i < arraysize(ctx.backtrace.frames); i++) | 22 for (size_t i = 0; i < arraysize(ctx.backtrace.frames); i++) |
| 23 ctx.backtrace.frames[i] = nullptr; | 23 ctx.backtrace.frames[i] = nullptr; |
| 24 | 24 |
| 25 ctx.type_id = 0; | 25 ctx.type_name = nullptr; |
| 26 | 26 |
| 27 return ctx; | 27 return ctx; |
| 28 } | 28 } |
| 29 | 29 |
| 30 bool operator==(const Backtrace& lhs, const Backtrace& rhs) { | 30 bool operator==(const Backtrace& lhs, const Backtrace& rhs) { |
| 31 // Pointer equality of the stack frames is assumed, so instead of doing a deep | 31 // Pointer equality of the stack frames is assumed, so instead of doing a deep |
| 32 // string comparison on all of the frames, a |memcmp| suffices. | 32 // string comparison on all of the frames, a |memcmp| suffices. |
| 33 return std::memcmp(lhs.frames, rhs.frames, sizeof(lhs.frames)) == 0; | 33 return std::memcmp(lhs.frames, rhs.frames, sizeof(lhs.frames)) == 0; |
| 34 } | 34 } |
| 35 | 35 |
| 36 bool operator==(const AllocationContext& lhs, const AllocationContext& rhs) { | 36 bool operator==(const AllocationContext& lhs, const AllocationContext& rhs) { |
| 37 return (lhs.backtrace == rhs.backtrace) && (lhs.type_id == rhs.type_id); | 37 return (lhs.backtrace == rhs.backtrace) && (lhs.type_name == rhs.type_name); |
| 38 } | 38 } |
| 39 | 39 |
| 40 } // namespace trace_event | 40 } // namespace trace_event |
| 41 } // namespace base | 41 } // namespace base |
| 42 | 42 |
| 43 namespace BASE_HASH_NAMESPACE { | 43 namespace BASE_HASH_NAMESPACE { |
| 44 using base::trace_event::AllocationContext; | 44 using base::trace_event::AllocationContext; |
| 45 using base::trace_event::Backtrace; | 45 using base::trace_event::Backtrace; |
| 46 | 46 |
| 47 size_t hash<Backtrace>::operator()(const Backtrace& backtrace) const { | 47 size_t hash<Backtrace>::operator()(const Backtrace& backtrace) const { |
| 48 return base::SuperFastHash(reinterpret_cast<const char*>(backtrace.frames), | 48 return base::SuperFastHash(reinterpret_cast<const char*>(backtrace.frames), |
| 49 sizeof(backtrace.frames)); | 49 sizeof(backtrace.frames)); |
| 50 } | 50 } |
| 51 | 51 |
| 52 size_t hash<AllocationContext>::operator()(const AllocationContext& ctx) const { | 52 size_t hash<AllocationContext>::operator()(const AllocationContext& ctx) const { |
| 53 size_t ctx_hash = hash<Backtrace>()(ctx.backtrace); | 53 size_t backtrace_hash = hash<Backtrace>()(ctx.backtrace); |
| 54 |
| 55 // Multiplicative hash from [Knuth 1998]. Works best if |size_t| is 32 bits, |
| 56 // because the magic number is a prime very close to 2^32 / golden ratio, but |
| 57 // will still redistribute keys bijectively on 64-bit architectures because |
| 58 // the magic number is coprime to 2^64. |
| 59 size_t type_hash = reinterpret_cast<size_t>(ctx.type_name) * 2654435761; |
| 54 | 60 |
| 55 // Multiply one side to break the commutativity of +. Multiplication with a | 61 // Multiply one side to break the commutativity of +. Multiplication with a |
| 56 // number coprime to |numeric_limits<size_t>::max() + 1| is bijective so | 62 // number coprime to |numeric_limits<size_t>::max() + 1| is bijective so |
| 57 // randomness is preserved. The type ID is assumed to be distributed randomly | 63 // randomness is preserved. |
| 58 // already so there is no need to hash it. | 64 return (backtrace_hash * 3) + type_hash; |
| 59 return (ctx_hash * 3) + static_cast<size_t>(ctx.type_id); | |
| 60 } | 65 } |
| 61 | 66 |
| 62 } // BASE_HASH_NAMESPACE | 67 } // BASE_HASH_NAMESPACE |
| OLD | NEW |