# this information being correct (w.r.t. funtion / argument types)
# just so long as the compilation using makes use of the
# .debug_ranges data then the test achieves its objective.
- cu {} {
+ cu { label cu_label } {
compile_unit {
{language @DW_LANG_C}
{name dw-ranges-base.c}
range 0 [lindex $frame3_func 1]
}
}
+
+ aranges {} cu_label {
+ arange [lindex $main_func 0] [lindex $main_func 1]
+ arange [lindex $frame2_func 0] [lindex $frame2_func 1]
+ arange [lindex $frame3_func 0] [lindex $frame3_func 1]
+ }
}
if { [prepare_for_testing "failed to prepare" ${testfile} \
# See the comment in the .S file for the equivalent C program this is meant
# to represent.
- cu { addr_size 4 } {
+ cu { label cu_label addr_size 4 } {
DW_TAG_compile_unit {
{DW_AT_name $srcfile}
{DW_AT_stmt_list $stmt_list DW_FORM_sec_offset}
include_dir "/some/directory"
file_name "/some/directory/file.c" 0
}
+
+ aranges {} cu_label {
+ arange __cu_low_pc __cu_high_pc
+ }
}
if { [build_executable ${testfile}.exp ${testfile} "$srcfile $dwarf_asm" \
standard_testfile main.c .S
+lassign [function_range main ${srcdir}/${subdir}/${srcfile}] \
+ main_start main_length
+
set asm_file [standard_output_file $srcfile2]
Dwarf::assemble $asm_file {
- cu {} {
+ global main_start main_length
+
+ cu { label cu_start } {
DW_TAG_compile_unit {
{DW_AT_language @DW_LANG_C_plus_plus}
} {
}
}
}
+
+ aranges {} cu_start {
+ arange "$main_start" "$main_length"
+ }
}
if { [prepare_for_testing "failed to prepare" ${testfile} \