| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 static Callable StringCompare(Isolate* isolate, Token::Value token); | 125 static Callable StringCompare(Isolate* isolate, Token::Value token); |
| 126 static Callable StringEqual(Isolate* isolate); | 126 static Callable StringEqual(Isolate* isolate); |
| 127 static Callable StringNotEqual(Isolate* isolate); | 127 static Callable StringNotEqual(Isolate* isolate); |
| 128 static Callable StringLessThan(Isolate* isolate); | 128 static Callable StringLessThan(Isolate* isolate); |
| 129 static Callable StringLessThanOrEqual(Isolate* isolate); | 129 static Callable StringLessThanOrEqual(Isolate* isolate); |
| 130 static Callable StringGreaterThan(Isolate* isolate); | 130 static Callable StringGreaterThan(Isolate* isolate); |
| 131 static Callable StringGreaterThanOrEqual(Isolate* isolate); | 131 static Callable StringGreaterThanOrEqual(Isolate* isolate); |
| 132 static Callable SubString(Isolate* isolate); | 132 static Callable SubString(Isolate* isolate); |
| 133 static Callable StringIndexOf(Isolate* isolate); | 133 static Callable StringIndexOf(Isolate* isolate); |
| 134 | 134 |
| 135 static Callable RegExpReplace(Isolate* isolate); |
| 136 static Callable RegExpSplit(Isolate* isolate); |
| 137 |
| 135 static Callable ClassOf(Isolate* isolate); | 138 static Callable ClassOf(Isolate* isolate); |
| 136 static Callable Typeof(Isolate* isolate); | 139 static Callable Typeof(Isolate* isolate); |
| 137 static Callable GetSuperConstructor(Isolate* isolate); | 140 static Callable GetSuperConstructor(Isolate* isolate); |
| 138 | 141 |
| 139 static Callable FastCloneRegExp(Isolate* isolate); | 142 static Callable FastCloneRegExp(Isolate* isolate); |
| 140 static Callable FastCloneShallowArray(Isolate* isolate, | 143 static Callable FastCloneShallowArray(Isolate* isolate, |
| 141 AllocationSiteMode allocation_mode); | 144 AllocationSiteMode allocation_mode); |
| 142 static Callable FastCloneShallowObject(Isolate* isolate, int length); | 145 static Callable FastCloneShallowObject(Isolate* isolate, int length); |
| 143 | 146 |
| 144 static Callable FastNewFunctionContext(Isolate* isolate, | 147 static Callable FastNewFunctionContext(Isolate* isolate, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 195 |
| 193 static Callable ArrayPush(Isolate* isolate); | 196 static Callable ArrayPush(Isolate* isolate); |
| 194 static Callable FunctionPrototypeBind(Isolate* isolate); | 197 static Callable FunctionPrototypeBind(Isolate* isolate); |
| 195 static Callable PromiseHandleReject(Isolate* isolate); | 198 static Callable PromiseHandleReject(Isolate* isolate); |
| 196 }; | 199 }; |
| 197 | 200 |
| 198 } // namespace internal | 201 } // namespace internal |
| 199 } // namespace v8 | 202 } // namespace v8 |
| 200 | 203 |
| 201 #endif // V8_CODE_FACTORY_H_ | 204 #endif // V8_CODE_FACTORY_H_ |
| OLD | NEW |