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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 static Callable Subtract(Isolate* isolate); | 98 static Callable Subtract(Isolate* isolate); |
99 static Callable Multiply(Isolate* isolate); | 99 static Callable Multiply(Isolate* isolate); |
100 static Callable Divide(Isolate* isolate); | 100 static Callable Divide(Isolate* isolate); |
101 static Callable Modulus(Isolate* isolate); | 101 static Callable Modulus(Isolate* isolate); |
102 static Callable ShiftRight(Isolate* isolate); | 102 static Callable ShiftRight(Isolate* isolate); |
103 static Callable ShiftRightLogical(Isolate* isolate); | 103 static Callable ShiftRightLogical(Isolate* isolate); |
104 static Callable ShiftLeft(Isolate* isolate); | 104 static Callable ShiftLeft(Isolate* isolate); |
105 static Callable BitwiseAnd(Isolate* isolate); | 105 static Callable BitwiseAnd(Isolate* isolate); |
106 static Callable BitwiseOr(Isolate* isolate); | 106 static Callable BitwiseOr(Isolate* isolate); |
107 static Callable BitwiseXor(Isolate* isolate); | 107 static Callable BitwiseXor(Isolate* isolate); |
108 static Callable Inc(Isolate* isolate); | |
109 static Callable Dec(Isolate* isolate); | |
110 static Callable LessThan(Isolate* isolate); | 108 static Callable LessThan(Isolate* isolate); |
111 static Callable LessThanOrEqual(Isolate* isolate); | 109 static Callable LessThanOrEqual(Isolate* isolate); |
112 static Callable GreaterThan(Isolate* isolate); | 110 static Callable GreaterThan(Isolate* isolate); |
113 static Callable GreaterThanOrEqual(Isolate* isolate); | 111 static Callable GreaterThanOrEqual(Isolate* isolate); |
114 static Callable Equal(Isolate* isolate); | 112 static Callable Equal(Isolate* isolate); |
115 static Callable NotEqual(Isolate* isolate); | 113 static Callable NotEqual(Isolate* isolate); |
116 static Callable StrictEqual(Isolate* isolate); | 114 static Callable StrictEqual(Isolate* isolate); |
117 static Callable StrictNotEqual(Isolate* isolate); | 115 static Callable StrictNotEqual(Isolate* isolate); |
118 | 116 |
119 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, | 117 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 180 |
183 static Callable ArrayPush(Isolate* isolate); | 181 static Callable ArrayPush(Isolate* isolate); |
184 static Callable FunctionPrototypeBind(Isolate* isolate); | 182 static Callable FunctionPrototypeBind(Isolate* isolate); |
185 static Callable PromiseHandleReject(Isolate* isolate); | 183 static Callable PromiseHandleReject(Isolate* isolate); |
186 }; | 184 }; |
187 | 185 |
188 } // namespace internal | 186 } // namespace internal |
189 } // namespace v8 | 187 } // namespace v8 |
190 | 188 |
191 #endif // V8_CODE_FACTORY_H_ | 189 #endif // V8_CODE_FACTORY_H_ |
OLD | NEW |