OLD | NEW |
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 Loading... |
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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 Handle<JSFunction> constant_function_; | 1113 Handle<JSFunction> constant_function_; |
1113 bool is_simple_api_call_; | 1114 bool is_simple_api_call_; |
1114 Handle<FunctionTemplateInfo> expected_receiver_type_; | 1115 Handle<FunctionTemplateInfo> expected_receiver_type_; |
1115 Handle<CallHandlerInfo> api_call_info_; | 1116 Handle<CallHandlerInfo> api_call_info_; |
1116 }; | 1117 }; |
1117 | 1118 |
1118 | 1119 |
1119 } } // namespace v8::internal | 1120 } } // namespace v8::internal |
1120 | 1121 |
1121 #endif // V8_STUB_CACHE_H_ | 1122 #endif // V8_STUB_CACHE_H_ |
OLD | NEW |