Class: MachO::LoadCommands::DyldInfoCommand

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command containing the file offsets and sizes of the new compressed form of the information dyld needs to load the image. Corresponds to LC_DYLD_INFO and LC_DYLD_INFO_ONLY.

Constant Summary collapse

FORMAT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

"L=12"
SIZEOF =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

48

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #view

Instance Method Summary collapse

Methods inherited from LoadCommand

create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(view, cmd, cmdsize, rebase_off, rebase_size, bind_off, bind_size, weak_bind_off, weak_bind_size, lazy_bind_off, lazy_bind_size, export_off, export_size) ⇒ DyldInfoCommand

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of DyldInfoCommand.



1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
# File 'lib/macho/load_commands.rb', line 1512

def initialize(view, cmd, cmdsize, rebase_off, rebase_size, bind_off,
               bind_size, weak_bind_off, weak_bind_size, lazy_bind_off,
               lazy_bind_size, export_off, export_size)
  super(view, cmd, cmdsize)
  @rebase_off = rebase_off
  @rebase_size = rebase_size
  @bind_off = bind_off
  @bind_size = bind_size
  @weak_bind_off = weak_bind_off
  @weak_bind_size = weak_bind_size
  @lazy_bind_off = lazy_bind_off
  @lazy_bind_size = lazy_bind_size
  @export_off = export_off
  @export_size = export_size
end

Instance Attribute Details

#bind_offInteger (readonly)

Returns the file offset to the binding information.

Returns:

  • (Integer)

    the file offset to the binding information



1480
1481
1482
# File 'lib/macho/load_commands.rb', line 1480

def bind_off
  @bind_off
end

#bind_sizeInteger (readonly)

Returns the size of the binding information.

Returns:

  • (Integer)

    the size of the binding information



1483
1484
1485
# File 'lib/macho/load_commands.rb', line 1483

def bind_size
  @bind_size
end

#export_offInteger (readonly)

Returns the file offset to the export information.

Returns:

  • (Integer)

    the file offset to the export information



1498
1499
1500
# File 'lib/macho/load_commands.rb', line 1498

def export_off
  @export_off
end

#export_sizeInteger (readonly)

Returns the size of the export information.

Returns:

  • (Integer)

    the size of the export information



1501
1502
1503
# File 'lib/macho/load_commands.rb', line 1501

def export_size
  @export_size
end

#lazy_bind_offInteger (readonly)

Returns the file offset to the lazy binding information.

Returns:

  • (Integer)

    the file offset to the lazy binding information



1492
1493
1494
# File 'lib/macho/load_commands.rb', line 1492

def lazy_bind_off
  @lazy_bind_off
end

#lazy_bind_sizeInteger (readonly)

Returns the size of the lazy binding information.

Returns:

  • (Integer)

    the size of the lazy binding information



1495
1496
1497
# File 'lib/macho/load_commands.rb', line 1495

def lazy_bind_size
  @lazy_bind_size
end

#rebase_offInteger (readonly)

Returns the file offset to the rebase information.

Returns:

  • (Integer)

    the file offset to the rebase information



1474
1475
1476
# File 'lib/macho/load_commands.rb', line 1474

def rebase_off
  @rebase_off
end

#rebase_sizeInteger (readonly)

Returns the size of the rebase information.

Returns:

  • (Integer)

    the size of the rebase information



1477
1478
1479
# File 'lib/macho/load_commands.rb', line 1477

def rebase_size
  @rebase_size
end

#weak_bind_offInteger (readonly)

Returns the file offset to the weak binding information.

Returns:

  • (Integer)

    the file offset to the weak binding information



1486
1487
1488
# File 'lib/macho/load_commands.rb', line 1486

def weak_bind_off
  @weak_bind_off
end

#weak_bind_sizeInteger (readonly)

Returns the size of the weak binding information.

Returns:

  • (Integer)

    the size of the weak binding information



1489
1490
1491
# File 'lib/macho/load_commands.rb', line 1489

def weak_bind_size
  @weak_bind_size
end

Instance Method Details

#to_hHash

Returns a hash representation of this MachO::LoadCommands::DyldInfoCommand.

Returns:



1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
# File 'lib/macho/load_commands.rb', line 1529

def to_h
  {
    "rebase_off" => rebase_off,
    "rebase_size" => rebase_size,
    "bind_off" => bind_off,
    "bind_size" => bind_size,
    "weak_bind_off" => weak_bind_off,
    "weak_bind_size" => weak_bind_size,
    "lazy_bind_off" => lazy_bind_off,
    "lazy_bind_size" => lazy_bind_size,
    "export_off" => export_off,
    "export_size" => export_size,
  }.merge super
end