Home
last modified time | relevance | path

Searched refs:after (Results 1 – 18 of 18) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, in updateTryBlocksWithReplacementInsn() argument
180 mTryBlock.startInsn = after; in updateTryBlocksWithReplacementInsn()
181 } else if (twoWay && mTryBlock.startInsn == after) { in updateTryBlocksWithReplacementInsn()
187 mTryBlock.endInsn = after; in updateTryBlocksWithReplacementInsn()
188 } else if (twoWay && mTryBlock.endInsn == after) { in updateTryBlocksWithReplacementInsn()
194 mTryBlock.catchAllHandler = after; in updateTryBlocksWithReplacementInsn()
195 } else if (twoWay && mTryBlock.catchAllHandler == after) { in updateTryBlocksWithReplacementInsn()
211 } else if (twoWay && handler == after) { in updateTryBlocksWithReplacementInsn()
219 mTryBlock.handlers.set(idxToChange, after); in updateTryBlocksWithReplacementInsn()
/art/test/800-smali/smali/
DFloatBadArgReg.smali8 if-ne v0, v0, :after
13 :after
Db_22881413.smali75 # 2) Put the else cases after all if cases. That way there are backward gotos that will lead
/art/test/098-ddmc/src/
DMain.java49 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking() local
51 System.out.println("after > before=" + (after.numberOfEntries > before.numberOfEntries)); in testRecentAllocationTracking()
52 System.out.println("after.numberOfEntries=" + after.numberOfEntries); in testRecentAllocationTracking()
/art/test/098-ddmc/
Dexpected.txt10 after > before=true
11 after.numberOfEntries=65535
/art/test/485-checker-dce-loop-update/
Dinfo.txt1 Tests loop information update after DCE because block removal can disconnect loops, leaving other
/art/runtime/native/
Ddalvik_system_VMRuntime.cc544 DexCacheStats after; in VMRuntime_preloadDexCaches() local
545 PreloadDexCachesStatsFilled(&after); in VMRuntime_preloadDexCaches()
547 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
549 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
551 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
553 total.num_methods, before.num_methods, after.num_methods); in VMRuntime_preloadDexCaches()
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java197 File after = new File(String.format("divergent_programs/%d.dex", currentSeed)); in saveDivergentProgram() local
198 boolean success = before.renameTo(after); in saveDivergentProgram()
/art/test/520-equivalent-phi/smali/
DEquivalent.smali28 # based on uses, but a move-object disappears after SSA, leaving
/art/test/485-checker-dce-loop-update/smali/
DTestCase.smali39 # CHECK-START: int TestCase.testSingleExit(int, boolean) dead_code_elimination_final (after)
91 …CK-START: int TestCase.testMultipleExits(int, boolean, boolean) dead_code_elimination_final (after)
150 …START: int TestCase.testExitPredecessors(int, boolean, boolean) dead_code_elimination_final (after)
222 # CHECK-START: int TestCase.testInnerLoop(int, boolean, boolean) dead_code_elimination_final (after)
/art/test/459-dead-phi/smali/
DEquivalentPhi.smali23 # rightly become a float after type propagation.
/art/compiler/dex/quick/
Dcodegen_util.cc97 void Mir2Lir::MarkSafepointPCAfter(LIR* after) { in MarkSafepointPCAfter() argument
98 DCHECK(!after->flags.use_def_invalid); in MarkSafepointPCAfter()
99 after->u.m.def_mask = &kEncodeAll; in MarkSafepointPCAfter()
102 if (after->next == nullptr) { in MarkSafepointPCAfter()
103 DCHECK_EQ(after, last_lir_insn_); in MarkSafepointPCAfter()
106 InsertLIRAfter(after, safepoint_pc); in MarkSafepointPCAfter()
Dmir_to_lir.h642 void MarkSafepointPCAfter(LIR* after);
807 void MarkPossibleNullPointerExceptionAfter(int opt_flags, LIR* after);
Dgen_common.cc319 void Mir2Lir::MarkPossibleNullPointerExceptionAfter(int opt_flags, LIR* after) { in MarkPossibleNullPointerExceptionAfter() argument
324 MarkSafepointPCAfter(after); in MarkPossibleNullPointerExceptionAfter()
/art/tools/dexfuzz/
DREADME79 OAT files after compilation.
/art/cmdline/
DREADME.md100 a range check without writing custom code. The range check is performed after the main parsing
/art/compiler/dex/
Dmir_graph.cc1627 static const struct { const char before; const char after; } match[] = { in ReplaceSpecialChars() member
1632 std::replace(str.begin(), str.end(), match[i].before, match[i].after); in ReplaceSpecialChars()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S524 addiu $sp, $sp, 16 # restore stack after memcpy