| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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::StrictEqual(Isolate* isolate) { | 198 Callable CodeFactory::StrictEqual(Isolate* isolate) { |
| 199 StrictEqualStub stub(isolate); | 199 StrictEqualStub stub(isolate); |
| 200 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); | 200 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 201 } | 201 } |
| 202 | 202 |
| 203 // static | 203 // static |
| 204 Callable CodeFactory::StrictNotEqual(Isolate* isolate) { |
| 205 StrictNotEqualStub stub(isolate); |
| 206 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 207 } |
| 208 |
| 209 // static |
| 204 Callable CodeFactory::StringAdd(Isolate* isolate, StringAddFlags flags, | 210 Callable CodeFactory::StringAdd(Isolate* isolate, StringAddFlags flags, |
| 205 PretenureFlag pretenure_flag) { | 211 PretenureFlag pretenure_flag) { |
| 206 StringAddStub stub(isolate, flags, pretenure_flag); | 212 StringAddStub stub(isolate, flags, pretenure_flag); |
| 207 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); | 213 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
| 208 } | 214 } |
| 209 | 215 |
| 210 | 216 |
| 211 // static | 217 // static |
| 212 Callable CodeFactory::StringCompare(Isolate* isolate) { | 218 Callable CodeFactory::StringCompare(Isolate* isolate) { |
| 213 StringCompareStub stub(isolate); | 219 StringCompareStub stub(isolate); |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 // static | 376 // static |
| 371 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { | 377 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { |
| 372 // Note: If we ever use fpregs in the interpreter then we will need to | 378 // Note: If we ever use fpregs in the interpreter then we will need to |
| 373 // save fpregs too. | 379 // save fpregs too. |
| 374 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); | 380 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); |
| 375 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); | 381 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); |
| 376 } | 382 } |
| 377 | 383 |
| 378 } // namespace internal | 384 } // namespace internal |
| 379 } // namespace v8 | 385 } // namespace v8 |
| OLD | NEW |