| 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 1611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1622 #endif | 1622 #endif |
| 1623 | 1623 |
| 1624 void AssertFunction(Register object); | 1624 void AssertFunction(Register object); |
| 1625 | 1625 |
| 1626 // Abort execution if argument is not a JSBoundFunction, | 1626 // Abort execution if argument is not a JSBoundFunction, |
| 1627 // enabled via --debug-code. | 1627 // enabled via --debug-code. |
| 1628 void AssertBoundFunction(Register object); | 1628 void AssertBoundFunction(Register object); |
| 1629 | 1629 |
| 1630 // Abort execution if argument is not a JSGeneratorObject, | 1630 // Abort execution if argument is not a JSGeneratorObject, |
| 1631 // enabled via --debug-code. | 1631 // enabled via --debug-code. |
| 1632 void AssertGeneratorObject(Register object); | 1632 void AssertGeneratorObject(Register object, Register suspend_flags); |
| 1633 void AssertAsyncGeneratorObject(Register object); | |
| 1634 | 1633 |
| 1635 // Abort execution if argument is not undefined or an AllocationSite, enabled | 1634 // Abort execution if argument is not undefined or an AllocationSite, enabled |
| 1636 // via --debug-code. | 1635 // via --debug-code. |
| 1637 void AssertUndefinedOrAllocationSite(Register object, Register scratch); | 1636 void AssertUndefinedOrAllocationSite(Register object, Register scratch); |
| 1638 | 1637 |
| 1639 // Abort execution if reg is not the root value with the given index, | 1638 // Abort execution if reg is not the root value with the given index, |
| 1640 // enabled via --debug-code. | 1639 // enabled via --debug-code. |
| 1641 void AssertIsRoot(Register reg, Heap::RootListIndex index); | 1640 void AssertIsRoot(Register reg, Heap::RootListIndex index); |
| 1642 | 1641 |
| 1643 // --------------------------------------------------------------------------- | 1642 // --------------------------------------------------------------------------- |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 inline MemOperand NativeContextMemOperand() { | 1819 inline MemOperand NativeContextMemOperand() { |
| 1821 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1820 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
| 1822 } | 1821 } |
| 1823 | 1822 |
| 1824 #define ACCESS_MASM(masm) masm-> | 1823 #define ACCESS_MASM(masm) masm-> |
| 1825 | 1824 |
| 1826 } // namespace internal | 1825 } // namespace internal |
| 1827 } // namespace v8 | 1826 } // namespace v8 |
| 1828 | 1827 |
| 1829 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1828 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
| OLD | NEW |