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
ccc2d6d0
Commit
ccc2d6d0
authored
Aug 19, 1998
by
Mark Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rtlanal.c (for_each_rtx): Check in the change mentioned below.
From-SVN: r21855
parent
85cdcd2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
0 deletions
+73
-0
gcc/rtlanal.c
+73
-0
No files found.
gcc/rtlanal.c
View file @
ccc2d6d0
...
...
@@ -2015,3 +2015,76 @@ computed_jump_p (insn)
}
return
0
;
}
/* Traverse X via depth-first search, calling F for each
sub-expression (including X itself). F is also passed the DATA.
If F returns -1, do not traverse sub-expressions, but continue
traversing the rest of the tree. If F ever returns any other
non-zero value, stop the traversal, and return the value returned
by F. Otherwise, return 0. This function does not traverse inside
tree structure that contains RTX_EXPRs, or into sub-expressions
whose format code is `0' since it is not known whether or not those
codes are actually RTL.
This routine is very general, and could (should?) be used to
implement many of the other routines in this file. */
int
for_each_rtx
(
x
,
f
,
data
)
rtx
*
x
;
rtx_function
f
;
void
*
data
;
{
int
result
;
int
length
;
char
*
format
;
int
i
;
/* Call F on X. */
result
=
(
*
f
)(
x
,
data
);
if
(
result
==
-
1
)
/* Do not traverse sub-expressions. */
return
0
;
else
if
(
result
!=
0
)
/* Stop the traversal. */
return
result
;
if
(
*
x
==
NULL_RTX
)
/* There are no sub-expressions. */
return
0
;
length
=
GET_RTX_LENGTH
(
GET_CODE
(
*
x
));
format
=
GET_RTX_FORMAT
(
GET_CODE
(
*
x
));
for
(
i
=
0
;
i
<
length
;
++
i
)
{
switch
(
format
[
i
])
{
case
'e'
:
result
=
for_each_rtx
(
&
XEXP
(
*
x
,
i
),
f
,
data
);
if
(
result
!=
0
)
return
result
;
break
;
case
'V'
:
case
'E'
:
if
(
XVEC
(
*
x
,
i
)
!=
0
)
{
int
j
;
for
(
j
=
0
;
j
<
XVECLEN
(
*
x
,
i
);
++
j
)
{
result
=
for_each_rtx
(
&
XVECEXP
(
*
x
,
i
,
j
),
f
,
data
);
if
(
result
!=
0
)
return
result
;
}
}
break
;
default
:
/* Nothing to do. */
break
;
}
}
return
0
;
}
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