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

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

Issue 1807243002: S390: [wasm] Int64Lowering of Int64Sub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « src/s390/disasm-s390.cc ('k') | src/s390/macro-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_ 5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_
6 #define V8_S390_MACRO_ASSEMBLER_S390_H_ 6 #define V8_S390_MACRO_ASSEMBLER_S390_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 289
290 // Subtract (Register - Mem) 290 // Subtract (Register - Mem)
291 void Sub32(Register dst, const MemOperand& opnd); 291 void Sub32(Register dst, const MemOperand& opnd);
292 void SubP(Register dst, const MemOperand& opnd); 292 void SubP(Register dst, const MemOperand& opnd);
293 void SubP_ExtendSrc(Register dst, const MemOperand& opnd); 293 void SubP_ExtendSrc(Register dst, const MemOperand& opnd);
294 294
295 // Subtract Logical (Register - Mem) 295 // Subtract Logical (Register - Mem)
296 void SubLogical(Register dst, const MemOperand& opnd); 296 void SubLogical(Register dst, const MemOperand& opnd);
297 void SubLogicalP(Register dst, const MemOperand& opnd); 297 void SubLogicalP(Register dst, const MemOperand& opnd);
298 void SubLogicalP_ExtendSrc(Register dst, const MemOperand& opnd); 298 void SubLogicalP_ExtendSrc(Register dst, const MemOperand& opnd);
299 // Subtract Logical 32-bit
300 void SubLogical32(Register dst, Register src1, Register src2);
301 // Subtract Logical With Borrow 32-bit
302 void SubLogicalWithBorrow32(Register dst, Register src1, Register src2);
299 303
300 // Multiply 304 // Multiply
301 void MulP(Register dst, const Operand& opnd); 305 void MulP(Register dst, const Operand& opnd);
302 void MulP(Register dst, Register src); 306 void MulP(Register dst, Register src);
303 void MulP(Register dst, const MemOperand& opnd); 307 void MulP(Register dst, const MemOperand& opnd);
304 void Mul(Register dst, Register src1, Register src2); 308 void Mul(Register dst, Register src1, Register src2);
305 309
306 // Divide 310 // Divide
307 void DivP(Register dividend, Register divider); 311 void DivP(Register dividend, Register divider);
308 312
(...skipping 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1880 #define ACCESS_MASM(masm) \ 1884 #define ACCESS_MASM(masm) \
1881 masm->stop(__FILE_LINE__); \ 1885 masm->stop(__FILE_LINE__); \
1882 masm-> 1886 masm->
1883 #else 1887 #else
1884 #define ACCESS_MASM(masm) masm-> 1888 #define ACCESS_MASM(masm) masm->
1885 #endif 1889 #endif
1886 } // namespace internal 1890 } // namespace internal
1887 } // namespace v8 1891 } // namespace v8
1888 1892
1889 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1893 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/s390/disasm-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698