|
|
861f93 |
--- gdb-7.5.0.20120926-m64/gdb/value.c-orig 2012-11-09 17:08:52.137406118 +0100
|
|
|
861f93 |
+++ gdb-7.5.0.20120926-m64/gdb/value.c 2012-11-09 17:32:38.324199230 +0100
|
|
|
861f93 |
@@ -663,7 +663,6 @@ allocate_value_lazy (struct type *type)
|
|
|
861f93 |
description correctly. */
|
|
|
861f93 |
check_typedef (type);
|
|
|
861f93 |
|
|
|
861f93 |
- ulongest_fits_host_or_error (TYPE_LENGTH (type));
|
|
|
861f93 |
val = (struct value *) xzalloc (sizeof (struct value));
|
|
|
861f93 |
val->contents = NULL;
|
|
|
861f93 |
val->next = all_values;
|
|
|
861f93 |
--- /dev/null 2012-10-18 11:08:13.202328239 +0200
|
|
|
861f93 |
+++ gdb-7.5.0.20120926-m64-test/gdb/testsuite/gdb.base/longest-types-64bit.exp 2012-11-09 18:13:56.286587994 +0100
|
|
|
861f93 |
@@ -0,0 +1,59 @@
|
|
|
861f93 |
+# This testcase is part of GDB, the GNU debugger.
|
|
|
861f93 |
+
|
|
|
861f93 |
+# Copyright 2012 Free Software Foundation, Inc.
|
|
|
861f93 |
+
|
|
|
861f93 |
+# This program is free software; you can redistribute it and/or modify
|
|
|
861f93 |
+# it under the terms of the GNU General Public License as published by
|
|
|
861f93 |
+# the Free Software Foundation; either version 3 of the License, or
|
|
|
861f93 |
+# (at your option) any later version.
|
|
|
861f93 |
+#
|
|
|
861f93 |
+# This program is distributed in the hope that it will be useful,
|
|
|
861f93 |
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
861f93 |
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
861f93 |
+# GNU General Public License for more details.
|
|
|
861f93 |
+#
|
|
|
861f93 |
+# You should have received a copy of the GNU General Public License
|
|
|
861f93 |
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
861f93 |
+
|
|
|
861f93 |
+standard_testfile .c longest-types-64bit.S
|
|
|
861f93 |
+
|
|
|
861f93 |
+proc test { name } { with_test_prefix $name {
|
|
|
861f93 |
+ # 64-bit array size should not overflow
|
|
|
861f93 |
+ gdb_test "print &f->buf" {= \(char \(\*\)\[1099494850560\]\) 0x0}
|
|
|
861f93 |
+
|
|
|
861f93 |
+ # The offset should not overflow
|
|
|
861f93 |
+ gdb_test "print &f->buf2" {= \(char \(\*\)\[2\]\) 0xffff000000}
|
|
|
861f93 |
+}}
|
|
|
861f93 |
+
|
|
|
861f93 |
+
|
|
|
861f93 |
+# Test 64-bit file first as it is not compiled so its compilation never fails.
|
|
|
861f93 |
+
|
|
|
861f93 |
+set file64bitbz2uu ${srcdir}/${subdir}/${testfile}-64bit.bz2.uu
|
|
|
861f93 |
+set file64bit ${objdir}/${subdir}/${testfile}-64bit
|
|
|
861f93 |
+
|
|
|
861f93 |
+if {[catch "system \"uudecode -o - ${file64bitbz2uu} | bzip2 -dc >${file64bit}\""] != 0} {
|
|
|
861f93 |
+ untested "failed uudecode or bzip2"
|
|
|
861f93 |
+ return -1
|
|
|
861f93 |
+}
|
|
|
861f93 |
+file stat ${file64bit} file64bitstat
|
|
|
861f93 |
+if {$file64bitstat(size) != 9501} {
|
|
|
861f93 |
+ untested "uudecode or bzip2 produce invalid result"
|
|
|
861f93 |
+ return -1
|
|
|
861f93 |
+}
|
|
|
861f93 |
+
|
|
|
861f93 |
+clean_restart ${file64bit}
|
|
|
861f93 |
+
|
|
|
861f93 |
+#if { [prepare_for_testing ${testfile}.exp ${testfile}-64bit $srcfile2 {nodebug}] } {
|
|
|
861f93 |
+# return -1
|
|
|
861f93 |
+#}
|
|
|
861f93 |
+
|
|
|
861f93 |
+test "64bit"
|
|
|
861f93 |
+
|
|
|
861f93 |
+
|
|
|
861f93 |
+# And here is the native build test.
|
|
|
861f93 |
+
|
|
|
861f93 |
+if { [prepare_for_testing ${testfile}.exp ${testfile} $srcfile {debug quiet}] } {
|
|
|
861f93 |
+ return -1
|
|
|
861f93 |
+}
|
|
|
861f93 |
+
|
|
|
861f93 |
+test "native"
|
|
|
861f93 |
--- /dev/null 2012-10-18 11:08:13.202328239 +0200
|
|
|
861f93 |
+++ ./gdb/testsuite/gdb.base/longest-types-64bit.c 2012-11-09 17:08:51.374406344 +0100
|
|
|
861f93 |
@@ -0,0 +1,28 @@
|
|
|
861f93 |
+/* This testcase is part of GDB, the GNU debugger.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ Copyright 2012 Free Software Foundation, Inc.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ This program is free software; you can redistribute it and/or modify
|
|
|
861f93 |
+ it under the terms of the GNU General Public License as published by
|
|
|
861f93 |
+ the Free Software Foundation; either version 3 of the License, or
|
|
|
861f93 |
+ (at your option) any later version.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ This program is distributed in the hope that it will be useful,
|
|
|
861f93 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
861f93 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
861f93 |
+ GNU General Public License for more details.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ You should have received a copy of the GNU General Public License
|
|
|
861f93 |
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
861f93 |
+
|
|
|
861f93 |
+struct foo
|
|
|
861f93 |
+{
|
|
|
861f93 |
+ char buf[0xffff000000];
|
|
|
861f93 |
+ char buf2[2];
|
|
|
861f93 |
+} *f;
|
|
|
861f93 |
+
|
|
|
861f93 |
+int
|
|
|
861f93 |
+main (void)
|
|
|
861f93 |
+{
|
|
|
861f93 |
+ return 0;
|
|
|
861f93 |
+}
|
|
|
861f93 |
--- /dev/null 2012-10-18 11:08:13.202328239 +0200
|
|
|
861f93 |
+++ ./gdb/testsuite/gdb.base/longest-types-64bit.S 2012-11-09 17:51:37.597846130 +0100
|
|
|
861f93 |
@@ -0,0 +1,249 @@
|
|
|
861f93 |
+/* This testcase is part of GDB, the GNU debugger.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ Copyright 2012 Free Software Foundation, Inc.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ This program is free software; you can redistribute it and/or modify
|
|
|
861f93 |
+ it under the terms of the GNU General Public License as published by
|
|
|
861f93 |
+ the Free Software Foundation; either version 3 of the License, or
|
|
|
861f93 |
+ (at your option) any later version.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ This program is distributed in the hope that it will be useful,
|
|
|
861f93 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
861f93 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
861f93 |
+ GNU General Public License for more details.
|
|
|
861f93 |
+
|
|
|
861f93 |
+ You should have received a copy of the GNU General Public License
|
|
|
861f93 |
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
861f93 |
+
|
|
|
861f93 |
+ .file "longest-types-64bit.c"
|
|
|
861f93 |
+ .text
|
|
|
861f93 |
+.Ltext0:
|
|
|
861f93 |
+ .globl main
|
|
|
861f93 |
+main:
|
|
|
861f93 |
+ .comm f,8,8
|
|
|
861f93 |
+.Letext0:
|
|
|
861f93 |
+ .file 1 "gdb.base/longest-types-64bit.c"
|
|
|
861f93 |
+ .section .debug_info,"",@progbits
|
|
|
861f93 |
+.Ldebug_info0:
|
|
|
861f93 |
+ .4byte 0x9a /* Length of Compilation Unit Info */
|
|
|
861f93 |
+ .2byte 0x2 /* DWARF version number */
|
|
|
861f93 |
+ .4byte .Ldebug_abbrev0 /* Offset Into Abbrev. Section */
|
|
|
861f93 |
+ .byte 0x8 /* Pointer Size (in bytes) */
|
|
|
861f93 |
+ .uleb128 0x1 /* (DIE (0xb) DW_TAG_compile_unit) */
|
|
|
861f93 |
+ .4byte .LASF3 /* DW_AT_producer: "GNU C 4.7.3 20121109 (prerelease)" */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_language */
|
|
|
861f93 |
+ .4byte .LASF4 /* DW_AT_name: "gdb.base/longest-types-64bit.c" */
|
|
|
861f93 |
+ .4byte .LASF5 /* DW_AT_comp_dir: "" */
|
|
|
861f93 |
+ .4byte .Ldebug_line0 /* DW_AT_stmt_list */
|
|
|
861f93 |
+ .uleb128 0x2 /* (DIE (0x1d) DW_TAG_structure_type) */
|
|
|
861f93 |
+ .ascii "foo\0" /* DW_AT_name */
|
|
|
861f93 |
+ .4byte 0xff000002 /* DW_AT_byte_size */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */
|
|
|
861f93 |
+ .byte 0x12 /* DW_AT_decl_line */
|
|
|
861f93 |
+ .4byte 0x4e /* DW_AT_sibling */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DIE (0x2c) DW_TAG_member) */
|
|
|
861f93 |
+ .ascii "buf\0" /* DW_AT_name */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */
|
|
|
861f93 |
+ .byte 0x14 /* DW_AT_decl_line */
|
|
|
861f93 |
+ .4byte 0x4e /* DW_AT_type */
|
|
|
861f93 |
+ .byte 0x2 /* DW_AT_data_member_location */
|
|
|
861f93 |
+ .byte 0x23 /* DW_OP_plus_uconst */
|
|
|
861f93 |
+ .uleb128 0
|
|
|
861f93 |
+ .uleb128 0x4 /* (DIE (0x3a) DW_TAG_member) */
|
|
|
861f93 |
+ .4byte .LASF0 /* DW_AT_name: "buf2" */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */
|
|
|
861f93 |
+ .byte 0x15 /* DW_AT_decl_line */
|
|
|
861f93 |
+ .4byte 0x73 /* DW_AT_type */
|
|
|
861f93 |
+ .byte 0x7 /* DW_AT_data_member_location */
|
|
|
861f93 |
+ .byte 0x23 /* DW_OP_plus_uconst */
|
|
|
861f93 |
+ .uleb128 0xffff000000
|
|
|
861f93 |
+ .byte 0 /* end of children of DIE 0x1d */
|
|
|
861f93 |
+ .uleb128 0x5 /* (DIE (0x4e) DW_TAG_array_type) */
|
|
|
861f93 |
+ .4byte 0x6c /* DW_AT_type */
|
|
|
861f93 |
+ .4byte 0x65 /* DW_AT_sibling */
|
|
|
861f93 |
+ .uleb128 0x6 /* (DIE (0x57) DW_TAG_subrange_type) */
|
|
|
861f93 |
+ .4byte 0x65 /* DW_AT_type */
|
|
|
861f93 |
+ .quad 0xfffeffffff /* DW_AT_upper_bound */
|
|
|
861f93 |
+ .byte 0 /* end of children of DIE 0x4e */
|
|
|
861f93 |
+ .uleb128 0x7 /* (DIE (0x65) DW_TAG_base_type) */
|
|
|
861f93 |
+ .byte 0x8 /* DW_AT_byte_size */
|
|
|
861f93 |
+ .byte 0x7 /* DW_AT_encoding */
|
|
|
861f93 |
+ .4byte .LASF1 /* DW_AT_name: "sizetype" */
|
|
|
861f93 |
+ .uleb128 0x7 /* (DIE (0x6c) DW_TAG_base_type) */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_byte_size */
|
|
|
861f93 |
+ .byte 0x6 /* DW_AT_encoding */
|
|
|
861f93 |
+ .4byte .LASF2 /* DW_AT_name: "char" */
|
|
|
861f93 |
+ .uleb128 0x5 /* (DIE (0x73) DW_TAG_array_type) */
|
|
|
861f93 |
+ .4byte 0x6c /* DW_AT_type */
|
|
|
861f93 |
+ .4byte 0x83 /* DW_AT_sibling */
|
|
|
861f93 |
+ .uleb128 0x8 /* (DIE (0x7c) DW_TAG_subrange_type) */
|
|
|
861f93 |
+ .4byte 0x65 /* DW_AT_type */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_upper_bound */
|
|
|
861f93 |
+ .byte 0 /* end of children of DIE 0x73 */
|
|
|
861f93 |
+ .uleb128 0x9 /* (DIE (0x83) DW_TAG_variable) */
|
|
|
861f93 |
+ .ascii "f\0" /* DW_AT_name */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */
|
|
|
861f93 |
+ .byte 0x16 /* DW_AT_decl_line */
|
|
|
861f93 |
+ .4byte 0x97 /* DW_AT_type */
|
|
|
861f93 |
+ .byte 0x1 /* DW_AT_external */
|
|
|
861f93 |
+ .byte 0x9 /* DW_AT_location */
|
|
|
861f93 |
+ .byte 0x3 /* DW_OP_addr */
|
|
|
861f93 |
+ .quad f
|
|
|
861f93 |
+ .uleb128 0xa /* (DIE (0x97) DW_TAG_pointer_type) */
|
|
|
861f93 |
+ .byte 0x8 /* DW_AT_byte_size */
|
|
|
861f93 |
+ .4byte 0x1d /* DW_AT_type */
|
|
|
861f93 |
+ .byte 0 /* end of children of DIE 0xb */
|
|
|
861f93 |
+ .section .debug_abbrev,"",@progbits
|
|
|
861f93 |
+.Ldebug_abbrev0:
|
|
|
861f93 |
+ .uleb128 0x1 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x11 /* (TAG: DW_TAG_compile_unit) */
|
|
|
861f93 |
+ .byte 0x1 /* DW_children_yes */
|
|
|
861f93 |
+ .uleb128 0x25 /* (DW_AT_producer) */
|
|
|
861f93 |
+ .uleb128 0xe /* (DW_FORM_strp) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_AT_language) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0xe /* (DW_FORM_strp) */
|
|
|
861f93 |
+ .uleb128 0x1b /* (DW_AT_comp_dir) */
|
|
|
861f93 |
+ .uleb128 0xe /* (DW_FORM_strp) */
|
|
|
861f93 |
+ .uleb128 0x10 /* (DW_AT_stmt_list) */
|
|
|
861f93 |
+ .uleb128 0x6 /* (DW_FORM_data4) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x2 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (TAG: DW_TAG_structure_type) */
|
|
|
861f93 |
+ .byte 0x1 /* DW_children_yes */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0x8 /* (DW_FORM_string) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_AT_byte_size) */
|
|
|
861f93 |
+ .uleb128 0x6 /* (DW_FORM_data4) */
|
|
|
861f93 |
+ .uleb128 0x3a /* (DW_AT_decl_file) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3b /* (DW_AT_decl_line) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x1 /* (DW_AT_sibling) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x3 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0xd /* (TAG: DW_TAG_member) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0x8 /* (DW_FORM_string) */
|
|
|
861f93 |
+ .uleb128 0x3a /* (DW_AT_decl_file) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3b /* (DW_AT_decl_line) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x38 /* (DW_AT_data_member_location) */
|
|
|
861f93 |
+ .uleb128 0xa /* (DW_FORM_block1) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x4 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0xd /* (TAG: DW_TAG_member) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0xe /* (DW_FORM_strp) */
|
|
|
861f93 |
+ .uleb128 0x3a /* (DW_AT_decl_file) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3b /* (DW_AT_decl_line) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x38 /* (DW_AT_data_member_location) */
|
|
|
861f93 |
+ .uleb128 0xa /* (DW_FORM_block1) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x5 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x1 /* (TAG: DW_TAG_array_type) */
|
|
|
861f93 |
+ .byte 0x1 /* DW_children_yes */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x1 /* (DW_AT_sibling) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x6 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x21 /* (TAG: DW_TAG_subrange_type) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x2f /* (DW_AT_upper_bound) */
|
|
|
861f93 |
+ .uleb128 0x7 /* (DW_FORM_data8) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x7 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x24 /* (TAG: DW_TAG_base_type) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_AT_byte_size) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3e /* (DW_AT_encoding) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0xe /* (DW_FORM_strp) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x8 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x21 /* (TAG: DW_TAG_subrange_type) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x2f /* (DW_AT_upper_bound) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0x9 /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0x34 /* (TAG: DW_TAG_variable) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0x3 /* (DW_AT_name) */
|
|
|
861f93 |
+ .uleb128 0x8 /* (DW_FORM_string) */
|
|
|
861f93 |
+ .uleb128 0x3a /* (DW_AT_decl_file) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x3b /* (DW_AT_decl_line) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .uleb128 0x3f /* (DW_AT_external) */
|
|
|
861f93 |
+ .uleb128 0xc /* (DW_FORM_flag) */
|
|
|
861f93 |
+ .uleb128 0x2 /* (DW_AT_location) */
|
|
|
861f93 |
+ .uleb128 0xa /* (DW_FORM_block1) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .uleb128 0xa /* (abbrev code) */
|
|
|
861f93 |
+ .uleb128 0xf /* (TAG: DW_TAG_pointer_type) */
|
|
|
861f93 |
+ .byte 0 /* DW_children_no */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_AT_byte_size) */
|
|
|
861f93 |
+ .uleb128 0xb /* (DW_FORM_data1) */
|
|
|
861f93 |
+ .uleb128 0x49 /* (DW_AT_type) */
|
|
|
861f93 |
+ .uleb128 0x13 /* (DW_FORM_ref4) */
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .byte 0
|
|
|
861f93 |
+ .section .debug_aranges,"",@progbits
|
|
|
861f93 |
+ .4byte 0x1c /* Length of Address Ranges Info */
|
|
|
861f93 |
+ .2byte 0x2 /* DWARF Version */
|
|
|
861f93 |
+ .4byte .Ldebug_info0 /* Offset of Compilation Unit Info */
|
|
|
861f93 |
+ .byte 0x8 /* Size of Address */
|
|
|
861f93 |
+ .byte 0 /* Size of Segment Descriptor */
|
|
|
861f93 |
+ .2byte 0 /* Pad to 16 byte boundary */
|
|
|
861f93 |
+ .2byte 0
|
|
|
861f93 |
+ .quad 0
|
|
|
861f93 |
+ .quad 0
|
|
|
861f93 |
+ .section .debug_line,"",@progbits
|
|
|
861f93 |
+.Ldebug_line0:
|
|
|
861f93 |
+ .section .debug_str,"MS",@progbits,1
|
|
|
861f93 |
+.LASF4:
|
|
|
861f93 |
+ .string "gdb.base/longest-types-64bit.c"
|
|
|
861f93 |
+.LASF3:
|
|
|
861f93 |
+ .string "GNU C 4.7.3 20121109 (prerelease)"
|
|
|
861f93 |
+.LASF0:
|
|
|
861f93 |
+ .string "buf2"
|
|
|
861f93 |
+.LASF1:
|
|
|
861f93 |
+ .string "sizetype"
|
|
|
861f93 |
+.LASF5:
|
|
|
861f93 |
+ .string ""
|
|
|
861f93 |
+.LASF2:
|
|
|
861f93 |
+ .string "char"
|
|
|
861f93 |
+ .ident "GCC: (GNU) 4.7.3 20121109 (prerelease)"
|
|
|
861f93 |
+ .section .note.GNU-stack,"",@progbits
|
|
|
861f93 |
--- /dev/null 2012-10-18 11:08:13.202328239 +0200
|
|
|
861f93 |
+++ gdb-7.5.0.20120926-m64-test/gdb/testsuite/gdb.base/longest-types-64bit.bz2.uu 2012-11-09 18:04:52.995692771 +0100
|
|
|
861f93 |
@@ -0,0 +1,67 @@
|
|
|
861f93 |
+begin 755 gdb.base/longest-types-64bit.bz2
|
|
|
861f93 |
+M0EIH.3%!62936<'N#OH`"G/________^______?_Y______//]7SQD5'^/_%
|
|
|
861f93 |
+M=VY7?F_[X`F]]SG7531-==V:Z-.FW;M.U7=';:UH@<&FD31,E3]J'HE-/TR@
|
|
|
861f93 |
+M]4_5/32;%/U3]1--HU/U$#$R'I'J,FC0T-,)B'J#:CU,F@]0`/4:>F@CU/4,
|
|
|
861f93 |
+MA@$S2>IH!H`TR/0-$$:9`C(&FHU3VE-J;4\%,@>4T:#]49-J/4`>HT!H#3)^
|
|
|
861f93 |
+MJ`!H-``T]0&@-```:'J``&@`:9!`R9,@&3(`#3!#0!H``-#$--`,@``T`T#(
|
|
|
861f93 |
+M:`:`&0&@::,0:-```:``-`E-$1#4-3:4]3R9-39(Q/)#3R-30:9#$T!D!H&@
|
|
|
861f93 |
+M,CTGI!H#(#0T`#0``T`T`:``-``T`0,F3(!DR``TP0T`:``#0Q#30#(``-`-
|
|
|
861f93 |
+M`R&@&@!D!H&FC$&C0``&@`#0)%)H32>JGZ&!)Z1B1X@)DTVC4>H`&0:``R&@
|
|
|
861f93 |
+M,C0:``T``,C0``!H``#(`T`:#0U^\?]7K8M.96V/2[?M*DC)>WIUF)H7T\
|
|
|
861f93 |
+M[0D)70G25.YB!,:;8Q(;&XPAB4+$Q%:P)PA-;E=!-&$KNR22EM>$:KKRE&\Q
|
|
|
861f93 |
+M..M]L1*,!>D!X)RW,[,1I,9N%X-N&2+*:&)DJY4(VFQG%9K[/?J06WACF6-I
|
|
|
861f93 |
+MJ&JJ9,ZK4;X28M@[==%ME(A54:%>+3->MRK(G!8#TY>@E$6DR&<_5:C&/RZE
|
|
|
861f93 |
+MI
|
|
|
861f93 |
+M3R3I!)WX,-%>,!E6#`;*8R*E@++*))U)[6=OKFM%'+$-H5\X@1D)_Y*"NKV.
|
|
|
861f93 |
+M&\F8?SXW^<O]_DW.8WD@HY.NMMIBXFVROM_SKZ#4-`>HQ:Y@(Q[.>PEG=]@^
|
|
|
861f93 |
+M%C"3EZ/1X'H*02ZQH":6"@;8Z0LEW6
|
|
|
861f93 |
+M6(/OTI'-:O6=7$/#?0T9Q[GSY1)6V`+CV@#XWMF`<S:AG<!43X"VGD,E=>)>
|
|
|
861f93 |
+M6^V=*`FB'5G4MD8L3J5XT#SW;J1]ZO+"SPIS%J(P46+Q=CC2$H-`-B&TD)M`
|
|
|
861f93 |
+M&A:066DA%AB0C6,460>M8B+$:-BR&@NM()F`S',,F8+#&0.SMOK@.G<'83N.
|
|
|
861f93 |
+MDA"#5-`JVC("1*TA;/M()&8J0+YH%IFV)+OA@4,`E?3M$[$@&Q`3]A!$&A(-
|
|
|
861f93 |
+M$PBT+2,@PU+2H9(T-H3N6'(2;""%2T*1I2P@`L?AG8&A!=31J7)1(9FB'8X=
|
|
|
861f93 |
+MWJ0S#YEG9K$.#.[L.[CNA"4JSJ^GK2*)UH=MC0.R8+E75'.09<NU&R0G1>[G
|
|
|
861f93 |
+MMQ1*[GI:>#>K`_NZS:V6>$K;OX6#!!N'"2413$DTL&]7KY>B<3V5!!C8#X5+
|
|
|
861f93 |
+MF%9<N\]C%B6OS;LH@1LR3R<LS+<]N]9\JZ<LJ#2_S2'UW('DZ!N>X!8NOKM5
|
|
|
861f93 |
+M+"N&P4.75C16!A9Q;:C.6N`WZDV=-]!
|
|
|
861f93 |
+MO;[ECS>,5PG<T[XC594XI0@RVPD86,M11%(T>]SNP[GV^L?YGI]7_'D8N?XV
|
|
|
861f93 |
+M'[7KZJWYVMXGBQS[`!)YI%3:D)I2!;%'R`W&YB<`9O2#F"C/)F;JK9P+@3&(
|
|
|
861f93 |
+MAH31[W)=YCODQDUKNM7A"3.C!2%CHTJNZ"Z\+#F-?(DLE>XAC%07B8;$%J_L
|
|
|
861f93 |
+MJPK48QC&,916=IM+<1&WRKLB6&Q2O79*!7S$,`7J8*!`!=K:5W550[NH9M#_
|
|
|
861f93 |
+MKL!LT,&;59GZW7S"5Z4%`%&!`9"J9`0:IR&H=MTKT=PEYC$,4K90M9AT'%;_
|
|
|
861f93 |
+MB0HVLE)(W&YWF,C:TURXO:`M[RX(A-GT97456Q4Z*HPU*4J:*[WU-4GD.9UV
|
|
|
861f93 |
+MSA#L4X[[*Y+)8IF.EO<.TP4IC2?(4HX)W1#:GOMOD2F;HM1BV#
|
|
|
861f93 |
+MP@$\$FD4C-Q^L"H^)NP2-.^JTT!8+!;'Z=KM7%'K@\)*PSETF&M6<Q#>;PH[
|
|
|
861f93 |
+M7:PJ-!#,!6N<3')-0C,>15'IZ>@U^CJJJ+>+>%%)%BBATD\)*F6&BLMIR&?\
|
|
|
861f93 |
+MQ2_?33@"NR1/CN\:)>5DG6`>$;$3QA94'-3]*CU6YG])<=2)'GC"RP-RK&-3
|
|
|
861f93 |
+MZDT-M_)R+F06DS?CR>E@^!,33"U6X<@OXO$Q>U$\T@IU
|
|
|
861f93 |
+M('>'@T=>K`G7H8K5GLXMS3*^@JLVBHHE'.&?9RKC?Y`&&3J5!/C$++<@U#Q'
|
|
|
861f93 |
+M9R3I.$+S`%]-.UO>WH^C73F<&;RIJR+(Q@7(3PP*W[-O,,DD3S7BUK^I@D%*
|
|
|
861f93 |
+M`Y<*2TXJ&7;2'6'R.U>]0-="M`K+&N%/==N4U@9%@M1)U&251C($^S"WL"]T
|
|
|
861f93 |
+M-XN'D2[II3-$K%+&`3['O)%,8G*E%_8RV6A5B_4(2/?-AIC.\/>,YFJ<(G.8
|
|
|
861f93 |
+MAVP?UN*=ME:7&T!C%)I:&4H:-5>&^!&0>A.O'0G'/6&ZZ964@04&=#DC`%&:
|
|
|
861f93 |
+MUNLOS?,?'T:T!8L80<H_W1>='M:96K4;JX)6.('1#J$.1/L)$IS<4/*'2D34
|
|
|
861f93 |
+M/@J\BA(I2T40JS%9G8F!7U5_!#'U!+[7$ES&)@:*QAET-IBX6'_N5^7/#>@V
|
|
|
861f93 |
+MN3&,-6(AG[8&!8LV+F_U"W?/)+Y^,;=1K:SW28<0WA2"UPHP^8FG#R$!`Y`,
|
|
|
861f93 |
+MLF<`U*NNU\[6N03"*?I8D=K7.Z*H=A_3
|
|
|
861f93 |
+M\[Z\D+/3>7;S=LVC(BQ,5
|
|
|
861f93 |
+M:4)>8Q_\#G`'P*_-]T!G4$`V0BS]'S)D/;V7R?.2F?SF)N+2+#P2_
|
|
|
861f93 |
+M(8?NF/+?:UMR3B#9$MBDCI2G7&N'T`FV!ERQ[21DOJ_8I73#BILTTSK)B5P<
|
|
|
861f93 |
+MG22S=*7TI>G(49TCE&*UIVT-MP808VTVV-$(*`VT<%>%96AHOL`(7%SI2%-R
|
|
|
861f93 |
+M#G2F02VQQH-7KT3E05I9Z)E\$Y8ED1KU`(4QHT%B]1$F:F1&8DAN.Q4&*?F@
|
|
|
861f93 |
+M.8D965.$PRH
|
|
|
861f93 |
+M(F!2TA\,RE
|
|
|
861f93 |
+M5@U!62M"WBJ=&Q(L$5,4494K=.0B0#,C3$*``XLTF$DN!6P#%,4K%HTIC[*O
|
|
|
861f93 |
+M6"4S,;RN&@=NP7@72:=U#&JPBQ-60OEAWY;CUYF+$73.R>T5HD,G=G!KTF3D
|
|
|
861f93 |
+M94"&ZA-F,.19=8`\(Q;A07Q%!19*3#*F9Q+D(0K@V87@O.=7EJIM6`!4`>D!
|
|
|
861f93 |
+M)49QHA!BV+:4O@K00$$!5*6>A@2@4D)@R\"%$2F"O:24J*L(RP#N;O4K7I&2
|
|
|
861f93 |
+M[#)KR47H-N[<O^S-)"_Q\>VJ%3>$`9,AF8QID&I3G+D`*]BX98B$2K":A7_\
|
|
|
861f93 |
+M_]7LT!4,$NL5)NE>9[:MK2_/'GO:7"P`=
|
|
|
861f93 |
+M>P(\L]O?"-APH(834$,W!IJS+U1F1C.!D$!&KS^-6%F90PQ[F]F=$^QE\X+-
|
|
|
861f93 |
+M@.W*LPH_78B>MHH@69RU[*'1J@8QAC\KSV@IG\(;_CUW:ZR2.,0$E3LZ_^P=
|
|
|
861f93 |
+M<_DCP"Q<`;+_;YP#^U%&E^#2M%,T?F3UN^>TSH)GFL"\%RF[KNZ+[R+@<&.$
|
|
|
861f93 |
+MC42)B96\1-.O_I).K7)X]W>EQ):4C(XB*+:S%0_37D^EBP+1HU(D?3"%_O2R
|
|
|
861f93 |
+M6-#X>AU#<$*!/,W6QC^;O^%]LR&_X'<8X$<3CUU_QFAJ;">H)2443GD4W!4#
|
|
|
861f93 |
+?<55!2^6_8J$)-O<>\H0U/6Q^>UG0%W)%.%"0P>X.^@``
|
|
|
861f93 |
+`
|
|
|
861f93 |
+end
|