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

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

Issue 1823083002: [stubs] Introduce AddStub and SubtractStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/code-factory.h ('k') | src/code-stubs.h » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/code-factory.h" 5 #include "src/code-factory.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 } 200 }
201 201
202 202
203 // static 203 // static
204 Callable CodeFactory::RegExpExec(Isolate* isolate) { 204 Callable CodeFactory::RegExpExec(Isolate* isolate) {
205 RegExpExecStub stub(isolate); 205 RegExpExecStub stub(isolate);
206 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 206 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
207 } 207 }
208 208
209 // static 209 // static
210 Callable CodeFactory::Add(Isolate* isolate) {
211 AddStub stub(isolate);
212 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
213 }
214
215 // static
216 Callable CodeFactory::Subtract(Isolate* isolate) {
217 SubtractStub stub(isolate);
218 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
219 }
220
221 // static
210 Callable CodeFactory::LessThan(Isolate* isolate) { 222 Callable CodeFactory::LessThan(Isolate* isolate) {
211 LessThanStub stub(isolate); 223 LessThanStub stub(isolate);
212 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 224 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
213 } 225 }
214 226
215 // static 227 // static
216 Callable CodeFactory::LessThanOrEqual(Isolate* isolate) { 228 Callable CodeFactory::LessThanOrEqual(Isolate* isolate) {
217 LessThanOrEqualStub stub(isolate); 229 LessThanOrEqualStub stub(isolate);
218 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 230 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
219 } 231 }
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 // static 502 // static
491 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 503 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
492 // Note: If we ever use fpregs in the interpreter then we will need to 504 // Note: If we ever use fpregs in the interpreter then we will need to
493 // save fpregs too. 505 // save fpregs too.
494 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 506 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
495 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 507 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
496 } 508 }
497 509
498 } // namespace internal 510 } // namespace internal
499 } // namespace v8 511 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698