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

Side by Side Diff: src/mips64/macro-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/mips64/disasm-mips64.cc ('k') | src/mips64/macro-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips64/assembler-mips64.h" 10 #include "src/mips64/assembler-mips64.h"
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 648
649 DEFINE_INSTRUCTION(Slt); 649 DEFINE_INSTRUCTION(Slt);
650 DEFINE_INSTRUCTION(Sltu); 650 DEFINE_INSTRUCTION(Sltu);
651 651
652 // MIPS32 R2 instruction macro. 652 // MIPS32 R2 instruction macro.
653 DEFINE_INSTRUCTION(Ror); 653 DEFINE_INSTRUCTION(Ror);
654 DEFINE_INSTRUCTION(Dror); 654 DEFINE_INSTRUCTION(Dror);
655 655
656 #undef DEFINE_INSTRUCTION 656 #undef DEFINE_INSTRUCTION
657 #undef DEFINE_INSTRUCTION2 657 #undef DEFINE_INSTRUCTION2
658 #undef DEFINE_INSTRUCTION3
659
660 void Lsa(Register rd, Register rs, Register rt, uint8_t sa,
661 Register scratch = at);
662 void Dlsa(Register rd, Register rs, Register rt, uint8_t sa,
663 Register scratch = at);
658 664
659 void Pref(int32_t hint, const MemOperand& rs); 665 void Pref(int32_t hint, const MemOperand& rs);
660 666
661 667
662 // --------------------------------------------------------------------------- 668 // ---------------------------------------------------------------------------
663 // Pseudo-instructions. 669 // Pseudo-instructions.
664 670
665 void mov(Register rd, Register rt) { or_(rd, rt, zero_reg); } 671 void mov(Register rd, Register rt) { or_(rd, rt, zero_reg); }
666 672
667 void Ulw(Register rd, const MemOperand& rs); 673 void Ulw(Register rd, const MemOperand& rs);
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1877 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1883 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1878 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1884 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1879 #else 1885 #else
1880 #define ACCESS_MASM(masm) masm-> 1886 #define ACCESS_MASM(masm) masm->
1881 #endif 1887 #endif
1882 1888
1883 } // namespace internal 1889 } // namespace internal
1884 } // namespace v8 1890 } // namespace v8
1885 1891
1886 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1892 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips64/disasm-mips64.cc ('k') | src/mips64/macro-assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698