Add testcase for stub-method reading in stabs.
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / dwarf.exp
CommitLineData
32d0add0 1# Copyright 2010-2015 Free Software Foundation, Inc.
810cfdbb
YQ
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# Return true if the target supports DWARF-2 and uses gas.
17# For now pick a sampling of likely targets.
18proc dwarf2_support {} {
ec64c9aa
YQ
19 if {[istarget *-*-linux*]
20 || [istarget *-*-gnu*]
21 || [istarget *-*-elf*]
22 || [istarget *-*-openbsd*]
23 || [istarget arm*-*-eabi*]
24 || [istarget arm*-*-symbianelf*]
25 || [istarget powerpc-*-eabi*]} {
26 return 1
810cfdbb
YQ
27 }
28
ec64c9aa 29 return 0
810cfdbb 30}
1d24041a 31
6b4646ce
DE
32# Build an executable from a fission-based .S file.
33# This handles the extra work of splitting the .o into non-dwo and dwo
34# pieces, making sure the .dwo is available if we're using cc-with-tweaks.sh
35# to build a .dwp file.
36# The arguments and results are the same as for build_executable.
37#
38# Current restrictions:
39# - only supports one source file
40# - cannot be run on remote hosts
41
42proc build_executable_from_fission_assembler { testname executable sources options } {
43 verbose -log "build_executable_from_fission_assembler $testname $executable $sources $options"
44 if { [llength $sources] != 1 } {
45 error "Only one source file supported."
46 }
47 if [is_remote host] {
48 error "Remote hosts are not supported."
49 }
50
51 global srcdir subdir
52 set source_file ${srcdir}/${subdir}/${sources}
53 set root_name [file rootname [file tail $source_file]]
54 set output_base [standard_output_file $root_name]
55 set object_file ${output_base}.o
56 set dwo_file ${output_base}.dwo
57 set object_options "object $options"
58 set objcopy [gdb_find_objcopy]
59
60 set result [gdb_compile $source_file $object_file object $options]
61 if { "$result" != "" } {
62 return -1
63 }
64
65 set command "$objcopy --extract-dwo $object_file $dwo_file"
66 verbose -log "Executing $command"
67 set result [catch "exec $command" output]
68 verbose -log "objcopy --extract-dwo output: $output"
69 if { $result == 1 } {
70 return -1
71 }
72
73 set command "$objcopy --strip-dwo $object_file"
74 verbose -log "Executing $command"
75 set result [catch "exec $command" output]
76 verbose -log "objcopy --strip-dwo output: $output"
77 if { $result == 1 } {
78 return -1
79 }
80
81 set result [gdb_compile $object_file $executable executable {nodebug}]
82 if { "$result" != "" } {
83 return -1
84 }
85
86 return 0
87}
88
876c4df9
YQ
89# Return a list of expressions about function FUNC's address and length.
90# The first expression is the address of function FUNC, and the second
91# one is FUNC's length. SRC is the source file having function FUNC.
92# An internal label ${func}_label must be defined inside FUNC:
93#
94# int main (void)
95# {
96# asm ("main_label: .globl main_label");
97# return 0;
98# }
99#
100# This label is needed to compute the start address of function FUNC.
101# If the compiler is gcc, we can do the following to get function start
102# and end address too:
103#
104# asm ("func_start: .globl func_start");
105# static void func (void) {}
106# asm ("func_end: .globl func_end");
107#
108# however, this isn't portable, because other compilers, such as clang,
109# may not guarantee the order of global asms and function. The code
110# becomes:
111#
112# asm ("func_start: .globl func_start");
113# asm ("func_end: .globl func_end");
114# static void func (void) {}
115#
116
117proc function_range { func src } {
118 global decimal gdb_prompt
119
120 set exe [standard_temp_file func_addr[pid].x]
121
122 gdb_compile $src $exe executable {debug}
123
124 gdb_exit
125 gdb_start
126 gdb_load "$exe"
127
128 # Compute the label offset, and we can get the function start address
129 # by "${func}_label - $func_label_offset".
130 set func_label_offset ""
131 set test "p ${func}_label - ${func}"
132 gdb_test_multiple $test $test {
133 -re ".* = ($decimal)\r\n$gdb_prompt $" {
134 set func_label_offset $expect_out(1,string)
135 }
136 }
137
138 # Compute the function length.
139 global hex
140 set func_length ""
141 set test "disassemble $func"
142 gdb_test_multiple $test $test {
143 -re ".*$hex <\\+($decimal)>:\[^\r\n\]+\r\nEnd of assembler dump\.\r\n$gdb_prompt $" {
144 set func_length $expect_out(1,string)
145 }
146 }
147
148 # Compute the size of the last instruction.
03eddd80
YQ
149 if { $func_length == 0 } then {
150 set func_pattern "$func"
151 } else {
152 set func_pattern "$func\\+$func_length"
153 }
876c4df9
YQ
154 set test "x/2i $func+$func_length"
155 gdb_test_multiple $test $test {
03eddd80 156 -re ".*($hex) <$func_pattern>:\[^\r\n\]+\r\n\[ \]+($hex).*\.\r\n$gdb_prompt $" {
876c4df9
YQ
157 set start $expect_out(1,string)
158 set end $expect_out(2,string)
159
160 set func_length [expr $func_length + $end - $start]
161 }
162 }
163
164 return [list "${func}_label - $func_label_offset" $func_length]
165}
166
1d24041a
TT
167# A DWARF assembler.
168#
169# All the variables in this namespace are private to the
170# implementation. Also, any procedure whose name starts with "_" is
171# private as well. Do not use these.
172#
173# Exported functions are documented at their definition.
174#
175# In addition to the hand-written functions documented below, this
176# module automatically generates a function for each DWARF tag. For
177# most tags, two forms are made: a full name, and one with the
178# "DW_TAG_" prefix stripped. For example, you can use either
179# 'DW_TAG_compile_unit' or 'compile_unit' interchangeably.
180#
181# There are two exceptions to this rule: DW_TAG_variable and
182# DW_TAG_namespace. For these, the full name must always be used,
183# as the short name conflicts with Tcl builtins. (Should future
184# versions of Tcl or DWARF add more conflicts, this list will grow.
185# If you want to be safe you should always use the full names.)
186#
187# Each tag procedure is defined like:
188#
189# proc DW_TAG_mumble {{attrs {}} {children {}}} { ... }
190#
191# ATTRS is an optional list of attributes.
192# It is run through 'subst' in the caller's context before processing.
193#
194# Each attribute in the list has one of two forms:
195# 1. { NAME VALUE }
196# 2. { NAME VALUE FORM }
197#
198# In each case, NAME is the attribute's name.
199# This can either be the full name, like 'DW_AT_name', or a shortened
200# name, like 'name'. These are fully equivalent.
201#
876c4df9
YQ
202# Besides DWARF standard attributes, assembler supports 'macro' attribute
203# which will be substituted by one or more standard or macro attributes.
204# supported macro attributes are:
205#
206# - MACRO_AT_range { FUNC FILE }
207# It is substituted by DW_AT_low_pc and DW_AT_high_pc with the start and
208# end address of function FUNC in file FILE.
209#
210# - MACRO_AT_func { FUNC FILE }
211# It is substituted by DW_AT_name with FUNC and MACRO_AT_range.
212#
1d24041a
TT
213# If FORM is given, it should name a DW_FORM_ constant.
214# This can either be the short form, like 'DW_FORM_addr', or a
215# shortened version, like 'addr'. If the form is given, VALUE
216# is its value; see below. In some cases, additional processing
217# is done; for example, DW_FORM_strp manages the .debug_str
218# section automatically.
219#
220# If FORM is 'SPECIAL_expr', then VALUE is treated as a location
221# expression. The effective form is then DW_FORM_block, and VALUE
222# is passed to the (internal) '_location' proc to be translated.
223# This proc implements a miniature DW_OP_ assembler.
224#
225# If FORM is not given, it is guessed:
226# * If VALUE starts with the "@" character, the rest of VALUE is
227# looked up as a DWARF constant, and DW_FORM_sdata is used. For
228# example, '@DW_LANG_c89' could be used.
229# * If VALUE starts with the ":" character, then it is a label
230# reference. The rest of VALUE is taken to be the name of a label,
231# and DW_FORM_ref4 is used. See 'new_label' and 'define_label'.
232# * Otherwise, VALUE is taken to be a string and DW_FORM_string is
f2e0d4b4
DE
233# used. In order to prevent bugs where a numeric value is given but
234# no form is specified, it is an error if the value looks like a number
235# (using Tcl's "string is integer") and no form is provided.
1d24041a
TT
236# More form-guessing functionality may be added.
237#
238# CHILDREN is just Tcl code that can be used to define child DIEs. It
239# is evaluated in the caller's context.
240#
241# Currently this code is missing nice support for CFA handling, and
242# probably other things as well.
243
244namespace eval Dwarf {
245 # True if the module has been initialized.
246 variable _initialized 0
247
248 # Constants from dwarf2.h.
249 variable _constants
250 # DW_AT short names.
251 variable _AT
252 # DW_FORM short names.
253 variable _FORM
254 # DW_OP short names.
255 variable _OP
256
257 # The current output file.
258 variable _output_file
259
4f22ed5c
DE
260 # Note: The _cu_ values here also apply to type units (TUs).
261 # Think of a TU as a special kind of CU.
262
1d24041a
TT
263 # Current CU count.
264 variable _cu_count
265
266 # The current CU's base label.
267 variable _cu_label
268
269 # The current CU's version.
270 variable _cu_version
271
272 # The current CU's address size.
273 variable _cu_addr_size
274 # The current CU's offset size.
275 variable _cu_offset_size
276
277 # Label generation number.
278 variable _label_num
279
280 # The deferred output array. The index is the section name; the
281 # contents hold the data for that section.
282 variable _deferred_output
283
284 # If empty, we should write directly to the output file.
285 # Otherwise, this is the name of a section to write to.
286 variable _defer
287
6c9e2db4
DE
288 # The abbrev section. Typically .debug_abbrev but can be .debug_abbrev.dwo
289 # for Fission.
290 variable _abbrev_section
291
1d24041a
TT
292 # The next available abbrev number in the current CU's abbrev
293 # table.
294 variable _abbrev_num
295
296 # The string table for this assembly. The key is the string; the
297 # value is the label for that string.
298 variable _strings
299
6ef37366
PM
300 # Current .debug_line unit count.
301 variable _line_count
302
303 # Whether a file_name entry was seen.
304 variable _line_saw_file
305
1d24041a
TT
306 proc _process_one_constant {name value} {
307 variable _constants
308 variable _AT
309 variable _FORM
310 variable _OP
311
312 set _constants($name) $value
313
314 if {![regexp "^DW_(\[A-Z\]+)_(\[A-Za-z0-9_\]+)$" $name \
315 ignore prefix name2]} {
316 error "non-matching name: $name"
317 }
318
319 if {$name2 == "lo_user" || $name2 == "hi_user"} {
320 return
321 }
322
323 # We only try to shorten some very common things.
324 # FIXME: CFA?
325 switch -exact -- $prefix {
326 TAG {
327 # Create two procedures for the tag. These call
328 # _handle_DW_TAG with the full tag name baked in; this
329 # does all the actual work.
330 proc $name {{attrs {}} {children {}}} \
331 "_handle_DW_TAG $name \$attrs \$children"
332
333 # Filter out ones that are known to clash.
334 if {$name2 == "variable" || $name2 == "namespace"} {
335 set name2 "tag_$name2"
336 }
337
338 if {[info commands $name2] != {}} {
339 error "duplicate proc name: from $name"
340 }
341
342 proc $name2 {{attrs {}} {children {}}} \
343 "_handle_DW_TAG $name \$attrs \$children"
344 }
345
346 AT {
347 set _AT($name2) $name
348 }
349
350 FORM {
351 set _FORM($name2) $name
352 }
353
354 OP {
355 set _OP($name2) $name
356 }
357
358 default {
359 return
360 }
361 }
362 }
363
364 proc _read_constants {} {
365 global srcdir hex decimal
366 variable _constants
367
368 # DWARF name-matching regexp.
369 set dwrx "DW_\[a-zA-Z0-9_\]+"
370 # Whitespace regexp.
371 set ws "\[ \t\]+"
372
373 set fd [open [file join $srcdir .. .. include dwarf2.h]]
374 while {![eof $fd]} {
375 set line [gets $fd]
376 if {[regexp -- "^${ws}($dwrx)${ws}=${ws}($hex|$decimal),?$" \
377 $line ignore name value ignore2]} {
378 _process_one_constant $name $value
379 }
380 }
381 close $fd
382
383 set fd [open [file join $srcdir .. .. include dwarf2.def]]
384 while {![eof $fd]} {
385 set line [gets $fd]
386 if {[regexp -- \
387 "^DW_\[A-Z_\]+${ws}\\(($dwrx),${ws}($hex|$decimal)\\)$" \
388 $line ignore name value ignore2]} {
389 _process_one_constant $name $value
390 }
391 }
392 close $fd
393
394 set _constants(SPECIAL_expr) $_constants(DW_FORM_block)
395 }
396
397 proc _quote {string} {
398 # FIXME
399 return "\"${string}\\0\""
400 }
401
b6807d98
TT
402 proc _nz_quote {string} {
403 # For now, no quoting is done.
404 return "\"${string}\""
405 }
406
1d24041a
TT
407 proc _handle_DW_FORM {form value} {
408 switch -exact -- $form {
409 DW_FORM_string {
410 _op .ascii [_quote $value]
411 }
412
413 DW_FORM_flag_present {
414 # We don't need to emit anything.
415 }
416
417 DW_FORM_data4 -
418 DW_FORM_ref4 {
419 _op .4byte $value
420 }
421
422 DW_FORM_ref_addr {
423 variable _cu_offset_size
424 variable _cu_version
425 variable _cu_addr_size
426
427 if {$_cu_version == 2} {
428 set size $_cu_addr_size
429 } else {
430 set size $_cu_offset_size
431 }
432
433 _op .${size}byte $value
434 }
435
6ef37366
PM
436 DW_FORM_sec_offset {
437 variable _cu_offset_size
438 _op .${_cu_offset_size}byte $value
439 }
440
1d24041a
TT
441 DW_FORM_ref1 -
442 DW_FORM_flag -
443 DW_FORM_data1 {
444 _op .byte $value
445 }
446
447 DW_FORM_sdata {
448 _op .sleb128 $value
449 }
450
451 DW_FORM_ref_udata -
452 DW_FORM_udata {
453 _op .uleb128 $value
454 }
455
456 DW_FORM_addr {
457 variable _cu_addr_size
458
459 _op .${_cu_addr_size}byte $value
460 }
461
462 DW_FORM_data2 -
463 DW_FORM_ref2 {
464 _op .2byte $value
465 }
466
467 DW_FORM_data8 -
468 DW_FORM_ref8 -
469 DW_FORM_ref_sig8 {
470 _op .8byte $value
471 }
472
473 DW_FORM_strp {
474 variable _strings
475 variable _cu_offset_size
476
477 if {![info exists _strings($value)]} {
478 set _strings($value) [new_label strp]
479 _defer_output .debug_string {
480 define_label $_strings($value)
481 _op .ascii [_quote $value]
482 }
483 }
484
485 _op .${_cu_offset_size}byte $_strings($value) "strp: $value"
486 }
487
488 SPECIAL_expr {
489 set l1 [new_label "expr_start"]
490 set l2 [new_label "expr_end"]
491 _op .uleb128 "$l2 - $l1" "expression"
492 define_label $l1
493 _location $value
494 define_label $l2
495 }
496
b6807d98
TT
497 DW_FORM_block1 {
498 set len [string length $value]
499 if {$len > 255} {
500 error "DW_FORM_block1 length too long"
501 }
502 _op .byte $len
503 _op .ascii [_nz_quote $value]
504 }
505
1d24041a
TT
506 DW_FORM_block2 -
507 DW_FORM_block4 -
508
509 DW_FORM_block -
1d24041a
TT
510
511 DW_FORM_ref2 -
512 DW_FORM_indirect -
1d24041a
TT
513 DW_FORM_exprloc -
514
515 DW_FORM_GNU_addr_index -
516 DW_FORM_GNU_str_index -
517 DW_FORM_GNU_ref_alt -
518 DW_FORM_GNU_strp_alt -
519
520 default {
521 error "unhandled form $form"
522 }
523 }
524 }
525
526 proc _guess_form {value varname} {
527 upvar $varname new_value
528
529 switch -exact -- [string range $value 0 0] {
530 @ {
531 # Constant reference.
532 variable _constants
533
534 set new_value $_constants([string range $value 1 end])
535 # Just the simplest.
536 return DW_FORM_sdata
537 }
538
539 : {
540 # Label reference.
541 variable _cu_label
542
543 set new_value "[string range $value 1 end] - $_cu_label"
544
545 return DW_FORM_ref4
546 }
547
548 default {
549 return DW_FORM_string
550 }
551 }
552 }
553
554 # Map NAME to its canonical form.
555 proc _map_name {name ary} {
556 variable $ary
557
558 if {[info exists ${ary}($name)]} {
559 set name [set ${ary}($name)]
560 }
561
562 return $name
563 }
564
02ad9cf1
YQ
565 proc _handle_attribute { attr_name attr_value attr_form } {
566 variable _abbrev_section
567 variable _constants
568
569 _handle_DW_FORM $attr_form $attr_value
570
571 _defer_output $_abbrev_section {
572 _op .uleb128 $_constants($attr_name) $attr_name
573 _op .uleb128 $_constants($attr_form) $attr_form
574 }
575 }
576
876c4df9
YQ
577 # Handle macro attribute MACRO_AT_range.
578
579 proc _handle_macro_at_range { attr_value } {
580 if {[llength $attr_value] != 2} {
581 error "usage: MACRO_AT_range { func file }"
582 }
583
584 set func [lindex $attr_value 0]
585 set src [lindex $attr_value 1]
586 set result [function_range $func $src]
587
588 _handle_attribute DW_AT_low_pc [lindex $result 0] \
589 DW_FORM_addr
590 _handle_attribute DW_AT_high_pc \
591 "[lindex $result 0] + [lindex $result 1]" DW_FORM_addr
592 }
593
594 # Handle macro attribute MACRO_AT_func.
595
596 proc _handle_macro_at_func { attr_value } {
597 if {[llength $attr_value] != 2} {
598 error "usage: MACRO_AT_func { func file }"
599 }
600 _handle_attribute DW_AT_name [lindex $attr_value 0] DW_FORM_string
601 _handle_macro_at_range $attr_value
602 }
603
1d24041a 604 proc _handle_DW_TAG {tag_name {attrs {}} {children {}}} {
6c9e2db4 605 variable _abbrev_section
1d24041a
TT
606 variable _abbrev_num
607 variable _constants
608
609 set has_children [expr {[string length $children] > 0}]
610 set my_abbrev [incr _abbrev_num]
611
612 # We somewhat wastefully emit a new abbrev entry for each tag.
613 # There's no reason for this other than laziness.
6c9e2db4 614 _defer_output $_abbrev_section {
1d24041a
TT
615 _op .uleb128 $my_abbrev "Abbrev start"
616 _op .uleb128 $_constants($tag_name) $tag_name
617 _op .byte $has_children "has_children"
618 }
619
620 _op .uleb128 $my_abbrev "Abbrev ($tag_name)"
621
622 foreach attr $attrs {
623 set attr_name [_map_name [lindex $attr 0] _AT]
624 set attr_value [uplevel 2 [list subst [lindex $attr 1]]]
876c4df9
YQ
625
626 if { [string equal "MACRO_AT_func" $attr_name] } {
627 _handle_macro_at_func $attr_value
628 } elseif { [string equal "MACRO_AT_range" $attr_name] } {
629 _handle_macro_at_range $attr_value
1d24041a 630 } else {
876c4df9
YQ
631 if {[llength $attr] > 2} {
632 set attr_form [lindex $attr 2]
633 } else {
f2e0d4b4
DE
634 # If the value looks like an integer, a form is required.
635 if [string is integer $attr_value] {
636 error "Integer value requires a form"
637 }
876c4df9
YQ
638 set attr_form [_guess_form $attr_value attr_value]
639 }
640 set attr_form [_map_name $attr_form _FORM]
1d24041a 641
876c4df9
YQ
642 _handle_attribute $attr_name $attr_value $attr_form
643 }
1d24041a
TT
644 }
645
6c9e2db4 646 _defer_output $_abbrev_section {
1d24041a
TT
647 # Terminator.
648 _op .byte 0x0 Terminator
649 _op .byte 0x0 Terminator
650 }
651
652 if {$has_children} {
653 uplevel 2 $children
654
655 # Terminate children.
656 _op .byte 0x0 "Terminate children"
657 }
658 }
659
660 proc _emit {string} {
661 variable _output_file
662 variable _defer
663 variable _deferred_output
664
665 if {$_defer == ""} {
666 puts $_output_file $string
667 } else {
668 append _deferred_output($_defer) ${string}\n
669 }
670 }
671
dc294be5
TT
672 proc _section {name {flags ""} {type ""}} {
673 if {$flags == "" && $type == ""} {
674 _emit " .section $name"
675 } elseif {$type == ""} {
676 _emit " .section $name, \"$flags\""
677 } else {
678 _emit " .section $name, \"$flags\", %$type"
679 }
1d24041a
TT
680 }
681
dc294be5
TT
682 # SECTION_SPEC is a list of arguments to _section.
683 proc _defer_output {section_spec body} {
1d24041a
TT
684 variable _defer
685 variable _deferred_output
686
687 set old_defer $_defer
dc294be5 688 set _defer [lindex $section_spec 0]
1d24041a
TT
689
690 if {![info exists _deferred_output($_defer)]} {
691 set _deferred_output($_defer) ""
dc294be5 692 eval _section $section_spec
1d24041a
TT
693 }
694
695 uplevel $body
696
697 set _defer $old_defer
698 }
699
700 proc _defer_to_string {body} {
701 variable _defer
702 variable _deferred_output
703
704 set old_defer $_defer
705 set _defer temp
706
707 set _deferred_output($_defer) ""
708
709 uplevel $body
710
711 set result $_deferred_output($_defer)
712 unset _deferred_output($_defer)
713
714 set _defer $old_defer
715 return $result
716 }
717
718 proc _write_deferred_output {} {
719 variable _output_file
720 variable _deferred_output
721
722 foreach section [array names _deferred_output] {
723 # The data already has a newline.
724 puts -nonewline $_output_file $_deferred_output($section)
725 }
726
727 # Save some memory.
728 unset _deferred_output
729 }
730
731 proc _op {name value {comment ""}} {
732 set text " ${name} ${value}"
733 if {$comment != ""} {
734 # Try to make stuff line up nicely.
735 while {[string length $text] < 40} {
736 append text " "
737 }
738 append text "/* ${comment} */"
739 }
740 _emit $text
741 }
742
743 proc _compute_label {name} {
744 return ".L${name}"
745 }
746
747 # Return a name suitable for use as a label. If BASE_NAME is
748 # specified, it is incorporated into the label name; this is to
749 # make debugging the generated assembler easier. If BASE_NAME is
750 # not specified a generic default is used. This proc does not
751 # define the label; see 'define_label'. 'new_label' attempts to
752 # ensure that label names are unique.
753 proc new_label {{base_name label}} {
754 variable _label_num
755
756 return [_compute_label ${base_name}[incr _label_num]]
757 }
758
759 # Define a label named NAME. Ordinarily, NAME comes from a call
760 # to 'new_label', but this is not required.
761 proc define_label {name} {
762 _emit "${name}:"
763 }
764
765 # Declare a global label. This is typically used to refer to
766 # labels defined in other files, for example a function defined in
767 # a .c file.
768 proc extern {args} {
769 foreach name $args {
770 _op .global $name
771 }
772 }
773
774 # A higher-level interface to label handling.
775 #
776 # ARGS is a list of label descriptors. Each one is either a
777 # single element, or a list of two elements -- a name and some
778 # text. For each descriptor, 'new_label' is invoked. If the list
779 # form is used, the second element in the list is passed as an
780 # argument. The label name is used to define a variable in the
781 # enclosing scope; this can be used to refer to the label later.
782 # The label name is also used to define a new proc whose name is
783 # the label name plus a trailing ":". This proc takes a body as
784 # an argument and can be used to define the label at that point;
785 # then the body, if any, is evaluated in the caller's context.
786 #
787 # For example:
788 #
789 # declare_labels int_label
790 # something { ... $int_label } ;# refer to the label
791 # int_label: constant { ... } ;# define the label
792 proc declare_labels {args} {
793 foreach arg $args {
794 set name [lindex $arg 0]
795 set text [lindex $arg 1]
796
797 upvar $name label_var
798 if {$text == ""} {
799 set label_var [new_label]
800 } else {
801 set label_var [new_label $text]
802 }
803
804 proc ${name}: {args} [format {
805 define_label %s
806 uplevel $args
807 } $label_var]
808 }
809 }
810
811 # This is a miniature assembler for location expressions. It is
812 # suitable for use in the attributes to a DIE. Its output is
813 # prefixed with "=" to make it automatically use DW_FORM_block.
814 # BODY is split by lines, and each line is taken to be a list.
815 # (FIXME should use 'info complete' here.)
816 # Each list's first element is the opcode, either short or long
817 # forms are accepted.
818 # FIXME argument handling
819 # FIXME move docs
820 proc _location {body} {
821 variable _constants
b6807d98
TT
822 variable _cu_label
823 variable _cu_addr_size
5bd1ef56 824 variable _cu_offset_size
1d24041a
TT
825
826 foreach line [split $body \n] {
4ff709eb
TT
827 # Ignore blank lines, and allow embedded comments.
828 if {[lindex $line 0] == "" || [regexp -- {^[ \t]*#} $line]} {
1d24041a
TT
829 continue
830 }
831 set opcode [_map_name [lindex $line 0] _OP]
832 _op .byte $_constants($opcode) $opcode
833
834 switch -exact -- $opcode {
835 DW_OP_addr {
1d24041a
TT
836 _op .${_cu_addr_size}byte [lindex $line 1]
837 }
838
4ff709eb 839 DW_OP_pick -
1d24041a
TT
840 DW_OP_const1u -
841 DW_OP_const1s {
842 _op .byte [lindex $line 1]
843 }
844
845 DW_OP_const2u -
846 DW_OP_const2s {
847 _op .2byte [lindex $line 1]
848 }
849
850 DW_OP_const4u -
851 DW_OP_const4s {
852 _op .4byte [lindex $line 1]
853 }
854
855 DW_OP_const8u -
856 DW_OP_const8s {
857 _op .8byte [lindex $line 1]
858 }
859
860 DW_OP_constu {
861 _op .uleb128 [lindex $line 1]
862 }
863 DW_OP_consts {
864 _op .sleb128 [lindex $line 1]
865 }
866
16b5a7cb
AB
867 DW_OP_plus_uconst {
868 _op .uleb128 [lindex $line 1]
869 }
870
5bd1ef56
TT
871 DW_OP_piece {
872 _op .uleb128 [lindex $line 1]
873 }
874
16b5a7cb
AB
875 DW_OP_bit_piece {
876 _op .uleb128 [lindex $line 1]
877 _op .uleb128 [lindex $line 2]
878 }
879
4ff709eb
TT
880 DW_OP_skip -
881 DW_OP_bra {
882 _op .2byte [lindex $line 1]
883 }
884
b6807d98
TT
885 DW_OP_GNU_implicit_pointer {
886 if {[llength $line] != 3} {
887 error "usage: DW_OP_GNU_implicit_pointer LABEL OFFSET"
888 }
889
890 # Here label is a section offset.
891 set label [lindex $line 1]
5bd1ef56 892 _op .${_cu_offset_size}byte $label
b6807d98
TT
893 _op .sleb128 [lindex $line 2]
894 }
895
b39a8faf
YQ
896 DW_OP_deref_size {
897 if {[llength $line] != 2} {
898 error "usage: DW_OP_deref_size SIZE"
899 }
900
901 _op .byte [lindex $line 1]
902 }
903
1d24041a
TT
904 default {
905 if {[llength $line] > 1} {
906 error "Unimplemented: operands in location for $opcode"
907 }
908 }
909 }
910 }
911 }
912
913 # Emit a DWARF CU.
6c9e2db4
DE
914 # OPTIONS is a list with an even number of elements containing
915 # option-name and option-value pairs.
916 # Current options are:
917 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
918 # default = 0 (32-bit)
919 # version n - DWARF version number to emit
920 # default = 4
e630b974
TT
921 # addr_size n - the size of addresses, 32, 64, or default
922 # default = default
6c9e2db4
DE
923 # fission 0|1 - boolean indicating if generating Fission debug info
924 # default = 0
1d24041a
TT
925 # BODY is Tcl code that emits the DIEs which make up the body of
926 # the CU. It is evaluated in the caller's context.
6c9e2db4 927 proc cu {options body} {
1d24041a 928 variable _cu_count
6c9e2db4 929 variable _abbrev_section
1d24041a
TT
930 variable _abbrev_num
931 variable _cu_label
932 variable _cu_version
933 variable _cu_addr_size
934 variable _cu_offset_size
935
6c9e2db4
DE
936 # Establish the defaults.
937 set is_64 0
938 set _cu_version 4
e630b974 939 set _cu_addr_size default
6c9e2db4
DE
940 set fission 0
941 set section ".debug_info"
942 set _abbrev_section ".debug_abbrev"
943
944 foreach { name value } $options {
945 switch -exact -- $name {
946 is_64 { set is_64 $value }
947 version { set _cu_version $value }
948 addr_size { set _cu_addr_size $value }
949 fission { set fission $value }
950 default { error "unknown option $name" }
951 }
952 }
e630b974
TT
953 if {$_cu_addr_size == "default"} {
954 if {[is_64_target]} {
955 set _cu_addr_size 8
956 } else {
957 set _cu_addr_size 4
958 }
959 }
6c9e2db4
DE
960 set _cu_offset_size [expr { $is_64 ? 8 : 4 }]
961 if { $fission } {
962 set section ".debug_info.dwo"
963 set _abbrev_section ".debug_abbrev.dwo"
1d24041a 964 }
1d24041a 965
6c9e2db4 966 _section $section
1d24041a
TT
967
968 set cu_num [incr _cu_count]
969 set my_abbrevs [_compute_label "abbrev${cu_num}_begin"]
970 set _abbrev_num 1
971
972 set _cu_label [_compute_label "cu${cu_num}_begin"]
973 set start_label [_compute_label "cu${cu_num}_start"]
974 set end_label [_compute_label "cu${cu_num}_end"]
975
976 define_label $_cu_label
977 if {$is_64} {
978 _op .4byte 0xffffffff
979 _op .8byte "$end_label - $start_label"
980 } else {
981 _op .4byte "$end_label - $start_label"
982 }
983 define_label $start_label
6c9e2db4 984 _op .2byte $_cu_version Version
41c77605 985 _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
6c9e2db4 986 _op .byte $_cu_addr_size "Pointer size"
1d24041a 987
6c9e2db4 988 _defer_output $_abbrev_section {
1d24041a
TT
989 define_label $my_abbrevs
990 }
991
992 uplevel $body
993
6c9e2db4 994 _defer_output $_abbrev_section {
1d24041a
TT
995 # Emit the terminator.
996 _op .byte 0x0 Terminator
997 _op .byte 0x0 Terminator
998 }
999
1000 define_label $end_label
1001 }
1002
4f22ed5c 1003 # Emit a DWARF TU.
6c9e2db4
DE
1004 # OPTIONS is a list with an even number of elements containing
1005 # option-name and option-value pairs.
1006 # Current options are:
1007 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1008 # default = 0 (32-bit)
1009 # version n - DWARF version number to emit
1010 # default = 4
e630b974
TT
1011 # addr_size n - the size of addresses, 32, 64, or default
1012 # default = default
6c9e2db4
DE
1013 # fission 0|1 - boolean indicating if generating Fission debug info
1014 # default = 0
4f22ed5c 1015 # SIGNATURE is the 64-bit signature of the type.
6c9e2db4
DE
1016 # TYPE_LABEL is the label of the type defined by this TU,
1017 # or "" if there is no type (i.e., type stubs in Fission).
4f22ed5c 1018 # BODY is Tcl code that emits the DIEs which make up the body of
6c9e2db4
DE
1019 # the TU. It is evaluated in the caller's context.
1020 proc tu {options signature type_label body} {
4f22ed5c 1021 variable _cu_count
6c9e2db4 1022 variable _abbrev_section
4f22ed5c
DE
1023 variable _abbrev_num
1024 variable _cu_label
1025 variable _cu_version
1026 variable _cu_addr_size
1027 variable _cu_offset_size
1028
6c9e2db4
DE
1029 # Establish the defaults.
1030 set is_64 0
1031 set _cu_version 4
e630b974 1032 set _cu_addr_size default
6c9e2db4
DE
1033 set fission 0
1034 set section ".debug_types"
1035 set _abbrev_section ".debug_abbrev"
1036
1037 foreach { name value } $options {
1038 switch -exact -- $name {
1039 is_64 { set is_64 $value }
1040 version { set _cu_version $value }
1041 addr_size { set _cu_addr_size $value }
1042 fission { set fission $value }
1043 default { error "unknown option $name" }
1044 }
1045 }
e630b974
TT
1046 if {$_cu_addr_size == "default"} {
1047 if {[is_64_target]} {
1048 set _cu_addr_size 8
1049 } else {
1050 set _cu_addr_size 4
1051 }
1052 }
6c9e2db4
DE
1053 set _cu_offset_size [expr { $is_64 ? 8 : 4 }]
1054 if { $fission } {
1055 set section ".debug_types.dwo"
1056 set _abbrev_section ".debug_abbrev.dwo"
4f22ed5c 1057 }
4f22ed5c 1058
6c9e2db4 1059 _section $section
4f22ed5c
DE
1060
1061 set cu_num [incr _cu_count]
1062 set my_abbrevs [_compute_label "abbrev${cu_num}_begin"]
1063 set _abbrev_num 1
1064
1065 set _cu_label [_compute_label "cu${cu_num}_begin"]
1066 set start_label [_compute_label "cu${cu_num}_start"]
1067 set end_label [_compute_label "cu${cu_num}_end"]
1068
1069 define_label $_cu_label
1070 if {$is_64} {
1071 _op .4byte 0xffffffff
1072 _op .8byte "$end_label - $start_label"
1073 } else {
1074 _op .4byte "$end_label - $start_label"
1075 }
1076 define_label $start_label
6c9e2db4 1077 _op .2byte $_cu_version Version
41c77605 1078 _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
6c9e2db4 1079 _op .byte $_cu_addr_size "Pointer size"
4f22ed5c 1080 _op .8byte $signature Signature
6c9e2db4
DE
1081 if { $type_label != "" } {
1082 uplevel declare_labels $type_label
1083 upvar $type_label my_type_label
1084 if {$is_64} {
1085 _op .8byte "$my_type_label - $_cu_label"
1086 } else {
1087 _op .4byte "$my_type_label - $_cu_label"
1088 }
4f22ed5c 1089 } else {
6c9e2db4
DE
1090 if {$is_64} {
1091 _op .8byte 0
1092 } else {
1093 _op .4byte 0
1094 }
4f22ed5c
DE
1095 }
1096
6c9e2db4 1097 _defer_output $_abbrev_section {
4f22ed5c
DE
1098 define_label $my_abbrevs
1099 }
1100
1101 uplevel $body
1102
6c9e2db4 1103 _defer_output $_abbrev_section {
4f22ed5c
DE
1104 # Emit the terminator.
1105 _op .byte 0x0 Terminator
1106 _op .byte 0x0 Terminator
1107 }
1108
1109 define_label $end_label
1110 }
1111
6ef37366
PM
1112 # Emit a DWARF .debug_line unit.
1113 # OPTIONS is a list with an even number of elements containing
1114 # option-name and option-value pairs.
1115 # Current options are:
1116 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1117 # default = 0 (32-bit)
1118 # version n - DWARF version number to emit
1119 # default = 4
1120 # addr_size n - the size of addresses, 32, 64, or default
1121 # default = default
1122 #
1123 # LABEL is the label of the current unit (which is probably
1124 # referenced by a DW_AT_stmt_list), or "" if there is no such
1125 # label.
1126 #
1127 # BODY is Tcl code that emits the parts which make up the body of
1128 # the line unit. It is evaluated in the caller's context. The
1129 # following commands are available for the BODY section:
1130 #
1131 # include_dir "dirname" -- adds a new include directory
1132 #
1133 # file_name "file.c" idx -- adds a new file name. IDX is a
1134 # 1-based index referencing an include directory or 0 for
1135 # current directory.
1136
1137 proc lines {options label body} {
1138 variable _line_count
1139 variable _line_saw_file
1140
1141 # Establish the defaults.
1142 set is_64 0
1143 set _unit_version 4
1144 set _unit_addr_size default
1145
1146 foreach { name value } $options {
1147 switch -exact -- $name {
1148 is_64 { set is_64 $value }
1149 version { set _unit_version $value }
1150 addr_size { set _unit_addr_size $value }
1151 default { error "unknown option $name" }
1152 }
1153 }
1154 if {$_unit_addr_size == "default"} {
1155 if {[is_64_target]} {
1156 set _unit_addr_size 8
1157 } else {
1158 set _unit_addr_size 4
1159 }
1160 }
1161
1162 set unit_num [incr _line_count]
1163
1164 set section ".debug_line"
1165 _section $section
1166
1167 if { "$label" != "" } {
1168 # Define the user-provided label at this point.
1169 $label:
1170 }
1171
1172 set unit_len_label [_compute_label "line${_line_count}_start"]
1173 set unit_end_label [_compute_label "line${_line_count}_end"]
1174 set header_len_label [_compute_label "line${_line_count}_header_start"]
1175 set header_end_label [_compute_label "line${_line_count}_header_end"]
1176
1177 if {$is_64} {
1178 _op .4byte 0xffffffff
1179 _op .8byte "$unit_end_label - $unit_len_label" "unit_length"
1180 } else {
1181 _op .4byte "$unit_end_label - $unit_len_label" "unit_length"
1182 }
1183
1184 define_label $unit_len_label
1185
1186 _op .2byte $_unit_version version
1187
1188 if {$is_64} {
1189 _op .8byte "$header_end_label - $header_len_label" "header_length"
1190 } else {
1191 _op .4byte "$header_end_label - $header_len_label" "header_length"
1192 }
1193
1194 define_label $header_len_label
1195
1196 _op .byte 1 "minimum_instruction_length"
1197 _op .byte 0 "default_is_stmt"
1198 _op .byte 1 "line_base"
1199 _op .byte 1 "line_range"
1200 _op .byte 1 "opcode_base"
1201 # Since we emit opcode_base==1, we skip
1202 # standard_opcode_length table altogether.
1203
1204 proc include_dir {dirname} {
1205 _op .ascii [_quote $dirname]
1206 }
1207
1208 proc file_name {filename diridx} {
1209 variable _line_saw_file
1210 if "! $_line_saw_file" {
1211 # Terminate the dir list.
1212 _op .byte 0 "Terminator."
1213 set _line_saw_file 1
1214 }
1215
1216 _op .ascii [_quote $filename]
1217 _op .sleb128 $diridx
1218 _op .sleb128 0 "mtime"
1219 _op .sleb128 0 "length"
1220 }
1221
1222 uplevel $body
1223
1224 rename include_dir ""
1225 rename file_name ""
1226
1227 # Terminate dir list if we saw no files.
1228 if "! $_line_saw_file" {
1229 _op .byte 0 "Terminator."
1230 }
1231
1232 # Terminate the file list.
1233 _op .byte 0 "Terminator."
1234
1235 define_label $header_end_label
1236 define_label $unit_end_label
1237 }
1238
1d24041a
TT
1239 proc _empty_array {name} {
1240 upvar $name the_array
1241
1242 catch {unset the_array}
1243 set the_array(_) {}
1244 unset the_array(_)
1245 }
1246
dc294be5
TT
1247 # Emit a .gnu_debugaltlink section with the given file name and
1248 # build-id. The buildid should be represented as a hexadecimal
1249 # string, like "ffeeddcc".
1250 proc gnu_debugaltlink {filename buildid} {
1251 _defer_output .gnu_debugaltlink {
1252 _op .ascii [_quote $filename]
1253 foreach {a b} [split $buildid {}] {
1254 _op .byte 0x$a$b
1255 }
1256 }
1257 }
1258
1259 proc _note {type name hexdata} {
1260 set namelen [expr [string length $name] + 1]
1261
1262 # Name size.
1263 _op .4byte $namelen
1264 # Data size.
1265 _op .4byte [expr [string length $hexdata] / 2]
1266 # Type.
1267 _op .4byte $type
1268 # The name.
1269 _op .ascii [_quote $name]
1270 # Alignment.
1271 set align 2
1272 set total [expr {($namelen + (1 << $align) - 1) & (-1 << $align)}]
1273 for {set i $namelen} {$i < $total} {incr i} {
1274 _op .byte 0
1275 }
1276 # The data.
1277 foreach {a b} [split $hexdata {}] {
1278 _op .byte 0x$a$b
1279 }
1280 }
1281
1282 # Emit a note section holding the given build-id.
1283 proc build_id {buildid} {
1284 _defer_output {.note.gnu.build-id a note} {
1285 # From elf/common.h.
1286 set NT_GNU_BUILD_ID 3
1287
1288 _note $NT_GNU_BUILD_ID GNU $buildid
1289 }
1290 }
1291
1d24041a
TT
1292 # The top-level interface to the DWARF assembler.
1293 # FILENAME is the name of the file where the generated assembly
1294 # code is written.
1295 # BODY is Tcl code to emit the assembly. It is evaluated via
1296 # "eval" -- not uplevel as you might expect, because it is
1297 # important to run the body in the Dwarf namespace.
1298 #
1299 # A typical invocation is something like:
1300 # Dwarf::assemble $file {
1301 # cu 0 2 8 {
1302 # compile_unit {
1303 # ...
1304 # }
1305 # }
1306 # cu 0 2 8 {
1307 # ...
1308 # }
1309 # }
1310 proc assemble {filename body} {
1311 variable _initialized
1312 variable _output_file
1313 variable _deferred_output
1314 variable _defer
1315 variable _label_num
1316 variable _strings
d65f0a9c 1317 variable _cu_count
6ef37366
PM
1318 variable _line_count
1319 variable _line_saw_file
1d24041a
TT
1320
1321 if {!$_initialized} {
1322 _read_constants
1323 set _initialized 1
1324 }
1325
1326 set _output_file [open $filename w]
1327 set _cu_count 0
1328 _empty_array _deferred_output
1329 set _defer ""
1330 set _label_num 0
1331 _empty_array _strings
1332
6ef37366
PM
1333 set _line_count 0
1334 set _line_saw_file 0
1335
1d24041a
TT
1336 # Not "uplevel" here, because we want to evaluate in this
1337 # namespace. This is somewhat bad because it means we can't
1338 # readily refer to outer variables.
1339 eval $body
1340
1341 _write_deferred_output
1342
1343 catch {close $_output_file}
1344 set _output_file {}
1345 }
1346}
This page took 0.551061 seconds and 4 git commands to generate.