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

Side by Side Diff: src/lookup.h

Issue 1274613002: Version 4.5.103.16 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.5
Patch Set: Created 5 years, 4 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 | « include/v8-version.h ('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/isolate.h" 9 #include "src/isolate.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 FieldIndex GetFieldIndex() const; 232 FieldIndex GetFieldIndex() const;
233 Handle<HeapType> GetFieldType() const; 233 Handle<HeapType> GetFieldType() const;
234 int GetAccessorIndex() const; 234 int GetAccessorIndex() const;
235 int GetConstantIndex() const; 235 int GetConstantIndex() const;
236 Handle<PropertyCell> GetPropertyCell() const; 236 Handle<PropertyCell> GetPropertyCell() const;
237 Handle<Object> GetAccessors() const; 237 Handle<Object> GetAccessors() const;
238 Handle<InterceptorInfo> GetInterceptor() const; 238 Handle<InterceptorInfo> GetInterceptor() const;
239 Handle<Object> GetDataValue() const; 239 Handle<Object> GetDataValue() const;
240 void WriteDataValue(Handle<Object> value); 240 void WriteDataValue(Handle<Object> value);
241 void InternalizeName(); 241 void InternalizeName();
242 void ReloadHolderMap();
242 243
243 private: 244 private:
244 enum class InterceptorState { 245 enum class InterceptorState {
245 kUninitialized, 246 kUninitialized,
246 kSkipNonMasking, 247 kSkipNonMasking,
247 kProcessNonMasking 248 kProcessNonMasking
248 }; 249 };
249 250
250 Handle<Map> GetReceiverMap() const; 251 Handle<Map> GetReceiverMap() const;
251 252
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 Handle<JSReceiver> holder_; 308 Handle<JSReceiver> holder_;
308 Handle<Map> holder_map_; 309 Handle<Map> holder_map_;
309 const Handle<JSReceiver> initial_holder_; 310 const Handle<JSReceiver> initial_holder_;
310 uint32_t number_; 311 uint32_t number_;
311 }; 312 };
312 313
313 314
314 } } // namespace v8::internal 315 } } // namespace v8::internal
315 316
316 #endif // V8_LOOKUP_H_ 317 #endif // V8_LOOKUP_H_
OLDNEW
« no previous file with comments | « include/v8-version.h ('k') | src/lookup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698