OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |