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

Side by Side Diff: src/lookup.h

Issue 2405213002: V8 support for cached accessors. (Closed)
Patch Set: Toon's feedback. Created 4 years, 1 month 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/ic/ic.cc ('k') | src/lookup.cc » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_LOOKUP_H_ 5 #ifndef V8_LOOKUP_H_
6 #define V8_LOOKUP_H_ 6 #define V8_LOOKUP_H_
7 7
8 #include "src/factory.h" 8 #include "src/factory.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/isolate.h" 10 #include "src/isolate.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 inline void UpdateProtector() { 256 inline void UpdateProtector() {
257 if (IsElement()) return; 257 if (IsElement()) return;
258 if (*name_ == heap()->is_concat_spreadable_symbol() || 258 if (*name_ == heap()->is_concat_spreadable_symbol() ||
259 *name_ == heap()->constructor_string() || 259 *name_ == heap()->constructor_string() ||
260 *name_ == heap()->species_symbol() || 260 *name_ == heap()->species_symbol() ||
261 *name_ == heap()->has_instance_symbol()) { 261 *name_ == heap()->has_instance_symbol()) {
262 InternalUpdateProtector(); 262 InternalUpdateProtector();
263 } 263 }
264 } 264 }
265 265
266 // Lookup a 'cached' private property for an accessor.
267 // If not found returns false and leaves the LookupIterator unmodified.
268 bool TryLookupCachedProperty();
269 bool LookupCachedProperty();
270
266 private: 271 private:
267 void InternalUpdateProtector(); 272 void InternalUpdateProtector();
268 273
269 enum class InterceptorState { 274 enum class InterceptorState {
270 kUninitialized, 275 kUninitialized,
271 kSkipNonMasking, 276 kSkipNonMasking,
272 kProcessNonMasking 277 kProcessNonMasking
273 }; 278 };
274 279
275 Handle<Map> GetReceiverMap() const; 280 Handle<Map> GetReceiverMap() const;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 const Handle<JSReceiver> initial_holder_; 360 const Handle<JSReceiver> initial_holder_;
356 const uint32_t index_; 361 const uint32_t index_;
357 uint32_t number_; 362 uint32_t number_;
358 }; 363 };
359 364
360 365
361 } // namespace internal 366 } // namespace internal
362 } // namespace v8 367 } // namespace v8
363 368
364 #endif // V8_LOOKUP_H_ 369 #endif // V8_LOOKUP_H_
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | src/lookup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698