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

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

Issue 18357004: Revert r15419: "Generate StoreGlobal stubs with Hydrogen" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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/runtime.cc ('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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 Handle<JSObject> object, 177 Handle<JSObject> object,
178 LookupResult* lookup, 178 LookupResult* lookup,
179 Handle<Map> transition, 179 Handle<Map> transition,
180 StrictModeFlag strict_mode); 180 StrictModeFlag strict_mode);
181 181
182 Handle<Code> ComputeStoreNormal(StrictModeFlag strict_mode); 182 Handle<Code> ComputeStoreNormal(StrictModeFlag strict_mode);
183 183
184 Handle<Code> ComputeStoreGlobal(Handle<Name> name, 184 Handle<Code> ComputeStoreGlobal(Handle<Name> name,
185 Handle<GlobalObject> object, 185 Handle<GlobalObject> object,
186 Handle<PropertyCell> cell, 186 Handle<PropertyCell> cell,
187 Handle<Object> value,
188 StrictModeFlag strict_mode); 187 StrictModeFlag strict_mode);
189 188
190 Handle<Code> ComputeStoreCallback(Handle<Name> name, 189 Handle<Code> ComputeStoreCallback(Handle<Name> name,
191 Handle<JSObject> object, 190 Handle<JSObject> object,
192 Handle<JSObject> holder, 191 Handle<JSObject> holder,
193 Handle<ExecutableAccessorInfo> callback, 192 Handle<ExecutableAccessorInfo> callback,
194 StrictModeFlag strict_mode); 193 StrictModeFlag strict_mode);
195 194
196 Handle<Code> ComputeStoreViaSetter(Handle<Name> name, 195 Handle<Code> ComputeStoreViaSetter(Handle<Name> name,
197 Handle<JSObject> object, 196 Handle<JSObject> object,
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 Handle<JSFunction> constant_function_; 1120 Handle<JSFunction> constant_function_;
1122 bool is_simple_api_call_; 1121 bool is_simple_api_call_;
1123 Handle<FunctionTemplateInfo> expected_receiver_type_; 1122 Handle<FunctionTemplateInfo> expected_receiver_type_;
1124 Handle<CallHandlerInfo> api_call_info_; 1123 Handle<CallHandlerInfo> api_call_info_;
1125 }; 1124 };
1126 1125
1127 1126
1128 } } // namespace v8::internal 1127 } } // namespace v8::internal
1129 1128
1130 #endif // V8_STUB_CACHE_H_ 1129 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698