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

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

Issue 654653004: [arm] Drop SMMLS support. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | Annotate | Revision Log
« 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 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 978 void smmla(Register dst, Register src1, Register src2, Register srcA,
979 Condition cond = al); 979 Condition cond = al);
980 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); 981 void smmul(Register dst, Register src1, Register src2, Condition cond = al);
985 982
986 void smlal(Register dstL, Register dstH, Register src1, Register src2, 983 void smlal(Register dstL, Register dstH, Register src1, Register src2,
987 SBit s = LeaveCC, Condition cond = al); 984 SBit s = LeaveCC, Condition cond = al);
988 985
989 void smull(Register dstL, Register dstH, Register src1, Register src2, 986 void smull(Register dstL, Register dstH, Register src1, Register src2,
990 SBit s = LeaveCC, Condition cond = al); 987 SBit s = LeaveCC, Condition cond = al);
991 988
992 void umlal(Register dstL, Register dstH, Register src1, Register src2, 989 void umlal(Register dstL, Register dstH, Register src1, Register src2,
993 SBit s = LeaveCC, Condition cond = al); 990 SBit s = LeaveCC, Condition cond = al);
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
1662 public: 1659 public:
1663 explicit EnsureSpace(Assembler* assembler) { 1660 explicit EnsureSpace(Assembler* assembler) {
1664 assembler->CheckBuffer(); 1661 assembler->CheckBuffer();
1665 } 1662 }
1666 }; 1663 };
1667 1664
1668 1665
1669 } } // namespace v8::internal 1666 } } // namespace v8::internal
1670 1667
1671 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1668 #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