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

/art/runtime/interpreter/mterp/mips/
H A Dbincmp.S3 * fragment that specifies the *reverse* comparison to perform, e.g.
13 b${revcmp} a2, a3, 1f # branch to 1 if comparison failed
H A Dzcmp.S3 * fragment that specifies the *reverse* comparison to perform, e.g.
12 b${revcmp} a2, zero, 1f # branch to 1 if comparison failed
/art/compiler/optimizing/
H A Dcodegen_test.cc855 HInstruction* comparison = nullptr; local
861 comparison = new (&allocator) HEqual(op1, op2);
865 comparison = new (&allocator) HNotEqual(op1, op2);
869 comparison = new (&allocator) HLessThan(op1, op2);
873 comparison = new (&allocator) HLessThanOrEqual(op1, op2);
877 comparison = new (&allocator) HGreaterThan(op1, op2);
881 comparison = new (&allocator) HGreaterThanOrEqual(op1, op2);
885 comparison = new (&allocator) HBelow(op1, op2);
889 comparison = new (&allocator) HBelowOrEqual(op1, op2);
893 comparison
[all...]
H A Dinstruction_builder.cc476 T* comparison = new (arena_) T(first, second, dex_pc); local
477 AppendInstruction(comparison);
478 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
485 T* comparison = new (arena_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc); local
486 AppendInstruction(comparison);
487 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
607 HEqual* comparison = new (arena_) HEqual(value, case_value, dex_pc); local
608 AppendInstruction(comparison);
609 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
1806 #define IF_XX(comparison, con
[all...]
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S1526 * destination register rTEMP based on the results of the comparison.
1582 * destination register rTEMP based on the results of the comparison.
1638 * into the destination register (rTEMP) based on the comparison results.
1687 * into the destination register (rTEMP) based on the comparison results.
1776 * fragment that specifies the *reverse* comparison to perform, e.g.
1786 bne a2, a3, 1f # branch to 1 if comparison failed
1815 * fragment that specifies the *reverse* comparison to perform, e.g.
1825 beq a2, a3, 1f # branch to 1 if comparison failed
1854 * fragment that specifies the *reverse* comparison to perform, e.g.
1864 bge a2, a3, 1f # branch to 1 if comparison faile
[all...]

Completed in 267 milliseconds