structstd.debug.Dwarf.expression.Options[src]

Fields

addr_size: u8 = @sizeOf(usize)

The address size of the target architecture

endian: std.builtin.Endian = native_endian

Endianness of the target architecture

call_frame_context: bool = false

Restrict the stack machine to a subset of opcodes used in call frame instructions

Source Code

Source code
pub const Options = struct {
    /// The address size of the target architecture
    addr_size: u8 = @sizeOf(usize),
    /// Endianness of the target architecture
    endian: std.builtin.Endian = native_endian,
    /// Restrict the stack machine to a subset of opcodes used in call frame instructions
    call_frame_context: bool = false,
}