/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 | 102 ReferenceTypeInfo t2(MergeTypes(InvalidType(), ObjectType())); in TEST_F() local 103 EXPECT_TRUE(t2.IsValid()); in TEST_F() 104 EXPECT_TRUE(t2.IsExact()); in TEST_F() 105 EXPECT_TRUE(t2.IsEqual(ObjectType())); in TEST_F() 132 ReferenceTypeInfo t2(MergeTypes(StringType(), StringType())); in TEST_F() local 133 EXPECT_TRUE(t2.IsValid()); in TEST_F() 134 EXPECT_TRUE(t2.IsExact()); in TEST_F() 135 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/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 662 li $t2, 'D' # put char 'D' into t2 663 beq $t1, $t2, .Losr_fp_result # branch if result type char == 'D' 664 li $t2, 'F' # put char 'F' into t2 665 beq $t1, $t2, .Losr_fp_result # branch if result type char == 'F' 948 # t2 = number of argument bytes remain 967 daddiu $t2, -4 # delay slot 979 daddiu $t2, -8 # delay slot 988 daddiu $t2, -4 # delay slot 999 daddiu $t2, -8 1041 daddiu $t2, $a2, -4 # t2 = number of argument bytes remain (skip this ptr) [all …]
|
/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/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/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 | 351 sw $t2, 180($sp) 481 lw $t2, 180($sp) 702 lw $t2, 40($a0) 962 lapc $t2, tabInt 968 addiu $t2, $ra, %lo(tabInt - tabBase) 987 addu $ra, $t2, $t6 1186 li $t2, 'D' # put char 'D' into t2 1187 beq $t1, $t2, 6f # branch if result type char == 'D' 1263 …or $t2, $t1, $t0 # $t2 holds thread id with count of 0 with preserved read ba… 1264 sc $t2, MIRROR_OBJECT_LOCK_WORD_OFFSET($a0) [all …]
|
/art/compiler/jit/ |
D | jit_compiler.cc | 185 TimingLogger::ScopedTiming t2("Compiling", &logger); in CompileMethod() local 194 TimingLogger::ScopedTiming t2("TrimMaps", &logger); in CompileMethod() local
|
/art/test/924-threads/src/art/ |
D | Test924.java | 49 Thread t2 = getCurrentThread(); in doTest() local 55 if (t1 != t2) { in doTest() 56 throw new RuntimeException("Expected " + t1 + " but got " + t2); in doTest()
|
/art/runtime/gc/collector/ |
D | semi_space.cc | 239 TimingLogger::ScopedTiming t2("RevokeAllThreadLocalAllocationStacks", GetTimings()); in MarkingPhase() local 335 TimingLogger::ScopedTiming t2("MarkStackAsLive", GetTimings()); in MarkReachableObjects() local 345 TimingLogger::ScopedTiming t2( in MarkReachableObjects() local 369 TimingLogger::ScopedTiming t2("UpdateAndMarkRememberedSet", GetTimings()); in MarkReachableObjects() local 372 TimingLogger::ScopedTiming t2("VisitLiveBits", GetTimings()); in MarkReachableObjects() local 401 TimingLogger::ScopedTiming t2("VisitLargeObjects", GetTimings()); in MarkReachableObjects() local
|
D | mark_compact.cc | 217 TimingLogger::ScopedTiming t2( in UpdateAndMarkModUnion() local 230 TimingLogger::ScopedTiming t2("MarkAllocStackAsLive", GetTimings()); in MarkReachableObjects() local 353 TimingLogger::ScopedTiming t2( in UpdateReferences() local 540 TimingLogger::ScopedTiming t2( in Sweep() local
|
D | mark_sweep.cc | 197 TimingLogger::ScopedTiming t2("SwapStacks", GetTimings()); in PausePhase() local 1070 TimingLogger::ScopedTiming t2("(Paused)VerifyRoots", GetTimings()); in ReMarkRoots() local 1232 TimingLogger::ScopedTiming t2("FreeList", GetTimings()); in SweepArray() local 1244 TimingLogger::ScopedTiming t2("FreeList", GetTimings()); in SweepArray() local 1274 TimingLogger::ScopedTiming t2("RecordFree", GetTimings()); in SweepArray() local 1277 t2.NewTiming("ResetStack"); in SweepArray() 1288 TimingLogger::ScopedTiming t2("MarkAllocStackAsLive", GetTimings()); in Sweep() local
|
/art/test/616-cha/src/ |
D | Main.java | 169 long t2 = System.currentTimeMillis(); in testNoOverride() local
|