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
434c87d4
Commit
434c87d4
authored
Feb 01, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 01, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (combine_simplify_rtx): Use reversed_comparison_code_parts.
From-SVN: r62246
parent
271bd540
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
gcc/ChangeLog
+4
-0
gcc/combine.c
+12
-7
No files found.
gcc/ChangeLog
View file @
434c87d4
Sat
Feb
1
14
:
14
:
40
CET
2003
Jan
Hubicka
<
jh
@suse
.
cz
>
*
combine
.
c
(
combine_simplify_rtx
)
:
Use
reversed_comparison_code_parts
.
2003
-
02
-
01
Richard
Sandiford
<
rsandifo
@redhat
.
com
>
*
flags
.
h
(
flag_volatile
)
:
Remove
declaration
.
...
...
gcc/combine.c
View file @
434c87d4
...
...
@@ -3708,6 +3708,8 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
if
(
general_operand
(
true_rtx
,
VOIDmode
)
&&
general_operand
(
false_rtx
,
VOIDmode
))
{
enum
rtx_code
reversed
;
/* Restarting if we generate a store-flag expression will cause
us to loop. Just drop through in this case. */
...
...
@@ -3716,9 +3718,10 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
if
(
true_rtx
==
const_true_rtx
&&
false_rtx
==
const0_rtx
)
x
=
gen_binary
(
cond_code
,
mode
,
cond
,
cop1
);
else
if
(
true_rtx
==
const0_rtx
&&
false_rtx
==
const_true_rtx
&&
reverse_condition
(
cond_code
)
!=
UNKNOWN
)
x
=
gen_binary
(
reverse_condition
(
cond_code
),
mode
,
cond
,
cop1
);
&&
((
reversed
=
reversed_comparison_code_parts
(
cond_code
,
cond
,
cop1
,
NULL
))
!=
UNKNOWN
))
x
=
gen_binary
(
reversed
,
mode
,
cond
,
cop1
);
/* Likewise, we can make the negate of a comparison operation
if the result values are - STORE_FLAG_VALUE and zero. */
...
...
@@ -3731,11 +3734,13 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
mode
);
else
if
(
GET_CODE
(
false_rtx
)
==
CONST_INT
&&
INTVAL
(
false_rtx
)
==
-
STORE_FLAG_VALUE
&&
true_rtx
==
const0_rtx
)
&&
true_rtx
==
const0_rtx
&&
((
reversed
=
reversed_comparison_code_parts
(
cond_code
,
cond
,
cop1
,
NULL
))
!=
UNKNOWN
))
x
=
simplify_gen_unary
(
NEG
,
mode
,
gen_binary
(
reverse_condition
(
cond_code
),
mode
,
cond
,
cop1
),
gen_binary
(
reversed
,
mode
,
cond
,
cop1
),
mode
);
else
return
gen_rtx_IF_THEN_ELSE
(
mode
,
...
...
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