| 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_ARM | 5 #if V8_TARGET_ARCH_ARM |
| 6 | 6 |
| 7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
| 8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 FrameScope scope(masm, StackFrame::MANUAL); | 1560 FrameScope scope(masm, StackFrame::MANUAL); |
| 1561 __ stm(db_w, sp, r0.bit() | r1.bit() | r3.bit() | fp.bit() | lr.bit()); | 1561 __ stm(db_w, sp, r0.bit() | r1.bit() | r3.bit() | fp.bit() | lr.bit()); |
| 1562 __ PrepareCallCFunction(2, 0, r2); | 1562 __ PrepareCallCFunction(2, 0, r2); |
| 1563 __ mov(r1, Operand(ExternalReference::isolate_address(masm->isolate()))); | 1563 __ mov(r1, Operand(ExternalReference::isolate_address(masm->isolate()))); |
| 1564 __ CallCFunction( | 1564 __ CallCFunction( |
| 1565 ExternalReference::get_make_code_young_function(masm->isolate()), 2); | 1565 ExternalReference::get_make_code_young_function(masm->isolate()), 2); |
| 1566 __ ldm(ia_w, sp, r0.bit() | r1.bit() | r3.bit() | fp.bit() | lr.bit()); | 1566 __ ldm(ia_w, sp, r0.bit() | r1.bit() | r3.bit() | fp.bit() | lr.bit()); |
| 1567 __ mov(pc, r0); | 1567 __ mov(pc, r0); |
| 1568 } | 1568 } |
| 1569 | 1569 |
| 1570 #define DEFINE_CODE_AGE_BUILTIN_GENERATOR(C) \ | 1570 #define DEFINE_CODE_AGE_BUILTIN_GENERATOR(C) \ |
| 1571 void Builtins::Generate_Make##C##CodeYoungAgainEvenMarking( \ | 1571 void Builtins::Generate_Make##C##CodeYoungAgain(MacroAssembler* masm) { \ |
| 1572 MacroAssembler* masm) { \ | 1572 GenerateMakeCodeYoungAgainCommon(masm); \ |
| 1573 GenerateMakeCodeYoungAgainCommon(masm); \ | |
| 1574 } \ | |
| 1575 void Builtins::Generate_Make##C##CodeYoungAgainOddMarking( \ | |
| 1576 MacroAssembler* masm) { \ | |
| 1577 GenerateMakeCodeYoungAgainCommon(masm); \ | |
| 1578 } | 1573 } |
| 1579 CODE_AGE_LIST(DEFINE_CODE_AGE_BUILTIN_GENERATOR) | 1574 CODE_AGE_LIST(DEFINE_CODE_AGE_BUILTIN_GENERATOR) |
| 1580 #undef DEFINE_CODE_AGE_BUILTIN_GENERATOR | 1575 #undef DEFINE_CODE_AGE_BUILTIN_GENERATOR |
| 1581 | 1576 |
| 1582 void Builtins::Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm) { | 1577 void Builtins::Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm) { |
| 1583 // For now, as in GenerateMakeCodeYoungAgainCommon, we are relying on the fact | 1578 // For now, as in GenerateMakeCodeYoungAgainCommon, we are relying on the fact |
| 1584 // that make_code_young doesn't do any garbage collection which allows us to | 1579 // that make_code_young doesn't do any garbage collection which allows us to |
| 1585 // save/restore the registers without worrying about which of them contain | 1580 // save/restore the registers without worrying about which of them contain |
| 1586 // pointers. | 1581 // pointers. |
| 1587 | 1582 |
| (...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2893 __ bkpt(0); | 2888 __ bkpt(0); |
| 2894 } | 2889 } |
| 2895 } | 2890 } |
| 2896 | 2891 |
| 2897 #undef __ | 2892 #undef __ |
| 2898 | 2893 |
| 2899 } // namespace internal | 2894 } // namespace internal |
| 2900 } // namespace v8 | 2895 } // namespace v8 |
| 2901 | 2896 |
| 2902 #endif // V8_TARGET_ARCH_ARM | 2897 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |