Searched defs:Instruction (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DInstruction.java21 * $Id: Instruction.java,v 1.2.4.1 2005/09/01 15:45:11 pvedula Exp $
36 abstract class Instruction extends SyntaxTreeNode { class in inherits:SyntaxTreeNode
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DInstruction.java27 public interface Instruction { interface
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java41 class Instruction implements Constants { class in inherits:Constants
46 Instruction next;
57 public Instruction(long where, int opc, Object value, boolean flagCondInverted) { method in class:Instruction
67 public Instruction(boolean flagNoCovered, long where, int opc, Object value) { method in class:Instruction
77 public Instruction(long where, int opc, boolean flagNoCovered) { method in class:Instruction
87 public Instruction(long where, int opc, Object value) { method in class:Instruction
738 out.writeShort(((Instruction)value).pc - pc);
744 out.writeLong(((Instruction)value).pc - pc);
819 } else if (value instanceof Instruction) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstruction.java72 public abstract class Instruction implements Cloneable, Serializable { class in inherits:Cloneable,Serializable
80 * Instruction.readInstruction(). Not to be used otherwise.
82 Instruction() {} method in class:Instruction
84 public Instruction(short opcode, short length) { method in class:Instruction
141 public Instruction copy() {
142 Instruction i = null;
149 i = (Instruction)clone();
175 public static final Instruction readInstruction(ByteSequence bytes)
180 Instruction obj = null;
204 obj = (Instruction)claz
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java38 public class Instruction { class
92 * @see Instruction#accept */
95 R visitNoOperands(Instruction instr, P p);
97 R visitArrayType(Instruction instr, TypeKind kind, P p);
99 R visitBranch(Instruction instr, int offset, P p);
101 R visitConstantPoolRef(Instruction instr, int index, P p);
103 R visitConstantPoolRefAndValue(Instruction instr, int index, int value, P p);
105 R visitLocal(Instruction instr, int index, P p);
107 R visitLocalAndValue(Instruction instr, int index, int value, P p);
109 R visitLookupSwitch(Instruction inst
154 public Instruction(byte[] bytes, int pc) { method in class:Instruction
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java37 class Instruction { class
46 protected Instruction(byte[] bytes, int pc, int bc, int w, int length) { method in class:Instruction
76 public Instruction next() {
81 return Instruction.at(bytes, npc, this);
95 public Instruction forceNextPC(int nextpc) {
97 return new Instruction(bytes, pc, -1, -1, llength);
100 public static Instruction at(byte[] bytes, int pc) {
101 return Instruction.at(bytes, pc, null);
104 public static Instruction at(byte[] bytes, int pc, Instruction reus
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp42 // Instruction class hierarchy
48 class Instruction;
115 typedef Instruction* Value;
130 // A simple closure class for visiting the values of an Instruction
156 // For each concrete Instruction class X, a virtual function do_X is
159 // visitor instead of added to the Instruction classes itself.
286 class Instruction: public CompilationResourceObj { class in inherits:CompilationResourceObj
295 Instruction* _next; // the next instruction if any (NULL for BlockEnd instructions)
296 Instruction* _subst; // the substitution instruction if any
320 ((Instruction*)re
376 Instruction(ValueType* type, ValueStack* state_before = NULL, bool type_is_constant = false) function in class:Instruction
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java390 for (Instruction i = m.instructions(); i != null; i = i.next()) {
401 //if (blab == 1) { for (Instruction j = m.instructions(); j != null; j = j.next()) System.out.println(" |"+j); }
405 Instruction i2 = findPop(i);
430 //System.out.println(new Instruction(i.codeBase, i2.pc-3));
438 //if (blab >= 1) { for (Instruction j = m.instructions(); j != null; j = j.next()) System.out.println(" |"+j); }
446 Instruction findPop(Instruction i) {
673 Instruction i = m.instructions();
1505 public Instruction instructions() {
1606 public Instruction instruction
1780 public static class Instruction implements Cloneable { class in class:Indify
1787 Instruction(byte[] codeBase, int pc) { method in class:Indify.Instruction
[all...]

Completed in 68 milliseconds