HomeSort by relevance Sort by last modified time
    Searched refs:GetIntConstant (Results 1 - 24 of 24) sorted by null

  /art/compiler/optimizing/
bounds_check_elimination_test.cc 79 HInstruction* constant_1 = graph_->GetIntConstant(1);
80 HInstruction* constant_0 = graph_->GetIntConstant(0);
176 HInstruction* constant_1 = graph_->GetIntConstant(1);
177 HInstruction* constant_0 = graph_->GetIntConstant(0);
178 HInstruction* constant_max_int = graph_->GetIntConstant(INT_MAX);
240 HInstruction* constant_1 = graph_->GetIntConstant(1);
241 HInstruction* constant_0 = graph_->GetIntConstant(0);
242 HInstruction* constant_max_int = graph_->GetIntConstant(INT_MAX);
301 HInstruction* constant_5 = graph_->GetIntConstant(5);
302 HInstruction* constant_4 = graph_->GetIntConstant(4)
    [all...]
load_store_analysis_test.cc 55 HInstruction* c1 = graph_->GetIntConstant(1);
56 HInstruction* c2 = graph_->GetIntConstant(2);
57 HInstruction* c3 = graph_->GetIntConstant(3);
120 HInstruction* c1 = graph_->GetIntConstant(1);
197 HInstruction* c0 = graph_->GetIntConstant(0);
198 HInstruction* c1 = graph_->GetIntConstant(1);
199 HInstruction* c_neg1 = graph_->GetIntConstant(-1);
282 HInstruction* c0 = graph_->GetIntConstant(0);
283 HInstruction* c_0x80000000 = graph_->GetIntConstant(0x80000000);
284 HInstruction* c_0x10 = graph_->GetIntConstant(0x10)
    [all...]
induction_var_analysis_test.cc 99 constant0_ = graph_->GetIntConstant(0);
100 constant1_ = graph_->GetIntConstant(1);
101 constant2_ = graph_->GetIntConstant(2);
102 constant7_ = graph_->GetIntConstant(7);
103 constant100_ = graph_->GetIntConstant(100);
104 constantm1_ = graph_->GetIntConstant(-1);
    [all...]
codegen_test.cc 428 HIntConstant* constant0 = graph->GetIntConstant(0);
429 HIntConstant* constant1 = graph->GetIntConstant(1);
496 HIntConstant* cst_lhs = graph->GetIntConstant(lhs[i]);
497 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
553 HIntConstant* cst_lhs = graph->GetIntConstant(lhs[i]);
554 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
564 HIntConstant* cst_lt = graph->GetIntConstant(1);
567 HIntConstant* cst_ge = graph->GetIntConstant(0);
630 op1 = graph->GetIntConstant(i);
631 op2 = graph->GetIntConstant(j)
    [all...]
instruction_simplifier_shared.cc 260 HIntConstant* offset = graph->GetIntConstant(data_offset);
395 HIntConstant* offset = graph->GetIntConstant(data_offset);
396 HIntConstant* shift = graph->GetIntConstant(component_shift);
scheduler_test.cc 106 HInstruction* c1 = graph_->GetIntConstant(1);
107 HInstruction* c2 = graph_->GetIntConstant(10);
219 HInstruction* c0 = graph_->GetIntConstant(0);
220 HInstruction* c1 = graph_->GetIntConstant(1);
live_ranges_test.cc 250 LiveInterval* interval = graph->GetIntConstant(0)->GetLiveInterval();
259 interval = graph->GetIntConstant(4)->GetLiveInterval();
267 interval = graph->GetIntConstant(5)->GetLiveInterval();
instruction_simplifier.cc 281 instruction->ReplaceInput(GetGraph()->GetIntConstant(masked_cst), /* index */ 1);
561 instruction->ReplaceWith(graph->GetIntConstant(0));
579 instruction->ReplaceWith(graph->GetIntConstant(outcome));
668 equal->ReplaceWith(GetGraph()->GetIntConstant(0));
700 not_equal->ReplaceWith(GetGraph()->GetIntConstant(1));
719 replace_with = GetGraph()->GetIntConstant(0);
722 replace_with = GetGraph()->GetIntConstant(1);
    [all...]
licm_test.cc 82 int_constant_ = graph_->GetIntConstant(42);
nodes_shared.h 92 return GetBlock()->GetGraph()->GetIntConstant(
instruction_builder.cc 508 T* comparison = new (arena_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc);
585 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc);
596 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc);
641 HInstruction* case_value = graph_->GetIntConstant(it.CurrentKey(), dex_pc);
    [all...]
induction_var_range_test.cc 105 phi->AddInput(graph_->GetIntConstant(lower)); // i = l
113 increment_ = new (&allocator_) HAdd(Primitive::kPrimInt, phi, graph_->GetIntConstant(stride));
158 return CreateFetch(graph_->GetIntConstant(c));
205 graph_->GetIntConstant(f),
    [all...]
loop_optimization.cc 695 graph_->GetIntConstant(chunk - 1)));
698 vector_index_ = graph_->GetIntConstant(0);
707 new (global_allocator_) HSelect(rt, vtc, graph_->GetIntConstant(0), kNoDexPc));
721 graph_->GetIntConstant(1),
734 graph_->GetIntConstant(vector_length_), // increment per unroll
748 graph_->GetIntConstant(1),
    [all...]
nodes.cc 550 return GetIntConstant(static_cast<int32_t>(value), dex_pc);
    [all...]
dead_code_elimination.cc 122 return condition->GetBlock()->GetGraph()->GetIntConstant(
nodes.h 520 HIntConstant* GetIntConstant(int32_t value, uint32_t dex_pc = kNoDexPc) {
    [all...]
graph_test.cc 30 HInstruction* instr = graph->GetIntConstant(4);
induction_var_analysis.cc 715 return SolveOp(loop, entry_phi, instruction, graph_->GetIntConstant(1), y, kXor);
717 return SolveOp(loop, entry_phi, instruction, x, graph_->GetIntConstant(1), kXor);
    [all...]
inliner.cc     [all...]
register_allocator_test.cc 747 HInstruction* constant1 = graph->GetIntConstant(1);
748 HInstruction* constant2 = graph->GetIntConstant(2);
    [all...]
constant_folding_test.cc 763 HInstruction* zero = graph_->GetIntConstant(0);
load_store_elimination.cc 276 return GetGraph()->GetIntConstant(0);
bounds_check_elimination.cc     [all...]
code_generator_x86.cc     [all...]

Completed in 162 milliseconds