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
125e4dcf
Commit
125e4dcf
authored
Jan 24, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(struct induction): New fields always_executed and
auto_inc_opt. From-SVN: r11089
parent
b200d1aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/loop.h
+5
-1
No files found.
gcc/loop.h
View file @
125e4dcf
...
...
@@ -75,7 +75,9 @@ struct induction
even if further info is available.
Both this and the above can be zero. */
unsigned
ignore
:
1
;
/* 1 prohibits further processing of giv */
unsigned
always_computable
:
1
;
/* 1 if this set occurs each iteration */
unsigned
always_computable
:
1
;
/* 1 if this value is computable every
iteration. */
unsigned
always_executed
:
1
;
/* 1 if this set occurs each iteration. */
unsigned
maybe_multiple
:
1
;
/* Only used for a biv and 1 if this biv
update may be done multiple times per
iteration. */
...
...
@@ -88,6 +90,8 @@ struct induction
unsigned
maybe_dead
:
1
;
/* 1 if this giv might be dead. In that case,
we won't use it to eliminate a biv, it
would probably lose. */
unsigned
auto_inc_opt
:
1
;
/* 1 if this giv had its increment output next
to it to try to form an auto-inc address. */
int
lifetime
;
/* Length of life of this giv */
int
times_used
;
/* # times this giv is used. */
rtx
derive_adjustment
;
/* If nonzero, is an adjustment to be
...
...
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