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

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

Issue 1046953004: MIPS: [turbofan] Add backend support for float32 operations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/mips/instruction-selector-mips.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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 void mtc1(Register rt, FPURegister fs); 878 void mtc1(Register rt, FPURegister fs);
879 void mthc1(Register rt, FPURegister fs); 879 void mthc1(Register rt, FPURegister fs);
880 880
881 void mfc1(Register rt, FPURegister fs); 881 void mfc1(Register rt, FPURegister fs);
882 void mfhc1(Register rt, FPURegister fs); 882 void mfhc1(Register rt, FPURegister fs);
883 883
884 void ctc1(Register rt, FPUControlRegister fs); 884 void ctc1(Register rt, FPUControlRegister fs);
885 void cfc1(Register rt, FPUControlRegister fs); 885 void cfc1(Register rt, FPUControlRegister fs);
886 886
887 // Arithmetic. 887 // Arithmetic.
888 void add_s(FPURegister fd, FPURegister fs, FPURegister ft);
888 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); 889 void add_d(FPURegister fd, FPURegister fs, FPURegister ft);
890 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft);
889 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); 891 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft);
892 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft);
890 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); 893 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft);
891 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); 894 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft);
895 void div_s(FPURegister fd, FPURegister fs, FPURegister ft);
892 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); 896 void div_d(FPURegister fd, FPURegister fs, FPURegister ft);
893 void abs_d(FPURegister fd, FPURegister fs); 897 void abs_d(FPURegister fd, FPURegister fs);
894 void mov_d(FPURegister fd, FPURegister fs); 898 void mov_d(FPURegister fd, FPURegister fs);
899 void neg_s(FPURegister fd, FPURegister fs);
895 void neg_d(FPURegister fd, FPURegister fs); 900 void neg_d(FPURegister fd, FPURegister fs);
901 void sqrt_s(FPURegister fd, FPURegister fs);
896 void sqrt_d(FPURegister fd, FPURegister fs); 902 void sqrt_d(FPURegister fd, FPURegister fs);
897 903
898 // Conversion. 904 // Conversion.
899 void cvt_w_s(FPURegister fd, FPURegister fs); 905 void cvt_w_s(FPURegister fd, FPURegister fs);
900 void cvt_w_d(FPURegister fd, FPURegister fs); 906 void cvt_w_d(FPURegister fd, FPURegister fs);
901 void trunc_w_s(FPURegister fd, FPURegister fs); 907 void trunc_w_s(FPURegister fd, FPURegister fs);
902 void trunc_w_d(FPURegister fd, FPURegister fs); 908 void trunc_w_d(FPURegister fd, FPURegister fs);
903 void round_w_s(FPURegister fd, FPURegister fs); 909 void round_w_s(FPURegister fd, FPURegister fs);
904 void round_w_d(FPURegister fd, FPURegister fs); 910 void round_w_d(FPURegister fd, FPURegister fs);
905 void floor_w_s(FPURegister fd, FPURegister fs); 911 void floor_w_s(FPURegister fd, FPURegister fs);
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 class EnsureSpace BASE_EMBEDDED { 1403 class EnsureSpace BASE_EMBEDDED {
1398 public: 1404 public:
1399 explicit EnsureSpace(Assembler* assembler) { 1405 explicit EnsureSpace(Assembler* assembler) {
1400 assembler->CheckBuffer(); 1406 assembler->CheckBuffer();
1401 } 1407 }
1402 }; 1408 };
1403 1409
1404 } } // namespace v8::internal 1410 } } // namespace v8::internal
1405 1411
1406 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1412 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698