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

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

Issue 12319113: Emit VMLS for multiply-subtract on ARM. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address Ulan's commen Created 7 years, 9 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 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 const DwVfpRegister src2, 1135 const DwVfpRegister src2,
1136 const Condition cond = al); 1136 const Condition cond = al);
1137 void vmul(const DwVfpRegister dst, 1137 void vmul(const DwVfpRegister dst,
1138 const DwVfpRegister src1, 1138 const DwVfpRegister src1,
1139 const DwVfpRegister src2, 1139 const DwVfpRegister src2,
1140 const Condition cond = al); 1140 const Condition cond = al);
1141 void vmla(const DwVfpRegister dst, 1141 void vmla(const DwVfpRegister dst,
1142 const DwVfpRegister src1, 1142 const DwVfpRegister src1,
1143 const DwVfpRegister src2, 1143 const DwVfpRegister src2,
1144 const Condition cond = al); 1144 const Condition cond = al);
1145 void vmls(const DwVfpRegister dst,
1146 const DwVfpRegister src1,
1147 const DwVfpRegister src2,
1148 const Condition cond = al);
1145 void vdiv(const DwVfpRegister dst, 1149 void vdiv(const DwVfpRegister dst,
1146 const DwVfpRegister src1, 1150 const DwVfpRegister src1,
1147 const DwVfpRegister src2, 1151 const DwVfpRegister src2,
1148 const Condition cond = al); 1152 const Condition cond = al);
1149 void vcmp(const DwVfpRegister src1, 1153 void vcmp(const DwVfpRegister src1,
1150 const DwVfpRegister src2, 1154 const DwVfpRegister src2,
1151 const Condition cond = al); 1155 const Condition cond = al);
1152 void vcmp(const DwVfpRegister src1, 1156 void vcmp(const DwVfpRegister src1,
1153 const double src2, 1157 const double src2,
1154 const Condition cond = al); 1158 const Condition cond = al);
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 public: 1509 public:
1506 explicit EnsureSpace(Assembler* assembler) { 1510 explicit EnsureSpace(Assembler* assembler) {
1507 assembler->CheckBuffer(); 1511 assembler->CheckBuffer();
1508 } 1512 }
1509 }; 1513 };
1510 1514
1511 1515
1512 } } // namespace v8::internal 1516 } } // namespace v8::internal
1513 1517
1514 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1518 #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