Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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(SecondaryField fmt, FPURegister fd, FPURegister fs); | |
|
balazs.kilvady
2015/04/24 15:38:16
I think rint_s() and rint_d() should be implemente
Djordje.Pesic
2015/04/27 12:46:58
Done.
| |
| 946 | |
| 945 | 947 |
| 946 void cvt_l_s(FPURegister fd, FPURegister fs); | 948 void cvt_l_s(FPURegister fd, FPURegister fs); |
| 947 void cvt_l_d(FPURegister fd, FPURegister fs); | 949 void cvt_l_d(FPURegister fd, FPURegister fs); |
| 948 void trunc_l_s(FPURegister fd, FPURegister fs); | 950 void trunc_l_s(FPURegister fd, FPURegister fs); |
| 949 void trunc_l_d(FPURegister fd, FPURegister fs); | 951 void trunc_l_d(FPURegister fd, FPURegister fs); |
| 950 void round_l_s(FPURegister fd, FPURegister fs); | 952 void round_l_s(FPURegister fd, FPURegister fs); |
| 951 void round_l_d(FPURegister fd, FPURegister fs); | 953 void round_l_d(FPURegister fd, FPURegister fs); |
| 952 void floor_l_s(FPURegister fd, FPURegister fs); | 954 void floor_l_s(FPURegister fd, FPURegister fs); |
| 953 void floor_l_d(FPURegister fd, FPURegister fs); | 955 void floor_l_d(FPURegister fd, FPURegister fs); |
| 954 void ceil_l_s(FPURegister fd, FPURegister fs); | 956 void ceil_l_s(FPURegister fd, FPURegister fs); |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1437 class EnsureSpace BASE_EMBEDDED { | 1439 class EnsureSpace BASE_EMBEDDED { |
| 1438 public: | 1440 public: |
| 1439 explicit EnsureSpace(Assembler* assembler) { | 1441 explicit EnsureSpace(Assembler* assembler) { |
| 1440 assembler->CheckBuffer(); | 1442 assembler->CheckBuffer(); |
| 1441 } | 1443 } |
| 1442 }; | 1444 }; |
| 1443 | 1445 |
| 1444 } } // namespace v8::internal | 1446 } } // namespace v8::internal |
| 1445 | 1447 |
| 1446 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1448 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |