Home
last modified time | relevance | path

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

12345

/art/test/552-checker-primitive-typeprop/smali/
DTypePropagation.smali18 …-DEBUGGABLE: void TypePropagation.mergeDeadPhi(boolean, boolean, int, float, float) builder (after)
37 ## CHECK-START-DEBUGGABLE: void TypePropagation.mergeSameType(boolean, int, int) builder (after)
42 if-eqz p0, :after
44 :after
50 …K-START-DEBUGGABLE: void TypePropagation.mergeVoidInput(boolean, boolean, int, int) builder (after)
58 if-eqz p0, :after
60 :after
67 …CHECK-START-DEBUGGABLE: void TypePropagation.mergeDifferentSize(boolean, int, long) builder (after)
71 if-eqz p0, :after
73 :after
[all …]
DArrayGet.smali22 ## CHECK-START: void ArrayGet.matchingFixedType(float[], float) builder (after)
25 ## CHECK-START-DEBUGGABLE: void ArrayGet.matchingFixedType(float[], float) builder (after)
39 if-eqz v2, :after
41 :after
52 ## CHECK-START: void ArrayGet.conflictingFixedType(float[], int) builder (after)
55 ## CHECK-START-DEBUGGABLE: void ArrayGet.conflictingFixedType(float[], int) builder (after)
66 if-eqz p1, :after
68 :after
79 ## CHECK-START: void ArrayGet.conflictingFixedType2(int[], float) builder (after)
82 ## CHECK-START-DEBUGGABLE: void ArrayGet.conflictingFixedType2(int[], float) builder (after)
[all …]
/art/test/087-gc-after-link/
DAndroid.bp3 // Build rules for ART run-test `087-gc-after-link`.
16 name: "art-run-test-087-gc-after-link",
21 ":art-run-test-087-gc-after-link-expected-stdout",
22 ":art-run-test-087-gc-after-link-expected-stderr",
28 name: "art-run-test-087-gc-after-link-expected-stdout",
29 out: ["art-run-test-087-gc-after-link-expected-stdout.txt"],
36 name: "art-run-test-087-gc-after-link-expected-stderr",
37 out: ["art-run-test-087-gc-after-link-expected-stderr.txt"],
/art/test/1978-regular-obsolete-then-structural-obsolescence/
Dexpected-stdout.txt3 Running after op1 using normal definition
6 Running after op2 using normal definition
10 Running after op1 using non-structural redefinition
13 Running after op2 using structural redefinition
17 Running after op2 using structural redefinition
20 Running after op2 using structural redefinition
/art/test/2254-class-value-before-and-after-u/
DAndroid.bp3 // Build rules for ART run-test `2254-class-value-before-and-after-u`.
16 name: "art-run-test-2254-class-value-before-and-after-u",
21 ":art-run-test-2254-class-value-before-and-after-u-expected-stdout",
22 ":art-run-test-2254-class-value-before-and-after-u-expected-stderr",
28 name: "art-run-test-2254-class-value-before-and-after-u-expected-stdout",
29 out: ["art-run-test-2254-class-value-before-and-after-u-expected-stdout.txt"],
36 name: "art-run-test-2254-class-value-before-and-after-u-expected-stderr",
37 out: ["art-run-test-2254-class-value-before-and-after-u-expected-stderr.txt"],
/art/test/442-checker-constant-folding/smali/
DTestCmp.smali26 ## CHECK-START: int TestCmp.$opt$CmpLongConstants() constant_folding (after)
32 ## CHECK-START: int TestCmp.$opt$CmpLongConstants() constant_folding (after)
49 ## CHECK-START: int TestCmp.$opt$CmpGtFloatConstants() constant_folding (after)
55 ## CHECK-START: int TestCmp.$opt$CmpGtFloatConstants() constant_folding (after)
72 ## CHECK-START: int TestCmp.$opt$CmpLtFloatConstants() constant_folding (after)
78 ## CHECK-START: int TestCmp.$opt$CmpLtFloatConstants() constant_folding (after)
95 ## CHECK-START: int TestCmp.$opt$CmpGtDoubleConstants() constant_folding (after)
101 ## CHECK-START: int TestCmp.$opt$CmpGtDoubleConstants() constant_folding (after)
118 ## CHECK-START: int TestCmp.$opt$CmpLtDoubleConstants() constant_folding (after)
124 ## CHECK-START: int TestCmp.$opt$CmpLtDoubleConstants() constant_folding (after)
[all …]
/art/test/1926-missed-frame-pop/
Dexpected-stdout.txt1 Ran recurTimes(10) without errors after disabling frame pop event!
4 Ran recurTimes(10) without errors after disabling frame pop event!
7 Ran recurTimes(10) without errors after disabling frame pop event!
/art/test/593-checker-boolean-2-integral-conv/smali/
DSmaliTests.smali33 ## CHECK-START: byte SmaliTests.booleanToByte(boolean) builder (after)
43 ## CHECK-START: byte SmaliTests.booleanToByte(boolean) select_generator (after)
51 … CHECK-START: byte SmaliTests.booleanToByte(boolean) instruction_simplifier$before_codegen (after)
68 ## CHECK-START: short SmaliTests.booleanToShort(boolean) builder (after)
78 ## CHECK-START: short SmaliTests.booleanToShort(boolean) select_generator (after)
86 …CHECK-START: short SmaliTests.booleanToShort(boolean) instruction_simplifier$before_codegen (after)
103 ## CHECK-START: char SmaliTests.booleanToChar(boolean) builder (after)
113 ## CHECK-START: char SmaliTests.booleanToChar(boolean) select_generator (after)
121 … CHECK-START: char SmaliTests.booleanToChar(boolean) instruction_simplifier$before_codegen (after)
138 ## CHECK-START: int SmaliTests.booleanToInt(boolean) builder (after)
[all …]
/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/537-checker-debuggable/smali/
DTestCase.smali23 ## CHECK-START: int TestCase.deadPhi(int, int, int) builder (after)
26 ## CHECK-START-DEBUGGABLE: int TestCase.deadPhi(int, int, int) builder (after)
33 if-eqz p0, :after
35 :after
/art/test/800-smali/smali/
DFloatBadArgReg.smali8 if-ne v0, v0, :after
13 :after
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali30 ## CHECK-START: int SmaliTests.$opt$noinline$andToOr(int, int) instruction_simplifier (after)
37 ## CHECK-START: int SmaliTests.$opt$noinline$andToOr(int, int) instruction_simplifier (after)
41 ## CHECK-START: int SmaliTests.$opt$noinline$andToOr(int, int) instruction_simplifier (after)
72 …T: boolean SmaliTests.$opt$noinline$booleanAndToOr(boolean, boolean) instruction_simplifier (after)
79 …iTests.$opt$noinline$booleanAndToOr(boolean, boolean) instruction_simplifier$before_codegen (after)
83 …iTests.$opt$noinline$booleanAndToOr(boolean, boolean) instruction_simplifier$before_codegen (after)
108 ## CHECK-START: long SmaliTests.$opt$noinline$orToAnd(long, long) instruction_simplifier (after)
115 ## CHECK-START: long SmaliTests.$opt$noinline$orToAnd(long, long) instruction_simplifier (after)
119 ## CHECK-START: long SmaliTests.$opt$noinline$orToAnd(long, long) instruction_simplifier (after)
149 …T: boolean SmaliTests.$opt$noinline$booleanOrToAnd(boolean, boolean) instruction_simplifier (after)
[all …]
/art/tools/checker/
DREADME2 state of the control-flow graph before and after each optimization pass
32 - CHECK-NEXT: Must match the output line which comes right after the line which
33 matched the previous check. Can only be used after a CHECK or
53 /// CHECK-START: int MyClass.MyMethod() constant_folding (after)
58 group named on the first line. Together they verify that the CFG after
66 /// CHECK-START: int MyClass.MyMethod() liveness (after)
73 after the 'CHECK-START' keyword. The previous example can be updated to run for
77 /// CHECK-START-ARM64: int MyClass.MyMethod() constant_folding (after)
81 For convenience, several architectures can be specified as set after the
86 /// CHECK-START-{X86_64,ARM,ARM64}: int MyClass.MyMethod() constant_folding (after)
[all …]
/art/test/458-checker-instruct-simplification/smali/
DSmaliTests.smali24 ## CHECK-START: int SmaliTests.EqualTrueRhs(boolean) instruction_simplifier (after)
46 ## CHECK-START: int SmaliTests.EqualTrueLhs(boolean) instruction_simplifier (after)
68 ## CHECK-START: int SmaliTests.EqualFalseRhs(boolean) instruction_simplifier (after)
90 ## CHECK-START: int SmaliTests.EqualFalseLhs(boolean) instruction_simplifier (after)
112 ## CHECK-START: int SmaliTests.NotEqualTrueRhs(boolean) instruction_simplifier (after)
134 ## CHECK-START: int SmaliTests.NotEqualTrueLhs(boolean) instruction_simplifier (after)
156 ## CHECK-START: int SmaliTests.NotEqualFalseRhs(boolean) instruction_simplifier (after)
178 ## CHECK-START: int SmaliTests.NotEqualFalseLhs(boolean) instruction_simplifier (after)
202 ## CHECK-START: int SmaliTests.AddSubConst(int) instruction_simplifier (after)
229 ## CHECK-START: int SmaliTests.SubAddConst(int) instruction_simplifier (after)
[all …]
DSmaliTests2.smali24 ## CHECK-START: int SmaliTests2.$noinline$XorAllOnes(int) instruction_simplifier (after)
29 ## CHECK-START: int SmaliTests2.$noinline$XorAllOnes(int) instruction_simplifier (after)
57 ## CHECK-START: long SmaliTests2.$noinline$NotNot1(long) instruction_simplifier (after)
61 ## CHECK-START: long SmaliTests2.$noinline$NotNot1(long) instruction_simplifier (after)
90 ## CHECK-START: int SmaliTests2.$noinline$NotNot2(int) instruction_simplifier (after)
96 ## CHECK-START: int SmaliTests2.$noinline$NotNot2(int) instruction_simplifier (after)
100 ## CHECK-START: int SmaliTests2.$noinline$NotNot2(int) instruction_simplifier (after)
159 ## CHECK-START: boolean SmaliTests2.$noinline$NotNotBool(boolean) instruction_simplifier (after)
162 ## CHECK-START: boolean SmaliTests2.$noinline$NotNotBool(boolean) instruction_simplifier (after)
178 …K-START: boolean SmaliTests2.$noinline$NotNotBool(boolean) instruction_simplifier$after_gvn (after)
[all …]
/art/test/518-null-array-get/
Dinfo.txt2 instructions in dead code after aget on null, but pass
5 Previously verification stopped after aget on null and
/art/test/530-checker-lse3/smali/
DStoreLoad.smali28 ## CHECK-START: int StoreLoad.test(int) load_store_elimination (after)
31 ## CHECK-START: int StoreLoad.test(int) load_store_elimination (after)
53 ## CHECK-START: int StoreLoad.test2(int) load_store_elimination (after)
70 ## CHECK-START: int StoreLoad.test3(int) load_store_elimination (after)
78 ## CHECK-START: int StoreLoad.test3(int) load_store_elimination (after)
83 ## CHECK-START: int StoreLoad.test3(int) load_store_elimination (after)
87 ## CHECK-START: int StoreLoad.test3(int) load_store_elimination (after)
115 ## CHECK-START: int StoreLoad.test4(int) load_store_elimination (after)
/art/test/1975-hello-structural-transformation/
Dexpected-stdout.txt24 Reading with reflection after possible modification.
27 Reading normally in same class after possible modification.
30 Reading with native after possible modification.
33 Reading normally in other class after possible modification.
39 Reading fields after redefinition
62 Reading with reflection after possible modification.
66 Reading normally in same class after possible modification.
70 Reading with native after possible modification.
74 Reading normally in other class after possible modification.
/art/test/559-checker-irreducible-loop/smali/
DIrreducibleLoop.smali68 ## CHECK-START: int IrreducibleLoop.lse(int, Main) dead_code_elimination$initial (after)
71 ## CHECK-START: int IrreducibleLoop.lse(int, Main) load_store_elimination (after)
107 ## CHECK-START: int IrreducibleLoop.dce(int) dead_code_elimination$initial (after)
143 ## CHECK-START: int IrreducibleLoop.liveness(int, int) liveness (after)
183 ## CHECK-START: java.lang.Class IrreducibleLoop.gvn() GVN (after)
216 ## CHECK-START: int IrreducibleLoop.licm1(int) licm (after)
245 ## CHECK-START: int IrreducibleLoop.licm2(int) licm (after)
282 ## CHECK-START: int IrreducibleLoop.licm3(int, int, int) licm (after)
325 ## CHECK-START: void IrreducibleLoop.analyze1(int) builder (after)
373 ## CHECK-START: void IrreducibleLoop.analyze2(int) builder (after)
[all …]
/art/test/996-breakpoint-obsolete/
Dexpected-stdout.txt3 Should be after first breakpoint.
9 Should be after first breakpoint.
/art/test/998-redefine-use-after-free/
Dinfo.txt3 It was possible for the JVMTI class redefinition to encounter a use-after-free
9 Hitting this use-after-free can cause many strange outcomes, from CHECK failures
/art/test/980-redefine-object/
Dexpected-stdout.txt5 Allocating an j.l.Object after redefining Object class
7 Allocating a Transform after redefining Object class
9 Allocating an int[] after redefining Object class
/art/test/2257-checker-constant-folding-before-codegen/
Dinfo.txt1 Test the benefits of running constant folding after LSE.
/art/test/152-dead-large-object/
Dinfo.txt1 Test that large objects are freed properly after a GC.
/art/test/141-class-unload/
Dinfo.txt1 Test that classes get freed after they are no longer reachable.

12345