| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 Code::Kind kind, | 274 Code::Kind kind, |
| 275 Code::ExtraICState state); | 275 Code::ExtraICState state); |
| 276 | 276 |
| 277 Handle<Code> ComputeCallMiss(int argc, | 277 Handle<Code> ComputeCallMiss(int argc, |
| 278 Code::Kind kind, | 278 Code::Kind kind, |
| 279 Code::ExtraICState state); | 279 Code::ExtraICState state); |
| 280 | 280 |
| 281 // --- | 281 // --- |
| 282 | 282 |
| 283 Handle<Code> ComputeCompareNil(Handle<Map> receiver_map, | 283 Handle<Code> ComputeCompareNil(Handle<Map> receiver_map, |
| 284 NilValue nil, | 284 CompareNilICStub& stub); |
| 285 CompareNilICStub::Types types); | |
| 286 | 285 |
| 287 // --- | 286 // --- |
| 288 | 287 |
| 289 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); | 288 Handle<Code> ComputeLoadElementPolymorphic(MapHandleList* receiver_maps); |
| 290 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, | 289 Handle<Code> ComputeStoreElementPolymorphic(MapHandleList* receiver_maps, |
| 291 KeyedAccessStoreMode store_mode, | 290 KeyedAccessStoreMode store_mode, |
| 292 StrictModeFlag strict_mode); | 291 StrictModeFlag strict_mode); |
| 293 | 292 |
| 294 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, | 293 Handle<Code> ComputePolymorphicIC(MapHandleList* receiver_maps, |
| 295 CodeHandleList* handlers, | 294 CodeHandleList* handlers, |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 Handle<JSFunction> constant_function_; | 1123 Handle<JSFunction> constant_function_; |
| 1125 bool is_simple_api_call_; | 1124 bool is_simple_api_call_; |
| 1126 Handle<FunctionTemplateInfo> expected_receiver_type_; | 1125 Handle<FunctionTemplateInfo> expected_receiver_type_; |
| 1127 Handle<CallHandlerInfo> api_call_info_; | 1126 Handle<CallHandlerInfo> api_call_info_; |
| 1128 }; | 1127 }; |
| 1129 | 1128 |
| 1130 | 1129 |
| 1131 } } // namespace v8::internal | 1130 } } // namespace v8::internal |
| 1132 | 1131 |
| 1133 #endif // V8_STUB_CACHE_H_ | 1132 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |