DoxigAlpha

writeConstx

Function parameters

Parameters

#
writer:anytype
debug_addr_offset:anytype

Expressions can be evaluated in different contexts, each requiring its own set of inputs.

Types

#
Context
Expressions can be evaluated in different contexts, each requiring its own set of inputs.

A stack machine that can decode and run DWARF expressions.

Functions

#
StackMachine
A stack machine that can decode and run DWARF expressions.

Error sets in this namespace

Error Sets

#

Source

Implementation

#
pub fn writeConstx(writer: anytype, debug_addr_offset: anytype) !void {
    try writer.writeByte(OP.constx);
    try leb.writeUleb128(writer, debug_addr_offset);
}