Searched refs:instruction (Results 51 - 75 of 89) sorted by relevance

1234

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DSWITCH.java63 * TABLESWITCH instruction, depending on whether the match values (int[]) can be
71 private Select instruction; field in class:SWITCH
77 * between the numbers, a TABLESWITCH instruction is generated, and
95 instruction = new TABLESWITCH(match, targets, target);
102 instruction = new TABLESWITCH(this.match, this.targets, target);
105 instruction = new LOOKUPSWITCH(this.match, this.targets, target);
180 return new InstructionList(instruction);
184 return instruction;
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DREDebugCompiler.java107 char opcode = instruction[node + RE.offsetOpcode];
108 int opdata = (int)instruction[node + RE.offsetOpdata];
156 char opcode = instruction[i + RE.offsetOpcode];
157 char opdata = instruction[i + RE.offsetOpdata];
158 short next = (short)instruction[i + RE.offsetNext];
187 char charFirst = instruction[i++];
188 char charLast = instruction[i++];
214 p.print(charToString(instruction[i++]));
H A DRECompiler.java42 char[] instruction; // The compiled RE 'program' instruction buffer field in class:RECompiler
97 instruction = new char[128];
109 int curlen = instruction.length;
122 System.arraycopy(instruction, 0, newInstruction, 0, lenInstruction);
123 instruction = newInstruction;
137 instruction[lenInstruction++] = c;
153 System.arraycopy(instruction, insertAt, instruction, insertAt + RE.nodeSize, lenInstruction - insertAt);
154 instruction[insertA
[all...]
H A DRE.java326 * char OPCODE - instruction *
814 char[] instruction = program.instruction;
817 opcode = instruction[node + offsetOpcode];
818 next = node + (short)instruction[node + offsetNext];
819 opdata = instruction[node + offsetOpdata];
1104 if (compareChars(search.charAt(idx++), instruction[startAtom + i], caseFold) != 0)
1271 char s = instruction[i++];
1272 char e = instruction[i++];
1290 if (instruction[nex
[all...]
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServerJava.java47 String instruction =
56 f.add(new TextArea(instruction), BorderLayout.CENTER);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DArithmeticDecoder.java34 Instruction decodeFormat3AInstruction(int instruction, argument
H A DLdstubDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
H A DLoadDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
H A DStoreDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
H A DSwapDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
H A DV9AlternateSpaceLdstubDecoder.java34 Instruction decodeV9AsiLoadStore(int instruction, argument
H A DV9AlternateSpaceLoadDecoder.java34 Instruction decodeV9AsiLoadStore(int instruction, argument
H A DV9AlternateSpacePrefetchDecoder.java35 Instruction decodeV9AsiLoadStore(int instruction, argument
H A DV9AlternateSpaceStoreDecoder.java34 Instruction decodeV9AsiLoadStore(int instruction, argument
H A DV9AlternateSpaceSwapDecoder.java34 Instruction decodeV9AsiLoadStore(int instruction, argument
H A DV9PrefetchDecoder.java36 Instruction decodeMemoryInstruction(int instruction, argument
H A DV9SpecialLoadDecoder.java35 Instruction decodeMemoryInstruction(int instruction, argument
H A DV9SpecialStoreDecoder.java35 Instruction decodeMemoryInstruction(int instruction, argument
H A DFP2RegisterDecoder.java36 Instruction decodeFloatInstruction(int instruction, argument
H A DFPMoveDecoder.java36 Instruction decodeFloatInstruction(int instruction, argument
H A DReadDecoder.java34 Instruction decodeReadWrite(int instruction, SPARCInstructionFactory factory, argument
H A DFPArithmeticDecoder.java39 Instruction decodeFloatInstruction(int instruction, argument
H A DJmplDecoder.java34 Instruction decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, argument
H A DLogicDecoder.java34 Instruction decodeFormat3AInstruction(int instruction, argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParam.java69 * Set the instruction for loading the value of this variable onto the
70 * JVM stack and returns the old instruction.
72 public Instruction setLoadInstruction(Instruction instruction) { argument
74 _loadInstruction = instruction;
79 * Set the instruction for storing a value from the stack into this
80 * variable and returns the old instruction.
82 public Instruction setStoreInstruction(Instruction instruction) { argument
84 _storeInstruction = instruction;

Completed in 109 milliseconds

1234