Searched refs:Instruction (Results 1 - 25 of 245) sorted by relevance
12345678910
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/ |
H A D | BranchInstruction.java | 27 public interface BranchInstruction extends Instruction {
|
H A D | Arithmetic.java | 27 public interface Arithmetic extends Instruction, RTLOperations {
|
H A D | ArithmeticInstruction.java | 27 public interface ArithmeticInstruction extends Instruction, RTLOperations {
|
H A D | InstructionVisitor.java | 29 public void visit(long currentPc, Instruction instr);
|
H A D | LogicInstruction.java | 27 public interface LogicInstruction extends Instruction, RTLOperations {
|
H A D | MoveInstruction.java | 27 public interface MoveInstruction extends Instruction {
|
H A D | ShiftInstruction.java | 27 public interface ShiftInstruction extends Instruction, RTLOperations {
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ |
H A D | TestGenerator.java | 31 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 D | CompareGenerator.java | 32 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 D | OutlineableChunkEnd.java | 25 import com.sun.org.apache.bcel.internal.generic.Instruction; 36 public static final Instruction OUTLINEABLECHUNKEND =
|
H A D | OutlineableChunkStart.java | 25 import com.sun.org.apache.bcel.internal.generic.Instruction; 46 public static final Instruction OUTLINEABLECHUNKSTART =
|
H A D | MatchGenerator.java | 30 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 D | RtMethodGenerator.java | 29 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 D | FilterGenerator.java | 27 import com.sun.org.apache.bcel.internal.generic.Instruction; 39 private final Instruction _aloadTranslet; 55 public final Instruction loadTranslet() {
|
H A D | MarkerInstruction.java | 30 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 D | InstructionDetailWriter.java | 28 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 D | ReadWriteDecoder.java | 32 abstract Instruction decodeReadWrite(int instruction, 40 Instruction decode(int instruction, SPARCInstructionFactory factory) { 41 Instruction instr = null;
|
H A D | IllegalInstructionDecoder.java | 30 Instruction decode(int instruction, SPARCInstructionFactory factory) {
|
H A D | UnimpDecoder.java | 30 Instruction decode(int instruction, SPARCInstructionFactory factory) {
|
H A D | V9DoneRetryDecoder.java | 31 Instruction decode(int instruction, SPARCInstructionFactory factory) { 33 Instruction instr = null;
|
H A D | V9FlushwDecoder.java | 31 Instruction decode(int instruction, SPARCInstructionFactory factory) { 33 Instruction instr = null;
|
H A D | V9SavedRestoredDecoder.java | 31 Instruction decode(int instruction, SPARCInstructionFactory factory) { 33 Instruction instr = null;
|
H A D | WriteDecoder.java | 34 Instruction decodeReadWrite(int instruction, SPARCInstructionFactory factory, 36 Instruction instr = null;
|
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/ |
H A D | StackInstruction.java | 66 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 D | Code_attribute.java | 105 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