OLD | NEW |
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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 | 252 |
253 // Add (Register - Mem) | 253 // Add (Register - Mem) |
254 void Add32(Register dst, const MemOperand& opnd); | 254 void Add32(Register dst, const MemOperand& opnd); |
255 void AddP(Register dst, const MemOperand& opnd); | 255 void AddP(Register dst, const MemOperand& opnd); |
256 void AddP_ExtendSrc(Register dst, const MemOperand& opnd); | 256 void AddP_ExtendSrc(Register dst, const MemOperand& opnd); |
257 | 257 |
258 // Add (Mem - Immediate) | 258 // Add (Mem - Immediate) |
259 void Add32(const MemOperand& opnd, const Operand& imm); | 259 void Add32(const MemOperand& opnd, const Operand& imm); |
260 void AddP(const MemOperand& opnd, const Operand& imm); | 260 void AddP(const MemOperand& opnd, const Operand& imm); |
261 | 261 |
| 262 // Add Logical (Register - Register) |
| 263 void AddLogical32(Register dst, Register src1, Register src2); |
| 264 |
| 265 // Add Logical With Carry (Register - Register) |
| 266 void AddLogicalWithCarry32(Register dst, Register src1, Register src2); |
| 267 |
262 // Add Logical (Register - Immediate) | 268 // Add Logical (Register - Immediate) |
263 void AddLogical(Register dst, const Operand& imm); | 269 void AddLogical(Register dst, const Operand& imm); |
264 void AddLogicalP(Register dst, const Operand& imm); | 270 void AddLogicalP(Register dst, const Operand& imm); |
265 | 271 |
266 // Add Logical (Register - Mem) | 272 // Add Logical (Register - Mem) |
267 void AddLogical(Register dst, const MemOperand& opnd); | 273 void AddLogical(Register dst, const MemOperand& opnd); |
268 void AddLogicalP(Register dst, const MemOperand& opnd); | 274 void AddLogicalP(Register dst, const MemOperand& opnd); |
269 | 275 |
270 // Subtract (Register - Immediate) | 276 // Subtract (Register - Immediate) |
271 void Sub32(Register dst, const Operand& imm); | 277 void Sub32(Register dst, const Operand& imm); |
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1874 #define ACCESS_MASM(masm) \ | 1880 #define ACCESS_MASM(masm) \ |
1875 masm->stop(__FILE_LINE__); \ | 1881 masm->stop(__FILE_LINE__); \ |
1876 masm-> | 1882 masm-> |
1877 #else | 1883 #else |
1878 #define ACCESS_MASM(masm) masm-> | 1884 #define ACCESS_MASM(masm) masm-> |
1879 #endif | 1885 #endif |
1880 } // namespace internal | 1886 } // namespace internal |
1881 } // namespace v8 | 1887 } // namespace v8 |
1882 | 1888 |
1883 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1889 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
OLD | NEW |