/external/javassist/src/main/javassist/bytecode/ |
ExceptionTable.java | 26 int endPc; 32 endPc = end; 111 * Returns <code>endPc</code> of the <i>n</i>-th entry. 115 public int endPc(int nth) { 117 return e.endPc; 121 * Sets <code>endPc</code> of the <i>n</i>-th entry. 128 e.endPc = value; 187 add(index, e.startPc + offset, e.endPc + offset, 197 * @param end <code>endPc</code> 211 * @param end <code>endPc</code [all...] |
ClassFileWriter.java | 465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { 468 output.writeShort(endPc);
|
/dalvik/dexgen/src/com/android/dexgen/rop/ |
ByteCatchList.java | 82 * @param endPc {@code >= startPc;} the end pc (exclusive) of the 88 public void set(int n, int startPc, int endPc, int handlerPc, 90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass)); 228 private final int endPc; 242 * @param endPc {@code >= startPc;} the end pc (exclusive) of the 248 public Item(int startPc, int endPc, int handlerPc, 254 if (endPc < startPc) { 255 throw new IllegalArgumentException("endPc < startPc"); 263 this.endPc = endPc; [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteCatchList.java | 82 * @param endPc {@code >= startPc;} the end pc (exclusive) of the 88 public void set(int n, int startPc, int endPc, int handlerPc, 90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass)); 228 private final int endPc; 242 * @param endPc {@code >= startPc;} the end pc (exclusive) of the 248 public Item(int startPc, int endPc, int handlerPc, 254 if (endPc < startPc) { 255 throw new IllegalArgumentException("endPc < startPc"); 263 this.endPc = endPc; [all...] |
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 352 int endPC = Math.min(exceptionInfo.u2endPC, clipEnd); 358 for (int offset = startPC; offset < endPC; offset++) 388 endPC == exceptionInfo.u2endPC) 390 System.out.println(" Appending exception ["+startPC+" -> "+endPC+"] -> "+handlerPC); 394 System.out.println(" Appending clipped exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+"] ~> ["+startPC+" -> "+endPC+"] -> "+handlerPC); 401 endPC,
|
/dalvik/vm/interp/ |
Jit.cpp | 137 shadowSpace->endPC = pc; 141 //LOGD("### selfVerificationRestoreState(%d) pc: %#x fp: %#x endPC: %#x", 149 LOGD("Dalvik PC: %#x endPC: %#x", (int)shadowSpace->startPC, 150 (int)shadowSpace->endPC); 205 LOGD("Dalvik PC: %#x endPC: %#x", (int)shadowSpace->startPC, 206 (int)shadowSpace->endPC); 272 //LOGD("### DbgIntp(%d): PC: %#x endPC: %#x state: %d len: %d %s", 273 // self->threadId, (int)pc, (int)shadowSpace->endPC, state, 292 * Check if the current pc matches the endPC. Only check for non-zero 295 if (pc == shadowSpace->endPC & [all...] |
Jit.h | 51 const u2* endPC; /* ending pc of jitted region */
|
/external/proguard/src/proguard/optimize/evaluation/ |
PartialEvaluator.java | [all...] |
/external/proguard/src/proguard/classfile/editor/ |
CodeAttributeComposer.java | 580 int endPC = remapInstructionOffset(localVariableInfo.u2startPC + localVariableInfo.u2length); 583 localVariableInfo.u2length = endPC - startPC; 593 int endPC = remapInstructionOffset(localVariableTypeInfo.u2startPC + localVariableTypeInfo.u2length); 596 localVariableTypeInfo.u2length = endPC - startPC;
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
StdAttributeFactory.java | 275 int endPc = bytes.getUnsignedShort(offset + 2); 279 catches.set(i, startPc, endPc, handlerPc, catchType); 282 Hex.u2(startPc) + ".." + Hex.u2(endPc) +
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
BasicBlock.java | 384 int end = et.endPc(i);
|
/external/javassist/src/main/javassist/expr/ |
Expr.java | 141 if (et.startPc(i) <= pos && pos < et.endPc(i)) {
|
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 553 int endPc = bytecode.currentPc(); 555 defaultPc = endPc; 559 patchGoto(breakList, endPc); [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Analyzer.java | 227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type);
|
/prebuilt/common/ecj/ |
ecj.jar | |