OLD | NEW |
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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 | 465 |
466 // If we have to call into C then we need to save and restore all caller- | 466 // If we have to call into C then we need to save and restore all caller- |
467 // saved registers that were not already preserved. The scratch registers | 467 // saved registers that were not already preserved. The scratch registers |
468 // will be restored by other means so we don't bother pushing them here. | 468 // will be restored by other means so we don't bother pushing them here. |
469 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) { | 469 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) { |
470 masm->stm(db_w, sp, (kCallerSaved | lr.bit()) & ~scratch1_.bit()); | 470 masm->stm(db_w, sp, (kCallerSaved | lr.bit()) & ~scratch1_.bit()); |
471 if (mode == kSaveFPRegs) { | 471 if (mode == kSaveFPRegs) { |
472 CpuFeatures::Scope scope(VFP2); | 472 CpuFeatures::Scope scope(VFP2); |
473 masm->sub(sp, | 473 masm->sub(sp, |
474 sp, | 474 sp, |
475 Operand(kDoubleSize * (DwVfpRegister::kNumRegisters - 1))); | 475 Operand(kDoubleSize * (DwVfpRegister::NumAvailableRegisters()
- 1))); |
476 // Save all VFP registers except d0. | 476 // Save all VFP registers except d0. |
477 for (int i = DwVfpRegister::kNumRegisters - 1; i > 0; i--) { | 477 for (int i = DwVfpRegister::NumAvailableRegisters() - 1; i > 0; i--) { |
478 DwVfpRegister reg = DwVfpRegister::from_code(i); | 478 DwVfpRegister reg = DwVfpRegister::from_code(i); |
479 masm->vstr(reg, MemOperand(sp, (i - 1) * kDoubleSize)); | 479 masm->vstr(reg, MemOperand(sp, (i - 1) * kDoubleSize)); |
480 } | 480 } |
481 } | 481 } |
482 } | 482 } |
483 | 483 |
484 inline void RestoreCallerSaveRegisters(MacroAssembler*masm, | 484 inline void RestoreCallerSaveRegisters(MacroAssembler*masm, |
485 SaveFPRegsMode mode) { | 485 SaveFPRegsMode mode) { |
486 if (mode == kSaveFPRegs) { | 486 if (mode == kSaveFPRegs) { |
487 CpuFeatures::Scope scope(VFP2); | 487 CpuFeatures::Scope scope(VFP2); |
488 // Restore all VFP registers except d0. | 488 // Restore all VFP registers except d0. |
489 for (int i = DwVfpRegister::kNumRegisters - 1; i > 0; i--) { | 489 for (int i = DwVfpRegister::NumAvailableRegisters() - 1; i > 0; i--) { |
490 DwVfpRegister reg = DwVfpRegister::from_code(i); | 490 DwVfpRegister reg = DwVfpRegister::from_code(i); |
491 masm->vldr(reg, MemOperand(sp, (i - 1) * kDoubleSize)); | 491 masm->vldr(reg, MemOperand(sp, (i - 1) * kDoubleSize)); |
492 } | 492 } |
493 masm->add(sp, | 493 masm->add(sp, |
494 sp, | 494 sp, |
495 Operand(kDoubleSize * (DwVfpRegister::kNumRegisters - 1))); | 495 Operand(kDoubleSize * (DwVfpRegister::NumAvailableRegisters()
- 1))); |
496 } | 496 } |
497 masm->ldm(ia_w, sp, (kCallerSaved | lr.bit()) & ~scratch1_.bit()); | 497 masm->ldm(ia_w, sp, (kCallerSaved | lr.bit()) & ~scratch1_.bit()); |
498 } | 498 } |
499 | 499 |
500 inline Register object() { return object_; } | 500 inline Register object() { return object_; } |
501 inline Register address() { return address_; } | 501 inline Register address() { return address_; } |
502 inline Register scratch0() { return scratch0_; } | 502 inline Register scratch0() { return scratch0_; } |
503 inline Register scratch1() { return scratch1_; } | 503 inline Register scratch1() { return scratch1_; } |
504 | 504 |
505 private: | 505 private: |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 | 785 |
786 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; | 786 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; |
787 | 787 |
788 LookupMode mode_; | 788 LookupMode mode_; |
789 }; | 789 }; |
790 | 790 |
791 | 791 |
792 } } // namespace v8::internal | 792 } } // namespace v8::internal |
793 | 793 |
794 #endif // V8_ARM_CODE_STUBS_ARM_H_ | 794 #endif // V8_ARM_CODE_STUBS_ARM_H_ |
OLD | NEW |