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

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

Issue 1818923002: [stubs] Split ToNumberStub into reusable subparts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 141
142 // static 142 // static
143 Callable CodeFactory::ToNumber(Isolate* isolate) { 143 Callable CodeFactory::ToNumber(Isolate* isolate) {
144 ToNumberStub stub(isolate); 144 ToNumberStub stub(isolate);
145 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 145 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
146 } 146 }
147 147
148 148
149 // static 149 // static
150 Callable CodeFactory::NonNumberToNumber(Isolate* isolate) {
151 NonNumberToNumberStub stub(isolate);
152 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
153 }
154
155 // static
156 Callable CodeFactory::StringToNumber(Isolate* isolate) {
157 StringToNumberStub stub(isolate);
158 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
159 }
160
161 // static
150 Callable CodeFactory::ToString(Isolate* isolate) { 162 Callable CodeFactory::ToString(Isolate* isolate) {
151 ToStringStub stub(isolate); 163 ToStringStub stub(isolate);
152 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 164 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
153 } 165 }
154 166
155 167
156 // static 168 // static
157 Callable CodeFactory::ToName(Isolate* isolate) { 169 Callable CodeFactory::ToName(Isolate* isolate) {
158 ToNameStub stub(isolate); 170 ToNameStub stub(isolate);
159 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 171 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 // static 477 // static
466 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 478 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
467 // Note: If we ever use fpregs in the interpreter then we will need to 479 // Note: If we ever use fpregs in the interpreter then we will need to
468 // save fpregs too. 480 // save fpregs too.
469 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 481 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
470 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 482 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
471 } 483 }
472 484
473 } // namespace internal 485 } // namespace internal
474 } // namespace v8 486 } // 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