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 260 matching lines...) Loading... |
271 | 271 |
272 // --- | 272 // --- |
273 | 273 |
274 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); | 274 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); |
275 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, | 275 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, |
276 KeyedAccessStoreMode store_mode, | 276 KeyedAccessStoreMode store_mode, |
277 StrictModeFlag strict_mode); | 277 StrictModeFlag strict_mode); |
278 | 278 |
279 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, | 279 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, |
280 CodeHandleList* handlers, | 280 CodeHandleList* handlers, |
| 281 int number_of_valid_maps, |
281 Handle<Name> name); | 282 Handle<Name> name); |
282 | 283 |
283 // Finds the Code object stored in the Heap::non_monomorphic_cache(). | 284 // Finds the Code object stored in the Heap::non_monomorphic_cache(). |
284 Code* FindCallInitialize(int argc, RelocInfo::Mode mode, Code::Kind kind); | 285 Code* FindCallInitialize(int argc, RelocInfo::Mode mode, Code::Kind kind); |
285 | 286 |
286 #ifdef ENABLE_DEBUGGER_SUPPORT | 287 #ifdef ENABLE_DEBUGGER_SUPPORT |
287 Handle<Code> ComputeCallDebugBreak(int argc, Code::Kind kind); | 288 Handle<Code> ComputeCallDebugBreak(int argc, Code::Kind kind); |
288 | 289 |
289 Handle<Code> ComputeCallDebugPrepareStepIn(int argc, Code::Kind kind); | 290 Handle<Code> ComputeCallDebugPrepareStepIn(int argc, Code::Kind kind); |
290 #endif | 291 #endif |
(...skipping 809 matching lines...) Loading... |
1100 Handle<JSFunction> constant_function_; | 1101 Handle<JSFunction> constant_function_; |
1101 bool is_simple_api_call_; | 1102 bool is_simple_api_call_; |
1102 Handle<FunctionTemplateInfo> expected_receiver_type_; | 1103 Handle<FunctionTemplateInfo> expected_receiver_type_; |
1103 Handle<CallHandlerInfo> api_call_info_; | 1104 Handle<CallHandlerInfo> api_call_info_; |
1104 }; | 1105 }; |
1105 | 1106 |
1106 | 1107 |
1107 } } // namespace v8::internal | 1108 } } // namespace v8::internal |
1108 | 1109 |
1109 #endif // V8_STUB_CACHE_H_ | 1110 #endif // V8_STUB_CACHE_H_ |
OLD | NEW |