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

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

Issue 735033002: MIPS64: Prepare additonal code for turbofan landing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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/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 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 void seleqz(SecondaryField fmt, FPURegister fd, FPURegister ft, 879 void seleqz(SecondaryField fmt, FPURegister fd, FPURegister ft,
880 FPURegister fs); 880 FPURegister fs);
881 void selnez(Register rs, Register rt, Register rd); 881 void selnez(Register rs, Register rt, Register rd);
882 void selnez(SecondaryField fmt, FPURegister fd, FPURegister ft, 882 void selnez(SecondaryField fmt, FPURegister fd, FPURegister ft,
883 FPURegister fs); 883 FPURegister fs);
884 884
885 // Bit twiddling. 885 // Bit twiddling.
886 void clz(Register rd, Register rs); 886 void clz(Register rd, Register rs);
887 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size); 887 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size);
888 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size); 888 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size);
889 void dext_(Register rt, Register rs, uint16_t pos, uint16_t size);
889 890
890 // --------Coprocessor-instructions---------------- 891 // --------Coprocessor-instructions----------------
891 892
892 // Load, store, and move. 893 // Load, store, and move.
893 void lwc1(FPURegister fd, const MemOperand& src); 894 void lwc1(FPURegister fd, const MemOperand& src);
894 void ldc1(FPURegister fd, const MemOperand& src); 895 void ldc1(FPURegister fd, const MemOperand& src);
895 896
896 void swc1(FPURegister fs, const MemOperand& dst); 897 void swc1(FPURegister fs, const MemOperand& dst);
897 void sdc1(FPURegister fs, const MemOperand& dst); 898 void sdc1(FPURegister fs, const MemOperand& dst);
898 899
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 class EnsureSpace BASE_EMBEDDED { 1412 class EnsureSpace BASE_EMBEDDED {
1412 public: 1413 public:
1413 explicit EnsureSpace(Assembler* assembler) { 1414 explicit EnsureSpace(Assembler* assembler) {
1414 assembler->CheckBuffer(); 1415 assembler->CheckBuffer();
1415 } 1416 }
1416 }; 1417 };
1417 1418
1418 } } // namespace v8::internal 1419 } } // namespace v8::internal
1419 1420
1420 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1421 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698