Searched refs:t0 (Results 1 - 5 of 5) sorted by relevance

/art/runtime/arch/mips/
H A Dmemcmp16_mips.S24 li $t0,0
30 1: lhu $t0,0($a0)
33 bne $t0,$t1,done
39 subu $v0,$t0,$t1
H A Dquick_entrypoints_mips.S234 lw $t0, THREAD_EXCEPTION_OFFSET(rSELF) # load Thread::Current()->exception_
236 bnez $t0, 1f # success if no exception is pending
311 lw $t0, 32($a0)
442 move $t0, $sp # save $sp
448 sw $t0, 16($sp) # pass $sp
498 addiu $t0, $a2, 16 # create space for method pointer in frame
499 srl $t0, $t0, 4 # shift the frame size right 4
500 sll $t0, $t0,
[all...]
/art/runtime/
H A Dexception_test.cc131 const DexFile::TryItem *t0, *t1; local
132 t0 = dex_->GetTryItems(*code_item, 0);
134 EXPECT_LE(t0->start_addr_, t1->start_addr_);
H A Dclass_linker.cc4110 uint64_t t0; local
4175 t0 = NanoTime();
4266 global_stats->class_init_time_ns += (t1 - t0);
4267 thread_stats->class_init_time_ns += (t1 - t0);
/art/compiler/dex/quick/mips/
H A Dint_mips.cc34 * slt t0, x.hi, y.hi; # (x.hi < y.hi) ? 1:0
36 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
38 * sltu t0, x.lo, y.lo
40 * subu res, t0, t1
48 RegStorage t0 = AllocTemp(); local
51 NewLIR3(kMipsSlt, t0.GetReg(), rl_src1.reg.GetHighReg(), rl_src2.reg.GetHighReg());
53 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
55 NewLIR3(kMipsSltu, t0.GetReg(), rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
57 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
58 FreeTemp(t0);
[all...]

Completed in 346 milliseconds