OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 // Perform tail call to the entry. | 753 // Perform tail call to the entry. |
754 ExternalReference ref = ExternalReference( | 754 ExternalReference ref = ExternalReference( |
755 IC_Utility(kKeyedLoadPropertyWithInterceptor)); | 755 IC_Utility(kKeyedLoadPropertyWithInterceptor)); |
756 __ TailCallExternalReference(ref, 2, 1); | 756 __ TailCallExternalReference(ref, 2, 1); |
757 | 757 |
758 __ bind(&slow); | 758 __ bind(&slow); |
759 GenerateMiss(masm); | 759 GenerateMiss(masm); |
760 } | 760 } |
761 | 761 |
762 | 762 |
| 763 void KeyedLoadIC::GeneratePixelArray(MacroAssembler* masm) { |
| 764 // ----------- S t a t e ------------- |
| 765 // -- eax : key |
| 766 // -- edx : receiver |
| 767 // -- esp[0] : return address |
| 768 // ----------------------------------- |
| 769 Label slow; |
| 770 |
| 771 // Verify that it's safe to access the receiver's elements. |
| 772 GenerateKeyedLoadReceiverCheck( |
| 773 masm, edx, ecx, Map::kHasNamedInterceptor, &slow); |
| 774 |
| 775 // Verify that the receiver has pixel array elements |
| 776 __ mov(ecx, FieldOperand(edx, JSObject::kElementsOffset)); |
| 777 __ CheckMap(ecx, Factory::pixel_array_map(), &slow, true); |
| 778 |
| 779 // Verify that the key is a smi that's in range. |
| 780 __ test(eax, Immediate(kSmiTagMask)); |
| 781 __ j(not_zero, &slow, not_taken); |
| 782 __ SmiUntag(eax); |
| 783 __ cmp(eax, FieldOperand(ecx, PixelArray::kLengthOffset)); |
| 784 __ j(above_equal, &slow); |
| 785 |
| 786 // Load the element and tag it as an smi. |
| 787 __ mov(ebx, FieldOperand(ecx, PixelArray::kExternalPointerOffset)); |
| 788 __ movzx_b(eax, Operand(ebx, eax, times_1, 0)); |
| 789 __ SmiTag(eax); |
| 790 __ ret(0); |
| 791 |
| 792 __ bind(&slow); |
| 793 GenerateMiss(masm); |
| 794 } |
| 795 |
| 796 |
763 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { | 797 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { |
764 // ----------- S t a t e ------------- | 798 // ----------- S t a t e ------------- |
765 // -- eax : value | 799 // -- eax : value |
766 // -- ecx : key | 800 // -- ecx : key |
767 // -- edx : receiver | 801 // -- edx : receiver |
768 // -- esp[0] : return address | 802 // -- esp[0] : return address |
769 // ----------------------------------- | 803 // ----------------------------------- |
770 Label slow, fast, array, extra, check_pixel_array; | 804 Label slow, fast, array, extra, check_pixel_array; |
771 | 805 |
772 // Check that the object isn't a smi. | 806 // Check that the object isn't a smi. |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1771 Condition cc = *jmp_address == Assembler::kJncShortOpcode | 1805 Condition cc = *jmp_address == Assembler::kJncShortOpcode |
1772 ? not_zero | 1806 ? not_zero |
1773 : zero; | 1807 : zero; |
1774 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); | 1808 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); |
1775 } | 1809 } |
1776 | 1810 |
1777 | 1811 |
1778 } } // namespace v8::internal | 1812 } } // namespace v8::internal |
1779 | 1813 |
1780 #endif // V8_TARGET_ARCH_IA32 | 1814 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |