| /openjdk7/jdk/src/share/classes/sun/tools/tree/ |
| H A D | BreakStatement.java | 41 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 D | ContinueStatement.java | 41 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 D | EqualExpression.java | 78 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 D | GreaterExpression.java | 75 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 D | GreaterOrEqualExpression.java | 75 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 D | LessExpression.java | 75 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 D | LessOrEqualExpression.java | 75 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 D | NotEqualExpression.java | 78 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 D | AndExpression.java | 104 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 D | BooleanExpression.java | 103 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument 105 asm.add(where, opc_goto, lbl);
|
| H A D | InstanceOfExpression.java | 116 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 D | NotExpression.java | 132 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument 133 right.codeBranch(env, ctx, asm, lbl, !whenTrue);
|
| H A D | OrExpression.java | 104 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 D | Statement.java | 294 public boolean hasLabel (Identifier lbl) { argument 298 if (labels[i].equals(lbl)) {
|
| H A D | Context.java | 678 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 D | Expression.java | 421 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 D | SwitchData.java | 64 public void add(int n, Label lbl) { argument 76 tab.put(new Integer(n), lbl);
|
| H A D | Assembler.java | 116 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 D | assembler_sparc.inline.hpp | 661 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 D | ServiceDialog.java | 2775 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 D | c1_LIR.hpp | 1193 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
|