OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |