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
22eb7dfa
Commit
22eb7dfa
authored
Mar 16, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Mar 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some cselib bug fixes
From-SVN: r32589
parent
d9f32422
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
gcc/ChangeLog
+8
-0
gcc/simplify-rtx.c
+10
-6
No files found.
gcc/ChangeLog
View file @
22eb7dfa
2000
-
03
-
16
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
simplify
-
rtx
.
c
(
hash_rtx
,
case
MEM
/
REG
):
Take
into
account
that
HASH
may
already
be
nonzero
.
Add
code
/
mode
into
hash
value
immediately
after
repeat
label
.
(
cselib_lookup
)
:
Don
'
t
leave
the
hash
table
in
an
inconsistent
state
before
a
hash
lookup
operation
.
Thu
Mar
16
17
:
03
:
10
MET
2000
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
md
(
all
HI
and
QI
mode
non
-
move
patterns
)
:
Conditionize
...
...
gcc/simplify-rtx.c
View file @
22eb7dfa
...
...
@@ -2435,14 +2435,15 @@ hash_rtx (x, mode, create)
{
cselib_val
*
e
;
int
i
,
j
;
enum
rtx_code
code
;
const
char
*
fmt
;
unsigned
int
hash
=
0
;
enum
rtx_code
code
=
GET_CODE
(
x
);
const
char
*
fmt
=
GET_RTX_FORMAT
(
code
);
/* repeat is used to turn tail-recursion into iteration. */
repeat
:
code
=
GET_CODE
(
x
);
hash
+=
(
unsigned
)
code
+
(
unsigned
)
GET_MODE
(
x
);
switch
(
code
)
{
case
MEM
:
...
...
@@ -2450,7 +2451,8 @@ hash_rtx (x, mode, create)
e
=
cselib_lookup
(
x
,
GET_MODE
(
x
),
create
);
if
(
!
e
)
return
0
;
return
e
->
value
;
hash
+=
e
->
value
;
return
hash
;
case
CONST_INT
:
{
...
...
@@ -2506,7 +2508,6 @@ hash_rtx (x, mode, create)
}
i
=
GET_RTX_LENGTH
(
code
)
-
1
;
hash
+=
(
unsigned
)
code
+
(
unsigned
)
GET_MODE
(
x
);
fmt
=
GET_RTX_FORMAT
(
code
);
for
(;
i
>=
0
;
i
--
)
{
...
...
@@ -2765,8 +2766,11 @@ cselib_lookup (x, mode, create)
return
e
;
e
=
new_cselib_val
(
hashval
,
mode
);
e
->
locs
=
new_elt_loc_list
(
e
->
locs
,
cselib_subst_to_values
(
x
));
/* We have to fill the slot before calling cselib_subst_to_values:
the hash table is inconsistent until we do so, and
cselib_subst_to_values will need to do lookups. */
*
slot
=
(
void
*
)
e
;
e
->
locs
=
new_elt_loc_list
(
e
->
locs
,
cselib_subst_to_values
(
x
));
return
e
;
}
...
...
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