| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |