| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #if V8_TARGET_ARCH_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
| 6 | 6 |
| 7 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
| 8 #include "src/codegen.h" | 8 #include "src/codegen.h" |
| 9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
| 10 #include "src/full-codegen/full-codegen.h" | 10 #include "src/full-codegen/full-codegen.h" |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 __ ret(0); | 383 __ ret(0); |
| 384 } | 384 } |
| 385 | 385 |
| 386 | 386 |
| 387 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 387 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
| 388 Generate_JSConstructStubHelper(masm, false, true, false); | 388 Generate_JSConstructStubHelper(masm, false, true, false); |
| 389 } | 389 } |
| 390 | 390 |
| 391 | 391 |
| 392 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 392 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
| 393 Generate_JSConstructStubHelper(masm, true, true, false); | 393 Generate_JSConstructStubHelper(masm, true, false, false); |
| 394 } | 394 } |
| 395 | 395 |
| 396 | 396 |
| 397 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 397 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
| 398 Generate_JSConstructStubHelper(masm, false, false, false); | 398 Generate_JSConstructStubHelper(masm, false, false, false); |
| 399 } | 399 } |
| 400 | 400 |
| 401 | 401 |
| 402 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 402 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
| 403 MacroAssembler* masm) { | 403 MacroAssembler* masm) { |
| (...skipping 2386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2790 | 2790 |
| 2791 __ bind(&ok); | 2791 __ bind(&ok); |
| 2792 __ ret(0); | 2792 __ ret(0); |
| 2793 } | 2793 } |
| 2794 | 2794 |
| 2795 #undef __ | 2795 #undef __ |
| 2796 } // namespace internal | 2796 } // namespace internal |
| 2797 } // namespace v8 | 2797 } // namespace v8 |
| 2798 | 2798 |
| 2799 #endif // V8_TARGET_ARCH_IA32 | 2799 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |