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
1382f0f0
Commit
1382f0f0
authored
Jun 17, 2004
by
Roger Sayle
Committed by
Roger Sayle
Jun 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fold-const.c (fold_relational_const): Use constant_boolean_node.
From-SVN: r83307
parent
801e2270
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
25 deletions
+21
-25
gcc/ChangeLog
+4
-0
gcc/fold-const.c
+17
-25
No files found.
gcc/ChangeLog
View file @
1382f0f0
2004-06-17 Roger Sayle <roger@eyesopen.com>
* fold-const.c (fold_relational_const): Use constant_boolean_node.
2004-06-17 Jan Hubicka <jh@suse.cz>
PR target/15433
...
...
gcc/fold-const.c
View file @
1382f0f0
...
...
@@ -9966,8 +9966,7 @@ fold_not_const (tree arg0, tree type)
static
tree
fold_relational_const
(
enum
tree_code
code
,
tree
type
,
tree
op0
,
tree
op1
)
{
tree
tem
;
int
invert
;
int
result
,
invert
;
/* From here on, the only cases we handle are when the result is
known to be a constant.
...
...
@@ -9981,14 +9980,15 @@ fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
if
(
code
==
LE_EXPR
||
code
==
GT_EXPR
)
{
tem
=
op0
,
op0
=
op1
,
op1
=
tem
;
tree
tem
=
op0
;
op0
=
op1
;
op1
=
tem
;
code
=
swap_tree_comparison
(
code
);
}
/* Note that it is safe to invert for real values here because we
will check below in the one case that it matters. */
tem
=
NULL_TREE
;
invert
=
0
;
if
(
code
==
NE_EXPR
||
code
==
GE_EXPR
)
{
...
...
@@ -10001,17 +10001,16 @@ fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
if
(
TREE_CODE
(
op0
)
==
INTEGER_CST
&&
TREE_CODE
(
op1
)
==
INTEGER_CST
)
{
if
(
code
==
EQ_EXPR
)
tem
=
build_int_2
(
tree_int_cst_equal
(
op0
,
op1
),
0
);
result
=
tree_int_cst_equal
(
op0
,
op1
);
else
if
(
TYPE_UNSIGNED
(
TREE_TYPE
(
op0
)))
result
=
INT_CST_LT_UNSIGNED
(
op0
,
op1
);
else
tem
=
build_int_2
((
TYPE_UNSIGNED
(
TREE_TYPE
(
op0
))
?
INT_CST_LT_UNSIGNED
(
op0
,
op1
)
:
INT_CST_LT
(
op0
,
op1
)),
0
);
result
=
INT_CST_LT
(
op0
,
op1
);
}
else
if
(
code
==
EQ_EXPR
&&
!
TREE_SIDE_EFFECTS
(
op0
)
&&
integer_zerop
(
op1
)
&&
tree_expr_nonzero_p
(
op0
))
tem
=
build_int_2
(
0
,
0
)
;
result
=
0
;
/* Two real constants can be compared explicitly. */
else
if
(
TREE_CODE
(
op0
)
==
REAL_CST
&&
TREE_CODE
(
op1
)
==
REAL_CST
)
...
...
@@ -10025,28 +10024,21 @@ fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
if
(
REAL_VALUE_ISNAN
(
TREE_REAL_CST
(
op0
))
||
REAL_VALUE_ISNAN
(
TREE_REAL_CST
(
op1
)))
tem
=
build_int_2
(
invert
&&
code
==
LT_EXPR
,
0
)
;
result
=
invert
&&
code
==
LT_EXPR
;
else
if
(
code
==
EQ_EXPR
)
tem
=
build_int_2
(
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
op0
),
TREE_REAL_CST
(
op1
)),
0
);
result
=
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
op0
),
TREE_REAL_CST
(
op1
));
else
tem
=
build_int_2
(
REAL_VALUES_LESS
(
TREE_REAL_CST
(
op0
),
TREE_REAL_CST
(
op1
)),
0
);
result
=
REAL_VALUES_LESS
(
TREE_REAL_CST
(
op0
),
TREE_REAL_CST
(
op1
));
}
if
(
tem
==
NULL_TREE
)
else
return
NULL_TREE
;
if
(
invert
)
TREE_INT_CST_LOW
(
tem
)
^=
1
;
TREE_TYPE
(
tem
)
=
type
;
if
(
TREE_CODE
(
type
)
==
BOOLEAN_TYPE
)
return
lang_hooks
.
truthvalue_conversion
(
tem
);
return
tem
;
result
^=
1
;
return
constant_boolean_node
(
result
,
type
);
}
/* Build an expression for the address of T. Folds away INDIRECT_REF to
...
...
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