Searched refs:Instruction (Results 1 - 25 of 245) sorted by relevance

12345678910

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DBranchInstruction.java27 public interface BranchInstruction extends Instruction {
H A DArithmetic.java27 public interface Arithmetic extends Instruction, RTLOperations {
H A DArithmeticInstruction.java27 public interface ArithmeticInstruction extends Instruction, RTLOperations {
H A DInstructionVisitor.java29 public void visit(long currentPc, Instruction instr);
H A DLogicInstruction.java27 public interface LogicInstruction extends Instruction, RTLOperations {
H A DMoveInstruction.java27 public interface MoveInstruction extends Instruction {
H A DShiftInstruction.java27 public interface ShiftInstruction extends Instruction, RTLOperations {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DTestGenerator.java31 import com.sun.org.apache.bcel.internal.generic.Instruction;
45 private Instruction _aloadDom;
46 private final Instruction _iloadCurrent;
47 private final Instruction _iloadContext;
48 private final Instruction _istoreCurrent;
49 private final Instruction _istoreContext;
50 private final Instruction _astoreIterator;
51 private final Instruction _aloadIterator;
80 public Instruction loadDOM() {
84 public Instruction loadCurrentNod
[all...]
H A DCompareGenerator.java32 import com.sun.org.apache.bcel.internal.generic.Instruction;
51 private final Instruction _iloadCurrent;
52 private final Instruction _istoreCurrent;
53 private final Instruction _aloadDom;
54 private final Instruction _iloadLast;
55 private final Instruction _aloadIterator;
56 private final Instruction _astoreIterator;
81 public Instruction loadLastNode() {
85 public Instruction loadCurrentNode() {
89 public Instruction storeCurrentNod
[all...]
H A DOutlineableChunkEnd.java25 import com.sun.org.apache.bcel.internal.generic.Instruction;
36 public static final Instruction OUTLINEABLECHUNKEND =
H A DOutlineableChunkStart.java25 import com.sun.org.apache.bcel.internal.generic.Instruction;
46 public static final Instruction OUTLINEABLECHUNKSTART =
H A DMatchGenerator.java30 import com.sun.org.apache.bcel.internal.generic.Instruction;
43 private final Instruction _iloadCurrent;
44 private final Instruction _istoreCurrent;
45 private Instruction _aloadDom;
58 public Instruction loadCurrentNode() {
62 public Instruction storeCurrentNode() {
73 public Instruction loadDOM() {
H A DRtMethodGenerator.java29 import com.sun.org.apache.bcel.internal.generic.Instruction;
41 private final Instruction _astoreHandler;
42 private final Instruction _aloadHandler;
59 public final Instruction storeHandler() {
63 public final Instruction loadHandler() {
H A DFilterGenerator.java27 import com.sun.org.apache.bcel.internal.generic.Instruction;
39 private final Instruction _aloadTranslet;
55 public final Instruction loadTranslet() {
H A DMarkerInstruction.java30 import com.sun.org.apache.bcel.internal.generic.Instruction;
35 * {@link org.apache.bcel.generic.Instruction} used to mark locations of
40 abstract class MarkerInstruction extends Instruction {
52 * kind of {@link org.apche.bcel.generic.Instruction}, so this method does
87 public Instruction copy() {
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DInstructionDetailWriter.java28 import com.sun.tools.classfile.Instruction;
56 abstract void writeDetails(Instruction instr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DReadWriteDecoder.java32 abstract Instruction decodeReadWrite(int instruction,
40 Instruction decode(int instruction, SPARCInstructionFactory factory) {
41 Instruction instr = null;
H A DIllegalInstructionDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) {
H A DUnimpDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) {
H A DV9DoneRetryDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) {
33 Instruction instr = null;
H A DV9FlushwDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) {
33 Instruction instr = null;
H A DV9SavedRestoredDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) {
33 Instruction instr = null;
H A DWriteDecoder.java34 Instruction decodeReadWrite(int instruction, SPARCInstructionFactory factory,
36 Instruction instr = null;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DStackInstruction.java66 public abstract class StackInstruction extends Instruction {
69 * Instruction.readInstruction(). Not to be used otherwise.
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java105 public Iterable<Instruction> getInstructions() {
106 return new Iterable<Instruction>() {
107 public Iterator<Instruction> iterator() {
108 return new Iterator<Instruction>() {
114 public Instruction next() {
120 next = (pc < code.length ? new Instruction(code, pc) : null);
128 Instruction current = null;
130 Instruction next = new Instruction(code, pc);

Completed in 114 milliseconds

12345678910