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

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

Issue 1108583003: MIPS: Add rounding support in simulator and RINT instruction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments Created 5 years, 7 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 | « no previous file | 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 void cvt_w_s(FPURegister fd, FPURegister fs); 905 void cvt_w_s(FPURegister fd, FPURegister fs);
906 void cvt_w_d(FPURegister fd, FPURegister fs); 906 void cvt_w_d(FPURegister fd, FPURegister fs);
907 void trunc_w_s(FPURegister fd, FPURegister fs); 907 void trunc_w_s(FPURegister fd, FPURegister fs);
908 void trunc_w_d(FPURegister fd, FPURegister fs); 908 void trunc_w_d(FPURegister fd, FPURegister fs);
909 void round_w_s(FPURegister fd, FPURegister fs); 909 void round_w_s(FPURegister fd, FPURegister fs);
910 void round_w_d(FPURegister fd, FPURegister fs); 910 void round_w_d(FPURegister fd, FPURegister fs);
911 void floor_w_s(FPURegister fd, FPURegister fs); 911 void floor_w_s(FPURegister fd, FPURegister fs);
912 void floor_w_d(FPURegister fd, FPURegister fs); 912 void floor_w_d(FPURegister fd, FPURegister fs);
913 void ceil_w_s(FPURegister fd, FPURegister fs); 913 void ceil_w_s(FPURegister fd, FPURegister fs);
914 void ceil_w_d(FPURegister fd, FPURegister fs); 914 void ceil_w_d(FPURegister fd, FPURegister fs);
915 void rint_s(FPURegister fd, FPURegister fs);
916 void rint_d(FPURegister fd, FPURegister fs);
917 void rint(SecondaryField fmt, FPURegister fd, FPURegister fs);
915 918
916 void cvt_l_s(FPURegister fd, FPURegister fs); 919 void cvt_l_s(FPURegister fd, FPURegister fs);
917 void cvt_l_d(FPURegister fd, FPURegister fs); 920 void cvt_l_d(FPURegister fd, FPURegister fs);
918 void trunc_l_s(FPURegister fd, FPURegister fs); 921 void trunc_l_s(FPURegister fd, FPURegister fs);
919 void trunc_l_d(FPURegister fd, FPURegister fs); 922 void trunc_l_d(FPURegister fd, FPURegister fs);
920 void round_l_s(FPURegister fd, FPURegister fs); 923 void round_l_s(FPURegister fd, FPURegister fs);
921 void round_l_d(FPURegister fd, FPURegister fs); 924 void round_l_d(FPURegister fd, FPURegister fs);
922 void floor_l_s(FPURegister fd, FPURegister fs); 925 void floor_l_s(FPURegister fd, FPURegister fs);
923 void floor_l_d(FPURegister fd, FPURegister fs); 926 void floor_l_d(FPURegister fd, FPURegister fs);
924 void ceil_l_s(FPURegister fd, FPURegister fs); 927 void ceil_l_s(FPURegister fd, FPURegister fs);
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 class EnsureSpace BASE_EMBEDDED { 1406 class EnsureSpace BASE_EMBEDDED {
1404 public: 1407 public:
1405 explicit EnsureSpace(Assembler* assembler) { 1408 explicit EnsureSpace(Assembler* assembler) {
1406 assembler->CheckBuffer(); 1409 assembler->CheckBuffer();
1407 } 1410 }
1408 }; 1411 };
1409 1412
1410 } } // namespace v8::internal 1413 } } // namespace v8::internal
1411 1414
1412 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1415 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698