Home
last modified time | relevance | path

Searched refs:meth (Results 1 – 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
DDominators.java48 private final SsaMethod meth; field in Dominators
68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos, in Dominators() argument
70 this.meth = meth; in Dominators()
73 this.blocks = meth.getBlocks(); in Dominators()
86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, in make() argument
88 Dominators result = new Dominators(meth, domInfos, postdom); in make()
172 ? meth.getExitBlock() : meth.getEntryBlock(); in run()
185 meth.forEachBlockDepthFirst(postdom, walker); in run()
DDomFront.java33 private final SsaMethod meth; field in DomFront
58 public DomFront(SsaMethod meth) { in DomFront() argument
59 this.meth = meth; in DomFront()
60 nodes = meth.getBlocks(); in DomFront()
86 Dominators methDom = Dominators.make(meth, domInfos, false); in run()
/dalvik/dx/src/com/android/dx/command/dump/
DBlockDumper.java191 ConcreteMethod meth = in endParsingMember() local
195 ropDump(meth); in endParsingMember()
197 regularDump(meth); in endParsingMember()
206 private void regularDump(ConcreteMethod meth) { in regularDump() argument
207 BytecodeArray code = meth.getCode(); in regularDump()
209 ByteBlockList list = BasicBlocker.identifyBlocks(meth); in regularDump()
278 private void ropDump(ConcreteMethod meth) { in ropDump() argument
280 BytecodeArray code = meth.getCode(); in ropDump()
282 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods(), dexOptions); in ropDump()
286 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags()); in ropDump()
[all …]
DSsaDumper.java90 ConcreteMethod meth = in endParsingMember() local
93 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods(), dexOptions); in endParsingMember()
95 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags()); in endParsingMember()
96 int paramWidth = computeParamWidth(meth, isStatic); in endParsingMember()
DDotDumper.java120 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile, in endParsingMember() local
125 Ropper.convert(meth, advice, classFile.getMethods(), dexOptions); in endParsingMember()
128 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags()); in endParsingMember()
130 BaseDumper.computeParamWidth(meth, isStatic), isStatic, in endParsingMember()
DBaseDumper.java114 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) { in computeParamWidth() argument
115 return meth.getEffectiveDescriptor().getParameterTypes(). in computeParamWidth()
/dalvik/dx/src/com/android/dx/cf/direct/
DMethodListParser.java80 StdMethod meth = in set() local
83 methods.set(n, meth); in set()
84 return meth; in set()
/dalvik/dx/src/com/android/dx/rop/code/
DRops.java1209 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1211 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1212 return opInvokeVirtual(meth); in ropFor()
1216 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1218 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1219 return opInvokeSuper(meth); in ropFor()
1223 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1225 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1226 return opInvokeDirect(meth); in ropFor()
1230 Prototype meth = cstMeth.getPrototype(); in ropFor() local
[all …]
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java286 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat()); in processMethods() local
292 boolean isConstructor = meth.isInstanceInit() || in processMethods()
293 meth.isClassInit(); in processMethods()
313 paramSize = meth.getParameterWordCount(isStatic); in processMethods()
374 new EncodedMethod(meth, accessFlags, code, exceptions); in processMethods()
376 if (meth.isInstanceInit() || meth.isClassInit() || in processMethods()
386 out.addMethodAnnotations(meth, annotations, dexFile); in processMethods()
392 out.addParameterAnnotations(meth, list, dexFile); in processMethods()
394 dexFile.getMethodIds().intern(meth); in processMethods()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DRops.java1208 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1210 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1211 return opInvokeVirtual(meth); in ropFor()
1215 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1217 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1218 return opInvokeSuper(meth); in ropFor()
1222 Prototype meth = cstMeth.getPrototype(); in ropFor() local
1224 meth = meth.withFirstParameter(definer.getClassType()); in ropFor()
1225 return opInvokeDirect(meth); in ropFor()
1229 Prototype meth = cstMeth.getPrototype(); in ropFor() local
[all …]
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java1092 for (EncodedMethod meth : allMeths) { in dumpMethod()
1093 String methName = meth.getName().getString(); in dumpMethod()
1096 meths.put(meth.getRef().getNat(), meth); in dumpMethod() local
1107 for (EncodedMethod meth : meths.values()) { in dumpMethod()
1109 meth.debugPrint(pw, args.verboseDump); in dumpMethod()
1121 clazz.getMethodAnnotations(meth.getRef()); in dumpMethod()
1123 clazz.getParameterAnnotations(meth.getRef()); in dumpMethod()
/dalvik/libdex/
DDexSwapVerify.cpp218 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in verifyMethodDefiner() local
219 return meth->classIdx == definingClass; in verifyMethodDefiner()
1662 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in findFirstClassDataDefiner() local
1663 return meth->classIdx; in findFirstClassDataDefiner()
1668 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in findFirstClassDataDefiner() local
1669 return meth->classIdx; in findFirstClassDataDefiner()
1697 const DexMethod* meth = &classData->directMethods[i]; in crossVerifyClassDataItem() local
1698 okay = dexDataMapVerify0Ok(state->pDataMap, meth->codeOff, in crossVerifyClassDataItem()
1700 && verifyMethodDefiner(state, definingClass, meth->methodIdx); in crossVerifyClassDataItem()
1705 const DexMethod* meth = &classData->virtualMethods[i]; in crossVerifyClassDataItem() local
[all …]