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

  /art/compiler/optimizing/
boolean_simplifier.cc 25 HIf* if_instruction = block->GetLastInstruction()->AsIf();
105 HIf* if_instruction = block->GetLastInstruction()->AsIf();
graph_checker.h 120 void VisitIf(HIf* instruction) OVERRIDE;
bounds_check_elimination_test.cc 64 HIf* if_inst = new (&allocator) HIf(cmp);
87 if_inst = new (&allocator) HIf(cmp);
170 HIf* if_inst = new (&allocator) HIf(cmp);
181 if_inst = new (&allocator) HIf(cmp2);
244 HIf* if_inst = new (&allocator) HIf(cmp);
256 if_inst = new (&allocator) HIf(cmp2);
407 HInstruction* if_inst = new (allocator) HIf(cmp)
    [all...]
gvn_test.cc 95 block->AddInstruction(new (&allocator) HIf(block->GetLastInstruction()));
168 loop_header->AddInstruction(new (&allocator) HIf(block->GetLastInstruction()));
254 outer_loop_header->AddInstruction(new (&allocator) HIf(parameter));
256 inner_loop_header->AddInstruction(new (&allocator) HIf(parameter));
graph_test.cc 34 instr = new (allocator) HIf(equal);
236 HIf* if_instr = if_block->GetLastInstruction()->AsIf();
274 HIf* if_instr = if_block->GetLastInstruction()->AsIf();
dead_code_elimination.cc 32 HIf* if_instruction = last_instruction->AsIf();
reference_type_propagation.cc 61 HIf* ifInstruction = block->GetLastInstruction()->AsIf();
111 HIf* ifInstruction = block->GetLastInstruction()->AsIf();
120 // - `if (a instanceof A)` into an HIf with an HInstanceOf input
121 // - `if (!(a instanceof A)` into an HIf with an HBooleanNot input (which in turn
bounds_check_elimination.cc 526 HIf* h_if = instruction->AsIf();
834 HIf* h_if = new (graph->GetArena()) HIf(cond);
    [all...]
codegen_test.cc 540 first_block->AddInstruction(new (&allocator) HIf(equal));
680 // Check that HIf correctly interprets a materialized condition.
682 // inputs. An HIf takes the materialized combination as input and returns a
721 // We insert a temporary to separate the HIf from the HLessThan and force
725 HIf if_lt(&cmp_lt);
graph_checker.cc 526 void SSAChecker::VisitIf(HIf* instruction) {
builder.cc 202 HInstruction* ifinst = new (arena_) HIf(comparison);
220 HInstruction* ifinst = new (arena_) HIf(comparison);
    [all...]
register_allocator_test.cc 480 block->AddInstruction(new (allocator) HIf(test));
    [all...]
nodes.h     [all...]
code_generator_arm64.cc     [all...]
code_generator_mips64.cc     [all...]
code_generator_arm.cc     [all...]
code_generator_x86.cc 898 void LocationsBuilderX86::VisitIf(HIf* if_instr) {
907 void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) {
    [all...]
code_generator_x86_64.cc 861 void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
870 void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
    [all...]

Completed in 71 milliseconds