| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_IC_HANDLER_COMPILER_H_ | 5 #ifndef V8_IC_HANDLER_COMPILER_H_ |
| 6 #define V8_IC_HANDLER_COMPILER_H_ | 6 #define V8_IC_HANDLER_COMPILER_H_ |
| 7 | 7 |
| 8 #include "src/ic/access-compiler.h" | 8 #include "src/ic/access-compiler.h" |
| 9 #include "src/ic/ic-state.h" | 9 #include "src/ic/ic-state.h" |
| 10 | 10 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 kCacheOnReceiver) {} | 290 kCacheOnReceiver) {} |
| 291 | 291 |
| 292 virtual ~ElementHandlerCompiler() {} | 292 virtual ~ElementHandlerCompiler() {} |
| 293 | 293 |
| 294 void CompileElementHandlers(MapHandleList* receiver_maps, | 294 void CompileElementHandlers(MapHandleList* receiver_maps, |
| 295 CodeHandleList* handlers, | 295 CodeHandleList* handlers, |
| 296 LanguageMode language_mode); | 296 LanguageMode language_mode); |
| 297 | 297 |
| 298 static void GenerateStoreSlow(MacroAssembler* masm); | 298 static void GenerateStoreSlow(MacroAssembler* masm); |
| 299 }; | 299 }; |
| 300 } | 300 } // namespace internal |
| 301 } // namespace v8::internal | 301 } // namespace v8 |
| 302 | 302 |
| 303 #endif // V8_IC_HANDLER_COMPILER_H_ | 303 #endif // V8_IC_HANDLER_COMPILER_H_ |
| OLD | NEW |