Home
last modified time | relevance | path

Searched refs:s32bitAt (Results 1 – 7 of 7) sorted by relevance

/external/javassist/src/main/javassist/bytecode/analysis/
DSubroutineScanner.java128 scan(pos + iter.s32bitAt(index), iter, sub); in scanLookupSwitch()
129 int npairs = iter.s32bitAt(index += 4); in scanLookupSwitch()
134 int target = iter.s32bitAt(index) + pos; in scanLookupSwitch()
143 scan(pos + iter.s32bitAt(index), iter, sub); in scanTableSwitch()
144 int low = iter.s32bitAt(index += 4); in scanTableSwitch()
145 int high = iter.s32bitAt(index += 4); in scanTableSwitch()
150 int target = iter.s32bitAt(index) + pos; in scanTableSwitch()
DAnalyzer.java350 merge(queue, frame, pos + iter.s32bitAt(index)); in mergeLookupSwitch()
351 int npairs = iter.s32bitAt(index += 4); in mergeLookupSwitch()
356 int target = iter.s32bitAt(index) + pos; in mergeLookupSwitch()
404 merge(queue, frame, pos + iter.s32bitAt(index)); in mergeTableSwitch()
405 int low = iter.s32bitAt(index += 4); in mergeTableSwitch()
406 int high = iter.s32bitAt(index += 4); in mergeTableSwitch()
411 int target = iter.s32bitAt(index) + pos; in mergeTableSwitch()
DUtil.java28 … pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1); in getJumpTarget()
/external/javassist/src/main/javassist/bytecode/
DInstructionPrinter.java141 return opstring + " " + (iter.s32bitAt(pos + 1)+ pos); in instructionString()
227 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n"); in lookupSwitch()
228 int npairs = iter.s32bitAt(index += 4); in lookupSwitch()
232 int match = iter.s32bitAt(index); in lookupSwitch()
233 int target = iter.s32bitAt(index + 4) + pos; in lookupSwitch()
246 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n"); in tableSwitch()
247 int low = iter.s32bitAt(index += 4); in tableSwitch()
248 int high = iter.s32bitAt(index += 4); in tableSwitch()
253 int target = iter.s32bitAt(index) + pos; in tableSwitch()
DCodeAnalyzer.java115 target = index + ci.s32bitAt(index + 1); in processBranch()
123 target = index + ci.s32bitAt(index + 1); in processBranch()
157 target = index + ci.s32bitAt(index2); in processBranch()
160 int npairs = ci.s32bitAt(index2 + 4); in processBranch()
163 target = index + ci.s32bitAt(index2); in processBranch()
170 int low = ci.s32bitAt(index2 + 4); in processBranch()
171 int high = ci.s32bitAt(index2 + 8); in processBranch()
175 target = index + ci.s32bitAt(index2); in processBranch()
DCodeIterator.java145 public int s32bitAt(int index) { in s32bitAt() method in CodeIterator
/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java240 int low = ci.s32bitAt(pos + 4);
241 int high = ci.s32bitAt(pos + 8);
244 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target
249 to[k++] = makeMark(marks, index + ci.s32bitAt(p)).block;
256 int ncases = ci.s32bitAt(pos + 4);
258 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target
263 to[k++] = makeMark(marks, index + ci.s32bitAt(p)).block;
272 makeGoto(marks, index, index + ci.s32bitAt(index + 1), 5);
274 makeJsr(marks, index, index + ci.s32bitAt(index + 1), 5);