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
12342f90
Commit
12342f90
authored
Dec 30, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_expr): In NOP_EXPR case, truncate and reextend integer constants.
From-SVN: r2987
parent
fb92d909
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletions
+37
-1
gcc/expr.c
+37
-1
No files found.
gcc/expr.c
View file @
12342f90
...
...
@@ -4134,7 +4134,43 @@ expand_expr (exp, target, tmode, modifier)
return
target
;
}
op0
=
expand_expr
(
TREE_OPERAND
(
exp
,
0
),
NULL_RTX
,
mode
,
0
);
if
(
GET_MODE
(
op0
)
==
mode
||
GET_MODE
(
op0
)
==
VOIDmode
)
if
(
GET_MODE
(
op0
)
==
mode
)
return
op0
;
/* If arg is a constant integer being extended from a narrower mode,
we must really truncate to get the extended bits right. Otherwise
(unsigned long) (unsigned char) ("\377"[0])
would come out as ffffffff. */
if
(
GET_MODE
(
op0
)
==
VOIDmode
&&
(
GET_MODE_BITSIZE
(
TYPE_MODE
(
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
))))
<
GET_MODE_BITSIZE
(
mode
)))
{
/* MODE must be narrower than HOST_BITS_PER_INT. */
int
width
=
GET_MODE_BITSIZE
(
TYPE_MODE
(
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
))));
if
(
width
<
HOST_BITS_PER_WIDE_INT
)
{
HOST_WIDE_INT
val
=
(
GET_CODE
(
op0
)
==
CONST_INT
?
INTVAL
(
op0
)
:
CONST_DOUBLE_LOW
(
op0
));
if
(
TREE_UNSIGNED
(
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
)))
||
!
(
val
&
((
HOST_WIDE_INT
)
1
<<
(
width
-
1
))))
val
&=
((
HOST_WIDE_INT
)
1
<<
width
)
-
1
;
else
val
|=
~
(((
HOST_WIDE_INT
)
1
<<
width
)
-
1
);
op0
=
GEN_INT
(
val
);
}
else
{
op0
=
(
simplify_unary_operation
((
TREE_UNSIGNED
(
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
)))
?
ZERO_EXTEND
:
SIGN_EXTEND
),
mode
,
op0
,
TYPE_MODE
(
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
)))));
if
(
op0
==
0
)
abort
();
}
}
if
(
GET_MODE
(
op0
)
==
VOIDmode
)
return
op0
;
if
(
modifier
==
EXPAND_INITIALIZER
)
return
gen_rtx
(
unsignedp
?
ZERO_EXTEND
:
SIGN_EXTEND
,
mode
,
op0
);
...
...
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