Searched refs:t1 (Results 26 - 41 of 41) sorted by relevance

12

/art/runtime/interpreter/mterp/mips/
H A Dop_double_to_int.S24 GET_INST_OPCODE(t1) # extract opcode from rINST
30 GET_INST_OPCODE(t1) # extract opcode from rINST
39 SET_VREG_F_GOTO(fa0, rOBJ, t1) # vA <- result
H A DbinopWide.S22 EAS2(t1, rFP, a3) # a3 <- &fp[CC]
24 LOAD64($arg2, $arg3, t1) # a2/a3 <- vCC/vCC+1
H A Dheader.S89 #define t1 $$9 define
/art/test/051-thread/src/
H A DMain.java147 PriorityStoringThread t1 = new PriorityStoringThread(false);
148 t1.setPriority(Thread.MAX_PRIORITY);
149 t1.start();
150 t1.join();
151 if (supportsThreadPriorities() && (t1.getNativePriority() != Thread.MAX_PRIORITY)) {
152 System.out.print("thread priority for t1 was " + t1.getNativePriority() +
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S71 SDu $f30, $f31, 44, $sp, $t1
72 SDu $f28, $f29, 36, $sp, $t1
73 SDu $f26, $f27, 28, $sp, $t1
74 SDu $f24, $f25, 20, $sp, $t1
75 SDu $f22, $f23, 12, $sp, $t1
76 SDu $f20, $f21, 4, $sp, $t1
170 * callee-save: $a1-$a3, $t0-$t1, $s2-$s8, $gp, $ra, $f8-$f19
200 sw $t1, 72($sp)
222 * callee-save: $a1-$a3, $t0-$t1, $s2-$s8, $gp, $ra, $f8-$f19
242 * callee-save: $a1-$a3, $t0-$t1,
[all...]
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S90 ld $t1, %got(_ZN3art7Runtime9instance_E)($gp)
91 ld $t1, 0($t1)
92 ld $t1, RUNTIME_SAVE_ALL_CALLEE_SAVES_METHOD_OFFSET($t1)
93 sd $t1, 0($sp) # Place ArtMethod* at bottom of stack.
132 ld $t1, %got(_ZN3art7Runtime9instance_E)($gp)
133 ld $t1, 0($t1)
134 ld $t1, RUNTIME_SAVE_REFS_ONLY_METHOD_OFFSE
[all...]
/art/test/924-threads/src/art/
H A DTest924.java48 Thread t1 = Thread.currentThread();
53 t1.setPriority(5);
55 if (t1 != t2) {
56 throw new RuntimeException("Expected " + t1 + " but got " + t2);
60 printThreadInfo(t1);
/art/test/925-threadgroups/src/art/
H A DTest925.java32 Thread t1 = Thread.currentThread();
33 ThreadGroup curGroup = t1.getThreadGroup();
/art/compiler/
H A Dexception_test.cc134 const DexFile::TryItem *t0, *t1; local
136 t1 = dex_->GetTryItems(*code_item, 1);
137 EXPECT_LE(t0->start_addr_, t1->start_addr_);
/art/test/901-hello-ti-agent/
H A Dbasics.cc174 std::thread t1(CallJvmtiFunction, jvmti_env, Main_klass, &res);
175 t1.join();
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S96 #define t1 $9 define
1205 GET_OPA(t1) # t1 <- AA
1209 SET_VREG64_GOTO(a0, a2, t1, t0) # vAA/vAA+1 <- a0/a2
1837 * sgt t1, x.hi, y.hi; # (y.hi > x.hi) ? 1:0
1838 * subu v0, t0, t1 # v0= -1:1:0 for [ < > = ]
1852 sgt t1, a1, a3
1853 subu v0, t1, t0 # v0 <- (-1, 1, 0)
1857 sgtu t1, a0, a2
1858 subu v0, t1, t
[all...]
H A Dmterp_mips64.S3712 mfc1 t1, f1
3713 and t0, t0, t1
3747 mfc1 t1, f1
3748 and t0, t0, t1
3830 mfc1 t1, f1
3831 and t0, t0, t1
3865 mfc1 t1, f1
3866 and t0, t0, t1
/art/test/616-cha/src/
H A DMain.java167 long t1 = System.currentTimeMillis();
/art/compiler/optimizing/
H A Dintrinsics_x86_64.cc675 XmmRegister t1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); local
686 __ roundss(t1, in, Immediate(1));
687 __ subss(t2, t1);
690 __ addss(t1, codegen_->LiteralFloatAddress(1.0f));
698 __ comiss(t1, t2);
702 __ cvttss2si(out, t1);
719 XmmRegister t1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); local
730 __ roundsd(t1, in, Immediate(1));
731 __ subsd(t2, t1);
734 __ addsd(t1, codegen
[all...]
H A Dintrinsics_x86.cc904 XmmRegister t1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); local
916 __ roundss(t1, in, Immediate(1));
917 __ subss(t2, t1);
927 __ addss(t1, codegen_->LiteralInt32Address(bit_cast<int32_t, float>(1.0f),
937 __ addss(t1, Address(ESP, 0));
947 __ comiss(t1, t2);
951 __ cvttss2si(out, t1);
/art/runtime/
H A Dclass_linker.cc4811 uint64_t t1 = NanoTime(); local
4835 global_stats->class_init_time_ns += (t1 - t0);
4836 thread_stats->class_init_time_ns += (t1 - t0);

Completed in 411 milliseconds

12