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
ff0dbdd1
Commit
ff0dbdd1
authored
Apr 03, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(nonzero_bits, case REG): Check POINTERS_EXTEND_UNSIGNED.
(num_sign_bit_copies, case REG): Likewise. From-SVN: r9303
parent
96ec484f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletions
+17
-1
gcc/combine.c
+17
-1
No files found.
gcc/combine.c
View file @
ff0dbdd1
...
...
@@ -6752,10 +6752,18 @@ nonzero_bits (x, mode)
sp_alignment
=
MIN
(
PUSH_ROUNDING
(
1
),
sp_alignment
);
#endif
return
nonzero
&
~
(
sp_alignment
-
1
);
nonzero
&=
~
(
sp_alignment
-
1
);
}
#endif
#ifdef POINTERS_EXTEND_UNSIGNED
/* If pointers extend unsigned and this is a pointer in Pmode, say that
all the bits above ptr_mode are known to be zero. */
if
(
POINTERS_EXTEND_UNSIGNED
&&
GET_MODE
(
x
)
==
Pmode
&&
REGNO_POINTER_FLAG
(
REGNO
(
x
)))
nonzero
&=
GET_MODE_MASK
(
ptr_mode
);
#endif
/* If X is a register whose nonzero bits value is current, use it.
Otherwise, if X is a register whose value we can find, use that
value. Otherwise, use the previously-computed global nonzero bits
...
...
@@ -7091,6 +7099,14 @@ num_sign_bit_copies (x, mode)
{
case
REG
:
#ifdef POINTERS_EXTEND_UNSIGNED
/* If pointers extend signed and this is a pointer in Pmode, say that
all the bits above ptr_mode are known to be sign bit copies. */
if
(
!
POINTERS_EXTEND_UNSIGNED
&&
GET_MODE
(
x
)
==
Pmode
&&
mode
==
Pmode
&&
REGNO_POINTER_FLAG
(
REGNO
(
x
)))
return
GET_MODE_BITSIZE
(
Pmode
)
-
GET_MODE_BITSIZE
(
ptr_mode
)
+
1
;
#endif
if
(
reg_last_set_value
[
REGNO
(
x
)]
!=
0
&&
reg_last_set_mode
[
REGNO
(
x
)]
==
mode
&&
(
reg_n_sets
[
REGNO
(
x
)]
==
1
...
...
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