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

Side by Side Diff: src/stub-cache.h

Issue 132373011: A64: Synchronize with r17635. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/spaces-inl.h ('k') | src/stub-cache.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 Handle<Code> ComputeMonomorphicIC(Handle<HeapObject> receiver, 98 Handle<Code> ComputeMonomorphicIC(Handle<HeapObject> receiver,
99 Handle<Code> handler, 99 Handle<Code> handler,
100 Handle<Name> name, 100 Handle<Name> name,
101 StrictModeFlag strict_mode); 101 StrictModeFlag strict_mode);
102 102
103 // Computes the right stub matching. Inserts the result in the 103 // Computes the right stub matching. Inserts the result in the
104 // cache before returning. This might compile a stub if needed. 104 // cache before returning. This might compile a stub if needed.
105 Handle<Code> ComputeLoadNonexistent(Handle<Name> name, 105 Handle<Code> ComputeLoadNonexistent(Handle<Name> name,
106 Handle<JSObject> object); 106 Handle<JSObject> object);
107 107
108 Handle<Code> ComputeLoadGlobal(Handle<Name> name,
109 Handle<JSObject> object,
110 Handle<GlobalObject> holder,
111 Handle<PropertyCell> cell,
112 bool is_dont_delete);
113
114 // --- 108 // ---
115 109
116 Handle<Code> ComputeKeyedLoadField(Handle<Name> name,
117 Handle<JSObject> object,
118 Handle<JSObject> holder,
119 PropertyIndex field_index,
120 Representation representation);
121
122 Handle<Code> ComputeKeyedLoadCallback(
123 Handle<Name> name,
124 Handle<JSObject> object,
125 Handle<JSObject> holder,
126 Handle<ExecutableAccessorInfo> callback);
127
128 Handle<Code> ComputeKeyedLoadCallback(
129 Handle<Name> name,
130 Handle<JSObject> object,
131 Handle<JSObject> holder,
132 const CallOptimization& call_optimization);
133
134 Handle<Code> ComputeKeyedLoadConstant(Handle<Name> name,
135 Handle<JSObject> object,
136 Handle<JSObject> holder,
137 Handle<Object> value);
138
139 Handle<Code> ComputeKeyedLoadInterceptor(Handle<Name> name,
140 Handle<JSObject> object,
141 Handle<JSObject> holder);
142
143 Handle<Code> ComputeStoreGlobal(Handle<Name> name,
144 Handle<GlobalObject> object,
145 Handle<PropertyCell> cell,
146 Handle<Object> value,
147 StrictModeFlag strict_mode);
148
149 Handle<Code> ComputeKeyedLoadElement(Handle<Map> receiver_map); 110 Handle<Code> ComputeKeyedLoadElement(Handle<Map> receiver_map);
150 111
151 Handle<Code> ComputeKeyedStoreElement(Handle<Map> receiver_map, 112 Handle<Code> ComputeKeyedStoreElement(Handle<Map> receiver_map,
152 StrictModeFlag strict_mode, 113 StrictModeFlag strict_mode,
153 KeyedAccessStoreMode store_mode); 114 KeyedAccessStoreMode store_mode);
154 115
155 Handle<Code> ComputeCallField(int argc, 116 Handle<Code> ComputeCallField(int argc,
156 Code::Kind, 117 Code::Kind,
157 Code::ExtraICState extra_state, 118 Code::ExtraICState extra_state,
158 Handle<Name> name, 119 Handle<Name> name,
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 Handle<JSFunction> constant_function_; 1059 Handle<JSFunction> constant_function_;
1099 bool is_simple_api_call_; 1060 bool is_simple_api_call_;
1100 Handle<FunctionTemplateInfo> expected_receiver_type_; 1061 Handle<FunctionTemplateInfo> expected_receiver_type_;
1101 Handle<CallHandlerInfo> api_call_info_; 1062 Handle<CallHandlerInfo> api_call_info_;
1102 }; 1063 };
1103 1064
1104 1065
1105 } } // namespace v8::internal 1066 } } // namespace v8::internal
1106 1067
1107 #endif // V8_STUB_CACHE_H_ 1068 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/spaces-inl.h ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698