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
9af354b7
Commit
9af354b7
authored
Sep 08, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs for USE rtx.
From-SVN: r36265
parent
ce701d1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
gcc/ChangeLog
+2
-0
gcc/rtl.texi
+28
-0
No files found.
gcc/ChangeLog
View file @
9af354b7
...
...
@@ -2,6 +2,8 @@
* combine.c (combine_simplify_rtx): Try to simplify VEC_SELECT of a
VEC_CONCAT.
* rtl.texi (description of USE): Add note about possible pitfalls
with this rtx.
From Richard Henderson:
* reload1.c (choose_reload_regs): Compute need_mode properly.
...
...
gcc/rtl.texi
View file @
9af354b7
...
...
@@ -2057,6 +2057,34 @@ it may not be apparent why this is so. Therefore, the compiler will
not
attempt
to
delete
previous
instructions
whose
only
effect
is
to
store
a
value
in
@var{
x
}
.
@var{
x
}
must
be
a
@code{
reg
}
expression
.
In
some
situations
,
it
may
be
tempting
to
add
a
@code{
use
}
of
a
register
in
a
@code{
parallel
}
to
describe
a
situation
where
the
value
of
a
special
register
will
modify
the
behaviour
of
the
instruction
.
An
hypothetical
example
might
be
a
pattern
for
an
addition
that
can
either
wrap
around
or
use
saturating
addition
depending
on
the
value
of
a
special
control
register
:
@example
(
parallel
[(
set
(
reg
:
SI
2
)
(
unspec
:
SI
[(
reg
:
SI
3
)
(
reg
:
SI
4
)]
0
))
(
use
(
reg
:
SI
1
))])
@end
example
@noindent
This
will
not
work
,
several
of
the
optimizers
only
look
at
expressions
locally
;
it
is
very
likely
that
if
you
have
multiple
insns
with
identical
inputs
to
the
@code
{
unspec
},
they
will
be
optimized
away
even
if
register
1
changes
in
between
.
This
means
that
@code
{
use
}
can
@emph
{
only
}
be
used
to
describe
that
the
register
is
live
.
You
should
think
twice
before
adding
@code
{
use
}
statements
,
more
often
you
will
want
to
use
@code
{
unspec
}
instead
.
The
@code
{
use
}
RTX
is
most
commonly
useful
to
describe
that
a
fixed
register
is
implicitly
used
in
an
insn
.
It
is
also
safe
to
use
in
patterns
where
the
compiler
knows
for
other
reasons
that
the
result
of
the
whole
pattern
is
variable
,
such
as
@samp
{
movstr
@var
{
m
}}
or
@samp
{
call
}
patterns
.
During
the
reload
phase
,
an
insn
that
has
a
@code
{
use
}
as
pattern
can
carry
a
reg_equal
note
.
These
@code
{
use
}
insns
will
be
deleted
before
the
reload
phase
exits
.
...
...
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