mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
7f8cd84403
* expression.cc (script_exp_function_origin) (script_exp_function_length): Move from here to ... * script.cc: ... here. (script_set_section_region, script_add_memory) (script_parse_memory_attr, script_include_directive): New functions. * script-sections.cc (class Memory_region): New class. (class Output_section_definition): Add set_memory_region, set_section_vma, set_section_lma and get_section_name methods. (class Script_Sections): Add add_memory_region, find_memory_region, find_memory_region_origin, find_memory_region_length and set_memory_region methods. Have set_section_addresses method walk the list of set memory regions. Extend the print methos to display memory regions. * script-sections.h: Add prototypes for new methods. Add enum for MEMORY region attributes. * yyscript.y: Add support for parsing MEMORY regions. * script-c.h: Add prototypes for new functions. * testsuite/Makefile.am: Add test of MEMORY region functionality. * testsuite/Makefile.in: Regenerate. * testsuite/memory_test.sh: New script. * testsuite/memory_test.s: New assembler source file. * testsuite/memory_test.t: New linker script.
49 lines
1.5 KiB
Bash
Executable File
49 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# memory_test.sh -- test MEMORY regions.
|
|
|
|
# Copyright 2010 Free Software Foundation, Inc.
|
|
# Written by Nick Clifton <nickc@redhat.com>
|
|
|
|
# This file is part of gold.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
|
|
|
|
check()
|
|
{
|
|
file=$1
|
|
pattern=$2
|
|
found=`grep "$pattern" $file`
|
|
if test -z "$found"; then
|
|
echo "pattern \"$pattern\" not found in file $file."
|
|
echo $found
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
check memory_test.stdout \
|
|
" LOAD 0x001000 0x00000000 0x00000000 0x00002 0x00002 R 0x1000"
|
|
check memory_test.stdout \
|
|
" LOAD 0x00112c 0x00001000 0x0000012c 0x00002 0x00002 R 0x1000"
|
|
check memory_test.stdout \
|
|
" LOAD 0x002000 0x00005000 0x00005000 0x00002 0x00002 R 0x1000"
|
|
check memory_test.stdout \
|
|
" LOAD 0x00203c 0x00004000 0x0000603c 0x0002a 0x0002a R E 0x1000"
|
|
|
|
|
|
exit 0
|