| 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 void ctc1(Register rt, FPUControlRegister fs); | 932 void ctc1(Register rt, FPUControlRegister fs); |
| 933 void cfc1(Register rt, FPUControlRegister fs); | 933 void cfc1(Register rt, FPUControlRegister fs); |
| 934 | 934 |
| 935 // Arithmetic. | 935 // Arithmetic. |
| 936 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); | 936 void add_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 937 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); | 937 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 938 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); | 938 void sub_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 939 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); | 939 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 940 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); | 940 void mul_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 941 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); | 941 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 942 void madd_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 942 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); | 943 void madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 944 void msub_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 945 void msub_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft); |
| 946 void maddf_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 947 void maddf_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 948 void msubf_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 949 void msubf_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 943 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); | 950 void div_s(FPURegister fd, FPURegister fs, FPURegister ft); |
| 944 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); | 951 void div_d(FPURegister fd, FPURegister fs, FPURegister ft); |
| 945 void abs_s(FPURegister fd, FPURegister fs); | 952 void abs_s(FPURegister fd, FPURegister fs); |
| 946 void abs_d(FPURegister fd, FPURegister fs); | 953 void abs_d(FPURegister fd, FPURegister fs); |
| 947 void mov_d(FPURegister fd, FPURegister fs); | 954 void mov_d(FPURegister fd, FPURegister fs); |
| 948 void mov_s(FPURegister fd, FPURegister fs); | 955 void mov_s(FPURegister fd, FPURegister fs); |
| 949 void neg_s(FPURegister fd, FPURegister fs); | 956 void neg_s(FPURegister fd, FPURegister fs); |
| 950 void neg_d(FPURegister fd, FPURegister fs); | 957 void neg_d(FPURegister fd, FPURegister fs); |
| 951 void sqrt_s(FPURegister fd, FPURegister fs); | 958 void sqrt_s(FPURegister fd, FPURegister fs); |
| 952 void sqrt_d(FPURegister fd, FPURegister fs); | 959 void sqrt_d(FPURegister fd, FPURegister fs); |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1517 public: | 1524 public: |
| 1518 explicit EnsureSpace(Assembler* assembler) { | 1525 explicit EnsureSpace(Assembler* assembler) { |
| 1519 assembler->CheckBuffer(); | 1526 assembler->CheckBuffer(); |
| 1520 } | 1527 } |
| 1521 }; | 1528 }; |
| 1522 | 1529 |
| 1523 } // namespace internal | 1530 } // namespace internal |
| 1524 } // namespace v8 | 1531 } // namespace v8 |
| 1525 | 1532 |
| 1526 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1533 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |