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

Side by Side Diff: src/mips64/assembler-mips64.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 | « src/mips/simulator-mips.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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 void cvt_w_s(FPURegister fd, FPURegister fs); 935 void cvt_w_s(FPURegister fd, FPURegister fs);
936 void cvt_w_d(FPURegister fd, FPURegister fs); 936 void cvt_w_d(FPURegister fd, FPURegister fs);
937 void trunc_w_s(FPURegister fd, FPURegister fs); 937 void trunc_w_s(FPURegister fd, FPURegister fs);
938 void trunc_w_d(FPURegister fd, FPURegister fs); 938 void trunc_w_d(FPURegister fd, FPURegister fs);
939 void round_w_s(FPURegister fd, FPURegister fs); 939 void round_w_s(FPURegister fd, FPURegister fs);
940 void round_w_d(FPURegister fd, FPURegister fs); 940 void round_w_d(FPURegister fd, FPURegister fs);
941 void floor_w_s(FPURegister fd, FPURegister fs); 941 void floor_w_s(FPURegister fd, FPURegister fs);
942 void floor_w_d(FPURegister fd, FPURegister fs); 942 void floor_w_d(FPURegister fd, FPURegister fs);
943 void ceil_w_s(FPURegister fd, FPURegister fs); 943 void ceil_w_s(FPURegister fd, FPURegister fs);
944 void ceil_w_d(FPURegister fd, FPURegister fs); 944 void ceil_w_d(FPURegister fd, FPURegister fs);
945 void rint_s(FPURegister fd, FPURegister fs);
946 void rint_d(FPURegister fd, FPURegister fs);
947 void rint(SecondaryField fmt, FPURegister fd, FPURegister fs);
948
945 949
946 void cvt_l_s(FPURegister fd, FPURegister fs); 950 void cvt_l_s(FPURegister fd, FPURegister fs);
947 void cvt_l_d(FPURegister fd, FPURegister fs); 951 void cvt_l_d(FPURegister fd, FPURegister fs);
948 void trunc_l_s(FPURegister fd, FPURegister fs); 952 void trunc_l_s(FPURegister fd, FPURegister fs);
949 void trunc_l_d(FPURegister fd, FPURegister fs); 953 void trunc_l_d(FPURegister fd, FPURegister fs);
950 void round_l_s(FPURegister fd, FPURegister fs); 954 void round_l_s(FPURegister fd, FPURegister fs);
951 void round_l_d(FPURegister fd, FPURegister fs); 955 void round_l_d(FPURegister fd, FPURegister fs);
952 void floor_l_s(FPURegister fd, FPURegister fs); 956 void floor_l_s(FPURegister fd, FPURegister fs);
953 void floor_l_d(FPURegister fd, FPURegister fs); 957 void floor_l_d(FPURegister fd, FPURegister fs);
954 void ceil_l_s(FPURegister fd, FPURegister fs); 958 void ceil_l_s(FPURegister fd, FPURegister fs);
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1437 class EnsureSpace BASE_EMBEDDED { 1441 class EnsureSpace BASE_EMBEDDED {
1438 public: 1442 public:
1439 explicit EnsureSpace(Assembler* assembler) { 1443 explicit EnsureSpace(Assembler* assembler) {
1440 assembler->CheckBuffer(); 1444 assembler->CheckBuffer();
1441 } 1445 }
1442 }; 1446 };
1443 1447
1444 } } // namespace v8::internal 1448 } } // namespace v8::internal
1445 1449
1446 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1450 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/simulator-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698