| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 void CmpLogical32(Register dst, const MemOperand& opnd); | 326 void CmpLogical32(Register dst, const MemOperand& opnd); |
| 327 void CmpLogicalP(Register dst, const MemOperand& opnd); | 327 void CmpLogicalP(Register dst, const MemOperand& opnd); |
| 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 LoadW(Register dst, Register src); |
| 336 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg); | 337 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg); |
| 338 void LoadlW(Register dst, Register src); |
| 337 void LoadB(Register dst, const MemOperand& opnd); | 339 void LoadB(Register dst, const MemOperand& opnd); |
| 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); |
| 346 void LoadAndTestP(Register dst, const MemOperand& opnd); | 348 void LoadAndTestP(Register dst, const MemOperand& opnd); |
| (...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1879 #define ACCESS_MASM(masm) \ | 1881 #define ACCESS_MASM(masm) \ |
| 1880 masm->stop(__FILE_LINE__); \ | 1882 masm->stop(__FILE_LINE__); \ |
| 1881 masm-> | 1883 masm-> |
| 1882 #else | 1884 #else |
| 1883 #define ACCESS_MASM(masm) masm-> | 1885 #define ACCESS_MASM(masm) masm-> |
| 1884 #endif | 1886 #endif |
| 1885 } // namespace internal | 1887 } // namespace internal |
| 1886 } // namespace v8 | 1888 } // namespace v8 |
| 1887 | 1889 |
| 1888 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1890 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
| OLD | NEW |