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

Side by Side Diff: src/mips/assembler-mips.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 | « no previous file | src/mips/assembler-mips.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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 // doesn't happen. 744 // doesn't happen.
745 void sll(Register rd, Register rt, uint16_t sa, bool coming_from_nop = false); 745 void sll(Register rd, Register rt, uint16_t sa, bool coming_from_nop = false);
746 void sllv(Register rd, Register rt, Register rs); 746 void sllv(Register rd, Register rt, Register rs);
747 void srl(Register rd, Register rt, uint16_t sa); 747 void srl(Register rd, Register rt, uint16_t sa);
748 void srlv(Register rd, Register rt, Register rs); 748 void srlv(Register rd, Register rt, Register rs);
749 void sra(Register rt, Register rd, uint16_t sa); 749 void sra(Register rt, Register rd, uint16_t sa);
750 void srav(Register rt, Register rd, Register rs); 750 void srav(Register rt, Register rd, Register rs);
751 void rotr(Register rd, Register rt, uint16_t sa); 751 void rotr(Register rd, Register rt, uint16_t sa);
752 void rotrv(Register rd, Register rt, Register rs); 752 void rotrv(Register rd, Register rt, Register rs);
753 753
754 // Address computing instructions with shift.
755 void lsa(Register rd, Register rt, Register rs, uint8_t sa);
754 756
755 // ------------Memory-instructions------------- 757 // ------------Memory-instructions-------------
756 758
757 void lb(Register rd, const MemOperand& rs); 759 void lb(Register rd, const MemOperand& rs);
758 void lbu(Register rd, const MemOperand& rs); 760 void lbu(Register rd, const MemOperand& rs);
759 void lh(Register rd, const MemOperand& rs); 761 void lh(Register rd, const MemOperand& rs);
760 void lhu(Register rd, const MemOperand& rs); 762 void lhu(Register rd, const MemOperand& rs);
761 void lw(Register rd, const MemOperand& rs); 763 void lw(Register rd, const MemOperand& rs);
762 void lwl(Register rd, const MemOperand& rs); 764 void lwl(Register rd, const MemOperand& rs);
763 void lwr(Register rd, const MemOperand& rs); 765 void lwr(Register rd, const MemOperand& rs);
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1428 public: 1430 public:
1429 explicit EnsureSpace(Assembler* assembler) { 1431 explicit EnsureSpace(Assembler* assembler) {
1430 assembler->CheckBuffer(); 1432 assembler->CheckBuffer();
1431 } 1433 }
1432 }; 1434 };
1433 1435
1434 } // namespace internal 1436 } // namespace internal
1435 } // namespace v8 1437 } // namespace v8
1436 1438
1437 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1439 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698