| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 Code::Kind kind, | 272 Code::Kind kind, |
| 273 Code::ExtraICState state); | 273 Code::ExtraICState state); |
| 274 | 274 |
| 275 Handle<Code> ComputeCallMiss(int argc, | 275 Handle<Code> ComputeCallMiss(int argc, |
| 276 Code::Kind kind, | 276 Code::Kind kind, |
| 277 Code::ExtraICState state); | 277 Code::ExtraICState state); |
| 278 | 278 |
| 279 // --- | 279 // --- |
| 280 | 280 |
| 281 Handle<Code> ComputeCompareNil(Handle<Map> receiver_map, | 281 Handle<Code> ComputeCompareNil(Handle<Map> receiver_map, |
| 282 NilValue nil, | 282 CompareNilICStub& stub); |
| 283 CompareNilICStub::Types types); | |
| 284 | 283 |
| 285 // --- | 284 // --- |
| 286 | 285 |
| 287 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); | 286 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); |
| 288 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, | 287 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, |
| 289 KeyedAccessStoreMode store_mode, | 288 KeyedAccessStoreMode store_mode, |
| 290 StrictModeFlag strict_mode); | 289 StrictModeFlag strict_mode); |
| 291 | 290 |
| 292 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, | 291 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, |
| 293 CodeHandleList* handlers, | 292 CodeHandleList* handlers, |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1114 Handle<JSFunction> constant_function_; | 1113 Handle<JSFunction> constant_function_; |
| 1115 bool is_simple_api_call_; | 1114 bool is_simple_api_call_; |
| 1116 Handle<FunctionTemplateInfo> expected_receiver_type_; | 1115 Handle<FunctionTemplateInfo> expected_receiver_type_; |
| 1117 Handle<CallHandlerInfo> api_call_info_; | 1116 Handle<CallHandlerInfo> api_call_info_; |
| 1118 }; | 1117 }; |
| 1119 | 1118 |
| 1120 | 1119 |
| 1121 } } // namespace v8::internal | 1120 } } // namespace v8::internal |
| 1122 | 1121 |
| 1123 #endif // V8_STUB_CACHE_H_ | 1122 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |