Home
last modified time | relevance | path

Searched refs:before (Results 1 – 25 of 59) sorted by relevance

123

/art/runtime/
Dclass_table-inl.h98 const uint32_t before = data_.load(std::memory_order_relaxed); in Read() local
99 const ObjPtr<mirror::Class> before_ptr(ExtractPtr(before)); in Read()
105 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before))); in Read()
112 const uint32_t before = data_.load(std::memory_order_relaxed); in VisitRoot() local
113 ObjPtr<mirror::Class> before_ptr(ExtractPtr(before)); in VisitRoot()
120 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before))); in VisitRoot()
Dmonitor_pool.cc78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - in AllocateChunk() local
80 before->next_free_ = last; in AllocateChunk()
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) - in AllocateChunk()
85 last = before; in AllocateChunk()
/art/test/1934-jvmti-signal-thread/
Dexpected.txt1 Interrupt before start
2 interrupting other thread before starting
4 Stop before start
5 stopping other thread before starting
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, in updateTryBlocksWithReplacementInsn() argument
178 if (mTryBlock.startInsn == before) { in updateTryBlocksWithReplacementInsn()
183 mTryBlock.startInsn = before; in updateTryBlocksWithReplacementInsn()
185 if (mTryBlock.endInsn == before) { in updateTryBlocksWithReplacementInsn()
190 mTryBlock.endInsn = before; in updateTryBlocksWithReplacementInsn()
192 if (mTryBlock.catchAllHandler == before) { in updateTryBlocksWithReplacementInsn()
197 mTryBlock.catchAllHandler = before; in updateTryBlocksWithReplacementInsn()
208 if (handler == before) { in updateTryBlocksWithReplacementInsn()
224 mTryBlock.handlers.set(idxToChange, before); in updateTryBlocksWithReplacementInsn()
/art/test/098-ddmc/
Dexpected.txt7 before > 0=true
9 before < overflowAllocations=true
10 after > before=true
/art/test/1963-add-to-dex-classloader-in-memory/
Dexpected.txt2 -- Running sayHi before redefinition
12 -- Running sayHi before redefinition
/art/test/458-checker-instruct-simplification/smali/
DSmaliTests.smali18 ## CHECK-START: int SmaliTests.EqualTrueRhs(boolean) instruction_simplifier (before)
40 ## CHECK-START: int SmaliTests.EqualTrueLhs(boolean) instruction_simplifier (before)
62 ## CHECK-START: int SmaliTests.EqualFalseRhs(boolean) instruction_simplifier (before)
84 ## CHECK-START: int SmaliTests.EqualFalseLhs(boolean) instruction_simplifier (before)
106 ## CHECK-START: int SmaliTests.NotEqualTrueRhs(boolean) instruction_simplifier (before)
128 ## CHECK-START: int SmaliTests.NotEqualTrueLhs(boolean) instruction_simplifier (before)
150 ## CHECK-START: int SmaliTests.NotEqualFalseRhs(boolean) instruction_simplifier (before)
172 ## CHECK-START: int SmaliTests.NotEqualFalseLhs(boolean) instruction_simplifier (before)
194 ## CHECK-START: int SmaliTests.AddSubConst(int) instruction_simplifier (before)
221 ## CHECK-START: int SmaliTests.SubAddConst(int) instruction_simplifier (before)
[all …]
DSmaliTests2.smali18 ## CHECK-START: int SmaliTests2.$noinline$XorAllOnes(int) instruction_simplifier (before)
50 ## CHECK-START: long SmaliTests2.$noinline$NotNot1(long) instruction_simplifier (before)
82 ## CHECK-START: int SmaliTests2.$noinline$NotNot2(int) instruction_simplifier (before)
152 ## CHECK-START: boolean SmaliTests2.$noinline$NotNotBool(boolean) instruction_simplifier (before)
170 …T: boolean SmaliTests2.$noinline$NotNotBool(boolean) instruction_simplifier$after_inlining (before)
209 ## CHECK-START: int SmaliTests2.$noinline$bug68142795Short(short) instruction_simplifier (before)
256 …nt SmaliTests2.$noinline$bug68142795Boolean(boolean) instruction_simplifier$after_inlining (before)
/art/test/974-verify-interface-super/
Dexpected.txt1 OK. No exception before invoke!
/art/test/1906-suspend-list-me-first/
Dexpected.txt1 Second thread suspended before first thread suspended self!
/art/test/442-checker-constant-folding/smali/
DTestCmp.smali20 ## CHECK-START: int TestCmp.$opt$CmpLongConstants() constant_folding (before)
43 ## CHECK-START: int TestCmp.$opt$CmpGtFloatConstants() constant_folding (before)
66 ## CHECK-START: int TestCmp.$opt$CmpLtFloatConstants() constant_folding (before)
89 ## CHECK-START: int TestCmp.$opt$CmpGtDoubleConstants() constant_folding (before)
112 ## CHECK-START: int TestCmp.$opt$CmpLtDoubleConstants() constant_folding (before)
136 ## CHECK-START: int TestCmp.$opt$CmpLongSameConstant() constant_folding (before)
157 ## CHECK-START: int TestCmp.$opt$CmpGtFloatSameConstant() constant_folding (before)
178 ## CHECK-START: int TestCmp.$opt$CmpLtFloatSameConstant() constant_folding (before)
199 ## CHECK-START: int TestCmp.$opt$CmpGtDoubleSameConstant() constant_folding (before)
220 ## CHECK-START: int TestCmp.$opt$CmpLtDoubleSameConstant() constant_folding (before)
[all …]
/art/test/471-uninitialized-locals/
Dinfo.txt2 use values before initializing them.
/art/test/098-ddmc/src/
DMain.java46 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking() local
47 System.out.println("before > 0=" + (before.numberOfEntries > 0)); in testRecentAllocationTracking()
55 …System.out.println("before < overflowAllocations=" + (before.numberOfEntries < overflowAllocations… in testRecentAllocationTracking()
56 System.out.println("after > before=" + (after.numberOfEntries > before.numberOfEntries)); in testRecentAllocationTracking()
/art/test/563-checker-fakestring/
Dinfo.txt2 it cannot be used before a call to StringFactory.
/art/test/1964-add-to-dex-classloader-file/
Dexpected.txt2 -- Running sayHi before redefinition
16 -- Running sayHi before redefinition
/art/test/138-duplicate-classes-check2/
Dinfo.txt2 it before creating the dex file).
/art/test/1989-transform-bad-monitor/
Dexpected.txt2 Goodbye before unlock
/art/test/2031-zygote-compiled-frame-deopt/
Dinfo.txt5 We would hit DCHECKS before (part of) the fix to this bug.
/art/test/180-native-default-method/
Dinfo.txt3 should result in ClassFormatError before we reach that DCHECK().
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali22 ## CHECK-START: int SmaliTests.$opt$noinline$andToOr(int, int) instruction_simplifier (before)
58 # Note that the graph before this instruction simplification pass does not
63 …: boolean SmaliTests.$opt$noinline$booleanAndToOr(boolean, boolean) instruction_simplifier (before)
100 ## CHECK-START: long SmaliTests.$opt$noinline$orToAnd(long, long) instruction_simplifier (before)
135 # Note that the graph before this instruction simplification pass does not
140 …: boolean SmaliTests.$opt$noinline$booleanOrToAnd(boolean, boolean) instruction_simplifier (before)
180 …ECK-START: int SmaliTests.$opt$noinline$regressInputsAway(int, int) instruction_simplifier (before)
230 ## CHECK-START: int SmaliTests.$opt$noinline$notXorToXor(int, int) instruction_simplifier (before)
260 # Note that the graph before this instruction simplification pass does not
265 …olean SmaliTests.$opt$noinline$booleanNotXorToXor(boolean, boolean) instruction_simplifier (before)
[all …]
/art/test/980-redefine-object/
Dexpected.txt2 Allocating an j.l.Object before redefining Object class
3 Allocating a Transform before redefining Object class
/art/test/543-checker-dce-trycatch/smali/
DTestCase.smali29 …START: int TestCase.testDeadEntry(int, int, int, int) dead_code_elimination$after_inlining (before)
32 …START: int TestCase.testDeadEntry(int, int, int, int) dead_code_elimination$after_inlining (before)
74 …-START: int TestCase.testDeadExit(int, int, int, int) dead_code_elimination$after_inlining (before)
77 …-START: int TestCase.testDeadExit(int, int, int, int) dead_code_elimination$after_inlining (before)
120 … int TestCase.testOneTryBlockDead(int, int, int, int) dead_code_elimination$after_inlining (before)
125 … int TestCase.testOneTryBlockDead(int, int, int, int) dead_code_elimination$after_inlining (before)
206 …tCatchPhiInputs_DefinedInTryBlock(int, int, int, int) dead_code_elimination$after_inlining (before)
280 …hPhiInputs_DefinedOutsideTryBlock(int, int, int, int) dead_code_elimination$after_inlining (before)
/art/test/564-checker-irreducible-loop/smali/
DIrreducibleLoop.smali19 ## CHECK-START-X86: int IrreducibleLoop.simpleLoop(int) dead_code_elimination$initial (before)
38 # ArtMethod was a live_in of the last block before the loop, but did not have
/art/test/593-checker-shift-and-simplifier/smali/
DSmaliTests.smali21 ## CHECK-START-ARM: int SmaliTests.operations() instruction_simplifier_arm (before)
32 ## CHECK-START-ARM64: int SmaliTests.operations() instruction_simplifier_arm64 (before)
/art/test/530-checker-lse3/smali/
DStoreLoad.smali19 ## CHECK-START: int StoreLoad.test(int) load_store_elimination (before)
48 ## CHECK-START: int StoreLoad.test2(int) load_store_elimination (before)
61 ## CHECK-START: int StoreLoad.test3(int) load_store_elimination (before)

123