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

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

Issue 1413463009: Implemented the Word64Clz TurboFan operator for x64, arm64, and mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a typing problem, and added mips64. Created 5 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 | « src/compiler/x64/instruction-selector-x64.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 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 void movz_s(FPURegister fd, FPURegister fs, Register rt); 855 void movz_s(FPURegister fd, FPURegister fs, Register rt);
856 void movz_d(FPURegister fd, FPURegister fs, Register rt); 856 void movz_d(FPURegister fd, FPURegister fs, Register rt);
857 void movt_s(FPURegister fd, FPURegister fs, uint16_t cc = 0); 857 void movt_s(FPURegister fd, FPURegister fs, uint16_t cc = 0);
858 void movt_d(FPURegister fd, FPURegister fs, uint16_t cc = 0); 858 void movt_d(FPURegister fd, FPURegister fs, uint16_t cc = 0);
859 void movf_s(FPURegister fd, FPURegister fs, uint16_t cc = 0); 859 void movf_s(FPURegister fd, FPURegister fs, uint16_t cc = 0);
860 void movf_d(FPURegister fd, FPURegister fs, uint16_t cc = 0); 860 void movf_d(FPURegister fd, FPURegister fs, uint16_t cc = 0);
861 void movn_s(FPURegister fd, FPURegister fs, Register rt); 861 void movn_s(FPURegister fd, FPURegister fs, Register rt);
862 void movn_d(FPURegister fd, FPURegister fs, Register rt); 862 void movn_d(FPURegister fd, FPURegister fs, Register rt);
863 // Bit twiddling. 863 // Bit twiddling.
864 void clz(Register rd, Register rs); 864 void clz(Register rd, Register rs);
865 void dclz(Register rd, Register rs);
865 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size); 866 void ins_(Register rt, Register rs, uint16_t pos, uint16_t size);
866 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size); 867 void ext_(Register rt, Register rs, uint16_t pos, uint16_t size);
867 void dext_(Register rt, Register rs, uint16_t pos, uint16_t size); 868 void dext_(Register rt, Register rs, uint16_t pos, uint16_t size);
868 void bitswap(Register rd, Register rt); 869 void bitswap(Register rd, Register rt);
869 void dbitswap(Register rd, Register rt); 870 void dbitswap(Register rd, Register rt);
870 void align(Register rd, Register rs, Register rt, uint8_t bp); 871 void align(Register rd, Register rs, Register rt, uint8_t bp);
871 void dalign(Register rd, Register rs, Register rt, uint8_t bp); 872 void dalign(Register rd, Register rs, Register rt, uint8_t bp);
872 873
873 // --------Coprocessor-instructions---------------- 874 // --------Coprocessor-instructions----------------
874 875
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 public: 1447 public:
1447 explicit EnsureSpace(Assembler* assembler) { 1448 explicit EnsureSpace(Assembler* assembler) {
1448 assembler->CheckBuffer(); 1449 assembler->CheckBuffer();
1449 } 1450 }
1450 }; 1451 };
1451 1452
1452 } // namespace internal 1453 } // namespace internal
1453 } // namespace v8 1454 } // namespace v8
1454 1455
1455 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1456 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698