| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 __ ret(0); | 709 __ ret(0); |
| 710 | 710 |
| 711 __ bind(&non_smi_value); | 711 __ bind(&non_smi_value); |
| 712 // Writing a non-smi, check whether array allows non-smi elements. | 712 // Writing a non-smi, check whether array allows non-smi elements. |
| 713 // r9: receiver's map | 713 // r9: receiver's map |
| 714 __ CheckFastObjectElements(r9, &slow, Label::kNear); | 714 __ CheckFastObjectElements(r9, &slow, Label::kNear); |
| 715 __ movq(FieldOperand(rbx, rcx, times_pointer_size, FixedArray::kHeaderSize), | 715 __ movq(FieldOperand(rbx, rcx, times_pointer_size, FixedArray::kHeaderSize), |
| 716 rax); | 716 rax); |
| 717 __ movq(rdx, rax); // Preserve the value which is returned. | 717 __ movq(rdx, rax); // Preserve the value which is returned. |
| 718 __ RecordWriteArray( | 718 __ RecordWriteArray( |
| 719 rbx, rax, rcx, kDontSaveFPRegs, EMIT_REMEMBERED_SET, OMIT_SMI_CHECK); | 719 rbx, rdx, rcx, kDontSaveFPRegs, EMIT_REMEMBERED_SET, OMIT_SMI_CHECK); |
| 720 __ ret(0); | 720 __ ret(0); |
| 721 | 721 |
| 722 __ bind(&fast_double_with_map_check); | 722 __ bind(&fast_double_with_map_check); |
| 723 // Check for fast double array case. If this fails, call through to the | 723 // Check for fast double array case. If this fails, call through to the |
| 724 // runtime. | 724 // runtime. |
| 725 // rdi: elements array's map | 725 // rdi: elements array's map |
| 726 __ CompareRoot(rdi, Heap::kFixedDoubleArrayMapRootIndex); | 726 __ CompareRoot(rdi, Heap::kFixedDoubleArrayMapRootIndex); |
| 727 __ j(not_equal, &slow); | 727 __ j(not_equal, &slow); |
| 728 __ bind(&fast_double_without_map_check); | 728 __ bind(&fast_double_without_map_check); |
| 729 // If the value is a number, store it as a double in the FastDoubleElements | 729 // If the value is a number, store it as a double in the FastDoubleElements |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1691 Condition cc = *jmp_address == Assembler::kJncShortOpcode | 1691 Condition cc = *jmp_address == Assembler::kJncShortOpcode |
| 1692 ? not_zero | 1692 ? not_zero |
| 1693 : zero; | 1693 : zero; |
| 1694 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); | 1694 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); |
| 1695 } | 1695 } |
| 1696 | 1696 |
| 1697 | 1697 |
| 1698 } } // namespace v8::internal | 1698 } } // namespace v8::internal |
| 1699 | 1699 |
| 1700 #endif // V8_TARGET_ARCH_X64 | 1700 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |