HomeSort by relevance Sort by last modified time
    Searched refs:GetIntConstant (Results 1 - 22 of 22) 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...]
induction_var_analysis_test.cc 85 constant0_ = graph_->GetIntConstant(0);
86 constant1_ = graph_->GetIntConstant(1);
87 constant100_ = graph_->GetIntConstant(100);
619 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0);
621 ifs->ReplaceInput(graph_->GetIntConstant(127), 1);
638 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0);
640 ifs->ReplaceInput(graph_->GetIntConstant(128), 1);
656 basic_[0]->ReplaceInput(graph_->GetIntConstant(-32768), 0);
658 ifs->ReplaceInput(graph_->GetIntConstant(32767), 1);
676 basic_[0]->ReplaceInput(graph_->GetIntConstant(-32768), 0)
    [all...]
codegen_test.cc 645 HIntConstant* constant0 = graph->GetIntConstant(0);
646 HIntConstant* constant1 = graph->GetIntConstant(1);
713 HIntConstant* cst_lhs = graph->GetIntConstant(lhs[i]);
714 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
770 HIntConstant* cst_lhs = graph->GetIntConstant(lhs[i]);
771 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
781 HIntConstant* cst_lt = graph->GetIntConstant(1);
784 HIntConstant* cst_ge = graph->GetIntConstant(0);
847 op1 = graph->GetIntConstant(i);
848 op2 = graph->GetIntConstant(j)
    [all...]
nodes_shared.h 87 return GetBlock()->GetGraph()->GetIntConstant(
instruction_simplifier.cc 512 instruction->ReplaceWith(graph->GetIntConstant(0));
530 instruction->ReplaceWith(graph->GetIntConstant(outcome));
606 equal->ReplaceWith(GetGraph()->GetIntConstant(0));
637 not_equal->ReplaceWith(GetGraph()->GetIntConstant(1));
656 replace_with = GetGraph()->GetIntConstant(0);
659 replace_with = GetGraph()->GetIntConstant(1);
    [all...]
live_ranges_test.cc 250 LiveInterval* interval = graph->GetIntConstant(0)->GetLiveInterval();
259 interval = graph->GetIntConstant(4)->GetLiveInterval();
267 interval = graph->GetIntConstant(5)->GetLiveInterval();
instruction_builder.cc 485 T* comparison = new (arena_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc);
562 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc);
573 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc);
606 HInstruction* case_value = graph_->GetIntConstant(it.CurrentKey(), dex_pc);
    [all...]
nodes.cc 547 return GetIntConstant(static_cast<int32_t>(value), dex_pc);
    [all...]
instruction_simplifier_arm64.cc 59 GetGraph()->GetIntConstant(mirror::Array::DataOffset(access_size).Uint32Value());
licm_test.cc 68 int_constant_ = graph_->GetIntConstant(42);
prepare_for_register_allocation.cc 130 instruction->ReplaceInput(GetGraph()->GetIntConstant(load_class->GetTypeIndex()), 0);
induction_var_range_test.cc 92 phi->AddInput(graph_->GetIntConstant(lower)); // i = l
100 increment_ = new (&allocator_) HAdd(Primitive::kPrimInt, phi, graph_->GetIntConstant(stride));
137 return CreateFetch(graph_->GetIntConstant(c));
566 BuildLoop(0, graph_->GetIntConstant(1000), 1);
593 BuildLoop(1000, graph_->GetIntConstant(0), -1);
    [all...]
induction_var_range.cc     [all...]
nodes.h 472 HIntConstant* GetIntConstant(int32_t value, uint32_t dex_pc = kNoDexPc) {
    [all...]
inliner.cc 704 constant = graph_->GetIntConstant(
    [all...]
graph_test.cc 31 HInstruction* instr = graph->GetIntConstant(4);
register_allocator_test.cc 698 HInstruction* constant1 = graph->GetIntConstant(1);
699 HInstruction* constant2 = graph->GetIntConstant(2);
    [all...]
constant_folding_test.cc 763 HInstruction* zero = graph_->GetIntConstant(0);
bounds_check_elimination.cc     [all...]
load_store_elimination.cc 697 return GetGraph()->GetIntConstant(0);
    [all...]
induction_var_analysis.cc     [all...]
code_generator_x86.cc     [all...]

Completed in 4637 milliseconds