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