| 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 | 759 |
| 760 // Perform tail call to the entry. | 760 // Perform tail call to the entry. |
| 761 __ TailCallExternalReference(ExternalReference( | 761 __ TailCallExternalReference(ExternalReference( |
| 762 IC_Utility(kKeyedLoadPropertyWithInterceptor)), 2, 1); | 762 IC_Utility(kKeyedLoadPropertyWithInterceptor)), 2, 1); |
| 763 | 763 |
| 764 __ bind(&slow); | 764 __ bind(&slow); |
| 765 GenerateMiss(masm); | 765 GenerateMiss(masm); |
| 766 } | 766 } |
| 767 | 767 |
| 768 | 768 |
| 769 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { | 769 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, |
| 770 StrictModeFlag strict_mode) { |
| 770 // ----------- S t a t e ------------- | 771 // ----------- S t a t e ------------- |
| 771 // -- rax : value | 772 // -- rax : value |
| 772 // -- rcx : key | 773 // -- rcx : key |
| 773 // -- rdx : receiver | 774 // -- rdx : receiver |
| 774 // -- rsp[0] : return address | 775 // -- rsp[0] : return address |
| 775 // ----------------------------------- | 776 // ----------------------------------- |
| 776 Label slow, slow_with_tagged_index, fast, array, extra, check_pixel_array; | 777 Label slow, slow_with_tagged_index, fast, array, extra, check_pixel_array; |
| 777 | 778 |
| 778 // Check that the object isn't a smi. | 779 // Check that the object isn't a smi. |
| 779 __ JumpIfSmi(rdx, &slow_with_tagged_index); | 780 __ JumpIfSmi(rdx, &slow_with_tagged_index); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 806 __ SmiCompareInteger32(FieldOperand(rbx, FixedArray::kLengthOffset), rcx); | 807 __ SmiCompareInteger32(FieldOperand(rbx, FixedArray::kLengthOffset), rcx); |
| 807 // rax: value | 808 // rax: value |
| 808 // rbx: FixedArray | 809 // rbx: FixedArray |
| 809 // rcx: index | 810 // rcx: index |
| 810 __ j(above, &fast); | 811 __ j(above, &fast); |
| 811 | 812 |
| 812 // Slow case: call runtime. | 813 // Slow case: call runtime. |
| 813 __ bind(&slow); | 814 __ bind(&slow); |
| 814 __ Integer32ToSmi(rcx, rcx); | 815 __ Integer32ToSmi(rcx, rcx); |
| 815 __ bind(&slow_with_tagged_index); | 816 __ bind(&slow_with_tagged_index); |
| 816 GenerateRuntimeSetProperty(masm); | 817 GenerateRuntimeSetProperty(masm, strict_mode); |
| 817 // Never returns to here. | 818 // Never returns to here. |
| 818 | 819 |
| 819 // Check whether the elements is a pixel array. | 820 // Check whether the elements is a pixel array. |
| 820 // rax: value | 821 // rax: value |
| 821 // rdx: receiver | 822 // rdx: receiver |
| 822 // rbx: receiver's elements array | 823 // rbx: receiver's elements array |
| 823 // rcx: index, zero-extended. | 824 // rcx: index, zero-extended. |
| 824 __ bind(&check_pixel_array); | 825 __ bind(&check_pixel_array); |
| 825 GenerateFastPixelArrayStore(masm, | 826 GenerateFastPixelArrayStore(masm, |
| 826 rdx, | 827 rdx, |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1467 __ push(rdx); // receiver | 1468 __ push(rdx); // receiver |
| 1468 __ push(rax); // name | 1469 __ push(rax); // name |
| 1469 __ push(rbx); // return address | 1470 __ push(rbx); // return address |
| 1470 | 1471 |
| 1471 // Perform tail call to the entry. | 1472 // Perform tail call to the entry. |
| 1472 __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1); | 1473 __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1); |
| 1473 } | 1474 } |
| 1474 | 1475 |
| 1475 | 1476 |
| 1476 void StoreIC::GenerateMegamorphic(MacroAssembler* masm, | 1477 void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
| 1477 Code::ExtraICState extra_ic_state) { | 1478 StrictModeFlag strict_mode) { |
| 1478 // ----------- S t a t e ------------- | 1479 // ----------- S t a t e ------------- |
| 1479 // -- rax : value | 1480 // -- rax : value |
| 1480 // -- rcx : name | 1481 // -- rcx : name |
| 1481 // -- rdx : receiver | 1482 // -- rdx : receiver |
| 1482 // -- rsp[0] : return address | 1483 // -- rsp[0] : return address |
| 1483 // ----------------------------------- | 1484 // ----------------------------------- |
| 1484 | 1485 |
| 1485 // Get the receiver from the stack and probe the stub cache. | 1486 // Get the receiver from the stack and probe the stub cache. |
| 1486 Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, | 1487 Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, |
| 1487 NOT_IN_LOOP, | 1488 NOT_IN_LOOP, |
| 1488 MONOMORPHIC, | 1489 MONOMORPHIC, |
| 1489 extra_ic_state); | 1490 strict_mode); |
| 1490 StubCache::GenerateProbe(masm, flags, rdx, rcx, rbx, no_reg); | 1491 StubCache::GenerateProbe(masm, flags, rdx, rcx, rbx, no_reg); |
| 1491 | 1492 |
| 1492 // Cache miss: Jump to runtime. | 1493 // Cache miss: Jump to runtime. |
| 1493 GenerateMiss(masm); | 1494 GenerateMiss(masm); |
| 1494 } | 1495 } |
| 1495 | 1496 |
| 1496 | 1497 |
| 1497 void StoreIC::GenerateMiss(MacroAssembler* masm) { | 1498 void StoreIC::GenerateMiss(MacroAssembler* masm) { |
| 1498 // ----------- S t a t e ------------- | 1499 // ----------- S t a t e ------------- |
| 1499 // -- rax : value | 1500 // -- rax : value |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1586 GenerateDictionaryStore(masm, &miss, rbx, rcx, rax, r8, r9); | 1587 GenerateDictionaryStore(masm, &miss, rbx, rcx, rax, r8, r9); |
| 1587 __ IncrementCounter(&Counters::store_normal_hit, 1); | 1588 __ IncrementCounter(&Counters::store_normal_hit, 1); |
| 1588 __ ret(0); | 1589 __ ret(0); |
| 1589 | 1590 |
| 1590 __ bind(&miss); | 1591 __ bind(&miss); |
| 1591 __ IncrementCounter(&Counters::store_normal_miss, 1); | 1592 __ IncrementCounter(&Counters::store_normal_miss, 1); |
| 1592 GenerateMiss(masm); | 1593 GenerateMiss(masm); |
| 1593 } | 1594 } |
| 1594 | 1595 |
| 1595 | 1596 |
| 1596 void StoreIC::GenerateGlobalProxy(MacroAssembler* masm) { | 1597 void StoreIC::GenerateGlobalProxy(MacroAssembler* masm, |
| 1598 StrictModeFlag strict_mode) { |
| 1597 // ----------- S t a t e ------------- | 1599 // ----------- S t a t e ------------- |
| 1598 // -- rax : value | 1600 // -- rax : value |
| 1599 // -- rcx : name | 1601 // -- rcx : name |
| 1600 // -- rdx : receiver | 1602 // -- rdx : receiver |
| 1601 // -- rsp[0] : return address | 1603 // -- rsp[0] : return address |
| 1602 // ----------------------------------- | 1604 // ----------------------------------- |
| 1603 __ pop(rbx); | 1605 __ pop(rbx); |
| 1604 __ push(rdx); | 1606 __ push(rdx); |
| 1605 __ push(rcx); | 1607 __ push(rcx); |
| 1606 __ push(rax); | 1608 __ push(rax); |
| 1607 __ push(rbx); | 1609 __ Push(Smi::FromInt(NONE)); // PropertyAttributes |
| 1610 __ Push(Smi::FromInt(strict_mode)); |
| 1611 __ push(rbx); // return address |
| 1608 | 1612 |
| 1609 // Do tail-call to runtime routine. | 1613 // Do tail-call to runtime routine. |
| 1610 __ TailCallRuntime(Runtime::kSetProperty, 3, 1); | 1614 __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
| 1611 } | 1615 } |
| 1612 | 1616 |
| 1613 | 1617 |
| 1614 void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm) { | 1618 void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm, |
| 1619 StrictModeFlag strict_mode) { |
| 1615 // ----------- S t a t e ------------- | 1620 // ----------- S t a t e ------------- |
| 1616 // -- rax : value | 1621 // -- rax : value |
| 1617 // -- rcx : key | 1622 // -- rcx : key |
| 1618 // -- rdx : receiver | 1623 // -- rdx : receiver |
| 1619 // -- rsp[0] : return address | 1624 // -- rsp[0] : return address |
| 1620 // ----------------------------------- | 1625 // ----------------------------------- |
| 1621 | 1626 |
| 1622 __ pop(rbx); | 1627 __ pop(rbx); |
| 1623 __ push(rdx); // receiver | 1628 __ push(rdx); // receiver |
| 1624 __ push(rcx); // key | 1629 __ push(rcx); // key |
| 1625 __ push(rax); // value | 1630 __ push(rax); // value |
| 1631 __ Push(Smi::FromInt(NONE)); // PropertyAttributes |
| 1632 __ Push(Smi::FromInt(strict_mode)); // Strict mode. |
| 1626 __ push(rbx); // return address | 1633 __ push(rbx); // return address |
| 1627 | 1634 |
| 1628 // Do tail-call to runtime routine. | 1635 // Do tail-call to runtime routine. |
| 1629 __ TailCallRuntime(Runtime::kSetProperty, 3, 1); | 1636 __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
| 1630 } | 1637 } |
| 1631 | 1638 |
| 1632 | 1639 |
| 1633 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { | 1640 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
| 1634 // ----------- S t a t e ------------- | 1641 // ----------- S t a t e ------------- |
| 1635 // -- rax : value | 1642 // -- rax : value |
| 1636 // -- rcx : key | 1643 // -- rcx : key |
| 1637 // -- rdx : receiver | 1644 // -- rdx : receiver |
| 1638 // -- rsp[0] : return address | 1645 // -- rsp[0] : return address |
| 1639 // ----------------------------------- | 1646 // ----------------------------------- |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1745 Condition cc = *jmp_address == Assembler::kJncShortOpcode | 1752 Condition cc = *jmp_address == Assembler::kJncShortOpcode |
| 1746 ? not_zero | 1753 ? not_zero |
| 1747 : zero; | 1754 : zero; |
| 1748 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); | 1755 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); |
| 1749 } | 1756 } |
| 1750 | 1757 |
| 1751 | 1758 |
| 1752 } } // namespace v8::internal | 1759 } } // namespace v8::internal |
| 1753 | 1760 |
| 1754 #endif // V8_TARGET_ARCH_X64 | 1761 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |