/art/test/1909-per-agent-tls/src/art/ |
D | Test1909.java | 127 ThreadWaiter t2 = new ThreadWaiter(); in run() local 130 checkEq(0, t2.getTLS(e1)); in run() 133 checkEq(0, t2.getTLS(e2)); in run() 139 checkEq(0, t2.getTLS(e1)); in run() 142 checkEq(0, t2.getTLS(e2)); in run() 145 checkEq(0, t2.getTLS(e3)); in run() 151 checkEq(0, t2.getTLS(e1)); in run() 154 checkEq(0, t2.getTLS(e2)); in run() 160 checkEq(0, t2.getTLS(e1)); in run() 165 checkEq(0, t2.getTLS(e1)); in run() [all …]
|
/art/runtime/interpreter/mterp/mips/ |
D | op_shr_long_2addr.S | 6 GET_OPA4(t2) # t2 <- A+ 9 EAS2(t0, rFP, t2) # t0 <- &fp[A] 22 SET_VREG64_GOTO(v0, v1, t2, t0) # vA/vA+1 <- v0/v1 27 SET_VREG64_GOTO(v1, a3, t2, t0) # vA/vA+1 <- rlo/rhi
|
D | op_shl_long.S | 9 GET_OPA(t2) # t2 <- AA 27 SET_VREG64_GOTO(v0, v1, t2, t0) # vAA/vAA+1 <- v0/v1 31 SET_VREG64_GOTO(zero, v0, t2, t0) # vAA/vAA+1 <- rlo/rhi
|
D | op_mul_long_2addr.S | 23 mul t2, a2, a1 # t2= a2a1 25 addu v1, v1, t2 # v1= v1 + a2a1;
|
D | op_shl_long_2addr.S | 9 EAS2(t2, rFP, rOBJ) # t2 <- &fp[A] 10 LOAD64(a0, a1, t2) # a0/a1 <- vA/vA+1
|
/art/test/921-hello-failure/src/ |
D | MultiRedef.java | 80 public static void doTest(Transform t1, Transform2 t2) { in doTest() argument 82 t2.sayHi("MultiRedef"); in doTest() 90 t2.sayHi("MultiRedef"); in doTest() 98 t2.sayHi("MultiRedef"); in doTest()
|
D | MultiRetrans.java | 80 public static void doTest(Transform t1, Transform2 t2) { in doTest() argument 82 t2.sayHi("MultiRetrans"); in doTest() 94 t2.sayHi("MultiRetrans"); in doTest() 106 t2.sayHi("MultiRetrans"); in doTest()
|
/art/compiler/optimizing/ |
D | reference_type_propagation_test.cc | 99 ReferenceTypeInfo t2(MergeTypes(InvalidType(), ObjectType())); in TEST_F() local 100 EXPECT_TRUE(t2.IsValid()); in TEST_F() 101 EXPECT_TRUE(t2.IsExact()); in TEST_F() 102 EXPECT_TRUE(t2.IsEqual(ObjectType())); in TEST_F() 129 ReferenceTypeInfo t2(MergeTypes(StringType(), StringType())); in TEST_F() local 130 EXPECT_TRUE(t2.IsValid()); in TEST_F() 131 EXPECT_TRUE(t2.IsExact()); in TEST_F() 132 EXPECT_TRUE(t2.IsEqual(StringType())); in TEST_F()
|
/art/test/926-multi-obsolescence/src/art/ |
D | Test926.java | 130 public static void doTest(final Transform t1, final Transform2 t2) throws Exception { in doTest() argument 131 t1.sayHi(() -> { t2.sayHi(() -> { System.out.println("Not doing anything here"); }); }); in doTest() 133 t2.sayHi(() -> { in doTest() 138 t1.sayHi(() -> { t2.sayHi(() -> { System.out.println("Not doing anything here"); }); }); in doTest()
|
/art/test/917-fields-transformation/src/art/ |
D | Test917.java | 90 public static void doTest(Transform t1, Transform t2) { in doTest() argument 92 printTransform(t2); in doTest() 95 printTransform(t2); in doTest()
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 208 TestClass1 t2 = new TestClass2(2); 210 TestClass1 t4 = new TestClass1(4, t2); 213 t2.tweak(12); 214 t2.tweak(1337); 215 t2.tweak(12); 216 t2.tweak(1338); 218 t4.tweak((int)((TestClass2)t2).baz); 220 t2.tweak((int)TestClass2.TOTAL);
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 686 li $t2, 'D' # put char 'D' into t2 687 beq $t1, $t2, .Losr_fp_result # branch if result type char == 'D' 688 li $t2, 'F' # put char 'F' into t2 689 beq $t1, $t2, .Losr_fp_result # branch if result type char == 'F' 973 # t2 = number of argument bytes remain 992 daddiu $t2, -4 # delay slot 1004 daddiu $t2, -8 # delay slot 1013 daddiu $t2, -4 # delay slot 1024 daddiu $t2, -8 1065 daddiu $t2, $a2, -4 # t2 = number of argument bytes remain (skip this ptr) [all …]
|
/art/test/526-checker-caller-callee-regs/src/ |
D | Main.java | 81 int t2 = $opt$noinline$function_call(arg); in $opt$LiveInCall() local 82 return t1 - t2; in $opt$LiveInCall()
|
/art/test/127-checker-secondarydex/src/ |
D | Main.java | 34 Test t2 = new Test(); in testSlowPathDirectInvoke() local 36 t1.test(t2); in testSlowPathDirectInvoke()
|
/art/test/051-thread/src/ |
D | Main.java | 156 PriorityStoringThread t2 = new PriorityStoringThread(true); in testThreadPriorities() local 157 t2.start(); in testThreadPriorities() 158 t2.join(); in testThreadPriorities() 159 if (supportsThreadPriorities() && (t2.getNativePriority() != Thread.MAX_PRIORITY)) { in testThreadPriorities() 160 System.out.print("thread priority for t2 was " + t2.getNativePriority() + in testThreadPriorities()
|
/art/test/980-redefine-object/src/ |
D | Main.java | 369 Transform t2 = new Transform(); in doTest() local 384 al.add(t2); in doTest() 396 ll.add(t2); in doTest()
|
/art/test/981-dedup-original-dex/src-art/art/ |
D | Test981.java | 175 Transform2 t2 = new Transform2(); in doTest() local 178 assertSame(null, getOriginalDexFile(t2.getClass())); in doTest() 186 assertSame(getOriginalDexFile(t1.getClass()), getOriginalDexFile(t2.getClass())); in doTest()
|
/art/test/168-vmstack-annotated/src/ |
D | Main.java | 144 Thread t2 = new Thread(new Runner(l2, b2)); in testCluster1() local 145 t2.setDaemon(true); in testCluster1() 146 t2.start(); in testCluster1() 151 waitNotRunnable(t2); in testCluster1() 168 Object[] stack2 = getAnnotatedStack(t2); in testCluster1()
|
/art/test/944-transform-classloaders/src/art/ |
D | Test944.java | 236 Transform2 t2 = new Transform2(); in doTest() local 249 t2.sayHi(); in doTest() 254 t2.sayHi(); in doTest()
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 392 sw $t2, 180($sp) 524 lw $t2, 180($sp) 748 lw $t2, 40($a0) 1008 lapc $t2, tabInt 1014 addiu $t2, $ra, %lo(tabInt - tabBase) 1033 addu $ra, $t2, $t6 1232 li $t2, 'D' # put char 'D' into t2 1233 beq $t1, $t2, 6f # branch if result type char == 'D' 1310 …or $t2, $t1, $t0 # $t2 holds thread id with count of 0 with preserved read ba… 1311 sc $t2, MIRROR_OBJECT_LOCK_WORD_OFFSET($a0) [all …]
|
/art/tools/ahat/src/test/com/android/ahat/ |
D | DiffFieldsTest.java | 35 private static final Type t2 = Type.CHAR; field in DiffFieldsTest 124 a.add(new FieldValue("n2", t2, null)); in basicDiff() 133 b.add(new FieldValue("n2", t2, null)); in basicDiff() 162 a.add(new FieldValue("n2", t2, null)); in reorderedDiff() 174 b.add(new FieldValue("n2", t2, null)); in reorderedDiff()
|
/art/compiler/jit/ |
D | jit_compiler.cc | 183 TimingLogger::ScopedTiming t2("Compiling", &logger); in CompileMethod() local 192 TimingLogger::ScopedTiming t2("TrimMaps", &logger); in CompileMethod() local
|
/art/runtime/gc/collector/ |
D | semi_space.cc | 238 TimingLogger::ScopedTiming t2("RevokeAllThreadLocalAllocationStacks", GetTimings()); in MarkingPhase() local 334 TimingLogger::ScopedTiming t2("MarkStackAsLive", GetTimings()); in MarkReachableObjects() local 344 TimingLogger::ScopedTiming t2( in MarkReachableObjects() local 368 TimingLogger::ScopedTiming t2("UpdateAndMarkRememberedSet", GetTimings()); in MarkReachableObjects() local 371 TimingLogger::ScopedTiming t2("VisitLiveBits", GetTimings()); in MarkReachableObjects() local 400 TimingLogger::ScopedTiming t2("VisitLargeObjects", GetTimings()); in MarkReachableObjects() local
|
D | mark_compact.cc | 219 TimingLogger::ScopedTiming t2( in UpdateAndMarkModUnion() local 232 TimingLogger::ScopedTiming t2("MarkAllocStackAsLive", GetTimings()); in MarkReachableObjects() local 355 TimingLogger::ScopedTiming t2( in UpdateReferences() local 542 TimingLogger::ScopedTiming t2( in Sweep() local
|
/art/test/924-threads/src/art/ |
D | Test924.java | 50 Thread t2 = getCurrentThread(); in doTest() local 56 if (t1 != t2) { in doTest() 57 throw new RuntimeException("Expected " + t1 + " but got " + t2); in doTest()
|