DW_FORM_GNU_strp_alt -
DW_FORM_sec_offset {
variable _cu_offset_size
- _op .${_cu_offset_size}byte $value
+ _op_offset $_cu_offset_size $value
}
DW_FORM_ref1 -
}
}
- _op .${_cu_offset_size}byte $_strings($value) "strp: $value"
+ _op_offset $_cu_offset_size $_strings($value) "strp: $value"
}
SPECIAL_expr {
_emit $text
}
+ proc _op_offset { size offset {comment ""} } {
+ if { $size == 4 } {
+ _op .4byte $offset $comment
+ } elseif { $size == 8 } {
+ if {[is_64_target]} {
+ _op .8byte $offset $comment
+ } else {
+ # This allows us to emit 64-bit dwarf for
+ # 32-bit targets.
+ if { [target_endianness] == "little" } {
+ _op .4byte $offset "$comment (lsw)"
+ _op .4byte 0 "$comment (msw)"
+ } else {
+ _op .4byte 0 "$comment (msw)"
+ _op .4byte $offset "$comment (lsw)"
+ }
+ }
+ } else {
+ error "Don't know how to handle offset size $size"
+ }
+ }
+
proc _compute_label {name} {
return ".L${name}"
}
if { $dwarf_version == 2 } {
_op .${addr_size}byte $argvec(label)
} else {
- _op .${offset_size}byte $argvec(label)
+ _op_offset $offset_size $argvec(label)
}
_op .sleb128 $argvec(offset)
}
if { $dwarf_version == 2 } {
_op .${addr_size}byte $argvec(label)
} else {
- _op .${offset_size}byte $argvec(label)
+ _op_offset $offset_size $argvec(label)
}
}
if { $_cu_version == 5 } {
_op .byte 0x1 "DW_UT_compile"
_op .byte $_cu_addr_size "Pointer size"
- _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
+ _op_offset $_cu_offset_size $my_abbrevs Abbrevs
} else {
- _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
+ _op_offset $_cu_offset_size $my_abbrevs Abbrevs
_op .byte $_cu_addr_size "Pointer size"
}
}
define_label $start_label
_op .2byte $_cu_version Version
- _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
+ _op_offset $_cu_offset_size $my_abbrevs Abbrevs
_op .byte $_cu_addr_size "Pointer size"
_op .8byte $signature Signature
if { $type_label != "" } {
if { ${with-offset-array} } {
for {set list_idx 0} {$list_idx < $_debug_rnglists_list_count} {incr list_idx} {
set list_label [_compute_list_label $list_idx]
- _op .${_debug_rnglists_offset_size}byte "$list_label - $post_header_label" "offset of list $list_idx"
+ _op_offset $_debug_rnglists_offset_size \
+ "$list_label - $post_header_label" \
+ "offset of list $list_idx"
}
}
if { ${with-offset-array} } {
for {set list_idx 0} {$list_idx < $_debug_loclists_list_count} {incr list_idx} {
set list_label [_compute_list_label $list_idx]
- _op .${_debug_loclists_offset_size}byte "$list_label - $post_header_label" "offset of list $list_idx"
+ _op_offset $_debug_loclists_offset_size \
+ "$list_label - $post_header_label" \
+ "offset of list $list_idx"
}
}
return "little"
}
+# Get the target's default endianness and return it.
+gdb_caching_proc target_endianness {
+ global gdb_prompt
+
+ set me "target_endianness"
+
+ set src { int main() { return 0; } }
+ if {![gdb_simple_compile $me $src executable]} {
+ return 0
+ }
+
+ clean_restart $obj
+ if ![runto_main] {
+ return 0
+ }
+ set res [get_endianness]
+
+ gdb_exit
+ remote_file build delete $obj
+
+ return $res
+}
+
# ROOT and FULL are file names. Returns the relative path from ROOT
# to FULL. Note that FULL must be in a subdirectory of ROOT.
# For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this