Searched refs:t0 (Results 1 – 4 of 4) sorted by relevance
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 163 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/ |
D | exception_test.cc | 113 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()
|
D | class_linker.cc | 2951 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/ |
D | int_mips.cc | 47 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()
|