Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: src/code-factory.h

Issue 2752143003: [regexp] Remove remainder of native RegExpExecStub (Closed)
Patch Set: Fix non-sim arm64 and mips builds Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/builtins/builtins-regexp-gen.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
96 static Callable Add(Isolate* isolate); 94 static Callable Add(Isolate* isolate);
97 static Callable Subtract(Isolate* isolate); 95 static Callable Subtract(Isolate* isolate);
98 static Callable Multiply(Isolate* isolate); 96 static Callable Multiply(Isolate* isolate);
99 static Callable Divide(Isolate* isolate); 97 static Callable Divide(Isolate* isolate);
100 static Callable Modulus(Isolate* isolate); 98 static Callable Modulus(Isolate* isolate);
101 static Callable ShiftRight(Isolate* isolate); 99 static Callable ShiftRight(Isolate* isolate);
102 static Callable ShiftRightLogical(Isolate* isolate); 100 static Callable ShiftRightLogical(Isolate* isolate);
103 static Callable ShiftLeft(Isolate* isolate); 101 static Callable ShiftLeft(Isolate* isolate);
104 static Callable BitwiseAnd(Isolate* isolate); 102 static Callable BitwiseAnd(Isolate* isolate);
105 static Callable BitwiseOr(Isolate* isolate); 103 static Callable BitwiseOr(Isolate* isolate);
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 195
198 static Callable AsyncGeneratorResolve(Isolate* isolate); 196 static Callable AsyncGeneratorResolve(Isolate* isolate);
199 static Callable AsyncGeneratorReject(Isolate* isolate); 197 static Callable AsyncGeneratorReject(Isolate* isolate);
200 static Callable AsyncGeneratorResumeNext(Isolate* isolate); 198 static Callable AsyncGeneratorResumeNext(Isolate* isolate);
201 }; 199 };
202 200
203 } // namespace internal 201 } // namespace internal
204 } // namespace v8 202 } // namespace v8
205 203
206 #endif // V8_CODE_FACTORY_H_ 204 #endif // V8_CODE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-regexp-gen.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698