MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / stack_offset

Method stack_offset

lib/asmjit/asmjit/core/func.h:720–721  ·  view source on GitHub ↗

Returns a stack offset of this argument.

Source from the content-addressed store, hash-verified

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); }

Callers 8

dump_func_valueFunction · 0.45
emit_args_assignmentMethod · 0.45
_update_stack_argsMethod · 0.45
format_func_valueFunction · 0.45
move_reg_to_stack_argMethod · 0.45
move_vec_to_ptrMethod · 0.45
move_imm_to_stack_argMethod · 0.45
move_reg_to_stack_argMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected