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

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

Issue 648283002: [arm] Add support for SMMLA, SMMLS and SMMUL. (Closed) Base URL: git@github.com:v8/v8.git@master
Patch Set: Fix Created 6 years, 2 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 | « no previous file | src/arm/assembler-arm.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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 Condition cond = al); 968 Condition cond = al);
969 969
970 void sdiv(Register dst, Register src1, Register src2, 970 void sdiv(Register dst, Register src1, Register src2,
971 Condition cond = al); 971 Condition cond = al);
972 972
973 void udiv(Register dst, Register src1, Register src2, Condition cond = al); 973 void udiv(Register dst, Register src1, Register src2, Condition cond = al);
974 974
975 void mul(Register dst, Register src1, Register src2, 975 void mul(Register dst, Register src1, Register src2,
976 SBit s = LeaveCC, Condition cond = al); 976 SBit s = LeaveCC, Condition cond = al);
977 977
978 void smmla(Register dst, Register src1, Register src2, Register srcA,
979 Condition cond = al);
980
981 void smmls(Register dst, Register src1, Register src2, Register srcA,
982 Condition cond = al);
983
984 void smmul(Register dst, Register src1, Register src2, Condition cond = al);
985
978 void smlal(Register dstL, Register dstH, Register src1, Register src2, 986 void smlal(Register dstL, Register dstH, Register src1, Register src2,
979 SBit s = LeaveCC, Condition cond = al); 987 SBit s = LeaveCC, Condition cond = al);
980 988
981 void smull(Register dstL, Register dstH, Register src1, Register src2, 989 void smull(Register dstL, Register dstH, Register src1, Register src2,
982 SBit s = LeaveCC, Condition cond = al); 990 SBit s = LeaveCC, Condition cond = al);
983 991
984 void umlal(Register dstL, Register dstH, Register src1, Register src2, 992 void umlal(Register dstL, Register dstH, Register src1, Register src2,
985 SBit s = LeaveCC, Condition cond = al); 993 SBit s = LeaveCC, Condition cond = al);
986 994
987 void umull(Register dstL, Register dstH, Register src1, Register src2, 995 void umull(Register dstL, Register dstH, Register src1, Register src2,
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
1654 public: 1662 public:
1655 explicit EnsureSpace(Assembler* assembler) { 1663 explicit EnsureSpace(Assembler* assembler) {
1656 assembler->CheckBuffer(); 1664 assembler->CheckBuffer();
1657 } 1665 }
1658 }; 1666 };
1659 1667
1660 1668
1661 } } // namespace v8::internal 1669 } } // namespace v8::internal
1662 1670
1663 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1671 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698