Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e8c3586a
Commit
e8c3586a
authored
Jan 22, 2000
by
Alan Modra
Committed by
Nick Clifton
Jan 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix definition of UNIQUE_SECTION so that zero initialised data is placed
into .data. From-SVN: r31563
parent
37b80d2e
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
18 deletions
+25
-18
gcc/ChangeLog
+10
-0
gcc/config/elfos.h
+5
-6
gcc/config/i386/interix.c
+2
-2
gcc/config/i386/winnt.c
+2
-2
gcc/config/mips/elf.h
+3
-4
gcc/config/mips/elf64.h
+3
-4
No files found.
gcc/ChangeLog
View file @
e8c3586a
2000
-
01
-
22
Alan
Modra
<
alan
@SPRI
.
Levels
.
UniSA
.
Edu
.
Au
>
*
config
/
elfos
.
h
(
UNIQUE_SECTION
)
:
Restore
uninitialised
data
section
naming
to
that
prior
to
2000
-
01
-
07
patch
.
*
config
/
mips
/
elf
.
h
(
UNIQUE_SECTION
)
:
Ditto
.
*
config
/
mips
/
elf64
.
h
(
UNIQUE_SECTION
)
:
Ditto
.
*
config
/
mips
/
iris6gld
.
h
(
UNIQUE_SECTION
)
:
Ditto
.
*
config
/
i386
/
interix
.
c
(
UNIQUE_SECTION
)
:
Ditto
.
*
config
/
i386
/
winnt
.
c
(
UNIQUE_SECTION
)
:
Ditto
.
2000
-
01
-
22
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
config
/
arm
/
arm
.
c
(
soft_df_operand
)
:
Reject
SUBREGs
containing
a
...
...
gcc/config/elfos.h
View file @
e8c3586a
...
...
@@ -359,23 +359,22 @@ dtors_section () \
const char *name; \
char *string; \
const char *prefix; \
static const char *prefixes[
4
][2] = \
static const char *prefixes[
/*4*/
3
][2] = \
{ \
{ ".text.", ".gnu.linkonce.t." }, \
{ ".rodata.", ".gnu.linkonce.r." }, \
{ ".data.", ".gnu.linkonce.d." }
,
\
{ ".data.", ".gnu.linkonce.d." } \
/* Do not generate unique sections for uninitialised \
data since we do not have support for this in the \
linker scripts yet... \
{ ".bss.", ".gnu.linkonce.b." } */
\
{ "", "" } \
,{ ".bss.", ".gnu.linkonce.b." } */
\
}; \
\
if (TREE_CODE (DECL) == FUNCTION_DECL) \
sec = 0; \
else if (DECL_INITIAL (DECL) == 0 \
/*
else if (DECL_INITIAL (DECL) == 0 \
|| DECL_INITIAL (DECL) == error_mark_node) \
sec = 3;
\
sec = 3; */
\
else if (DECL_READONLY_SECTION (DECL, RELOC)) \
sec = 1; \
else \
...
...
gcc/config/i386/interix.c
View file @
e8c3586a
...
...
@@ -93,9 +93,9 @@ i386_pe_unique_section (decl, reloc)
without a .rdata section. */
if (TREE_CODE (decl) == FUNCTION_DECL)
prefix = ".text$";
else if (DECL_INITIAL (decl) == 0
/*
else if (DECL_INITIAL (decl) == 0
|| DECL_INITIAL (decl) == error_mark_node)
prefix = "
";
prefix = "
.bss"; */
else if (DECL_READONLY_SECTION (decl, reloc))
#ifdef READONLY_DATA_SECTION
prefix = ".rdata$";
...
...
gcc/config/i386/winnt.c
View file @
e8c3586a
...
...
@@ -480,9 +480,9 @@ i386_pe_unique_section (decl, reloc)
without a .rdata section. */
if
(
TREE_CODE
(
decl
)
==
FUNCTION_DECL
)
prefix
=
".text$"
;
else
if
(
DECL_INITIAL
(
decl
)
==
0
/*
else if (DECL_INITIAL (decl) == 0
|| DECL_INITIAL (decl) == error_mark_node)
prefix
=
"
"
;
prefix = "
.bss"; */
else
if
(
DECL_READONLY_SECTION
(
decl
,
reloc
))
#ifdef READONLY_DATA_SECTION
prefix
=
".rdata$"
;
...
...
gcc/config/mips/elf.h
View file @
e8c3586a
...
...
@@ -212,12 +212,11 @@ do { \
do { \
int len, size, sec; \
char *name, *string, *prefix; \
static char *prefixes[
5
][2] = { \
static char *prefixes[
4
][2] = { \
{ ".text.", ".gnu.linkonce.t." }, \
{ ".rodata.", ".gnu.linkonce.r." }, \
{ ".data.", ".gnu.linkonce.d." }, \
{ ".sdata.", ".gnu.linkonce.s." }, \
{ "", "" } \
{ ".sdata.", ".gnu.linkonce.s." } \
}; \
\
name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \
...
...
@@ -229,7 +228,7 @@ do { \
sec = 0; \
else if (DECL_INITIAL (DECL) == 0 \
|| DECL_INITIAL (DECL) == error_mark_node) \
sec =
4
; \
sec =
2
; \
else if ((TARGET_EMBEDDED_PIC || TARGET_MIPS16) \
&& TREE_CODE (decl) == STRING_CST \
&& !flag_writable_strings) \
...
...
gcc/config/mips/elf64.h
View file @
e8c3586a
...
...
@@ -193,12 +193,11 @@ do { \
do { \
int len, size, sec; \
char *name, *string, *prefix; \
static char *prefixes[
5
][2] = { \
static char *prefixes[
4
][2] = { \
{ ".text.", ".gnu.linkonce.t." }, \
{ ".rodata.", ".gnu.linkonce.r." }, \
{ ".data.", ".gnu.linkonce.d." }, \
{ ".sdata.", ".gnu.linkonce.s." }, \
{ "", "" } \
{ ".sdata.", ".gnu.linkonce.s." } \
}; \
\
name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \
...
...
@@ -210,7 +209,7 @@ do { \
sec = 0; \
else if (DECL_INITIAL (DECL) == 0 \
|| DECL_INITIAL (DECL) == error_mark_node) \
sec =
4
; \
sec =
2
; \
else if ((TARGET_EMBEDDED_PIC || TARGET_MIPS16) \
&& TREE_CODE (decl) == STRING_CST \
&& !flag_writable_strings) \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment