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
462da2af
Commit
462da2af
authored
May 06, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(final_scan_insn): Modify conditional moves whose cc is nonstandard.
From-SVN: r11943
parent
17c1a44f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
6 deletions
+31
-6
gcc/final.c
+31
-6
No files found.
gcc/final.c
View file @
462da2af
...
...
@@ -1869,12 +1869,29 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
}
/* Make same adjustments to instructions that examine the
condition codes without jumping (if this machine has them). */
condition codes without jumping and instructions that
handle conditional moves (if this machine has either one). */
if
(
cc_status
.
flags
!=
0
&&
GET_CODE
(
body
)
==
SET
)
{
switch
(
GET_CODE
(
SET_SRC
(
body
)))
rtx
cond_rtx
,
then_rtx
,
else_rtx
;
if
(
GET_CODE
(
insn
)
!=
JUMP_INSN
&&
GET_CODE
(
SET_SRC
(
body
))
==
IF_THEN_ELSE
)
{
cond_rtx
=
XEXP
(
SET_SRC
(
body
),
0
);
then_rtx
=
XEXP
(
SET_SRC
(
body
),
1
);
else_rtx
=
XEXP
(
SET_SRC
(
body
),
2
);
}
else
{
cond_rtx
=
SET_SRC
(
body
);
then_rtx
=
const_true_rtx
;
else_rtx
=
const0_rtx
;
}
switch
(
GET_CODE
(
cond_rtx
))
{
case
GTU
:
case
GT
:
...
...
@@ -1888,18 +1905,26 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
case
NE
:
{
register
int
result
;
if
(
XEXP
(
SET_SRC
(
body
)
,
0
)
!=
cc0_rtx
)
if
(
XEXP
(
cond_rtx
,
0
)
!=
cc0_rtx
)
break
;
result
=
alter_cond
(
SET_SRC
(
body
)
);
result
=
alter_cond
(
cond_rtx
);
if
(
result
==
1
)
validate_change
(
insn
,
&
SET_SRC
(
body
),
const_true
_rtx
,
0
);
validate_change
(
insn
,
&
SET_SRC
(
body
),
then
_rtx
,
0
);
else
if
(
result
==
-
1
)
validate_change
(
insn
,
&
SET_SRC
(
body
),
const0
_rtx
,
0
);
validate_change
(
insn
,
&
SET_SRC
(
body
),
else
_rtx
,
0
);
else
if
(
result
==
2
)
INSN_CODE
(
insn
)
=
-
1
;
if
(
SET_DEST
(
body
)
==
SET_SRC
(
body
))
{
PUT_CODE
(
insn
,
NOTE
);
NOTE_LINE_NUMBER
(
insn
)
=
NOTE_INSN_DELETED
;
NOTE_SOURCE_FILE
(
insn
)
=
0
;
break
;
}
}
}
}
#endif
/* Do machine-specific peephole optimizations if desired. */
...
...
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