Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: src/arm/macro-assembler-arm.cc

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 635
636 void MacroAssembler::PopSafepointRegisters() { 636 void MacroAssembler::PopSafepointRegisters() {
637 const int num_unsaved = kNumSafepointRegisters - kNumSafepointSavedRegisters; 637 const int num_unsaved = kNumSafepointRegisters - kNumSafepointSavedRegisters;
638 ldm(ia_w, sp, kSafepointSavedRegisters); 638 ldm(ia_w, sp, kSafepointSavedRegisters);
639 add(sp, sp, Operand(num_unsaved * kPointerSize)); 639 add(sp, sp, Operand(num_unsaved * kPointerSize));
640 } 640 }
641 641
642 642
643 void MacroAssembler::PushSafepointRegistersAndDoubles() { 643 void MacroAssembler::PushSafepointRegistersAndDoubles() {
644 PushSafepointRegisters(); 644 PushSafepointRegisters();
645 sub(sp, sp, Operand(DwVfpRegister::kNumAllocatableRegisters * 645 sub(sp, sp, Operand(DwVfpRegister::NumAllocatableRegisters() *
646 kDoubleSize)); 646 kDoubleSize));
647 for (int i = 0; i < DwVfpRegister::kNumAllocatableRegisters; i++) { 647 for (int i = 0; i < DwVfpRegister::NumAllocatableRegisters(); i++) {
648 vstr(DwVfpRegister::FromAllocationIndex(i), sp, i * kDoubleSize); 648 vstr(DwVfpRegister::FromAllocationIndex(i), sp, i * kDoubleSize);
649 } 649 }
650 } 650 }
651 651
652 652
653 void MacroAssembler::PopSafepointRegistersAndDoubles() { 653 void MacroAssembler::PopSafepointRegistersAndDoubles() {
654 for (int i = 0; i < DwVfpRegister::kNumAllocatableRegisters; i++) { 654 for (int i = 0; i < DwVfpRegister::NumAllocatableRegisters(); i++) {
655 vldr(DwVfpRegister::FromAllocationIndex(i), sp, i * kDoubleSize); 655 vldr(DwVfpRegister::FromAllocationIndex(i), sp, i * kDoubleSize);
656 } 656 }
657 add(sp, sp, Operand(DwVfpRegister::kNumAllocatableRegisters * 657 add(sp, sp, Operand(DwVfpRegister::NumAllocatableRegisters() *
658 kDoubleSize)); 658 kDoubleSize));
659 PopSafepointRegisters(); 659 PopSafepointRegisters();
660 } 660 }
661 661
662 void MacroAssembler::StoreToSafepointRegistersAndDoublesSlot(Register src, 662 void MacroAssembler::StoreToSafepointRegistersAndDoublesSlot(Register src,
663 Register dst) { 663 Register dst) {
664 str(src, SafepointRegistersAndDoublesSlot(dst)); 664 str(src, SafepointRegistersAndDoublesSlot(dst));
665 } 665 }
666 666
667 667
(...skipping 15 matching lines...) Expand all
683 } 683 }
684 684
685 685
686 MemOperand MacroAssembler::SafepointRegisterSlot(Register reg) { 686 MemOperand MacroAssembler::SafepointRegisterSlot(Register reg) {
687 return MemOperand(sp, SafepointRegisterStackIndex(reg.code()) * kPointerSize); 687 return MemOperand(sp, SafepointRegisterStackIndex(reg.code()) * kPointerSize);
688 } 688 }
689 689
690 690
691 MemOperand MacroAssembler::SafepointRegistersAndDoublesSlot(Register reg) { 691 MemOperand MacroAssembler::SafepointRegistersAndDoublesSlot(Register reg) {
692 // General purpose registers are pushed last on the stack. 692 // General purpose registers are pushed last on the stack.
693 int doubles_size = DwVfpRegister::kNumAllocatableRegisters * kDoubleSize; 693 int doubles_size = DwVfpRegister::NumAllocatableRegisters() * kDoubleSize;
694 int register_offset = SafepointRegisterStackIndex(reg.code()) * kPointerSize; 694 int register_offset = SafepointRegisterStackIndex(reg.code()) * kPointerSize;
695 return MemOperand(sp, doubles_size + register_offset); 695 return MemOperand(sp, doubles_size + register_offset);
696 } 696 }
697 697
698 698
699 void MacroAssembler::Ldrd(Register dst1, Register dst2, 699 void MacroAssembler::Ldrd(Register dst1, Register dst2,
700 const MemOperand& src, Condition cond) { 700 const MemOperand& src, Condition cond) {
701 ASSERT(src.rm().is(no_reg)); 701 ASSERT(src.rm().is(no_reg));
702 ASSERT(!dst1.is(lr)); // r14. 702 ASSERT(!dst1.is(lr)); // r14.
703 ASSERT_EQ(0, dst1.code() % 2); 703 ASSERT_EQ(0, dst1.code() % 2);
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 void MacroAssembler::Vmov(const DwVfpRegister dst, 814 void MacroAssembler::Vmov(const DwVfpRegister dst,
815 const double imm, 815 const double imm,
816 const Register scratch, 816 const Register scratch,
817 const Condition cond) { 817 const Condition cond) {
818 ASSERT(CpuFeatures::IsEnabled(VFP2)); 818 ASSERT(CpuFeatures::IsEnabled(VFP2));
819 static const DoubleRepresentation minus_zero(-0.0); 819 static const DoubleRepresentation minus_zero(-0.0);
820 static const DoubleRepresentation zero(0.0); 820 static const DoubleRepresentation zero(0.0);
821 DoubleRepresentation value(imm); 821 DoubleRepresentation value(imm);
822 // Handle special values first. 822 // Handle special values first.
823 if (value.bits == zero.bits) { 823 if (value.bits == zero.bits) {
824 vmov(dst, kDoubleRegZero, cond); 824 vmov(dst, DwVfpRegister::ZeroReg(), cond);
825 } else if (value.bits == minus_zero.bits) { 825 } else if (value.bits == minus_zero.bits) {
826 vneg(dst, kDoubleRegZero, cond); 826 vneg(dst, DwVfpRegister::ZeroReg(), cond);
827 } else { 827 } else {
828 vmov(dst, imm, scratch, cond); 828 vmov(dst, imm, scratch, cond);
829 } 829 }
830 } 830 }
831 831
832 832
833 static int min(int a, int b) {
834 return a < b ? a : b;
835 }
836
837
838 void MacroAssembler::Vldm(BlockAddrMode am,
839 Register base,
840 const DwVfpRegister first,
841 const DwVfpRegister last,
842 Condition cond) {
843 ASSERT(CpuFeatures::IsEnabled(VFP2));
844 ASSERT_LE(first.code(), last.code());
845 ASSERT(am == da_w || am == ia_w || am == db_w || am == ib_w);
846
847 int low_code = first.code();
848 int high_code;
849 do {
850 // Emit vldm for up to 16 register at a time. Writeback updates base.
851 high_code = min(low_code + 16 - 1, last.code());
852 vldm(am, base, DwVfpRegister::from_code(low_code),
853 DwVfpRegister::from_code(high_code), cond);
854 low_code += 16;
855 } while (high_code < last.code());
856 }
857
858
859 void MacroAssembler::Vstm(BlockAddrMode am,
860 Register base,
861 const DwVfpRegister first,
862 const DwVfpRegister last,
863 Condition cond) {
864 ASSERT(CpuFeatures::IsEnabled(VFP2));
865 ASSERT_LE(first.code(), last.code());
866 ASSERT(am == da_w || am == ia_w || am == db_w || am == ib_w);
867
868 int low_code = first.code();
869 int high_code;
870 do {
871 // Emit vstm for up to 16 register at a time. Writeback updates base.
872 high_code = min(low_code + 16 - 1, last.code());
873 vstm(am, base, DwVfpRegister::from_code(low_code),
874 DwVfpRegister::from_code(high_code), cond);
875 low_code += 16;
876 } while (high_code < last.code());
877 }
878
879
833 void MacroAssembler::EnterFrame(StackFrame::Type type) { 880 void MacroAssembler::EnterFrame(StackFrame::Type type) {
834 // r0-r3: preserved 881 // r0-r3: preserved
835 stm(db_w, sp, cp.bit() | fp.bit() | lr.bit()); 882 stm(db_w, sp, cp.bit() | fp.bit() | lr.bit());
836 mov(ip, Operand(Smi::FromInt(type))); 883 mov(ip, Operand(Smi::FromInt(type)));
837 push(ip); 884 push(ip);
838 mov(ip, Operand(CodeObject())); 885 mov(ip, Operand(CodeObject()));
839 push(ip); 886 push(ip);
840 add(fp, sp, Operand(3 * kPointerSize)); // Adjust FP to point to saved FP. 887 add(fp, sp, Operand(3 * kPointerSize)); // Adjust FP to point to saved FP.
841 } 888 }
842 889
(...skipping 29 matching lines...) Expand all
872 // Save the frame pointer and the context in top. 919 // Save the frame pointer and the context in top.
873 mov(ip, Operand(ExternalReference(Isolate::kCEntryFPAddress, isolate()))); 920 mov(ip, Operand(ExternalReference(Isolate::kCEntryFPAddress, isolate())));
874 str(fp, MemOperand(ip)); 921 str(fp, MemOperand(ip));
875 mov(ip, Operand(ExternalReference(Isolate::kContextAddress, isolate()))); 922 mov(ip, Operand(ExternalReference(Isolate::kContextAddress, isolate())));
876 str(cp, MemOperand(ip)); 923 str(cp, MemOperand(ip));
877 924
878 // Optionally save all double registers. 925 // Optionally save all double registers.
879 if (save_doubles) { 926 if (save_doubles) {
880 DwVfpRegister first = d0; 927 DwVfpRegister first = d0;
881 DwVfpRegister last = 928 DwVfpRegister last =
882 DwVfpRegister::from_code(DwVfpRegister::kNumRegisters - 1); 929 DwVfpRegister::from_code(DwVfpRegister::NumAvailableRegisters() - 1);
883 vstm(db_w, sp, first, last); 930 Vstm(db_w, sp, first, last);
884 // Note that d0 will be accessible at 931 // Note that d0 will be accessible at
885 // fp - 2 * kPointerSize - DwVfpRegister::kNumRegisters * kDoubleSize, 932 // fp - 2 * kPointerSize - DwVfpRegister::NumAvailableRegisters() * kDoubl eSize,
886 // since the sp slot and code slot were pushed after the fp. 933 // since the sp slot and code slot were pushed after the fp.
887 } 934 }
888 935
889 // Reserve place for the return address and stack space and align the frame 936 // Reserve place for the return address and stack space and align the frame
890 // preparing for calling the runtime function. 937 // preparing for calling the runtime function.
891 const int frame_alignment = MacroAssembler::ActivationFrameAlignment(); 938 const int frame_alignment = MacroAssembler::ActivationFrameAlignment();
892 sub(sp, sp, Operand((stack_space + 1) * kPointerSize)); 939 sub(sp, sp, Operand((stack_space + 1) * kPointerSize));
893 if (frame_alignment > 0) { 940 if (frame_alignment > 0) {
894 ASSERT(IsPowerOf2(frame_alignment)); 941 ASSERT(IsPowerOf2(frame_alignment));
895 and_(sp, sp, Operand(-frame_alignment)); 942 and_(sp, sp, Operand(-frame_alignment));
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 #endif // defined(V8_HOST_ARCH_ARM) 979 #endif // defined(V8_HOST_ARCH_ARM)
933 } 980 }
934 981
935 982
936 void MacroAssembler::LeaveExitFrame(bool save_doubles, 983 void MacroAssembler::LeaveExitFrame(bool save_doubles,
937 Register argument_count) { 984 Register argument_count) {
938 // Optionally restore all double registers. 985 // Optionally restore all double registers.
939 if (save_doubles) { 986 if (save_doubles) {
940 // Calculate the stack location of the saved doubles and restore them. 987 // Calculate the stack location of the saved doubles and restore them.
941 const int offset = 2 * kPointerSize; 988 const int offset = 2 * kPointerSize;
942 sub(r3, fp, Operand(offset + DwVfpRegister::kNumRegisters * kDoubleSize)); 989 sub(r3, fp, Operand(offset + DwVfpRegister::NumAvailableRegisters() *
990 kDoubleSize));
943 DwVfpRegister first = d0; 991 DwVfpRegister first = d0;
944 DwVfpRegister last = 992 DwVfpRegister last =
945 DwVfpRegister::from_code(DwVfpRegister::kNumRegisters - 1); 993 DwVfpRegister::from_code(DwVfpRegister::NumAvailableRegisters() - 1);
946 vldm(ia, r3, first, last); 994 Vldm(ia_w, r3, first, last);
947 } 995 }
948 996
949 // Clear top frame. 997 // Clear top frame.
950 mov(r3, Operand(0, RelocInfo::NONE)); 998 mov(r3, Operand(0, RelocInfo::NONE));
951 mov(ip, Operand(ExternalReference(Isolate::kCEntryFPAddress, isolate()))); 999 mov(ip, Operand(ExternalReference(Isolate::kCEntryFPAddress, isolate())));
952 str(r3, MemOperand(ip)); 1000 str(r3, MemOperand(ip));
953 1001
954 // Restore current context from top and clear it in debug mode. 1002 // Restore current context from top and clear it in debug mode.
955 mov(ip, Operand(ExternalReference(Isolate::kContextAddress, isolate()))); 1003 mov(ip, Operand(ExternalReference(Isolate::kContextAddress, isolate())));
956 ldr(cp, MemOperand(ip)); 1004 ldr(cp, MemOperand(ip));
(...skipping 2943 matching lines...) Expand 10 before | Expand all | Expand 10 after
3900 void CodePatcher::EmitCondition(Condition cond) { 3948 void CodePatcher::EmitCondition(Condition cond) {
3901 Instr instr = Assembler::instr_at(masm_.pc_); 3949 Instr instr = Assembler::instr_at(masm_.pc_);
3902 instr = (instr & ~kCondMask) | cond; 3950 instr = (instr & ~kCondMask) | cond;
3903 masm_.emit(instr); 3951 masm_.emit(instr);
3904 } 3952 }
3905 3953
3906 3954
3907 } } // namespace v8::internal 3955 } } // namespace v8::internal
3908 3956
3909 #endif // V8_TARGET_ARCH_ARM 3957 #endif // V8_TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698