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

Side by Side Diff: src/accessors.h

Issue 461603002: Replace Strings with Names in load and store ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: removing spurious formatting changes Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/accessors.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_ACCESSORS_H_ 5 #ifndef V8_ACCESSORS_H_
6 #define V8_ACCESSORS_H_ 6 #define V8_ACCESSORS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 static Handle<Object> FunctionGetArguments(Handle<JSFunction> object); 71 static Handle<Object> FunctionGetArguments(Handle<JSFunction> object);
72 72
73 // Accessor infos. 73 // Accessor infos.
74 static Handle<AccessorInfo> MakeModuleExport( 74 static Handle<AccessorInfo> MakeModuleExport(
75 Handle<String> name, int index, PropertyAttributes attributes); 75 Handle<String> name, int index, PropertyAttributes attributes);
76 76
77 // Returns true for properties that are accessors to object fields. 77 // Returns true for properties that are accessors to object fields.
78 // If true, *object_offset contains offset of object field. 78 // If true, *object_offset contains offset of object field.
79 template <class T> 79 template <class T>
80 static bool IsJSObjectFieldAccessor(typename T::TypeHandle type, 80 static bool IsJSObjectFieldAccessor(typename T::TypeHandle type,
81 Handle<String> name, 81 Handle<Name> name,
82 int* object_offset); 82 int* object_offset);
83 83
84 static Handle<AccessorInfo> MakeAccessor( 84 static Handle<AccessorInfo> MakeAccessor(
85 Isolate* isolate, 85 Isolate* isolate,
86 Handle<String> name, 86 Handle<String> name,
87 AccessorGetterCallback getter, 87 AccessorGetterCallback getter,
88 AccessorSetterCallback setter, 88 AccessorSetterCallback setter,
89 PropertyAttributes attributes); 89 PropertyAttributes attributes);
90 90
91 static Handle<ExecutableAccessorInfo> CloneAccessor( 91 static Handle<ExecutableAccessorInfo> CloneAccessor(
92 Isolate* isolate, 92 Isolate* isolate,
93 Handle<ExecutableAccessorInfo> accessor); 93 Handle<ExecutableAccessorInfo> accessor);
94 94
95 95
96 private: 96 private:
97 // Helper functions. 97 // Helper functions.
98 static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value); 98 static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value);
99 }; 99 };
100 100
101 } } // namespace v8::internal 101 } } // namespace v8::internal
102 102
103 #endif // V8_ACCESSORS_H_ 103 #endif // V8_ACCESSORS_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698