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

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

Issue 16925008: Generate StoreGlobal stubs with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address feedback 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
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,
187 StrictModeFlag strict_mode); 188 StrictModeFlag strict_mode);
188 189
189 Handle<Code> ComputeStoreCallback(Handle<Name> name, 190 Handle<Code> ComputeStoreCallback(Handle<Name> name,
190 Handle<JSObject> object, 191 Handle<JSObject> object,
191 Handle<JSObject> holder, 192 Handle<JSObject> holder,
192 Handle<ExecutableAccessorInfo> callback, 193 Handle<ExecutableAccessorInfo> callback,
193 StrictModeFlag strict_mode); 194 StrictModeFlag strict_mode);
194 195
195 Handle<Code> ComputeStoreViaSetter(Handle<Name> name, 196 Handle<Code> ComputeStoreViaSetter(Handle<Name> name,
196 Handle<JSObject> object, 197 Handle<JSObject> object,
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 Handle<JSFunction> constant_function_; 1121 Handle<JSFunction> constant_function_;
1121 bool is_simple_api_call_; 1122 bool is_simple_api_call_;
1122 Handle<FunctionTemplateInfo> expected_receiver_type_; 1123 Handle<FunctionTemplateInfo> expected_receiver_type_;
1123 Handle<CallHandlerInfo> api_call_info_; 1124 Handle<CallHandlerInfo> api_call_info_;
1124 }; 1125 };
1125 1126
1126 1127
1127 } } // namespace v8::internal 1128 } } // namespace v8::internal
1128 1129
1129 #endif // V8_STUB_CACHE_H_ 1130 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/stub-cache.cc » ('j') | src/x64/lithium-gap-resolver-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698