OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_CODE_FACTORY_H_ | 5 #ifndef V8_CODE_FACTORY_H_ |
6 #define V8_CODE_FACTORY_H_ | 6 #define V8_CODE_FACTORY_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 }; | 29 }; |
30 | 30 |
31 | 31 |
32 class CodeFactory FINAL { | 32 class CodeFactory FINAL { |
33 public: | 33 public: |
34 // Initial states for ICs. | 34 // Initial states for ICs. |
35 static Callable LoadIC(Isolate* isolate, ContextualMode mode); | 35 static Callable LoadIC(Isolate* isolate, ContextualMode mode); |
36 static Callable LoadICInOptimizedCode(Isolate* isolate, ContextualMode mode); | 36 static Callable LoadICInOptimizedCode(Isolate* isolate, ContextualMode mode); |
37 static Callable KeyedLoadIC(Isolate* isolate); | 37 static Callable KeyedLoadIC(Isolate* isolate); |
38 static Callable KeyedLoadICInOptimizedCode(Isolate* isolate); | 38 static Callable KeyedLoadICInOptimizedCode(Isolate* isolate); |
| 39 static Callable CallIC(Isolate* isolate, int argc, |
| 40 CallICState::CallType call_type); |
| 41 static Callable CallICInOptimizedCode(Isolate* isolate, int argc, |
| 42 CallICState::CallType call_type); |
39 static Callable StoreIC(Isolate* isolate, StrictMode mode); | 43 static Callable StoreIC(Isolate* isolate, StrictMode mode); |
40 static Callable KeyedStoreIC(Isolate* isolate, StrictMode mode); | 44 static Callable KeyedStoreIC(Isolate* isolate, StrictMode mode); |
41 | 45 |
42 static Callable CompareIC(Isolate* isolate, Token::Value op); | 46 static Callable CompareIC(Isolate* isolate, Token::Value op); |
43 | 47 |
44 static Callable BinaryOpIC(Isolate* isolate, Token::Value op, | 48 static Callable BinaryOpIC(Isolate* isolate, Token::Value op, |
45 OverwriteMode mode = NO_OVERWRITE); | 49 OverwriteMode mode = NO_OVERWRITE); |
46 | 50 |
47 // Code stubs. Add methods here as needed to reduce dependency on | 51 // Code stubs. Add methods here as needed to reduce dependency on |
48 // code-stubs.h. | 52 // code-stubs.h. |
49 static Callable ToBoolean( | 53 static Callable ToBoolean( |
50 Isolate* isolate, ToBooleanStub::ResultMode mode, | 54 Isolate* isolate, ToBooleanStub::ResultMode mode, |
51 ToBooleanStub::Types types = ToBooleanStub::Types()); | 55 ToBooleanStub::Types types = ToBooleanStub::Types()); |
52 | 56 |
53 static Callable ToNumber(Isolate* isolate); | 57 static Callable ToNumber(Isolate* isolate); |
54 | 58 |
55 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, | 59 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, |
56 PretenureFlag pretenure_flag); | 60 PretenureFlag pretenure_flag); |
57 | 61 |
58 static Callable AllocateHeapNumber(Isolate* isolate); | 62 static Callable AllocateHeapNumber(Isolate* isolate); |
59 | 63 |
60 static Callable CallFunction(Isolate* isolate, int argc, | 64 static Callable CallFunction(Isolate* isolate, int argc, |
61 CallFunctionFlags flags); | 65 CallFunctionFlags flags); |
62 }; | 66 }; |
63 | 67 |
64 } // namespace internal | 68 } // namespace internal |
65 } // namespace v8 | 69 } // namespace v8 |
66 | 70 |
67 #endif // V8_CODE_FACTORY_H_ | 71 #endif // V8_CODE_FACTORY_H_ |
OLD | NEW |