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
ba2e110c
Commit
ba2e110c
authored
Oct 05, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(convert_modes): Properly handle extending constants since we might be
changing signedness. From-SVN: r5623
parent
843fec55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
4 deletions
+26
-4
gcc/expr.c
+26
-4
No files found.
gcc/expr.c
View file @
ba2e110c
...
...
@@ -1210,10 +1210,11 @@ convert_modes (mode, oldmode, x, unsignedp)
/* We can do this with a gen_lowpart if both desired and current modes
are integer, and this is either a constant integer, a register, or a
non-volatile MEM. Except for the constant case
, we must be narrowing
the operand. */
non-volatile MEM. Except for the constant case
where MODE is no
wider than HOST_BITS_PER_WIDE_INT, we must be narrowing
the operand. */
if
(
GET_CODE
(
x
)
==
CONST_INT
if
((
GET_CODE
(
x
)
==
CONST_INT
&&
GET_MODE_BITSIZE
(
mode
)
<=
HOST_BITS_PER_WIDE_INT
)
||
(
GET_MODE_CLASS
(
mode
)
==
MODE_INT
&&
GET_MODE_CLASS
(
oldmode
)
==
MODE_INT
&&
(
GET_CODE
(
x
)
==
CONST_DOUBLE
...
...
@@ -1221,7 +1222,28 @@ convert_modes (mode, oldmode, x, unsignedp)
&&
((
GET_CODE
(
x
)
==
MEM
&&
!
MEM_VOLATILE_P
(
x
)
&&
direct_load
[(
int
)
mode
])
||
GET_CODE
(
x
)
==
REG
)))))
return
gen_lowpart
(
mode
,
x
);
{
/* ?? If we don't know OLDMODE, we have to assume here that
X does not need sign- or zero-extension. This may not be
the case, but it's the best we can do. */
if
(
GET_CODE
(
x
)
==
CONST_INT
&&
oldmode
!=
VOIDmode
&&
GET_MODE_SIZE
(
mode
)
>
GET_MODE_SIZE
(
oldmode
))
{
HOST_WIDE_INT
val
=
INTVAL
(
x
);
int
width
=
GET_MODE_BITSIZE
(
oldmode
);
/* We must sign or zero-extend in this case. Start by
zero-extending, then sign extend if we need to. */
val
&=
((
HOST_WIDE_INT
)
1
<<
width
)
-
1
;
if
(
!
unsignedp
&&
(
val
&
((
HOST_WIDE_INT
)
1
<<
(
width
-
1
))))
val
|=
(
HOST_WIDE_INT
)
(
-
1
)
<<
width
;
return
GEN_INT
(
val
);
}
return
gen_lowpart
(
mode
,
x
);
}
temp
=
gen_reg_rtx
(
mode
);
convert_move
(
temp
,
x
,
unsignedp
);
...
...
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