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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 void XorP(Register dst, Register src); | 399 void XorP(Register dst, Register src); |
400 void Xor(Register dst, Register src1, Register src2); | 400 void Xor(Register dst, Register src1, Register src2); |
401 void XorP(Register dst, Register src1, Register src2); | 401 void XorP(Register dst, Register src1, Register src2); |
402 void Xor(Register dst, const MemOperand& opnd); | 402 void Xor(Register dst, const MemOperand& opnd); |
403 void XorP(Register dst, const MemOperand& opnd); | 403 void XorP(Register dst, const MemOperand& opnd); |
404 void Xor(Register dst, const Operand& opnd); | 404 void Xor(Register dst, const Operand& opnd); |
405 void XorP(Register dst, const Operand& opnd); | 405 void XorP(Register dst, const Operand& opnd); |
406 void Xor(Register dst, Register src, const Operand& opnd); | 406 void Xor(Register dst, Register src, const Operand& opnd); |
407 void XorP(Register dst, Register src, const Operand& opnd); | 407 void XorP(Register dst, Register src, const Operand& opnd); |
408 void Popcnt32(Register dst, Register src); | 408 void Popcnt32(Register dst, Register src); |
| 409 void Not32(Register dst, Register src = no_reg); |
| 410 void Not64(Register dst, Register src = no_reg); |
| 411 void NotP(Register dst, Register src = no_reg); |
409 | 412 |
410 #ifdef V8_TARGET_ARCH_S390X | 413 #ifdef V8_TARGET_ARCH_S390X |
411 void Popcnt64(Register dst, Register src); | 414 void Popcnt64(Register dst, Register src); |
412 #endif | 415 #endif |
413 | 416 |
414 void NotP(Register dst); | |
415 | |
416 void mov(Register dst, const Operand& src); | 417 void mov(Register dst, const Operand& src); |
417 | 418 |
418 void CleanUInt32(Register x) { | 419 void CleanUInt32(Register x) { |
419 #ifdef V8_TARGET_ARCH_S390X | 420 #ifdef V8_TARGET_ARCH_S390X |
420 llgfr(x, x); | 421 llgfr(x, x); |
421 #endif | 422 #endif |
422 } | 423 } |
423 | 424 |
424 // --------------------------------------------------------------------------- | 425 // --------------------------------------------------------------------------- |
425 // GC Support | 426 // GC Support |
(...skipping 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1909 inline MemOperand NativeContextMemOperand() { | 1910 inline MemOperand NativeContextMemOperand() { |
1910 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1911 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1911 } | 1912 } |
1912 | 1913 |
1913 #define ACCESS_MASM(masm) masm-> | 1914 #define ACCESS_MASM(masm) masm-> |
1914 | 1915 |
1915 } // namespace internal | 1916 } // namespace internal |
1916 } // namespace v8 | 1917 } // namespace v8 |
1917 | 1918 |
1918 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1919 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
OLD | NEW |