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

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

Issue 1899783003: MIPS: [Atomics] Remove Atomics code stubs; use TF ops. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 831 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 // Break / Trap instructions. 842 // Break / Trap instructions.
843 void break_(uint32_t code, bool break_as_stop = false); 843 void break_(uint32_t code, bool break_as_stop = false);
844 void stop(const char* msg, uint32_t code = kMaxStopCode); 844 void stop(const char* msg, uint32_t code = kMaxStopCode);
845 void tge(Register rs, Register rt, uint16_t code); 845 void tge(Register rs, Register rt, uint16_t code);
846 void tgeu(Register rs, Register rt, uint16_t code); 846 void tgeu(Register rs, Register rt, uint16_t code);
847 void tlt(Register rs, Register rt, uint16_t code); 847 void tlt(Register rs, Register rt, uint16_t code);
848 void tltu(Register rs, Register rt, uint16_t code); 848 void tltu(Register rs, Register rt, uint16_t code);
849 void teq(Register rs, Register rt, uint16_t code); 849 void teq(Register rs, Register rt, uint16_t code);
850 void tne(Register rs, Register rt, uint16_t code); 850 void tne(Register rs, Register rt, uint16_t code);
851 851
852 // Memory barrier instruction.
853 void sync();
854
852 // Move from HI/LO register. 855 // Move from HI/LO register.
853 void mfhi(Register rd); 856 void mfhi(Register rd);
854 void mflo(Register rd); 857 void mflo(Register rd);
855 858
856 // Set on less than. 859 // Set on less than.
857 void slt(Register rd, Register rs, Register rt); 860 void slt(Register rd, Register rs, Register rt);
858 void sltu(Register rd, Register rs, Register rt); 861 void sltu(Register rd, Register rs, Register rt);
859 void slti(Register rd, Register rs, int32_t j); 862 void slti(Register rd, Register rs, int32_t j);
860 void sltiu(Register rd, Register rs, int32_t j); 863 void sltiu(Register rd, Register rs, int32_t j);
861 864
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 public: 1514 public:
1512 explicit EnsureSpace(Assembler* assembler) { 1515 explicit EnsureSpace(Assembler* assembler) {
1513 assembler->CheckBuffer(); 1516 assembler->CheckBuffer();
1514 } 1517 }
1515 }; 1518 };
1516 1519
1517 } // namespace internal 1520 } // namespace internal
1518 } // namespace v8 1521 } // namespace v8
1519 1522
1520 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1523 #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