Use DW_FORM_exprloc in testsuite Dwarf Assembler for DWARF version 4+.
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / dwarf.exp
1 # Copyright 2010-2020 Free Software Foundation, Inc.
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.
18 proc dwarf2_support {} {
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
27 }
28
29 return 0
30 }
31
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
42 proc 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 $options]
82 if { "$result" != "" } {
83 return -1
84 }
85
86 return 0
87 }
88
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
117 proc function_range { func src {options {debug}} } {
118 global decimal gdb_prompt
119
120 set exe [standard_temp_file func_addr[pid].x]
121
122 gdb_compile $src $exe executable $options
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.
149 if { $func_length == 0 } then {
150 set func_pattern "$func"
151 } else {
152 set func_pattern "$func\\+$func_length"
153 }
154 set test "x/2i $func+$func_length"
155 gdb_test_multiple $test $test {
156 -re ".*($hex) <$func_pattern>:\[^\r\n\]+\r\n\[ \]+($hex).*\.\r\n$gdb_prompt $" {
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
167 # Extract the start, length, and end for function called NAME and
168 # create suitable variables in the callers scope.
169 proc get_func_info { name {options {debug}} } {
170 global srcdir subdir srcfile
171
172 upvar 1 "${name}_start" func_start
173 upvar 1 "${name}_len" func_len
174 upvar 1 "${name}_end" func_end
175
176 lassign [function_range ${name} \
177 [list ${srcdir}/${subdir}/$srcfile] \
178 ${options}] \
179 func_start func_len
180 set func_end "$func_start + $func_len"
181 }
182
183 # A DWARF assembler.
184 #
185 # All the variables in this namespace are private to the
186 # implementation. Also, any procedure whose name starts with "_" is
187 # private as well. Do not use these.
188 #
189 # Exported functions are documented at their definition.
190 #
191 # In addition to the hand-written functions documented below, this
192 # module automatically generates a function for each DWARF tag. For
193 # most tags, two forms are made: a full name, and one with the
194 # "DW_TAG_" prefix stripped. For example, you can use either
195 # 'DW_TAG_compile_unit' or 'compile_unit' interchangeably.
196 #
197 # There are two exceptions to this rule: DW_TAG_variable and
198 # DW_TAG_namespace. For these, the full name must always be used,
199 # as the short name conflicts with Tcl builtins. (Should future
200 # versions of Tcl or DWARF add more conflicts, this list will grow.
201 # If you want to be safe you should always use the full names.)
202 #
203 # Each tag procedure is defined like:
204 #
205 # proc DW_TAG_mumble {{attrs {}} {children {}}} { ... }
206 #
207 # ATTRS is an optional list of attributes.
208 # It is run through 'subst' in the caller's context before processing.
209 #
210 # Each attribute in the list has one of two forms:
211 # 1. { NAME VALUE }
212 # 2. { NAME VALUE FORM }
213 #
214 # In each case, NAME is the attribute's name.
215 # This can either be the full name, like 'DW_AT_name', or a shortened
216 # name, like 'name'. These are fully equivalent.
217 #
218 # Besides DWARF standard attributes, assembler supports 'macro' attribute
219 # which will be substituted by one or more standard or macro attributes.
220 # supported macro attributes are:
221 #
222 # - MACRO_AT_range { FUNC }
223 # It is substituted by DW_AT_low_pc and DW_AT_high_pc with the start and
224 # end address of function FUNC in file $srcdir/$subdir/$srcfile.
225 #
226 # - MACRO_AT_func { FUNC }
227 # It is substituted by DW_AT_name with FUNC and MACRO_AT_range.
228 #
229 # If FORM is given, it should name a DW_FORM_ constant.
230 # This can either be the short form, like 'DW_FORM_addr', or a
231 # shortened version, like 'addr'. If the form is given, VALUE
232 # is its value; see below. In some cases, additional processing
233 # is done; for example, DW_FORM_strp manages the .debug_str
234 # section automatically.
235 #
236 # If FORM is 'SPECIAL_expr', then VALUE is treated as a location
237 # expression. The effective form is then DW_FORM_block or DW_FORM_exprloc
238 # for DWARF version >= 4, and VALUE is passed to the (internal)
239 # '_location' proc to be translated.
240 # This proc implements a miniature DW_OP_ assembler.
241 #
242 # If FORM is not given, it is guessed:
243 # * If VALUE starts with the "@" character, the rest of VALUE is
244 # looked up as a DWARF constant, and DW_FORM_sdata is used. For
245 # example, '@DW_LANG_c89' could be used.
246 # * If VALUE starts with the ":" character, then it is a label
247 # reference. The rest of VALUE is taken to be the name of a label,
248 # and DW_FORM_ref4 is used. See 'new_label' and 'define_label'.
249 # * If VALUE starts with the "%" character, then it is a label
250 # reference too, but DW_FORM_ref_addr is used.
251 # * Otherwise, if the attribute name has a default form (f.i. DW_FORM_addr for
252 # DW_AT_low_pc), then that one is used.
253 # * Otherwise, an error is reported. Either specify a form explicitly, or
254 # add a default for the the attribute name in _default_form.
255 #
256 # CHILDREN is just Tcl code that can be used to define child DIEs. It
257 # is evaluated in the caller's context.
258 #
259 # Currently this code is missing nice support for CFA handling, and
260 # probably other things as well.
261
262 namespace eval Dwarf {
263 # True if the module has been initialized.
264 variable _initialized 0
265
266 # Constants from dwarf2.h.
267 variable _constants
268 # DW_AT short names.
269 variable _AT
270 # DW_FORM short names.
271 variable _FORM
272 # DW_OP short names.
273 variable _OP
274
275 # The current output file.
276 variable _output_file
277
278 # Note: The _cu_ values here also apply to type units (TUs).
279 # Think of a TU as a special kind of CU.
280
281 # Current CU count.
282 variable _cu_count
283
284 # The current CU's base label.
285 variable _cu_label
286
287 # The current CU's version.
288 variable _cu_version
289
290 # The current CU's address size.
291 variable _cu_addr_size
292 # The current CU's offset size.
293 variable _cu_offset_size
294
295 # Label generation number.
296 variable _label_num
297
298 # The deferred output array. The index is the section name; the
299 # contents hold the data for that section.
300 variable _deferred_output
301
302 # If empty, we should write directly to the output file.
303 # Otherwise, this is the name of a section to write to.
304 variable _defer
305
306 # The abbrev section. Typically .debug_abbrev but can be .debug_abbrev.dwo
307 # for Fission.
308 variable _abbrev_section
309
310 # The next available abbrev number in the current CU's abbrev
311 # table.
312 variable _abbrev_num
313
314 # The string table for this assembly. The key is the string; the
315 # value is the label for that string.
316 variable _strings
317
318 # Current .debug_line unit count.
319 variable _line_count
320
321 # Whether a file_name entry was seen.
322 variable _line_saw_file
323
324 # Whether a line table program has been seen.
325 variable _line_saw_program
326
327 # A Label for line table header generation.
328 variable _line_header_end_label
329
330 # The address size for debug ranges section.
331 variable _debug_ranges_64_bit
332
333 proc _process_one_constant {name value} {
334 variable _constants
335 variable _AT
336 variable _FORM
337 variable _OP
338
339 set _constants($name) $value
340
341 if {![regexp "^DW_(\[A-Z\]+)_(\[A-Za-z0-9_\]+)$" $name \
342 ignore prefix name2]} {
343 error "non-matching name: $name"
344 }
345
346 if {$name2 == "lo_user" || $name2 == "hi_user"} {
347 return
348 }
349
350 # We only try to shorten some very common things.
351 # FIXME: CFA?
352 switch -exact -- $prefix {
353 TAG {
354 # Create two procedures for the tag. These call
355 # _handle_DW_TAG with the full tag name baked in; this
356 # does all the actual work.
357 proc $name {{attrs {}} {children {}}} \
358 "_handle_DW_TAG $name \$attrs \$children"
359
360 # Filter out ones that are known to clash.
361 if {$name2 == "variable" || $name2 == "namespace"} {
362 set name2 "tag_$name2"
363 }
364
365 if {[info commands $name2] != {}} {
366 error "duplicate proc name: from $name"
367 }
368
369 proc $name2 {{attrs {}} {children {}}} \
370 "_handle_DW_TAG $name \$attrs \$children"
371 }
372
373 AT {
374 set _AT($name2) $name
375 }
376
377 FORM {
378 set _FORM($name2) $name
379 }
380
381 OP {
382 set _OP($name2) $name
383 }
384
385 default {
386 return
387 }
388 }
389 }
390
391 proc _read_constants {} {
392 global srcdir hex decimal
393
394 # DWARF name-matching regexp.
395 set dwrx "DW_\[a-zA-Z0-9_\]+"
396 # Whitespace regexp.
397 set ws "\[ \t\]+"
398
399 set fd [open [file join $srcdir .. .. include dwarf2.h]]
400 while {![eof $fd]} {
401 set line [gets $fd]
402 if {[regexp -- "^${ws}($dwrx)${ws}=${ws}($hex|$decimal),?$" \
403 $line ignore name value ignore2]} {
404 _process_one_constant $name $value
405 }
406 }
407 close $fd
408
409 set fd [open [file join $srcdir .. .. include dwarf2.def]]
410 while {![eof $fd]} {
411 set line [gets $fd]
412 if {[regexp -- \
413 "^DW_\[A-Z_\]+${ws}\\(($dwrx),${ws}($hex|$decimal)\\)$" \
414 $line ignore name value ignore2]} {
415 _process_one_constant $name $value
416 }
417 }
418 close $fd
419 }
420
421 proc _quote {string} {
422 # FIXME
423 return "\"${string}\\0\""
424 }
425
426 proc _nz_quote {string} {
427 # For now, no quoting is done.
428 return "\"${string}\""
429 }
430
431 proc _handle_DW_FORM {form value} {
432 switch -exact -- $form {
433 DW_FORM_string {
434 _op .ascii [_quote $value]
435 }
436
437 DW_FORM_flag_present {
438 # We don't need to emit anything.
439 }
440
441 DW_FORM_data4 -
442 DW_FORM_ref4 {
443 _op .4byte $value
444 }
445
446 DW_FORM_ref_addr {
447 variable _cu_offset_size
448 variable _cu_version
449 variable _cu_addr_size
450
451 if {$_cu_version == 2} {
452 set size $_cu_addr_size
453 } else {
454 set size $_cu_offset_size
455 }
456
457 _op .${size}byte $value
458 }
459
460 DW_FORM_sec_offset {
461 variable _cu_offset_size
462 _op .${_cu_offset_size}byte $value
463 }
464
465 DW_FORM_ref1 -
466 DW_FORM_flag -
467 DW_FORM_data1 {
468 _op .byte $value
469 }
470
471 DW_FORM_sdata {
472 _op .sleb128 $value
473 }
474
475 DW_FORM_ref_udata -
476 DW_FORM_udata {
477 _op .uleb128 $value
478 }
479
480 DW_FORM_addr {
481 variable _cu_addr_size
482
483 _op .${_cu_addr_size}byte $value
484 }
485
486 DW_FORM_data2 -
487 DW_FORM_ref2 {
488 _op .2byte $value
489 }
490
491 DW_FORM_data8 -
492 DW_FORM_ref8 -
493 DW_FORM_ref_sig8 {
494 _op .8byte $value
495 }
496
497 DW_FORM_data16 {
498 _op .8byte $value
499 }
500
501 DW_FORM_strp {
502 variable _strings
503 variable _cu_offset_size
504
505 if {![info exists _strings($value)]} {
506 set _strings($value) [new_label strp]
507 _defer_output .debug_string {
508 define_label $_strings($value)
509 _op .ascii [_quote $value]
510 }
511 }
512
513 _op .${_cu_offset_size}byte $_strings($value) "strp: $value"
514 }
515
516 SPECIAL_expr {
517 set l1 [new_label "expr_start"]
518 set l2 [new_label "expr_end"]
519 _op .uleb128 "$l2 - $l1" "expression"
520 define_label $l1
521 _location $value
522 define_label $l2
523 }
524
525 DW_FORM_block1 {
526 set len [string length $value]
527 if {$len > 255} {
528 error "DW_FORM_block1 length too long"
529 }
530 _op .byte $len
531 _op .ascii [_nz_quote $value]
532 }
533
534 DW_FORM_block2 -
535 DW_FORM_block4 -
536
537 DW_FORM_block -
538
539 DW_FORM_ref2 -
540 DW_FORM_indirect -
541 DW_FORM_exprloc -
542
543 DW_FORM_strx -
544 DW_FORM_strx1 -
545 DW_FORM_strx2 -
546 DW_FORM_strx3 -
547 DW_FORM_strx4 -
548
549 DW_FORM_GNU_addr_index -
550 DW_FORM_GNU_str_index -
551 DW_FORM_GNU_ref_alt -
552 DW_FORM_GNU_strp_alt -
553
554 default {
555 error "unhandled form $form"
556 }
557 }
558 }
559
560 proc _guess_form {value varname} {
561 upvar $varname new_value
562
563 switch -exact -- [string range $value 0 0] {
564 @ {
565 # Constant reference.
566 variable _constants
567
568 set new_value $_constants([string range $value 1 end])
569 # Just the simplest.
570 return DW_FORM_sdata
571 }
572
573 : {
574 # Label reference.
575 variable _cu_label
576
577 set new_value "[string range $value 1 end] - $_cu_label"
578
579 return DW_FORM_ref4
580 }
581
582 % {
583 # Label reference, an offset from .debug_info.
584 set new_value "[string range $value 1 end]"
585
586 return DW_FORM_ref_addr
587 }
588
589 default {
590 return ""
591 }
592 }
593 }
594
595 proc _default_form { attr } {
596 switch -exact -- $attr {
597 DW_AT_low_pc {
598 return DW_FORM_addr
599 }
600 DW_AT_producer -
601 DW_AT_comp_dir -
602 DW_AT_linkage_name -
603 DW_AT_MIPS_linkage_name -
604 DW_AT_name {
605 return DW_FORM_string
606 }
607 }
608 return ""
609 }
610
611 # Map NAME to its canonical form.
612 proc _map_name {name ary} {
613 variable $ary
614
615 if {[info exists ${ary}($name)]} {
616 set name [set ${ary}($name)]
617 }
618
619 return $name
620 }
621
622 proc _handle_attribute { attr_name attr_value attr_form } {
623 variable _abbrev_section
624 variable _constants
625
626 _handle_DW_FORM $attr_form $attr_value
627
628 _defer_output $_abbrev_section {
629 _op .uleb128 $_constants($attr_name) $attr_name
630 _op .uleb128 $_constants($attr_form) $attr_form
631 }
632 }
633
634 # Handle macro attribute MACRO_AT_range.
635
636 proc _handle_macro_at_range { attr_value } {
637 if {[llength $attr_value] != 1} {
638 error "usage: MACRO_AT_range { func }"
639 }
640
641 set func [lindex $attr_value 0]
642 global srcdir subdir srcfile
643 set src ${srcdir}/${subdir}/${srcfile}
644 set result [function_range $func $src]
645
646 _handle_attribute DW_AT_low_pc [lindex $result 0] \
647 DW_FORM_addr
648 _handle_attribute DW_AT_high_pc \
649 "[lindex $result 0] + [lindex $result 1]" DW_FORM_addr
650 }
651
652 # Handle macro attribute MACRO_AT_func.
653
654 proc _handle_macro_at_func { attr_value } {
655 if {[llength $attr_value] != 1} {
656 error "usage: MACRO_AT_func { func file }"
657 }
658 _handle_attribute DW_AT_name [lindex $attr_value 0] DW_FORM_string
659 _handle_macro_at_range $attr_value
660 }
661
662 proc _handle_DW_TAG {tag_name {attrs {}} {children {}}} {
663 variable _abbrev_section
664 variable _abbrev_num
665 variable _constants
666
667 set has_children [expr {[string length $children] > 0}]
668 set my_abbrev [incr _abbrev_num]
669
670 # We somewhat wastefully emit a new abbrev entry for each tag.
671 # There's no reason for this other than laziness.
672 _defer_output $_abbrev_section {
673 _op .uleb128 $my_abbrev "Abbrev start"
674 _op .uleb128 $_constants($tag_name) $tag_name
675 _op .byte $has_children "has_children"
676 }
677
678 _op .uleb128 $my_abbrev "Abbrev ($tag_name)"
679
680 foreach attr $attrs {
681 set attr_name [_map_name [lindex $attr 0] _AT]
682
683 # When the length of ATTR is greater than 2, the last
684 # element of the list must be a form. The second through
685 # the penultimate elements are joined together and
686 # evaluated using subst. This allows constructs such as
687 # [gdb_target_symbol foo] to be used.
688
689 if {[llength $attr] > 2} {
690 set attr_value [uplevel 2 [list subst [join [lrange $attr 1 end-1]]]]
691 } else {
692 set attr_value [uplevel 2 [list subst [lindex $attr 1]]]
693 }
694
695 if { [string equal "MACRO_AT_func" $attr_name] } {
696 _handle_macro_at_func $attr_value
697 } elseif { [string equal "MACRO_AT_range" $attr_name] } {
698 _handle_macro_at_range $attr_value
699 } else {
700 if {[llength $attr] > 2} {
701 set attr_form [uplevel 2 [list subst [lindex $attr end]]]
702
703 if { [string index $attr_value 0] == ":" } {
704 # It is a label, get its value.
705 _guess_form $attr_value attr_value
706 }
707 } else {
708 set attr_form [_guess_form $attr_value attr_value]
709 if { $attr_form eq "" } {
710 set attr_form [_default_form $attr_name]
711 }
712 if { $attr_form eq "" } {
713 error "No form for $attr_name $attr_value"
714 }
715 }
716 set attr_form [_map_name $attr_form _FORM]
717
718 _handle_attribute $attr_name $attr_value $attr_form
719 }
720 }
721
722 _defer_output $_abbrev_section {
723 # Terminator.
724 _op .byte 0x0 "DW_AT - Terminator"
725 _op .byte 0x0 "DW_FORM - Terminator"
726 }
727
728 if {$has_children} {
729 uplevel 2 $children
730
731 # Terminate children.
732 _op .byte 0x0 "Terminate children"
733 }
734 }
735
736 proc _emit {string} {
737 variable _output_file
738 variable _defer
739 variable _deferred_output
740
741 if {$_defer == ""} {
742 puts $_output_file $string
743 } else {
744 append _deferred_output($_defer) ${string}\n
745 }
746 }
747
748 proc _section {name {flags ""} {type ""}} {
749 if {$flags == "" && $type == ""} {
750 _emit " .section $name"
751 } elseif {$type == ""} {
752 _emit " .section $name, \"$flags\""
753 } else {
754 _emit " .section $name, \"$flags\", %$type"
755 }
756 }
757
758 # SECTION_SPEC is a list of arguments to _section.
759 proc _defer_output {section_spec body} {
760 variable _defer
761 variable _deferred_output
762
763 set old_defer $_defer
764 set _defer [lindex $section_spec 0]
765
766 if {![info exists _deferred_output($_defer)]} {
767 set _deferred_output($_defer) ""
768 eval _section $section_spec
769 }
770
771 uplevel $body
772
773 set _defer $old_defer
774 }
775
776 proc _defer_to_string {body} {
777 variable _defer
778 variable _deferred_output
779
780 set old_defer $_defer
781 set _defer temp
782
783 set _deferred_output($_defer) ""
784
785 uplevel $body
786
787 set result $_deferred_output($_defer)
788 unset _deferred_output($_defer)
789
790 set _defer $old_defer
791 return $result
792 }
793
794 proc _write_deferred_output {} {
795 variable _output_file
796 variable _deferred_output
797
798 foreach section [array names _deferred_output] {
799 # The data already has a newline.
800 puts -nonewline $_output_file $_deferred_output($section)
801 }
802
803 # Save some memory.
804 unset _deferred_output
805 }
806
807 proc _op {name value {comment ""}} {
808 set text " ${name} ${value}"
809 if {$comment != ""} {
810 # Try to make stuff line up nicely.
811 while {[string length $text] < 40} {
812 append text " "
813 }
814 append text "/* ${comment} */"
815 }
816 _emit $text
817 }
818
819 proc _compute_label {name} {
820 return ".L${name}"
821 }
822
823 # Return a name suitable for use as a label. If BASE_NAME is
824 # specified, it is incorporated into the label name; this is to
825 # make debugging the generated assembler easier. If BASE_NAME is
826 # not specified a generic default is used. This proc does not
827 # define the label; see 'define_label'. 'new_label' attempts to
828 # ensure that label names are unique.
829 proc new_label {{base_name label}} {
830 variable _label_num
831
832 return [_compute_label ${base_name}[incr _label_num]]
833 }
834
835 # Define a label named NAME. Ordinarily, NAME comes from a call
836 # to 'new_label', but this is not required.
837 proc define_label {name} {
838 _emit "${name}:"
839 }
840
841 # A higher-level interface to label handling.
842 #
843 # ARGS is a list of label descriptors. Each one is either a
844 # single element, or a list of two elements -- a name and some
845 # text. For each descriptor, 'new_label' is invoked. If the list
846 # form is used, the second element in the list is passed as an
847 # argument. The label name is used to define a variable in the
848 # enclosing scope; this can be used to refer to the label later.
849 # The label name is also used to define a new proc whose name is
850 # the label name plus a trailing ":". This proc takes a body as
851 # an argument and can be used to define the label at that point;
852 # then the body, if any, is evaluated in the caller's context.
853 #
854 # For example:
855 #
856 # declare_labels int_label
857 # something { ... $int_label } ;# refer to the label
858 # int_label: constant { ... } ;# define the label
859 proc declare_labels {args} {
860 foreach arg $args {
861 set name [lindex $arg 0]
862 set text [lindex $arg 1]
863
864 if { $text == "" } {
865 set text $name
866 }
867
868 upvar $name label_var
869 set label_var [new_label $text]
870
871 proc ${name}: {args} [format {
872 define_label %s
873 uplevel $args
874 } $label_var]
875 }
876 }
877
878 # This is a miniature assembler for location expressions. It is
879 # suitable for use in the attributes to a DIE. Its output is
880 # prefixed with "=" to make it automatically use DW_FORM_block.
881 # BODY is split by lines, and each line is taken to be a list.
882 # (FIXME should use 'info complete' here.)
883 # Each list's first element is the opcode, either short or long
884 # forms are accepted.
885 # FIXME argument handling
886 # FIXME move docs
887 proc _location {body} {
888 variable _constants
889 variable _cu_label
890 variable _cu_version
891 variable _cu_addr_size
892 variable _cu_offset_size
893
894 foreach line [split $body \n] {
895 # Ignore blank lines, and allow embedded comments.
896 if {[lindex $line 0] == "" || [regexp -- {^[ \t]*#} $line]} {
897 continue
898 }
899 set opcode [_map_name [lindex $line 0] _OP]
900 _op .byte $_constants($opcode) $opcode
901
902 switch -exact -- $opcode {
903 DW_OP_addr {
904 _op .${_cu_addr_size}byte [lindex $line 1]
905 }
906
907 DW_OP_regx {
908 _op .uleb128 [lindex $line 1]
909 }
910
911 DW_OP_pick -
912 DW_OP_const1u -
913 DW_OP_const1s {
914 _op .byte [lindex $line 1]
915 }
916
917 DW_OP_const2u -
918 DW_OP_const2s {
919 _op .2byte [lindex $line 1]
920 }
921
922 DW_OP_const4u -
923 DW_OP_const4s {
924 _op .4byte [lindex $line 1]
925 }
926
927 DW_OP_const8u -
928 DW_OP_const8s {
929 _op .8byte [lindex $line 1]
930 }
931
932 DW_OP_constu {
933 _op .uleb128 [lindex $line 1]
934 }
935 DW_OP_consts {
936 _op .sleb128 [lindex $line 1]
937 }
938
939 DW_OP_plus_uconst {
940 _op .uleb128 [lindex $line 1]
941 }
942
943 DW_OP_piece {
944 _op .uleb128 [lindex $line 1]
945 }
946
947 DW_OP_bit_piece {
948 _op .uleb128 [lindex $line 1]
949 _op .uleb128 [lindex $line 2]
950 }
951
952 DW_OP_skip -
953 DW_OP_bra {
954 _op .2byte [lindex $line 1]
955 }
956
957 DW_OP_implicit_value {
958 set l1 [new_label "value_start"]
959 set l2 [new_label "value_end"]
960 _op .uleb128 "$l2 - $l1"
961 define_label $l1
962 foreach value [lrange $line 1 end] {
963 switch -regexp -- $value {
964 {^0x[[:xdigit:]]{1,2}$} {_op .byte $value}
965 {^0x[[:xdigit:]]{4}$} {_op .2byte $value}
966 {^0x[[:xdigit:]]{8}$} {_op .4byte $value}
967 {^0x[[:xdigit:]]{16}$} {_op .8byte $value}
968 default {
969 error "bad value '$value' in DW_OP_implicit_value"
970 }
971 }
972 }
973 define_label $l2
974 }
975
976 DW_OP_implicit_pointer -
977 DW_OP_GNU_implicit_pointer {
978 if {[llength $line] != 3} {
979 error "usage: $opcode LABEL OFFSET"
980 }
981
982 # Here label is a section offset.
983 set label [lindex $line 1]
984 if { $_cu_version == 2 } {
985 _op .${_cu_addr_size}byte $label
986 } else {
987 _op .${_cu_offset_size}byte $label
988 }
989 _op .sleb128 [lindex $line 2]
990 }
991
992 DW_OP_GNU_variable_value {
993 if {[llength $line] != 2} {
994 error "usage: $opcode LABEL"
995 }
996
997 # Here label is a section offset.
998 set label [lindex $line 1]
999 if { $_cu_version == 2 } {
1000 _op .${_cu_addr_size}byte $label
1001 } else {
1002 _op .${_cu_offset_size}byte $label
1003 }
1004 }
1005
1006 DW_OP_deref_size {
1007 if {[llength $line] != 2} {
1008 error "usage: DW_OP_deref_size SIZE"
1009 }
1010
1011 _op .byte [lindex $line 1]
1012 }
1013
1014 DW_OP_bregx {
1015 _op .uleb128 [lindex $line 1]
1016 _op .sleb128 [lindex $line 2]
1017 }
1018
1019 default {
1020 if {[llength $line] > 1} {
1021 error "Unimplemented: operands in location for $opcode"
1022 }
1023 }
1024 }
1025 }
1026 }
1027
1028 # Emit a DWARF CU.
1029 # OPTIONS is a list with an even number of elements containing
1030 # option-name and option-value pairs.
1031 # Current options are:
1032 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1033 # default = 0 (32-bit)
1034 # version n - DWARF version number to emit
1035 # default = 4
1036 # addr_size n - the size of addresses in bytes: 4, 8, or default
1037 # default = default
1038 # fission 0|1 - boolean indicating if generating Fission debug info
1039 # default = 0
1040 # BODY is Tcl code that emits the DIEs which make up the body of
1041 # the CU. It is evaluated in the caller's context.
1042 proc cu {options body} {
1043 variable _constants
1044 variable _cu_count
1045 variable _abbrev_section
1046 variable _abbrev_num
1047 variable _cu_label
1048 variable _cu_version
1049 variable _cu_addr_size
1050 variable _cu_offset_size
1051
1052 # Establish the defaults.
1053 set is_64 0
1054 set _cu_version 4
1055 set _cu_addr_size default
1056 set fission 0
1057 set section ".debug_info"
1058 set _abbrev_section ".debug_abbrev"
1059
1060 foreach { name value } $options {
1061 set value [uplevel 1 "subst \"$value\""]
1062 switch -exact -- $name {
1063 is_64 { set is_64 $value }
1064 version { set _cu_version $value }
1065 addr_size { set _cu_addr_size $value }
1066 fission { set fission $value }
1067 default { error "unknown option $name" }
1068 }
1069 }
1070 if {$_cu_addr_size == "default"} {
1071 if {[is_64_target]} {
1072 set _cu_addr_size 8
1073 } else {
1074 set _cu_addr_size 4
1075 }
1076 }
1077 set _cu_offset_size [expr { $is_64 ? 8 : 4 }]
1078 if { $fission } {
1079 set section ".debug_info.dwo"
1080 set _abbrev_section ".debug_abbrev.dwo"
1081 }
1082
1083 if {$_cu_version < 4} {
1084 set _constants(SPECIAL_expr) $_constants(DW_FORM_block)
1085 } else {
1086 set _constants(SPECIAL_expr) $_constants(DW_FORM_exprloc)
1087 }
1088
1089 _section $section
1090
1091 set cu_num [incr _cu_count]
1092 set my_abbrevs [_compute_label "abbrev${cu_num}_begin"]
1093 set _abbrev_num 1
1094
1095 set _cu_label [_compute_label "cu${cu_num}_begin"]
1096 set start_label [_compute_label "cu${cu_num}_start"]
1097 set end_label [_compute_label "cu${cu_num}_end"]
1098
1099 define_label $_cu_label
1100 if {$is_64} {
1101 _op .4byte 0xffffffff
1102 _op .8byte "$end_label - $start_label"
1103 } else {
1104 _op .4byte "$end_label - $start_label"
1105 }
1106 define_label $start_label
1107 _op .2byte $_cu_version Version
1108 _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
1109 _op .byte $_cu_addr_size "Pointer size"
1110
1111 _defer_output $_abbrev_section {
1112 define_label $my_abbrevs
1113 }
1114
1115 uplevel $body
1116
1117 _defer_output $_abbrev_section {
1118 # Emit the terminator.
1119 _op .byte 0x0 "Abbrev end - Terminator"
1120 }
1121
1122 define_label $end_label
1123 }
1124
1125 # Emit a DWARF TU.
1126 # OPTIONS is a list with an even number of elements containing
1127 # option-name and option-value pairs.
1128 # Current options are:
1129 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1130 # default = 0 (32-bit)
1131 # version n - DWARF version number to emit
1132 # default = 4
1133 # addr_size n - the size of addresses in bytes: 4, 8, or default
1134 # default = default
1135 # fission 0|1 - boolean indicating if generating Fission debug info
1136 # default = 0
1137 # SIGNATURE is the 64-bit signature of the type.
1138 # TYPE_LABEL is the label of the type defined by this TU,
1139 # or "" if there is no type (i.e., type stubs in Fission).
1140 # BODY is Tcl code that emits the DIEs which make up the body of
1141 # the TU. It is evaluated in the caller's context.
1142 proc tu {options signature type_label body} {
1143 variable _cu_count
1144 variable _abbrev_section
1145 variable _abbrev_num
1146 variable _cu_label
1147 variable _cu_version
1148 variable _cu_addr_size
1149 variable _cu_offset_size
1150
1151 # Establish the defaults.
1152 set is_64 0
1153 set _cu_version 4
1154 set _cu_addr_size default
1155 set fission 0
1156 set section ".debug_types"
1157 set _abbrev_section ".debug_abbrev"
1158
1159 foreach { name value } $options {
1160 switch -exact -- $name {
1161 is_64 { set is_64 $value }
1162 version { set _cu_version $value }
1163 addr_size { set _cu_addr_size $value }
1164 fission { set fission $value }
1165 default { error "unknown option $name" }
1166 }
1167 }
1168 if {$_cu_addr_size == "default"} {
1169 if {[is_64_target]} {
1170 set _cu_addr_size 8
1171 } else {
1172 set _cu_addr_size 4
1173 }
1174 }
1175 set _cu_offset_size [expr { $is_64 ? 8 : 4 }]
1176 if { $fission } {
1177 set section ".debug_types.dwo"
1178 set _abbrev_section ".debug_abbrev.dwo"
1179 }
1180
1181 _section $section
1182
1183 set cu_num [incr _cu_count]
1184 set my_abbrevs [_compute_label "abbrev${cu_num}_begin"]
1185 set _abbrev_num 1
1186
1187 set _cu_label [_compute_label "cu${cu_num}_begin"]
1188 set start_label [_compute_label "cu${cu_num}_start"]
1189 set end_label [_compute_label "cu${cu_num}_end"]
1190
1191 define_label $_cu_label
1192 if {$is_64} {
1193 _op .4byte 0xffffffff
1194 _op .8byte "$end_label - $start_label"
1195 } else {
1196 _op .4byte "$end_label - $start_label"
1197 }
1198 define_label $start_label
1199 _op .2byte $_cu_version Version
1200 _op .${_cu_offset_size}byte $my_abbrevs Abbrevs
1201 _op .byte $_cu_addr_size "Pointer size"
1202 _op .8byte $signature Signature
1203 if { $type_label != "" } {
1204 uplevel declare_labels $type_label
1205 upvar $type_label my_type_label
1206 if {$is_64} {
1207 _op .8byte "$my_type_label - $_cu_label"
1208 } else {
1209 _op .4byte "$my_type_label - $_cu_label"
1210 }
1211 } else {
1212 if {$is_64} {
1213 _op .8byte 0
1214 } else {
1215 _op .4byte 0
1216 }
1217 }
1218
1219 _defer_output $_abbrev_section {
1220 define_label $my_abbrevs
1221 }
1222
1223 uplevel $body
1224
1225 _defer_output $_abbrev_section {
1226 # Emit the terminator.
1227 _op .byte 0x0 "Abbrev end - Terminator"
1228 }
1229
1230 define_label $end_label
1231 }
1232
1233 # Emit a DWARF .debug_ranges unit.
1234 # OPTIONS is a list with an even number of elements containing
1235 # option-name and option-value pairs.
1236 # Current options are:
1237 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1238 # default = 0 (32-bit)
1239 #
1240 # BODY is Tcl code that emits the content of the .debug_ranges
1241 # unit, it is evaluated in the caller's context.
1242 proc ranges {options body} {
1243 variable _debug_ranges_64_bit
1244
1245 foreach { name value } $options {
1246 switch -exact -- $name {
1247 is_64 { set _debug_ranges_64_bit [subst $value] }
1248 default { error "unknown option $name" }
1249 }
1250 }
1251
1252 set section ".debug_ranges"
1253 _section $section
1254
1255 proc sequence { body } {
1256 variable _debug_ranges_64_bit
1257
1258 # Emit the sequence of addresses.
1259
1260 proc base { addr } {
1261 variable _debug_ranges_64_bit
1262
1263 if { $_debug_ranges_64_bit } then {
1264 _op .8byte 0xffffffffffffffff "Base Marker"
1265 _op .8byte $addr "Base Address"
1266 } else {
1267 _op .4byte 0xffffffff "Base Marker"
1268 _op .4byte $addr "Base Address"
1269 }
1270 }
1271
1272 proc range { start end } {
1273 variable _debug_ranges_64_bit
1274
1275 if { $_debug_ranges_64_bit } then {
1276 _op .8byte $start "Start Address"
1277 _op .8byte $end "End Address"
1278 } else {
1279 _op .4byte $start "Start Address"
1280 _op .4byte $end "End Address"
1281 }
1282 }
1283
1284 uplevel $body
1285
1286 # End of the sequence.
1287 if { $_debug_ranges_64_bit } then {
1288 _op .8byte 0x0 "End of Sequence Marker (Part 1)"
1289 _op .8byte 0x0 "End of Sequence Marker (Part 2)"
1290 } else {
1291 _op .4byte 0x0 "End of Sequence Marker (Part 1)"
1292 _op .4byte 0x0 "End of Sequence Marker (Part 2)"
1293 }
1294 }
1295
1296 uplevel $body
1297 }
1298
1299
1300 # Emit a DWARF .debug_line unit.
1301 # OPTIONS is a list with an even number of elements containing
1302 # option-name and option-value pairs.
1303 # Current options are:
1304 # is_64 0|1 - boolean indicating if you want to emit 64-bit DWARF
1305 # default = 0 (32-bit)
1306 # version n - DWARF version number to emit
1307 # default = 4
1308 # addr_size n - the size of addresses in bytes: 4, 8, or default
1309 # default = default
1310 #
1311 # LABEL is the label of the current unit (which is probably
1312 # referenced by a DW_AT_stmt_list), or "" if there is no such
1313 # label.
1314 #
1315 # BODY is Tcl code that emits the parts which make up the body of
1316 # the line unit. It is evaluated in the caller's context. The
1317 # following commands are available for the BODY section:
1318 #
1319 # include_dir "dirname" -- adds a new include directory
1320 #
1321 # file_name "file.c" idx -- adds a new file name. IDX is a
1322 # 1-based index referencing an include directory or 0 for
1323 # current directory.
1324
1325 proc lines {options label body} {
1326 variable _line_count
1327 variable _line_saw_file
1328 variable _line_saw_program
1329 variable _line_header_end_label
1330
1331 # Establish the defaults.
1332 set is_64 0
1333 set _unit_version 4
1334 set _unit_addr_size default
1335 set _line_saw_program 0
1336 set _line_saw_file 0
1337 set _default_is_stmt 1
1338
1339 foreach { name value } $options {
1340 switch -exact -- $name {
1341 is_64 { set is_64 $value }
1342 version { set _unit_version $value }
1343 addr_size { set _unit_addr_size $value }
1344 default_is_stmt { set _default_is_stmt $value }
1345 default { error "unknown option $name" }
1346 }
1347 }
1348 if {$_unit_addr_size == "default"} {
1349 if {[is_64_target]} {
1350 set _unit_addr_size 8
1351 } else {
1352 set _unit_addr_size 4
1353 }
1354 }
1355
1356 set unit_num [incr _line_count]
1357
1358 set section ".debug_line"
1359 _section $section
1360
1361 if { "$label" != "" } {
1362 # Define the user-provided label at this point.
1363 $label:
1364 }
1365
1366 set unit_len_label [_compute_label "line${_line_count}_start"]
1367 set unit_end_label [_compute_label "line${_line_count}_end"]
1368 set header_len_label [_compute_label "line${_line_count}_header_start"]
1369 set _line_header_end_label [_compute_label "line${_line_count}_header_end"]
1370
1371 if {$is_64} {
1372 _op .4byte 0xffffffff
1373 _op .8byte "$unit_end_label - $unit_len_label" "unit_length"
1374 } else {
1375 _op .4byte "$unit_end_label - $unit_len_label" "unit_length"
1376 }
1377
1378 define_label $unit_len_label
1379
1380 _op .2byte $_unit_version version
1381
1382 if {$is_64} {
1383 _op .8byte "$_line_header_end_label - $header_len_label" "header_length"
1384 } else {
1385 _op .4byte "$_line_header_end_label - $header_len_label" "header_length"
1386 }
1387
1388 define_label $header_len_label
1389
1390 _op .byte 1 "minimum_instruction_length"
1391 _op .byte $_default_is_stmt "default_is_stmt"
1392 _op .byte 1 "line_base"
1393 _op .byte 1 "line_range"
1394 _op .byte 10 "opcode_base"
1395
1396 # The standard_opcode_lengths table. The number of arguments
1397 # for each of the standard opcodes. Generating 9 entries here
1398 # matches the use of 10 in the opcode_base above. These 9
1399 # entries match the 9 standard opcodes for DWARF2, making use
1400 # of only 9 should be fine, even if we are generating DWARF3
1401 # or DWARF4.
1402 _op .byte 0 "standard opcode 1"
1403 _op .byte 1 "standard opcode 2"
1404 _op .byte 1 "standard opcode 3"
1405 _op .byte 1 "standard opcode 4"
1406 _op .byte 1 "standard opcode 5"
1407 _op .byte 0 "standard opcode 6"
1408 _op .byte 0 "standard opcode 7"
1409 _op .byte 0 "standard opcode 8"
1410 _op .byte 1 "standard opcode 9"
1411
1412 proc include_dir {dirname} {
1413 _op .ascii [_quote $dirname]
1414 }
1415
1416 proc file_name {filename diridx} {
1417 variable _line_saw_file
1418 if "! $_line_saw_file" {
1419 # Terminate the dir list.
1420 _op .byte 0 "Terminator."
1421 set _line_saw_file 1
1422 }
1423
1424 _op .ascii [_quote $filename]
1425 _op .sleb128 $diridx
1426 _op .sleb128 0 "mtime"
1427 _op .sleb128 0 "length"
1428 }
1429
1430 proc program {statements} {
1431 variable _line_saw_program
1432 variable _line_header_end_label
1433 variable _line
1434
1435 set _line 1
1436
1437 if "! $_line_saw_program" {
1438 # Terminate the file list.
1439 _op .byte 0 "Terminator."
1440 define_label $_line_header_end_label
1441 set _line_saw_program 1
1442 }
1443
1444 proc DW_LNE_set_address {addr} {
1445 _op .byte 0
1446 set start [new_label "set_address_start"]
1447 set end [new_label "set_address_end"]
1448 _op .uleb128 "${end} - ${start}"
1449 define_label ${start}
1450 _op .byte 2
1451 if {[is_64_target]} {
1452 _op .8byte ${addr}
1453 } else {
1454 _op .4byte ${addr}
1455 }
1456 define_label ${end}
1457 }
1458
1459 proc DW_LNE_end_sequence {} {
1460 variable _line
1461 _op .byte 0
1462 _op .uleb128 1
1463 _op .byte 1
1464 set _line 1
1465 }
1466
1467 proc DW_LNE_user { len opcode } {
1468 set DW_LNE_lo_usr 0x80
1469 set DW_LNE_hi_usr 0xff
1470 if { $DW_LNE_lo_usr <= $opcode
1471 && $opcode <= $DW_LNE_hi_usr } {
1472 _op .byte 0
1473 _op .uleb128 $len
1474 _op .byte $opcode
1475 for {set i 1} {$i < $len} {incr i} {
1476 _op .byte 0
1477 }
1478 } else {
1479 error "unknown vendor specific extended opcode: $opcode"
1480 }
1481 }
1482
1483 proc DW_LNS_copy {} {
1484 _op .byte 1
1485 }
1486
1487 proc DW_LNS_negate_stmt {} {
1488 _op .byte 6
1489 }
1490
1491 proc DW_LNS_advance_pc {offset} {
1492 _op .byte 2
1493 _op .uleb128 ${offset}
1494 }
1495
1496 proc DW_LNS_advance_line {offset} {
1497 variable _line
1498 _op .byte 3
1499 _op .sleb128 ${offset}
1500 set _line [expr $_line + $offset]
1501 }
1502
1503 # A pseudo line number program instruction, that can be used instead
1504 # of DW_LNS_advance_line. Rather than writing:
1505 # {DW_LNS_advance_line [expr $line1 - 1]}
1506 # {DW_LNS_advance_line [expr $line2 - $line1]}
1507 # {DW_LNS_advance_line [expr $line3 - $line2]}
1508 # we can just write:
1509 # {line $line1}
1510 # {line $line2}
1511 # {line $line3}
1512 proc line {line} {
1513 variable _line
1514 set offset [expr $line - $_line]
1515 DW_LNS_advance_line $offset
1516 }
1517
1518 proc DW_LNS_set_file {num} {
1519 _op .byte 4
1520 _op .sleb128 ${num}
1521 }
1522
1523 foreach statement $statements {
1524 uplevel 1 $statement
1525 }
1526 }
1527
1528 uplevel $body
1529
1530 rename include_dir ""
1531 rename file_name ""
1532
1533 # Terminate dir list if we saw no files.
1534 if "! $_line_saw_file" {
1535 _op .byte 0 "Terminator."
1536 }
1537
1538 # Terminate the file list.
1539 if "! $_line_saw_program" {
1540 _op .byte 0 "Terminator."
1541 define_label $_line_header_end_label
1542 }
1543
1544 define_label $unit_end_label
1545 }
1546
1547 proc _empty_array {name} {
1548 upvar $name the_array
1549
1550 catch {unset the_array}
1551 set the_array(_) {}
1552 unset the_array(_)
1553 }
1554
1555 # Emit a .gnu_debugaltlink section with the given file name and
1556 # build-id. The buildid should be represented as a hexadecimal
1557 # string, like "ffeeddcc".
1558 proc gnu_debugaltlink {filename buildid} {
1559 _defer_output .gnu_debugaltlink {
1560 _op .ascii [_quote $filename]
1561 foreach {a b} [split $buildid {}] {
1562 _op .byte 0x$a$b
1563 }
1564 }
1565 }
1566
1567 proc _note {type name hexdata} {
1568 set namelen [expr [string length $name] + 1]
1569
1570 # Name size.
1571 _op .4byte $namelen
1572 # Data size.
1573 _op .4byte [expr [string length $hexdata] / 2]
1574 # Type.
1575 _op .4byte $type
1576 # The name.
1577 _op .ascii [_quote $name]
1578 # Alignment.
1579 set align 2
1580 set total [expr {($namelen + (1 << $align) - 1) & -(1 << $align)}]
1581 for {set i $namelen} {$i < $total} {incr i} {
1582 _op .byte 0
1583 }
1584 # The data.
1585 foreach {a b} [split $hexdata {}] {
1586 _op .byte 0x$a$b
1587 }
1588 }
1589
1590 # Emit a note section holding the given build-id.
1591 proc build_id {buildid} {
1592 _defer_output {.note.gnu.build-id a note} {
1593 # From elf/common.h.
1594 set NT_GNU_BUILD_ID 3
1595
1596 _note $NT_GNU_BUILD_ID GNU $buildid
1597 }
1598 }
1599
1600 # The top-level interface to the DWARF assembler.
1601 # FILENAME is the name of the file where the generated assembly
1602 # code is written.
1603 # BODY is Tcl code to emit the assembly. It is evaluated via
1604 # "eval" -- not uplevel as you might expect, because it is
1605 # important to run the body in the Dwarf namespace.
1606 #
1607 # A typical invocation is something like:
1608 # Dwarf::assemble $file {
1609 # cu 0 2 8 {
1610 # compile_unit {
1611 # ...
1612 # }
1613 # }
1614 # cu 0 2 8 {
1615 # ...
1616 # }
1617 # }
1618 proc assemble {filename body} {
1619 variable _initialized
1620 variable _output_file
1621 variable _deferred_output
1622 variable _defer
1623 variable _label_num
1624 variable _strings
1625 variable _cu_count
1626 variable _line_count
1627 variable _line_saw_file
1628 variable _line_saw_program
1629 variable _line_header_end_label
1630 variable _debug_ranges_64_bit
1631
1632 if {!$_initialized} {
1633 _read_constants
1634 set _initialized 1
1635 }
1636
1637 set _output_file [open $filename w]
1638 set _cu_count 0
1639 _empty_array _deferred_output
1640 set _defer ""
1641 set _label_num 0
1642 _empty_array _strings
1643
1644 set _line_count 0
1645 set _line_saw_file 0
1646 set _line_saw_program 0
1647 set _debug_ranges_64_bit [is_64_target]
1648
1649 # Not "uplevel" here, because we want to evaluate in this
1650 # namespace. This is somewhat bad because it means we can't
1651 # readily refer to outer variables.
1652 eval $body
1653
1654 _write_deferred_output
1655
1656 catch {close $_output_file}
1657 set _output_file {}
1658 }
1659 }
This page took 0.065247 seconds and 4 git commands to generate.