Searched refs:ExceptionInfo (Results 1 - 25 of 33) sorted by relevance

12

/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java30 public class ExceptionInfo implements VisitorAccepter class in inherits:VisitorAccepter
44 * Creates an uninitialized ExceptionInfo.
46 public ExceptionInfo() method in class:ExceptionInfo
53 * Creates an ExceptionInfo with the given properties.
55 public ExceptionInfo(int u2startPC, method in class:ExceptionInfo
H A DCodeAttribute.java40 public ExceptionInfo[] exceptionTable;
62 ExceptionInfo[] exceptionTable,
152 // type of ExceptionInfo.
166 ExceptionInfo exceptionInfo = exceptionTable[index];
183 ExceptionInfo exceptionInfo = exceptionTable[index];
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DExceptionInfoVisitor.java28 * <code>ExceptionInfo</code> objects. Note that there is only a single
29 * implementation of <code>ExceptionInfo</code>, such that this interface
36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
H A DStackSizeComputer.java256 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
/external/proguard/src/proguard/classfile/editor/
H A DExceptionInfoAdder.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
57 ExceptionInfo newExceptionInfo =
58 new ExceptionInfo(exceptionInfo.u2startPC,
H A DCodeAttributeComposer.java74 private ExceptionInfo[] exceptionTable = new ExceptionInfo[ClassConstants.TYPICAL_EXCEPTION_TABLE_LENGTH];
221 public void appendException(ExceptionInfo exceptionInfo)
250 ExceptionInfo[] newExceptionTable = new ExceptionInfo[exceptionTableLength+1];
310 ExceptionInfo exceptionInfo = exceptionTable[index];
370 codeAttribute.exceptionTable = new ExceptionInfo[exceptionTableLength];
481 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
691 private int removeEmptyExceptions(ExceptionInfo[] exceptionInfos,
698 ExceptionInfo exceptionInf
[all...]
H A DAttributeAdder.java43 private static final ExceptionInfo[] EMPTY_EXCEPTIONS = new ExceptionInfo[0];
250 new ExceptionInfo[codeAttribute.u2exceptionTableLength] :
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionCounter.java48 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DExceptionExcludedOffsetFilter.java57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DExceptionHandlerConstantVisitor.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DExceptionHandlerFilter.java61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DExceptionOffsetFilter.java57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DExceptionRangeFilter.java61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DClassCleaner.java184 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java86 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
147 private int removeEmptyExceptions(ExceptionInfo[] exceptionInfos,
154 ExceptionInfo exceptionInfo = exceptionInfos[index];
H A DReachableCodeMarker.java184 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
H A DBranchTargetFinder.java601 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNode.h64 typedef uint32_t ExceptionInfo; typedef in namespace:JSC::DFG
174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
333 ExceptionInfo exceptionInfo;
H A DDFGJITCompiler.h74 // the Jump taken on exception (unset if not present), and ExceptionInfo (presently
85 CallRecord(MacroAssembler::Call call, FunctionPtr function, MacroAssembler::Jump exceptionCheck, ExceptionInfo exceptionInfo)
96 ExceptionInfo m_exceptionInfo;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java88 private ExceptionInfo[] exceptions;
92 private static class ExceptionInfo { class in class:Analyzer
98 private ExceptionInfo(int start, int end, int handler, Type type) { method in class:Analyzer.ExceptionInfo
212 private ExceptionInfo[] buildExceptionInfo(MethodInfo method) {
217 ExceptionInfo[] exceptions = new ExceptionInfo[table.size()];
227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type);
294 ExceptionInfo exception = exceptions[i];
/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java349 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
374 codeAttributeComposer.appendException(new ExceptionInfo(startPC,
400 codeAttributeComposer.appendException(new ExceptionInfo(startPC,
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp147 static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo) argument
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java371 codeAttribute.exceptionTable = new ExceptionInfo[codeAttribute.u2exceptionTableLength];
374 ExceptionInfo exceptionInfo = new ExceptionInfo();
543 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
/external/proguard/src/proguard/optimize/
H A DTailRecursionSimplifier.java240 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
/external/proguard/src/proguard/optimize/evaluation/
H A DLivenessAnalyzer.java376 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)

Completed in 598 milliseconds

12