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
eb528802
Commit
eb528802
authored
Mar 28, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r605
parent
11030a60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
gcc/varasm.c
+21
-2
No files found.
gcc/varasm.c
View file @
eb528802
...
...
@@ -1545,11 +1545,14 @@ const_hash (exp)
/* For record type, include the type in the hashing.
We do not do so for array types
because (1) the sizes of the elements are sufficient
and (2) distinct array types can have the same constructor. */
and (2) distinct array types can have the same constructor.
Instead, we include the array size because the constructor could
be shorter. */
if
(
TREE_CODE
(
TREE_TYPE
(
exp
))
==
RECORD_TYPE
)
hi
=
((
int
)
TREE_TYPE
(
exp
)
&
((
1
<<
HASHBITS
)
-
1
))
%
MAX_HASH_TABLE
;
else
hi
=
5
;
hi
=
((
5
+
int_size_in_bytes
(
TREE_TYPE
(
exp
)))
&
((
1
<<
HASHBITS
)
-
1
))
%
MAX_HASH_TABLE
;
for
(
link
=
CONSTRUCTOR_ELTS
(
exp
);
link
;
link
=
TREE_CHAIN
(
link
))
hi
=
(
hi
*
603
+
const_hash
(
TREE_VALUE
(
link
)))
%
MAX_HASH_TABLE
;
...
...
@@ -1678,6 +1681,15 @@ compare_constant_1 (exp, p)
return
0
;
p
+=
sizeof
type
;
/* For arrays, insist that the size in bytes match. */
if
(
TREE_CODE
(
TREE_TYPE
(
exp
))
==
ARRAY_TYPE
)
{
int
size
=
int_size_in_bytes
(
TREE_TYPE
(
exp
));
if
(
bcmp
(
&
size
,
p
,
sizeof
size
))
return
0
;
p
+=
sizeof
size
;
}
for
(
link
=
CONSTRUCTOR_ELTS
(
exp
);
link
;
link
=
TREE_CHAIN
(
link
))
if
((
p
=
compare_constant_1
(
TREE_VALUE
(
link
),
p
))
==
0
)
return
0
;
...
...
@@ -1792,6 +1804,13 @@ record_constant_1 (exp)
type
=
0
;
obstack_grow
(
&
permanent_obstack
,
(
char
*
)
&
type
,
sizeof
type
);
/* For arrays, insist that the size in bytes match. */
if
(
TREE_CODE
(
TREE_TYPE
(
exp
))
==
ARRAY_TYPE
)
{
int
size
=
int_size_in_bytes
(
TREE_TYPE
(
exp
));
obstack_grow
(
&
permanent_obstack
,
(
char
*
)
&
size
,
sizeof
size
);
}
for
(
link
=
CONSTRUCTOR_ELTS
(
exp
);
link
;
link
=
TREE_CHAIN
(
link
))
record_constant_1
(
TREE_VALUE
(
link
));
return
;
...
...
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