Class: MachO::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 =
"VVVVVVVVVVVV"
SIZEOF =
48

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s, #type

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(raw_data, offset, 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.



912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
# File 'lib/macho/load_commands.rb', line 912

def initialize(raw_data, offset, 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(raw_data, offset, 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_offFixnum (readonly)

Returns the file offset to the binding information.

Returns:

  • (Fixnum)

    the file offset to the binding information



885
886
887
# File 'lib/macho/load_commands.rb', line 885

def bind_off
  @bind_off
end

#bind_sizeFixnum (readonly)

Returns the size of the binding information.

Returns:

  • (Fixnum)

    the size of the binding information



888
889
890
# File 'lib/macho/load_commands.rb', line 888

def bind_size
  @bind_size
end

#export_offFixnum (readonly)

Returns the file offset to the export information.

Returns:

  • (Fixnum)

    the file offset to the export information



903
904
905
# File 'lib/macho/load_commands.rb', line 903

def export_off
  @export_off
end

#export_sizeFixnum (readonly)

Returns the size of the export information.

Returns:

  • (Fixnum)

    the size of the export information



906
907
908
# File 'lib/macho/load_commands.rb', line 906

def export_size
  @export_size
end

#lazy_bind_offFixnum (readonly)

Returns the file offset to the lazy binding information.

Returns:

  • (Fixnum)

    the file offset to the lazy binding information



897
898
899
# File 'lib/macho/load_commands.rb', line 897

def lazy_bind_off
  @lazy_bind_off
end

#lazy_bind_sizeFixnum (readonly)

Returns the size of the lazy binding information.

Returns:

  • (Fixnum)

    the size of the lazy binding information



900
901
902
# File 'lib/macho/load_commands.rb', line 900

def lazy_bind_size
  @lazy_bind_size
end

#rebase_offFixnum (readonly)

Returns the file offset to the rebase information.

Returns:

  • (Fixnum)

    the file offset to the rebase information



879
880
881
# File 'lib/macho/load_commands.rb', line 879

def rebase_off
  @rebase_off
end

#rebase_sizeFixnum (readonly)

Returns the size of the rebase information.

Returns:

  • (Fixnum)

    the size of the rebase information



882
883
884
# File 'lib/macho/load_commands.rb', line 882

def rebase_size
  @rebase_size
end

#weak_bind_offFixnum (readonly)

Returns the file offset to the weak binding information.

Returns:

  • (Fixnum)

    the file offset to the weak binding information



891
892
893
# File 'lib/macho/load_commands.rb', line 891

def weak_bind_off
  @weak_bind_off
end

#weak_bind_sizeFixnum (readonly)

Returns the size of the weak binding information.

Returns:

  • (Fixnum)

    the size of the weak binding information



894
895
896
# File 'lib/macho/load_commands.rb', line 894

def weak_bind_size
  @weak_bind_size
end