Returns a stack offset of this argument.
| 718 | |
| 719 | //! Returns a stack offset of this argument. |
| 720 | [[nodiscard]] |
| 721 | ASMJIT_INLINE_NODEBUG int32_t stack_offset() const noexcept { return int32_t(_data & kStackOffsetMask) >> kStackOffsetShift; } |
| 722 | |
| 723 | //! Sets a stack offset of this argument. |
| 724 | ASMJIT_INLINE_NODEBUG void set_stack_offset(int32_t offset) noexcept { _replace_value(kStackOffsetMask, uint32_t(offset) << kStackOffsetShift); } |
no outgoing calls
no test coverage detected