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

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

Issue 1074943002: Split TemplateHashMapImpl::Lookup into two methods (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix arm (and ppc) builds Created 5 years, 8 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
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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/strings-storage.h" 7 #include "src/strings-storage.h"
8 8
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 size += sizeof(HashMap::Entry) * names_.capacity(); 110 size += sizeof(HashMap::Entry) * names_.capacity();
111 for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) { 111 for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) {
112 size += strlen(reinterpret_cast<const char*>(p->value)) + 1; 112 size += strlen(reinterpret_cast<const char*>(p->value)) + 1;
113 } 113 }
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_.Lookup(const_cast<char*>(str), hash, true); 120 return names_.LookupOrInsert(const_cast<char*>(str), hash);
121 } 121 }
122 } 122 }
123 } // namespace v8::internal 123 } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698