Searched defs:asm (Results 276 - 300 of 391) sorted by relevance

<<111213141516

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86MemoryInstruction.java25 package sun.jvm.hotspot.asm.x86;
27 import sun.jvm.hotspot.asm.*;
H A DX86MoveStoreInstruction.java25 package sun.jvm.hotspot.asm.x86;
27 import sun.jvm.hotspot.asm.*;
H A DX86SegmentRegisters.java25 package sun.jvm.hotspot.asm.x86;
H A DX86XMMRegisters.java25 package sun.jvm.hotspot.asm.x86;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAnnotationVisitor.java60 package com.sun.xml.internal.ws.org.objectweb.asm;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java26 package sun.tools.asm;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DArrayExpression.java29 import sun.tools.asm.*;
93 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
95 asm.add(where, opc_ldc, new Integer(args.length));
97 case TC_BOOLEAN: asm.add(where, opc_newarray, new Integer(T_BOOLEAN)); break;
98 case TC_BYTE: asm.add(where, opc_newarray, new Integer(T_BYTE)); break;
99 case TC_SHORT: asm.add(where, opc_newarray, new Integer(T_SHORT)); break;
100 case TC_CHAR: asm.add(where, opc_newarray, new Integer(T_CHAR)); break;
101 case TC_INT: asm.add(where, opc_newarray, new Integer(T_INT)); break;
102 case TC_LONG: asm.add(where, opc_newarray, new Integer(T_LONG)); break;
103 case TC_FLOAT: asm
[all...]
H A DAssignExpression.java29 import sun.tools.asm.Assembler;
125 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
128 int depth = left.codeLValue(env, ctx, asm);
129 right.codeValue(env, ctx, asm);
130 codeDup(env, ctx, asm, right.type.stackSize(), depth);
131 left.codeStore(env, ctx, asm);
136 updater.startAssign(env, ctx, asm);
137 right.codeValue(env, ctx, asm);
138 updater.finishAssign(env, ctx, asm, true);
142 public void code(Environment env, Context ctx, Assembler asm) { argument
[all...]
H A DBreakStatement.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
87 public void code(Environment env, Context ctx, Assembler asm) { argument
90 codeFinally(env, ctx, asm, destctx, null);
91 asm.add(where, opc_goto, destctx.breakLabel);
92 asm.add(newctx.breakLabel);
H A DContinueStatement.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
99 public void code(Environment env, Context ctx, Assembler asm) { argument
101 codeFinally(env, ctx, asm, destctx, null);
102 asm.add(where, opc_goto, destctx.contLabel);
H A DEqualExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
90 right.codeValue(env, ctx, asm);
91 asm.add(where, opc_lcmp);
94 right.codeValue(env, ctx, asm);
95 asm
[all...]
H A DGreaterExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue);
86 right.codeValue(env, ctx, asm);
87 asm.add(where, opc_lcmp);
90 right.codeValue(env, ctx, asm);
91 asm
[all...]
H A DGreaterOrEqualExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
86 right.codeValue(env, ctx, asm);
87 asm.add(where, opc_lcmp);
90 right.codeValue(env, ctx, asm);
91 asm
[all...]
H A DInlineMethodExpression.java29 import sun.tools.asm.Label;
30 import sun.tools.asm.Assembler;
91 public void code(Environment env, Context ctx, Assembler asm) { argument
93 super.code(env, ctx, asm);
95 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
97 body.code(env, newctx, asm);
98 asm.add(newctx.breakLabel);
H A DInlineNewInstanceExpression.java29 import sun.tools.asm.Label;
30 import sun.tools.asm.Assembler;
83 public void code(Environment env, Context ctx, Assembler asm) { argument
84 codeCommon(env, ctx, asm, false);
86 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
87 codeCommon(env, ctx, asm, true);
89 private void codeCommon(Environment env, Context ctx, Assembler asm, argument
91 asm.add(where, opc_new, field.getClassDeclaration());
96 asm.add(where, opc_astore, new Integer(v.number));
97 body.code(env, newctx, asm);
[all...]
H A DInlineReturnStatement.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
93 public void code(Environment env, Context ctx, Assembler asm) { argument
95 expr.codeValue(env, ctx, asm);
98 asm.add(where, opc_goto, destctx.breakLabel);
H A DIntegerExpression.java29 import sun.tools.asm.Assembler;
93 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
94 asm.add(where, opc_ldc, new Integer(value));
H A DLessExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
86 right.codeValue(env, ctx, asm);
87 asm.add(where, opc_lcmp);
90 right.codeValue(env, ctx, asm);
91 asm
[all...]
H A DLessOrEqualExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
86 right.codeValue(env, ctx, asm);
87 asm.add(where, opc_lcmp);
90 right.codeValue(env, ctx, asm);
91 asm
[all...]
H A DNewArrayExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.ArrayData;
121 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
125 args[i].codeValue(env, ctx, asm);
130 asm.add(where, opc_multianewarray, new ArrayData(type, t));
136 asm.add(where, opc_newarray, new Integer(T_BOOLEAN)); break;
138 asm.add(where, opc_newarray, new Integer(T_BYTE)); break;
140 asm.add(where, opc_newarray, new Integer(T_SHORT)); break;
142 asm.add(where, opc_newarray, new Integer(T_CHAR)); break;
144 asm
[all...]
H A DNotEqualExpression.java29 import sun.tools.asm.Assembler;
30 import sun.tools.asm.Label;
78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
90 right.codeValue(env, ctx, asm);
91 asm.add(where, opc_lcmp);
94 right.codeValue(env, ctx, asm);
95 asm
[all...]
H A DStringExpression.java29 import sun.tools.asm.Assembler;
59 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
60 asm.add(where, opc_ldc, this);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DAbstractInstruction.java25 package sun.jvm.hotspot.asm;
H A DInstruction.java25 package sun.jvm.hotspot.asm;
H A DRTLDataTypes.java25 package sun.jvm.hotspot.asm;

Completed in 86 milliseconds

<<111213141516