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
cf85c69b
Commit
cf85c69b
authored
Nov 15, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(unextend): Rewrite type conversions to avoid overflow.
From-SVN: r13165
parent
f6beed21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
gcc/fold-const.c
+13
-3
No files found.
gcc/fold-const.c
View file @
cf85c69b
...
...
@@ -3127,18 +3127,28 @@ unextend (c, p, unsignedp, mask)
if
(
p
==
modesize
||
unsignedp
)
return
c
;
if
(
TREE_UNSIGNED
(
type
))
c
=
convert
(
signed_type
(
type
),
c
);
/* We work by getting just the sign bit into the low-order bit, then
into the high-order bit, then sign-extend. We then XOR that value
with C. */
temp
=
const_binop
(
RSHIFT_EXPR
,
c
,
size_int
(
p
-
1
),
0
);
temp
=
const_binop
(
BIT_AND_EXPR
,
temp
,
size_int
(
1
),
0
);
/* We must use a signed type in order to get an arithmetic right shift.
However, we must also avoid introducing accidental overflows, so that
a subsequent call to integer_zerop will work. Hence we must
do the type conversion here. At this point, the constant is either
zero or one, and the conversion to a signed type can never overflow.
We could get an overflow if this conversion is done anywhere else. */
if
(
TREE_UNSIGNED
(
type
))
temp
=
convert
(
signed_type
(
type
),
temp
);
temp
=
const_binop
(
LSHIFT_EXPR
,
temp
,
size_int
(
modesize
-
1
),
0
);
temp
=
const_binop
(
RSHIFT_EXPR
,
temp
,
size_int
(
modesize
-
p
-
1
),
0
);
if
(
mask
!=
0
)
temp
=
const_binop
(
BIT_AND_EXPR
,
temp
,
convert
(
TREE_TYPE
(
c
),
mask
),
0
);
/* If necessary, convert the type back to match the type of C. */
if
(
TREE_UNSIGNED
(
type
))
temp
=
convert
(
type
,
temp
);
return
convert
(
type
,
const_binop
(
BIT_XOR_EXPR
,
c
,
temp
,
0
));
}
...
...
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