Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 4 of 4) sorted by relevance

/art/runtime/arch/mips/
Dquick_entrypoints_mips.S163 lw $t0, THREAD_EXCEPTION_OFFSET(rSELF) # load Thread::Current()->exception_
165 bnez $t0, 1f # success if no exception is pending
236 lw $t0, 32($a0)
367 move $t0, $sp # save $sp
373 sw $t0, 16($sp) # pass $sp
426 addiu $t0, $a2, 16 # create space for method pointer in frame
427 srl $t0, $t0, 3 # shift the frame size right 3
428 sll $t0, $t0, 3 # shift the frame size left 3 to align to 16 bytes
429 subu $sp, $sp, $t0 # reserve stack space for argument array
448 lw $t0, 16($sp) # get result pointer
[all …]
/art/runtime/
Dexception_test.cc113 const DexFile::TryItem *t0, *t1; in TEST_F() local
114 t0 = dex_->GetTryItems(*code_item, 0); in TEST_F()
116 EXPECT_LE(t0->start_addr_, t1->start_addr_); in TEST_F()
Dclass_linker.cc2951 uint64_t t0; in InitializeClass() local
3010 t0 = NanoTime(); in InitializeClass()
3083 global_stats->class_init_time_ns += (t1 - t0); in InitializeClass()
3084 thread_stats->class_init_time_ns += (t1 - t0); in InitializeClass()
/art/compiler/dex/quick/mips/
Dint_mips.cc47 int t0 = AllocTemp(); in GenCmpLong() local
50 NewLIR3(kMipsSlt, t0, rl_src1.high_reg, rl_src2.high_reg); in GenCmpLong()
52 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0); in GenCmpLong()
54 NewLIR3(kMipsSltu, t0, rl_src1.low_reg, rl_src2.low_reg); in GenCmpLong()
56 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0); in GenCmpLong()
57 FreeTemp(t0); in GenCmpLong()