| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 } | 188 } |
| 189 | 189 |
| 190 | 190 |
| 191 // static | 191 // static |
| 192 Callable CodeFactory::RegExpExec(Isolate* isolate) { | 192 Callable CodeFactory::RegExpExec(Isolate* isolate) { |
| 193 RegExpExecStub stub(isolate); | 193 RegExpExecStub stub(isolate); |
| 194 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); | 194 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 195 } | 195 } |
| 196 | 196 |
| 197 // static | 197 // static |
| 198 Callable CodeFactory::LessThan(Isolate* isolate) { |
| 199 LessThanStub stub(isolate); |
| 200 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 201 } |
| 202 |
| 203 // static |
| 204 Callable CodeFactory::LessThanOrEqual(Isolate* isolate) { |
| 205 LessThanOrEqualStub stub(isolate); |
| 206 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 207 } |
| 208 |
| 209 // static |
| 210 Callable CodeFactory::GreaterThan(Isolate* isolate) { |
| 211 GreaterThanStub stub(isolate); |
| 212 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 213 } |
| 214 |
| 215 // static |
| 216 Callable CodeFactory::GreaterThanOrEqual(Isolate* isolate) { |
| 217 GreaterThanOrEqualStub stub(isolate); |
| 218 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 219 } |
| 220 |
| 221 // static |
| 198 Callable CodeFactory::StrictEqual(Isolate* isolate) { | 222 Callable CodeFactory::StrictEqual(Isolate* isolate) { |
| 199 StrictEqualStub stub(isolate); | 223 StrictEqualStub stub(isolate); |
| 200 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); | 224 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 201 } | 225 } |
| 202 | 226 |
| 203 // static | 227 // static |
| 204 Callable CodeFactory::StrictNotEqual(Isolate* isolate) { | 228 Callable CodeFactory::StrictNotEqual(Isolate* isolate) { |
| 205 StrictNotEqualStub stub(isolate); | 229 StrictNotEqualStub stub(isolate); |
| 206 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); | 230 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 207 } | 231 } |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 // static | 411 // static |
| 388 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { | 412 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { |
| 389 // Note: If we ever use fpregs in the interpreter then we will need to | 413 // Note: If we ever use fpregs in the interpreter then we will need to |
| 390 // save fpregs too. | 414 // save fpregs too. |
| 391 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); | 415 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); |
| 392 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); | 416 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); |
| 393 } | 417 } |
| 394 | 418 |
| 395 } // namespace internal | 419 } // namespace internal |
| 396 } // namespace v8 | 420 } // namespace v8 |
| OLD | NEW |