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

Side by Side Diff: src/mips/assembler-mips.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/compiler/mips64/instruction-selector-mips64.cc ('k') | 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 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 // Break / Trap instructions. 792 // Break / Trap instructions.
793 void break_(uint32_t code, bool break_as_stop = false); 793 void break_(uint32_t code, bool break_as_stop = false);
794 void stop(const char* msg, uint32_t code = kMaxStopCode); 794 void stop(const char* msg, uint32_t code = kMaxStopCode);
795 void tge(Register rs, Register rt, uint16_t code); 795 void tge(Register rs, Register rt, uint16_t code);
796 void tgeu(Register rs, Register rt, uint16_t code); 796 void tgeu(Register rs, Register rt, uint16_t code);
797 void tlt(Register rs, Register rt, uint16_t code); 797 void tlt(Register rs, Register rt, uint16_t code);
798 void tltu(Register rs, Register rt, uint16_t code); 798 void tltu(Register rs, Register rt, uint16_t code);
799 void teq(Register rs, Register rt, uint16_t code); 799 void teq(Register rs, Register rt, uint16_t code);
800 void tne(Register rs, Register rt, uint16_t code); 800 void tne(Register rs, Register rt, uint16_t code);
801 801
802 // Memory barrier instruction.
803 void sync();
804
802 // Move from HI/LO register. 805 // Move from HI/LO register.
803 void mfhi(Register rd); 806 void mfhi(Register rd);
804 void mflo(Register rd); 807 void mflo(Register rd);
805 808
806 // Set on less than. 809 // Set on less than.
807 void slt(Register rd, Register rs, Register rt); 810 void slt(Register rd, Register rs, Register rt);
808 void sltu(Register rd, Register rs, Register rt); 811 void sltu(Register rd, Register rs, Register rt);
809 void slti(Register rd, Register rs, int32_t j); 812 void slti(Register rd, Register rs, int32_t j);
810 void sltiu(Register rd, Register rs, int32_t j); 813 void sltiu(Register rd, Register rs, int32_t j);
811 814
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 public: 1464 public:
1462 explicit EnsureSpace(Assembler* assembler) { 1465 explicit EnsureSpace(Assembler* assembler) {
1463 assembler->CheckBuffer(); 1466 assembler->CheckBuffer();
1464 } 1467 }
1465 }; 1468 };
1466 1469
1467 } // namespace internal 1470 } // namespace internal
1468 } // namespace v8 1471 } // namespace v8
1469 1472
1470 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1473 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698