| 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 // Arithmetic. | 916 // Arithmetic. |
| 917 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); | 917 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 918 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); | 918 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 919 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); | 919 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 920 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); | 920 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 921 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); | 921 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 922 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); | 922 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 923 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); | 923 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 924 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); | 924 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 925 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); | 925 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 926 void abs_s(FPURegister fd, FPURegister fs); |
| 926 void abs_d(FPURegister fd, FPURegister fs); | 927 void abs_d(FPURegister fd, FPURegister fs); |
| 927 void mov_d(FPURegister fd, FPURegister fs); | 928 void mov_d(FPURegister fd, FPURegister fs); |
| 928 void neg_s(FPURegister fd, FPURegister fs); | 929 void neg_s(FPURegister fd, FPURegister fs); |
| 929 void neg_d(FPURegister fd, FPURegister fs); | 930 void neg_d(FPURegister fd, FPURegister fs); |
| 930 void sqrt_s(FPURegister fd, FPURegister fs); | 931 void sqrt_s(FPURegister fd, FPURegister fs); |
| 931 void sqrt_d(FPURegister fd, FPURegister fs); | 932 void sqrt_d(FPURegister fd, FPURegister fs); |
| 932 | 933 |
| 933 // Conversion. | 934 // Conversion. |
| 934 void cvt_w_s(FPURegister fd, FPURegister fs); | 935 void cvt_w_s(FPURegister fd, FPURegister fs); |
| 935 void cvt_w_d(FPURegister fd, FPURegister fs); | 936 void cvt_w_d(FPURegister fd, FPURegister fs); |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1436 class EnsureSpace BASE_EMBEDDED { | 1437 class EnsureSpace BASE_EMBEDDED { |
| 1437 public: | 1438 public: |
| 1438 explicit EnsureSpace(Assembler* assembler) { | 1439 explicit EnsureSpace(Assembler* assembler) { |
| 1439 assembler->CheckBuffer(); | 1440 assembler->CheckBuffer(); |
| 1440 } | 1441 } |
| 1441 }; | 1442 }; |
| 1442 | 1443 |
| 1443 } } // namespace v8::internal | 1444 } } // namespace v8::internal |
| 1444 | 1445 |
| 1445 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1446 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |