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
4f0baa73
Commit
4f0baa73
authored
Apr 21, 2003
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refine last change.
From-SVN: r65915
parent
3cd58fd7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
gcc/doc/rtl.texi
+15
-4
No files found.
gcc/doc/rtl.texi
View file @
4f0baa73
...
...
@@ -725,10 +725,21 @@ Stored in the @code{integrated} field and printed as @samp{/i}.
@item
RTX_UNCHANGING_P
(
@var{
x
}
)
Nonzero
in
a
@code{
reg
}
,
@code{
mem
}
,
or
@code{
concat
}
if
the
register
or
memory
is
set
at
most
once
,
anywhere
.
This
does
not
mean
that
it
is
function
invariant
.
This
flag
is
used
to
determine
whether
two
references
conflict
.
See
@code{
tree_dependence
}
in
@file{
alias
.
c
}
for
more
details
.
Stored
in
the
@code{
unchanging
}
field
and
printed
as
@samp{
/
u
}
.
function
invariant
.
GCC
uses
this
flag
to
determine
whether
two
references
conflict
.
As
implemented
by
@code{
true_dependence
}
in
@file{
alias
.
c
}
for
memory
references
,
unchanging
memory
can
'
t
conflict
with
non
-
unchanging
memory
;
a
non
-
unchanging
read
can
conflict
with
a
non
-
unchanging
write
;
an
unchanging
read
can
conflict
with
an
unchanging
write
(
since
there
may
be
a
single
store
to
this
address
to
initialize
it
)
;
and
an
unchanging
store
can
conflict
with
a
non
-
unchanging
read
.
This
means
we
must
make
conservative
assumptions
when
chosing
the
value
of
this
flag
for
a
memory
reference
to
an
object
containing
both
unchanging
and
non
-
unchanging
fields
:
we
must
set
the
flag
when
writing
to
the
object
and
clear
it
when
reading
from
the
object
.
Stored
in
the
@code{
unchanging
}
field
and
printed
as
@samp{
/
u
}
.
@findex
SCHED_GROUP_P
@cindex
@code{
insn
}
and
@samp{
/
s
}
...
...
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