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
17bec8ee
Commit
17bec8ee
authored
Oct 10, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Oct 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't put things between tablejumps and jump tables in loop.c
From-SVN: r29887
parent
85c45372
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletions
+20
-1
gcc/ChangeLog
+5
-0
gcc/loop.c
+15
-1
No files found.
gcc/ChangeLog
View file @
17bec8ee
Sun
Oct
10
13
:
28
:
48
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
loop
.
c
(
find_and_verify_loops
)
:
When
looking
for
a
BARRIER
,
don
'
t
use
one
before
a
jump
table
.
Sun
Oct
10
02
:
41
:
41
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
genrecog
.
c
(
add_to_sequence
)
:
Move
allow_const_int
test
outside
...
...
gcc/loop.c
View file @
17bec8ee
...
...
@@ -2841,16 +2841,30 @@ find_and_verify_loops (f)
rtx
target
=
JUMP_LABEL
(
insn
)
?
JUMP_LABEL
(
insn
)
:
get_last_insn
();
int
target_loop_num
=
uid_loop_num
[
INSN_UID
(
target
)];
rtx
loc
;
rtx
loc
,
loc2
;
for
(
loc
=
target
;
loc
;
loc
=
PREV_INSN
(
loc
))
if
(
GET_CODE
(
loc
)
==
BARRIER
/* Don't move things inside a tablejump. */
&&
((
loc2
=
next_nonnote_insn
(
loc
))
==
0
||
GET_CODE
(
loc2
)
!=
CODE_LABEL
||
(
loc2
=
next_nonnote_insn
(
loc2
))
==
0
||
GET_CODE
(
loc2
)
!=
JUMP_INSN
||
(
GET_CODE
(
PATTERN
(
loc2
))
!=
ADDR_VEC
&&
GET_CODE
(
PATTERN
(
loc2
))
!=
ADDR_DIFF_VEC
))
&&
uid_loop_num
[
INSN_UID
(
loc
)]
==
target_loop_num
)
break
;
if
(
loc
==
0
)
for
(
loc
=
target
;
loc
;
loc
=
NEXT_INSN
(
loc
))
if
(
GET_CODE
(
loc
)
==
BARRIER
/* Don't move things inside a tablejump. */
&&
((
loc2
=
next_nonnote_insn
(
loc
))
==
0
||
GET_CODE
(
loc2
)
!=
CODE_LABEL
||
(
loc2
=
next_nonnote_insn
(
loc2
))
==
0
||
GET_CODE
(
loc2
)
!=
JUMP_INSN
||
(
GET_CODE
(
PATTERN
(
loc2
))
!=
ADDR_VEC
&&
GET_CODE
(
PATTERN
(
loc2
))
!=
ADDR_DIFF_VEC
))
&&
uid_loop_num
[
INSN_UID
(
loc
)]
==
target_loop_num
)
break
;
...
...
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