Searched defs:lbl (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBreakStatement.java41 Identifier lbl; field in class:BreakStatement
46 public BreakStatement(long where, Identifier lbl) { argument
48 this.lbl = lbl;
57 CheckContext destctx = (CheckContext)new CheckContext(ctx, this).getBreakContext(lbl);
60 env.error(where, "branch.to.uplevel", lbl);
64 if (lbl != null) {
65 env.error(where, "label.not.found", lbl);
89 CodeContext destctx = (CodeContext)newctx.getBreakContext(lbl);
101 if (lbl !
[all...]
H A DContinueStatement.java41 Identifier lbl; field in class:ContinueStatement
46 public ContinueStatement(long where, Identifier lbl) { argument
48 this.lbl = lbl;
61 CheckContext destctx = (CheckContext)new CheckContext(ctx, this).getContinueContext(lbl);
68 env.error(where, "branch.to.uplevel", lbl);
76 if (lbl != null) {
77 env.error(where, "label.not.found", lbl);
100 CodeContext destctx = (CodeContext)ctx.getContinueContext(lbl);
111 if (lbl !
[all...]
H A DEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnull : opc_ifnonnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpeq : opc_if_acmpne, lbl, whenTrue);
115 asm.add(where, whenTrue ? opc_ifeq : opc_ifne, lbl, whenTrue);
H A DGreaterExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifgt : opc_ifle, lbl, whenTrue);
H A DGreaterOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifge : opc_iflt, lbl, whenTrue);
H A DLessExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_iflt : opc_ifge, lbl, whenTrue);
H A DLessOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifle : opc_ifgt, lbl, whenTrue);
H A DNotEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnonnull : opc_ifnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpne : opc_if_acmpeq, lbl, whenTrue);
114 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DAndExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
108 right.codeBranch(env, ctx, asm, lbl, true);
111 left.codeBranch(env, ctx, asm, lbl, false);
112 right.codeBranch(env, ctx, asm, lbl, false);
H A DBooleanExpression.java103 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
105 asm.add(where, opc_goto, lbl);
H A DInstanceOfExpression.java116 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
118 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DNotExpression.java132 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
133 right.codeBranch(env, ctx, asm, lbl, !whenTrue);
H A DOrExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
106 left.codeBranch(env, ctx, asm, lbl, true);
107 right.codeBranch(env, ctx, asm, lbl, true);
111 right.codeBranch(env, ctx, asm, lbl, false);
H A DStatement.java294 public boolean hasLabel (Identifier lbl) { argument
298 if (labels[i].equals(lbl)) {
H A DContext.java678 Context getLabelContext(Identifier lbl) { argument
681 if (((Statement)(ctx.node)).hasLabel(lbl))
692 Context getBreakContext(Identifier lbl) { argument
693 if (lbl != null) {
694 return getLabelContext(lbl);
714 Context getContinueContext(Identifier lbl) { argument
715 if (lbl != null) {
716 return getLabelContext(lbl);
H A DExpression.java421 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
424 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DSwitchData.java64 public void add(int n, Label lbl) { argument
76 tab.put(new Integer(n), lbl);
H A DAssembler.java116 void optimize(Environment env, Label lbl) { argument
117 lbl.pc = REACHED;
119 for (Instruction inst = lbl.next ; inst != null ; inst = inst.next) {
258 void balance(Label lbl, int depth) { argument
259 for (Instruction inst = lbl ; inst != null ; inst = inst.next) {
271 lbl = (Label)inst;
273 if (lbl.depth != depth) {
275 depth + "/" + lbl.depth +
280 lbl.pc = REACHED;
281 lbl
759 flowFields(Environment env, Label lbl, MemberDefinition locals[]) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp661 Label lbl; local
662 Assembler::call(lbl, relocInfo::none); // No relocation as this is call to pc+0x8
665 bind(lbl);
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java2775 private JLabel lbl; field in class:ServiceDialog.IconRadioButton
2789 lbl = new JLabel(icon);
2790 add(lbl);
2807 lbl.setEnabled(enabled);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1193 LIR_OpLabel(Label* lbl) argument
1195 , _label(lbl) {}
1367 LIR_OpBranch(LIR_Condition cond, BasicType type, Label* lbl) argument
1371 , _label(lbl)
1970 void branch_destination(Label* lbl) { append(new LIR_OpLabel(lbl)); } argument
2101 void branch(LIR_Condition cond, BasicType type, Label* lbl) { append(new LIR_OpBranch(cond, type, lbl)); } argument

Completed in 154 milliseconds