Function runToNative [src]
Prototype
pub fn runToNative( self: *VirtualMachine, allocator: std.mem.Allocator, pc: u64, cie: std.debug.Dwarf.CommonInformationEntry, fde: std.debug.Dwarf.FrameDescriptionEntry, ) !Row
Parameters
self: *VirtualMachine
allocator: std.mem.Allocator
pc: u64
cie: std.debug.Dwarf.CommonInformationEntry
fde: std.debug.Dwarf.FrameDescriptionEntry
Source
pub fn runToNative(
self: *VirtualMachine,
allocator: std.mem.Allocator,
pc: u64,
cie: std.debug.Dwarf.CommonInformationEntry,
fde: std.debug.Dwarf.FrameDescriptionEntry,
) !Row {
return self.runTo(allocator, pc, cie, fde, @sizeOf(usize), native_endian);
}