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
29ebe69a
Commit
29ebe69a
authored
Apr 02, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r666
parent
d64be5ec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
7 deletions
+21
-7
gcc/fold-const.c
+1
-1
gcc/genattrtab.c
+4
-4
gcc/optabs.c
+16
-2
No files found.
gcc/fold-const.c
View file @
29ebe69a
...
...
@@ -3680,7 +3680,7 @@ fold (expr)
/* If this is A != 0 ? A : 0, this is simply A. For ==, it is
always zero. */
if
(
integer_zerop
(
arg2
))
if
(
integer_zerop
(
TREE_OPERAND
(
arg0
,
1
))
&&
integer_zerop
(
arg2
))
{
if
(
comp_code
==
NE_EXPR
)
return
arg1
;
...
...
gcc/genattrtab.c
View file @
29ebe69a
...
...
@@ -396,7 +396,7 @@ attr_rtx (va_alist)
{
rtx
arg0
=
va_arg
(
p
,
rtx
);
hashcode
=
(
code
+
RTL_HASH
(
arg0
));
hashcode
=
(
(
int
)
code
+
RTL_HASH
(
arg0
));
for
(
h
=
attr_hash_table
[
hashcode
%
RTL_HASH_SIZE
];
h
;
h
=
h
->
next
)
if
(
h
->
hashcode
==
hashcode
&&
GET_CODE
(
h
->
u
.
rtl
)
==
code
...
...
@@ -416,7 +416,7 @@ attr_rtx (va_alist)
rtx
arg0
=
va_arg
(
p
,
rtx
);
rtx
arg1
=
va_arg
(
p
,
rtx
);
hashcode
=
(
code
+
RTL_HASH
(
arg0
)
+
RTL_HASH
(
arg1
));
hashcode
=
(
(
int
)
code
+
RTL_HASH
(
arg0
)
+
RTL_HASH
(
arg1
));
for
(
h
=
attr_hash_table
[
hashcode
%
RTL_HASH_SIZE
];
h
;
h
=
h
->
next
)
if
(
h
->
hashcode
==
hashcode
&&
GET_CODE
(
h
->
u
.
rtl
)
==
code
...
...
@@ -436,7 +436,7 @@ attr_rtx (va_alist)
{
char
*
arg0
=
va_arg
(
p
,
char
*
);
hashcode
=
(
code
+
RTL_HASH
(
arg0
));
hashcode
=
(
(
int
)
code
+
RTL_HASH
(
arg0
));
for
(
h
=
attr_hash_table
[
hashcode
%
RTL_HASH_SIZE
];
h
;
h
=
h
->
next
)
if
(
h
->
hashcode
==
hashcode
&&
GET_CODE
(
h
->
u
.
rtl
)
==
code
...
...
@@ -456,7 +456,7 @@ attr_rtx (va_alist)
char
*
arg0
=
va_arg
(
p
,
char
*
);
char
*
arg1
=
va_arg
(
p
,
char
*
);
hashcode
=
(
code
+
RTL_HASH
(
arg0
)
+
RTL_HASH
(
arg1
));
hashcode
=
(
(
int
)
code
+
RTL_HASH
(
arg0
)
+
RTL_HASH
(
arg1
));
for
(
h
=
attr_hash_table
[
hashcode
%
RTL_HASH_SIZE
];
h
;
h
=
h
->
next
)
if
(
h
->
hashcode
==
hashcode
&&
GET_CODE
(
h
->
u
.
rtl
)
==
code
...
...
gcc/optabs.c
View file @
29ebe69a
...
...
@@ -1315,6 +1315,16 @@ emit_no_conflict_block (insns, target, op0, op1, equiv)
an insn to move RESULT to TARGET. This last insn will have a REQ_EQUAL
note with an operand of EQUIV.
Moving assignments to pseudos outside of the block is done to improve
the generated code, but is not required to generate correct code,
hence being unable to move an assignment is not grounds for not making
a libcall block. There are two reasons why it is safe to leave these
insns inside the block: First, we know that these pseudos cannot be
used in generated RTL outside the block since they are created for
temporary purposes within the block. Second, CSE will not record the
values of anything set inside a libcall block, so we know they must
be dead at the end of the block.
Except for the first group of insns (the ones setting pseudos), the
block is delimited by REG_RETVAL and REG_LIBCALL notes. */
...
...
@@ -1328,7 +1338,9 @@ emit_libcall_block (insns, target, result, equiv)
rtx
prev
,
next
,
first
,
last
,
insn
;
/* First emit all insns that set pseudos. Remove them from the list as
we go. */
we go. Avoid insns that set pseudo which were referenced in previous
insns. These can be generated by move_by_pieces, for example,
to update an address. */
for
(
insn
=
insns
;
insn
;
insn
=
next
)
{
...
...
@@ -1337,7 +1349,9 @@ emit_libcall_block (insns, target, result, equiv)
next
=
NEXT_INSN
(
insn
);
if
(
set
!=
0
&&
GET_CODE
(
SET_DEST
(
set
))
==
REG
&&
REGNO
(
SET_DEST
(
set
))
>=
FIRST_PSEUDO_REGISTER
)
&&
REGNO
(
SET_DEST
(
set
))
>=
FIRST_PSEUDO_REGISTER
&&
!
reg_mentioned_p
(
SET_DEST
(
set
),
PATTERN
(
insns
))
&&
!
reg_used_between_p
(
SET_DEST
(
set
),
insns
,
insn
))
{
if
(
PREV_INSN
(
insn
))
NEXT_INSN
(
PREV_INSN
(
insn
))
=
next
;
...
...
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