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/callable.h" | 10 #include "src/callable.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 static Callable ToName(Isolate* isolate); | 84 static Callable ToName(Isolate* isolate); |
85 static Callable ToInteger(Isolate* isolate); | 85 static Callable ToInteger(Isolate* isolate); |
86 static Callable ToLength(Isolate* isolate); | 86 static Callable ToLength(Isolate* isolate); |
87 static Callable ToObject(Isolate* isolate); | 87 static Callable ToObject(Isolate* isolate); |
88 static Callable NonPrimitiveToPrimitive( | 88 static Callable NonPrimitiveToPrimitive( |
89 Isolate* isolate, ToPrimitiveHint hint = ToPrimitiveHint::kDefault); | 89 Isolate* isolate, ToPrimitiveHint hint = ToPrimitiveHint::kDefault); |
90 static Callable OrdinaryToPrimitive(Isolate* isolate, | 90 static Callable OrdinaryToPrimitive(Isolate* isolate, |
91 OrdinaryToPrimitiveHint hint); | 91 OrdinaryToPrimitiveHint hint); |
92 static Callable NumberToString(Isolate* isolate); | 92 static Callable NumberToString(Isolate* isolate); |
93 | 93 |
| 94 static Callable RegExpExec(Isolate* isolate); |
| 95 |
94 static Callable Add(Isolate* isolate); | 96 static Callable Add(Isolate* isolate); |
95 static Callable Subtract(Isolate* isolate); | 97 static Callable Subtract(Isolate* isolate); |
96 static Callable Multiply(Isolate* isolate); | 98 static Callable Multiply(Isolate* isolate); |
97 static Callable Divide(Isolate* isolate); | 99 static Callable Divide(Isolate* isolate); |
98 static Callable Modulus(Isolate* isolate); | 100 static Callable Modulus(Isolate* isolate); |
99 static Callable ShiftRight(Isolate* isolate); | 101 static Callable ShiftRight(Isolate* isolate); |
100 static Callable ShiftRightLogical(Isolate* isolate); | 102 static Callable ShiftRightLogical(Isolate* isolate); |
101 static Callable ShiftLeft(Isolate* isolate); | 103 static Callable ShiftLeft(Isolate* isolate); |
102 static Callable BitwiseAnd(Isolate* isolate); | 104 static Callable BitwiseAnd(Isolate* isolate); |
103 static Callable BitwiseOr(Isolate* isolate); | 105 static Callable BitwiseOr(Isolate* isolate); |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 197 |
196 static Callable AsyncGeneratorResolve(Isolate* isolate); | 198 static Callable AsyncGeneratorResolve(Isolate* isolate); |
197 static Callable AsyncGeneratorReject(Isolate* isolate); | 199 static Callable AsyncGeneratorReject(Isolate* isolate); |
198 static Callable AsyncGeneratorResumeNext(Isolate* isolate); | 200 static Callable AsyncGeneratorResumeNext(Isolate* isolate); |
199 }; | 201 }; |
200 | 202 |
201 } // namespace internal | 203 } // namespace internal |
202 } // namespace v8 | 204 } // namespace v8 |
203 | 205 |
204 #endif // V8_CODE_FACTORY_H_ | 206 #endif // V8_CODE_FACTORY_H_ |
OLD | NEW |