OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_SRC_IC_ACCESSOR_ASSEMBLER_H_ | 5 #ifndef V8_SRC_IC_ACCESSOR_ASSEMBLER_H_ |
6 #define V8_SRC_IC_ACCESSOR_ASSEMBLER_H_ | 6 #define V8_SRC_IC_ACCESSOR_ASSEMBLER_H_ |
7 | 7 |
8 #include "src/globals.h" | 8 #include "src/globals.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 12 matching lines...) Expand all Loading... |
23 bool throw_reference_error_if_nonexistent); | 23 bool throw_reference_error_if_nonexistent); |
24 static void GenerateLoadGlobalIC(compiler::CodeAssemblerState* state, | 24 static void GenerateLoadGlobalIC(compiler::CodeAssemblerState* state, |
25 TypeofMode typeof_mode); | 25 TypeofMode typeof_mode); |
26 static void GenerateLoadGlobalICTrampoline( | 26 static void GenerateLoadGlobalICTrampoline( |
27 compiler::CodeAssemblerState* state, TypeofMode typeof_mode); | 27 compiler::CodeAssemblerState* state, TypeofMode typeof_mode); |
28 static void GenerateKeyedLoadICTF(compiler::CodeAssemblerState* state); | 28 static void GenerateKeyedLoadICTF(compiler::CodeAssemblerState* state); |
29 static void GenerateKeyedLoadICTrampolineTF( | 29 static void GenerateKeyedLoadICTrampolineTF( |
30 compiler::CodeAssemblerState* state); | 30 compiler::CodeAssemblerState* state); |
31 static void GenerateKeyedLoadICMegamorphic( | 31 static void GenerateKeyedLoadICMegamorphic( |
32 compiler::CodeAssemblerState* state); | 32 compiler::CodeAssemblerState* state); |
| 33 static void GenerateLoadField(compiler::CodeAssemblerState* state); |
33 static void GenerateStoreIC(compiler::CodeAssemblerState* state); | 34 static void GenerateStoreIC(compiler::CodeAssemblerState* state); |
34 static void GenerateStoreICTrampoline(compiler::CodeAssemblerState* state); | 35 static void GenerateStoreICTrampoline(compiler::CodeAssemblerState* state); |
35 static void GenerateKeyedStoreICTF(compiler::CodeAssemblerState* state, | 36 static void GenerateKeyedStoreICTF(compiler::CodeAssemblerState* state, |
36 LanguageMode language_mode); | 37 LanguageMode language_mode); |
37 static void GenerateKeyedStoreICTrampolineTF( | 38 static void GenerateKeyedStoreICTrampolineTF( |
38 compiler::CodeAssemblerState* state, LanguageMode language_mode); | 39 compiler::CodeAssemblerState* state, LanguageMode language_mode); |
39 }; | 40 }; |
40 | 41 |
41 } // namespace internal | 42 } // namespace internal |
42 } // namespace v8 | 43 } // namespace v8 |
43 | 44 |
44 #endif // V8_SRC_IC_ACCESSOR_ASSEMBLER_H_ | 45 #endif // V8_SRC_IC_ACCESSOR_ASSEMBLER_H_ |
OLD | NEW |