| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 void CmpLogical32(Register dst, const MemOperand& opnd); | 325 void CmpLogical32(Register dst, const MemOperand& opnd); |
| 326 void CmpLogicalP(Register dst, const MemOperand& opnd); | 326 void CmpLogicalP(Register dst, const MemOperand& opnd); |
| 327 | 327 |
| 328 // Compare Logical Byte (CLI/CLIY) | 328 // Compare Logical Byte (CLI/CLIY) |
| 329 void CmpLogicalByte(const MemOperand& mem, const Operand& imm); | 329 void CmpLogicalByte(const MemOperand& mem, const Operand& imm); |
| 330 | 330 |
| 331 // Load 32bit | 331 // Load 32bit |
| 332 void Load(Register dst, const MemOperand& opnd); | 332 void Load(Register dst, const MemOperand& opnd); |
| 333 void Load(Register dst, const Operand& opnd); | 333 void Load(Register dst, const Operand& opnd); |
| 334 void LoadW(Register dst, const MemOperand& opnd, Register scratch = no_reg); | 334 void LoadW(Register dst, const MemOperand& opnd, Register scratch = no_reg); |
| 335 void LoadW(Register dst, Register src); |
| 335 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg); | 336 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg); |
| 337 void LoadlW(Register dst, Register src); |
| 336 void LoadB(Register dst, const MemOperand& opnd); | 338 void LoadB(Register dst, const MemOperand& opnd); |
| 337 void LoadB(Register dst, Register src); | 339 void LoadB(Register dst, Register src); |
| 338 void LoadlB(Register dst, const MemOperand& opnd); | 340 void LoadlB(Register dst, const MemOperand& opnd); |
| 339 | 341 |
| 340 // Load And Test | 342 // Load And Test |
| 341 void LoadAndTest32(Register dst, Register src); | 343 void LoadAndTest32(Register dst, Register src); |
| 342 void LoadAndTestP_ExtendSrc(Register dst, Register src); | 344 void LoadAndTestP_ExtendSrc(Register dst, Register src); |
| 343 void LoadAndTestP(Register dst, Register src); | 345 void LoadAndTestP(Register dst, Register src); |
| 344 | 346 |
| 345 void LoadAndTest32(Register dst, const MemOperand& opnd); | 347 void LoadAndTest32(Register dst, const MemOperand& opnd); |
| (...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1888 #define ACCESS_MASM(masm) \ | 1890 #define ACCESS_MASM(masm) \ |
| 1889 masm->stop(__FILE_LINE__); \ | 1891 masm->stop(__FILE_LINE__); \ |
| 1890 masm-> | 1892 masm-> |
| 1891 #else | 1893 #else |
| 1892 #define ACCESS_MASM(masm) masm-> | 1894 #define ACCESS_MASM(masm) masm-> |
| 1893 #endif | 1895 #endif |
| 1894 } // namespace internal | 1896 } // namespace internal |
| 1895 } // namespace v8 | 1897 } // namespace v8 |
| 1896 | 1898 |
| 1897 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1899 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
| OLD | NEW |