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

Side by Side Diff: src/mips64/assembler-mips64.h

Issue 2313623002: MIPS: Implement MADD.S, MSUB, MADDF and MSUBF. (Closed)
Patch Set: Added blocks and unreachable sections. Created 4 years, 3 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
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