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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 void ctc1(Register rt, FPUControlRegister fs); | 871 void ctc1(Register rt, FPUControlRegister fs); |
872 void cfc1(Register rt, FPUControlRegister fs); | 872 void cfc1(Register rt, FPUControlRegister fs); |
873 | 873 |
874 // Arithmetic. | 874 // Arithmetic. |
875 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); | 875 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); |
876 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); | 876 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); |
877 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); | 877 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); |
878 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); | 878 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); |
879 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); | 879 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); |
880 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); | 880 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 881 void madd_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
881 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); | 882 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 883 void msub_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 884 void msub_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 885 void maddf_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 886 void maddf_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 887 void msubf_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 888 void msubf_d(FPURegister fd, FPURegister fs, FPURegister ft); |
882 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); | 889 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); |
883 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); | 890 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); |
884 void abs_s(FPURegister fd, FPURegister fs); | 891 void abs_s(FPURegister fd, FPURegister fs); |
885 void abs_d(FPURegister fd, FPURegister fs); | 892 void abs_d(FPURegister fd, FPURegister fs); |
886 void mov_d(FPURegister fd, FPURegister fs); | 893 void mov_d(FPURegister fd, FPURegister fs); |
887 void mov_s(FPURegister fd, FPURegister fs); | 894 void mov_s(FPURegister fd, FPURegister fs); |
888 void neg_s(FPURegister fd, FPURegister fs); | 895 void neg_s(FPURegister fd, FPURegister fs); |
889 void neg_d(FPURegister fd, FPURegister fs); | 896 void neg_d(FPURegister fd, FPURegister fs); |
890 void sqrt_s(FPURegister fd, FPURegister fs); | 897 void sqrt_s(FPURegister fd, FPURegister fs); |
891 void sqrt_d(FPURegister fd, FPURegister fs); | 898 void sqrt_d(FPURegister fd, FPURegister fs); |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 public: | 1472 public: |
1466 explicit EnsureSpace(Assembler* assembler) { | 1473 explicit EnsureSpace(Assembler* assembler) { |
1467 assembler->CheckBuffer(); | 1474 assembler->CheckBuffer(); |
1468 } | 1475 } |
1469 }; | 1476 }; |
1470 | 1477 |
1471 } // namespace internal | 1478 } // namespace internal |
1472 } // namespace v8 | 1479 } // namespace v8 |
1473 | 1480 |
1474 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1481 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |