Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Side by Side Diff: src/profiler/strings-storage.cc

Issue 1378253002: Move strings-storage.* to the profiler directory (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebaseline Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/profiler/strings-storage.h ('k') | src/strings-storage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project 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 "src/strings-storage.h" 5 #include "src/profiler/strings-storage.h"
6 6
7 #include "src/base/smart-pointers.h" 7 #include "src/base/smart-pointers.h"
8 #include "src/objects-inl.h" 8 #include "src/objects-inl.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 12
13 13
14 bool StringsStorage::StringsMatch(void* key1, void* key2) { 14 bool StringsStorage::StringsMatch(void* key1, void* key2) {
15 return strcmp(reinterpret_cast<char*>(key1), reinterpret_cast<char*>(key2)) == 15 return strcmp(reinterpret_cast<char*>(key1), reinterpret_cast<char*>(key2)) ==
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 return size; 114 return size;
115 } 115 }
116 116
117 117
118 HashMap::Entry* StringsStorage::GetEntry(const char* str, int len) { 118 HashMap::Entry* StringsStorage::GetEntry(const char* str, int len) {
119 uint32_t hash = StringHasher::HashSequentialString(str, len, hash_seed_); 119 uint32_t hash = StringHasher::HashSequentialString(str, len, hash_seed_);
120 return names_.LookupOrInsert(const_cast<char*>(str), hash); 120 return names_.LookupOrInsert(const_cast<char*>(str), hash);
121 } 121 }
122 } // namespace internal 122 } // namespace internal
123 } // namespace v8 123 } // namespace v8
OLDNEW
« no previous file with comments | « src/profiler/strings-storage.h ('k') | src/strings-storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698