Searched refs:opdata (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java812 int next, opcode, opdata;
819 opdata = instruction[node + offsetOpdata];
866 startBackref[opdata] = idx;
871 if ((opdata + 1) > parenCount)
873 parenCount = opdata + 1;
877 if (getParenStart(opdata) == -1)
879 setParenStart(opdata, idx);
889 endBackref[opdata] = idx;
894 if ((opdata + 1) > parenCount)
896 parenCount = opdata
[all...]
H A DREDebugCompiler.java106 // Get opcode and opdata for node
108 int opdata = (int)instruction[node + RE.offsetOpdata];
110 // Return opcode as a string and opdata value
111 return opcodeToString(opcode) + ", opdata = " + opdata;
115 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
118 * @param opdata Opdata for new node (only the low 16 bits are currently used)
120 void nodeInsert(char opcode, int opdata, int insertAt) {
121 System.out.println( "====> " + opcode + " " + opdata + " " + insertAt );
124 super.nodeInsert( opcode, opdata, insertA
[all...]
H A DRECompiler.java141 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
144 * @param opdata Opdata for new node (only the low 16 bits are currently used)
147 void nodeInsert(char opcode, int opdata, int insertAt) argument
155 instruction[insertAt + RE.offsetOpdata] = (char)opdata;
196 * @param opdata Opdata for node (only the low 16 bits are currently used)
199 int node(char opcode, int opdata) argument
206 instruction[lenInstruction + RE.offsetOpdata] = (char)opdata;

Completed in 649 milliseconds