struct Debug::DWARF::LineNumbers::Register
Overview
The state machine registers used to decompress the line number sequences.
:nodoc:
Defined in:
debug/dwarf/line_numbers.crConstructors
Instance Method Summary
-
#address : UInt64
The Program Counter (PC) value corresponding to a machine instruction generated by the compiler.
-
#address=(address : UInt64)
The Program Counter (PC) value corresponding to a machine instruction generated by the compiler.
-
#basic_block : Bool
Indicates that the instruction is the beginning of a basic block.
-
#basic_block=(basic_block : Bool)
Indicates that the instruction is the beginning of a basic block.
-
#column : UInt32
Column number within the source file.
-
#column=(column : UInt32)
Column number within the source file.
-
#discriminator : UInt32
Identifies the block to which the instruction belongs.
-
#discriminator=(discriminator : UInt32)
Identifies the block to which the instruction belongs.
-
#end_sequence : Bool
Terminates a sequence of lines.
-
#end_sequence=(end_sequence : Bool)
Terminates a sequence of lines.
-
#epilogue_begin : Bool
Indicates the the instruction is one where execution should be suspended (for an exit breakpoint).
-
#epilogue_begin=(epilogue_begin : Bool)
Indicates the the instruction is one where execution should be suspended (for an exit breakpoint).
-
#file : UInt32
Source file for the instruction.
-
#file=(file : UInt32)
Source file for the instruction.
-
#is_stmt : Bool
Recommended breakpoint location.
-
#is_stmt=(is_stmt : Bool)
Recommended breakpoint location.
-
#isa : UInt32
Applicable Instruction Set Architecture for the instruction.
-
#isa=(isa : UInt32)
Applicable Instruction Set Architecture for the instruction.
-
#line : UInt32
Line number within the source file.
-
#line=(line : UInt32)
Line number within the source file.
-
#op_index : UInt32
The index of an operation inside a Very Long Instruction Word (VLIW) instruction.
-
#op_index=(op_index : UInt32)
The index of an operation inside a Very Long Instruction Word (VLIW) instruction.
-
#prologue_end : Bool
Indicates the the instruction is one where execution should be suspended (for an entry breakpoint).
-
#prologue_end=(prologue_end : Bool)
Indicates the the instruction is one where execution should be suspended (for an entry breakpoint).
- #reset
Instance methods inherited from struct Struct
==(other : self) : Bool
==,
hash : Int32
hash,
inspect(io : IO) : Nil
inspect,
pretty_print(pp) : Nil
pretty_print,
to_s(io)
to_s
Instance methods inherited from struct Value
==(other)
==,
dup
dup
Instance methods inherited from class Object
!=(other)
!=,
!~(other)
!~,
==(other)
==,
===(other : JSON::Any)===(other : YAML::Any)
===(other) ===, =~(other) =~, class class, dup dup, hash hash, inspect(io : IO)
inspect inspect, itself itself, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, tap(&block) tap, to_json(io : IO)
to_json to_json, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ") to_pretty_json, to_s
to_s(io : IO) to_s, to_yaml(io : IO)
to_yaml to_yaml, try(&block) try, unsafe_as(type : T.class) forall T unsafe_as
Constructor methods inherited from class Object
from_json(string_or_io, root : String) : selffrom_json(string_or_io) : self from_json, from_yaml(string_or_io) : self from_yaml
Constructor Detail
Instance Method Detail
The Program Counter (PC) value corresponding to a machine instruction generated by the compiler.
The Program Counter (PC) value corresponding to a machine instruction generated by the compiler.
Indicates that the instruction is the beginning of a basic block.
Indicates that the instruction is the beginning of a basic block.
Column number within the source file. Starting at 1; the value 0 means that a statement begins at the "left edge" of the line.
Column number within the source file. Starting at 1; the value 0 means that a statement begins at the "left edge" of the line.
Identifies the block to which the instruction belongs.
Terminates a sequence of lines. Other information in the same row (of the decoded matrix) isn't meaningful.
Terminates a sequence of lines. Other information in the same row (of the decoded matrix) isn't meaningful.
Indicates the the instruction is one where execution should be suspended (for an exit breakpoint).
Indicates the the instruction is one where execution should be suspended (for an exit breakpoint).
Line number within the source file. Starting at 1; the value 0 means that the instruction can't be attributed to any source line.
Line number within the source file. Starting at 1; the value 0 means that the instruction can't be attributed to any source line.
The index of an operation inside a Very Long Instruction Word (VLIW)
instruction. Together with #address
they reference an individual
operation.
The index of an operation inside a Very Long Instruction Word (VLIW)
instruction. Together with #address
they reference an individual
operation.
Indicates the the instruction is one where execution should be suspended (for an entry breakpoint).
Indicates the the instruction is one where execution should be suspended (for an entry breakpoint).