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

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

Issue 2691893002: s390: use new mul instruction (Closed)
Patch Set: fix comment Created 3 years, 10 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/globals.h ('k') | src/s390/assembler-s390.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 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1153 void sgrk(Register r1, Register r2, Register r3); 1153 void sgrk(Register r1, Register r2, Register r3);
1154 1154
1155 // 32-bit Subtract Logical Instructions 1155 // 32-bit Subtract Logical Instructions
1156 void slrk(Register r1, Register r2, Register r3); 1156 void slrk(Register r1, Register r2, Register r3);
1157 1157
1158 // 64-bit Subtract Logical Instructions 1158 // 64-bit Subtract Logical Instructions
1159 void slgrk(Register r1, Register r2, Register r3); 1159 void slgrk(Register r1, Register r2, Register r3);
1160 1160
1161 // 32-bit Multiply Instructions 1161 // 32-bit Multiply Instructions
1162 void mhi(Register r1, const Operand& opnd); 1162 void mhi(Register r1, const Operand& opnd);
1163 void msrkc(Register r1, Register r2, Register r3);
1164 void msgrkc(Register r1, Register r2, Register r3);
1163 1165
1164 // 64-bit Multiply Instructions 1166 // 64-bit Multiply Instructions
1165 void mghi(Register r1, const Operand& opnd); 1167 void mghi(Register r1, const Operand& opnd);
1166 1168
1167 // Bitwise Instructions (AND / OR / XOR) 1169 // Bitwise Instructions (AND / OR / XOR)
1168 void nrk(Register r1, Register r2, Register r3); 1170 void nrk(Register r1, Register r2, Register r3);
1169 void ngrk(Register r1, Register r2, Register r3); 1171 void ngrk(Register r1, Register r2, Register r3);
1170 void ork(Register r1, Register r2, Register r3); 1172 void ork(Register r1, Register r2, Register r3);
1171 void ogrk(Register r1, Register r2, Register r3); 1173 void ogrk(Register r1, Register r2, Register r3);
1172 void xrk(Register r1, Register r2, Register r3); 1174 void xrk(Register r1, Register r2, Register r3);
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1463 1465
1464 class EnsureSpace BASE_EMBEDDED { 1466 class EnsureSpace BASE_EMBEDDED {
1465 public: 1467 public:
1466 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } 1468 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }
1467 }; 1469 };
1468 1470
1469 } // namespace internal 1471 } // namespace internal
1470 } // namespace v8 1472 } // namespace v8
1471 1473
1472 #endif // V8_S390_ASSEMBLER_S390_H_ 1474 #endif // V8_S390_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/globals.h ('k') | src/s390/assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698