blob: 4410dfa9d022e49f866c148788b7fbffa83ae1ba [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.tools.tree;
27
28import sun.tools.java.*;
29import sun.tools.asm.Assembler;
30import sun.tools.asm.Label;
31import java.io.PrintStream;
32import java.util.Hashtable;
33
34/**
35 * WARNING: The contents of this source file are not part of any
36 * supported API. Code that depends on them does so at its own risk:
37 * they are subject to change or removal without notice.
38 */
39public
40class BreakStatement extends Statement {
41 Identifier lbl;
42
43 /**
44 * Constructor
45 */
46 public BreakStatement(long where, Identifier lbl) {
47 super(BREAK, where);
48 this.lbl = lbl;
49 }
50
51 /**
52 * Check statement
53 */
54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) {
55 reach(env, vset);
56 checkLabel(env, ctx);
57 CheckContext destctx = (CheckContext)new CheckContext(ctx, this).getBreakContext(lbl);
58 if (destctx != null) {
59 if (destctx.frameNumber != ctx.frameNumber) {
60 env.error(where, "branch.to.uplevel", lbl);
61 }
62 destctx.vsBreak = destctx.vsBreak.join(vset);
63 } else {
64 if (lbl != null) {
65 env.error(where, "label.not.found", lbl);
66 } else {
67 env.error(where, "invalid.break");
68 }
69 }
70 CheckContext exitctx = ctx.getTryExitContext();
71 if (exitctx != null) {
72 exitctx.vsTryExit = exitctx.vsTryExit.join(vset);
73 }
74 return DEAD_END;
75 }
76
77 /**
78 * The cost of inlining this statement
79 */
80 public int costInline(int thresh, Environment env, Context ctx) {
81 return 1;
82 }
83
84 /**
85 * Code
86 */
87 public void code(Environment env, Context ctx, Assembler asm) {
88 CodeContext newctx = new CodeContext(ctx, this);
89 CodeContext destctx = (CodeContext)newctx.getBreakContext(lbl);
90 codeFinally(env, ctx, asm, destctx, null);
91 asm.add(where, opc_goto, destctx.breakLabel);
92 asm.add(newctx.breakLabel);
93 }
94
95 /**
96 * Print
97 */
98 public void print(PrintStream out, int indent) {
99 super.print(out, indent);
100 out.print("break");
101 if (lbl != null) {
102 out.print(" " + lbl);
103 }
104 out.print(";");
105 }
106}