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

Side by Side Diff: src/mips64/assembler-mips64.h

Issue 1545013002: Add assembler test. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased Created 4 years, 11 months 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
« no previous file with comments | « src/mips/simulator-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 void dsrl(Register rd, Register rt, uint16_t sa); 763 void dsrl(Register rd, Register rt, uint16_t sa);
764 void dsrlv(Register rd, Register rt, Register rs); 764 void dsrlv(Register rd, Register rt, Register rs);
765 void drotr(Register rd, Register rt, uint16_t sa); 765 void drotr(Register rd, Register rt, uint16_t sa);
766 void drotrv(Register rd, Register rt, Register rs); 766 void drotrv(Register rd, Register rt, Register rs);
767 void dsra(Register rt, Register rd, uint16_t sa); 767 void dsra(Register rt, Register rd, uint16_t sa);
768 void dsrav(Register rd, Register rt, Register rs); 768 void dsrav(Register rd, Register rt, Register rs);
769 void dsll32(Register rt, Register rd, uint16_t sa); 769 void dsll32(Register rt, Register rd, uint16_t sa);
770 void dsrl32(Register rt, Register rd, uint16_t sa); 770 void dsrl32(Register rt, Register rd, uint16_t sa);
771 void dsra32(Register rt, Register rd, uint16_t sa); 771 void dsra32(Register rt, Register rd, uint16_t sa);
772 772
773 // Address computing instructions with shift.
774 void lsa(Register rd, Register rt, Register rs, uint8_t sa);
775 void dlsa(Register rd, Register rt, Register rs, uint8_t sa);
773 776
774 // ------------Memory-instructions------------- 777 // ------------Memory-instructions-------------
775 778
776 void lb(Register rd, const MemOperand& rs); 779 void lb(Register rd, const MemOperand& rs);
777 void lbu(Register rd, const MemOperand& rs); 780 void lbu(Register rd, const MemOperand& rs);
778 void lh(Register rd, const MemOperand& rs); 781 void lh(Register rd, const MemOperand& rs);
779 void lhu(Register rd, const MemOperand& rs); 782 void lhu(Register rd, const MemOperand& rs);
780 void lw(Register rd, const MemOperand& rs); 783 void lw(Register rd, const MemOperand& rs);
781 void lwu(Register rd, const MemOperand& rs); 784 void lwu(Register rd, const MemOperand& rs);
782 void lwl(Register rd, const MemOperand& rs); 785 void lwl(Register rd, const MemOperand& rs);
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 public: 1450 public:
1448 explicit EnsureSpace(Assembler* assembler) { 1451 explicit EnsureSpace(Assembler* assembler) {
1449 assembler->CheckBuffer(); 1452 assembler->CheckBuffer();
1450 } 1453 }
1451 }; 1454 };
1452 1455
1453 } // namespace internal 1456 } // namespace internal
1454 } // namespace v8 1457 } // namespace v8
1455 1458
1456 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1459 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/simulator-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698