Searched refs:s32bitAt (Results 1 – 7 of 7) sorted by relevance
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | SubroutineScanner.java | 129 scan(pos + iter.s32bitAt(index), iter, sub); in scanLookupSwitch() 130 int npairs = iter.s32bitAt(index += 4); in scanLookupSwitch() 135 int target = iter.s32bitAt(index) + pos; in scanLookupSwitch() 144 scan(pos + iter.s32bitAt(index), iter, sub); in scanTableSwitch() 145 int low = iter.s32bitAt(index += 4); in scanTableSwitch() 146 int high = iter.s32bitAt(index += 4); in scanTableSwitch() 151 int target = iter.s32bitAt(index) + pos; in scanTableSwitch()
|
D | Analyzer.java | 349 merge(queue, frame, pos + iter.s32bitAt(index)); in mergeLookupSwitch() 350 int npairs = iter.s32bitAt(index += 4); in mergeLookupSwitch() 355 int target = iter.s32bitAt(index) + pos; in mergeLookupSwitch() 400 merge(queue, frame, pos + iter.s32bitAt(index)); in mergeTableSwitch() 401 int low = iter.s32bitAt(index += 4); in mergeTableSwitch() 402 int high = iter.s32bitAt(index += 4); in mergeTableSwitch() 407 int target = iter.s32bitAt(index) + pos; in mergeTableSwitch()
|
D | Util.java | 29 … pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1); in getJumpTarget()
|
/external/javassist/src/main/javassist/bytecode/ |
D | InstructionPrinter.java | 155 return opstring + " " + (iter.s32bitAt(pos + 1)+ pos); in instructionString() 241 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n"); in lookupSwitch() 242 int npairs = iter.s32bitAt(index += 4); in lookupSwitch() 246 int match = iter.s32bitAt(index); in lookupSwitch() 247 int target = iter.s32bitAt(index + 4) + pos; in lookupSwitch() 260 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n"); in tableSwitch() 261 int low = iter.s32bitAt(index += 4); in tableSwitch() 262 int high = iter.s32bitAt(index += 4); in tableSwitch() 267 int target = iter.s32bitAt(index) + pos; in tableSwitch()
|
D | CodeAnalyzer.java | 116 target = index + ci.s32bitAt(index + 1); in processBranch() 124 target = index + ci.s32bitAt(index + 1); in processBranch() 158 target = index + ci.s32bitAt(index2); in processBranch() 161 int npairs = ci.s32bitAt(index2 + 4); in processBranch() 164 target = index + ci.s32bitAt(index2); in processBranch() 171 int low = ci.s32bitAt(index2 + 4); in processBranch() 172 int high = ci.s32bitAt(index2 + 8); in processBranch() 176 target = index + ci.s32bitAt(index2); in processBranch()
|
D | CodeIterator.java | 166 public int s32bitAt(int index) { in s32bitAt() method in CodeIterator
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | BasicBlock.java | 257 int low = ci.s32bitAt(pos + 4); 258 int high = ci.s32bitAt(pos + 8); 261 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target 266 to[k++] = makeMark(marks, index + ci.s32bitAt(p)).block; 273 int ncases = ci.s32bitAt(pos + 4); 275 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target 280 to[k++] = makeMark(marks, index + ci.s32bitAt(p)).block; 289 makeGoto(marks, index, index + ci.s32bitAt(index + 1), 5); 291 makeJsr(marks, index, index + ci.s32bitAt(index + 1), 5);
|