Searched defs:t0 (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dexception_test.cc113 const DexFile::TryItem *t0, *t1; local
114 t0 = dex_->GetTryItems(*code_item, 0);
116 EXPECT_LE(t0->start_addr_, t1->start_addr_);
H A Dclass_linker.cc2951 uint64_t t0; local
3010 t0 = NanoTime();
3083 global_stats->class_init_time_ns += (t1 - t0);
3084 thread_stats->class_init_time_ns += (t1 - t0);
/art/compiler/dex/quick/mips/
H A Dint_mips.cc33 * slt t0, x.hi, y.hi; # (x.hi < y.hi) ? 1:0
35 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
37 * sltu t0, x.lo, y.lo
39 * subu res, t0, t1
47 int t0 = AllocTemp(); local
50 NewLIR3(kMipsSlt, t0, rl_src1.high_reg, rl_src2.high_reg);
52 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0);
54 NewLIR3(kMipsSltu, t0, rl_src1.low_reg, rl_src2.low_reg);
56 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0);
57 FreeTemp(t0);
[all...]

Completed in 111 milliseconds