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
10b3fbc5
Commit
10b3fbc5
authored
Feb 19, 1999
by
Per Bothner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new TRY_FINALLY_EXPR tree node.
h Use new TRY_FINALLY_EXPR tree node. See ChangeLog. From-SVN: r25313
parent
0a3af4d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
21 deletions
+5
-21
gcc/java/expr.c
+5
-21
No files found.
gcc/java/expr.c
View file @
10b3fbc5
...
...
@@ -1750,6 +1750,7 @@ java_lang_expand_expr (exp, target, tmode, modifier)
{
tree
current
;
int
has_finally_p
;
rtx
op0
;
switch
(
TREE_CODE
(
exp
))
{
...
...
@@ -1873,13 +1874,12 @@ java_lang_expand_expr (exp, target, tmode, modifier)
return
const0_rtx
;
case
TRY_EXPR
:
/* We expand a try[-catch]
[-finally]
block */
/* We expand a try[-catch] block */
/* Expand the try block */
expand_eh_region_start
();
expand_expr_stmt
(
TREE_OPERAND
(
exp
,
0
));
expand_start_all_catch
();
has_finally_p
=
(
TREE_OPERAND
(
exp
,
2
)
?
1
:
0
);
/* Expand all catch clauses (EH handlers) */
for
(
current
=
TREE_OPERAND
(
exp
,
1
);
current
;
...
...
@@ -1887,31 +1887,15 @@ java_lang_expand_expr (exp, target, tmode, modifier)
{
extern
rtx
return_label
;
tree
type
;
/* If we have a finally, the last exception handler is the
one that is supposed to catch everything. */
if
(
has_finally_p
&&
!
TREE_CHAIN
(
current
))
type
=
NULL_TREE
;
else
{
tree
catch
=
java_get_catch_block
(
current
,
has_finally_p
);
tree
decl
=
BLOCK_EXPR_DECLS
(
catch
);
type
=
(
decl
?
TREE_TYPE
(
TREE_TYPE
(
decl
))
:
NULL_TREE
);
}
tree
catch
=
TREE_OPERAND
(
current
,
0
);
tree
decl
=
BLOCK_EXPR_DECLS
(
catch
);
type
=
(
decl
?
TREE_TYPE
(
TREE_TYPE
(
decl
))
:
NULL_TREE
);
start_catch_handler
(
prepare_eh_table_type
(
type
));
expand_expr_stmt
(
TREE_OPERAND
(
current
,
0
));
expand_resume_after_catch
();
end_catch_handler
();
}
/* Expand the finally block, if any */
if
(
has_finally_p
)
{
tree
finally
=
TREE_OPERAND
(
exp
,
2
);
if
(
FINALLY_EXPR_LABEL
(
finally
))
emit_label
(
label_rtx
(
FINALLY_EXPR_LABEL
(
finally
)));
expand_expr_stmt
(
FINALLY_EXPR_BLOCK
(
finally
));
}
expand_end_all_catch
();
break
;
...
...
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