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

  /art/compiler/optimizing/
prepare_for_register_allocation.h 39 void VisitNullCheck(HNullCheck* check) OVERRIDE;
bounds_check_elimination_test.cc 92 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0);
105 null_check = new (&allocator_) HNullCheck(parameter1, 0);
116 null_check = new (&allocator_) HNullCheck(parameter1, 0);
129 null_check = new (&allocator_) HNullCheck(parameter1, 0);
191 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0);
246 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0);
310 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter, 0)
    [all...]
nodes_test.cc 45 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0);
90 HInstruction* to_insert = new (&allocator) HNullCheck(parameter1, 0);
114 HInstruction* to_add = new (&allocator) HNullCheck(parameter, 0);
131 HInstruction* with_environment = new (&allocator) HNullCheck(parameter1, 0);
ssa_liveness_analysis_test.cc 108 HInstruction* null_check = new (&allocator_) HNullCheck(array, 0);
178 HInstruction* null_check = new (&allocator_) HNullCheck(array, 0);
code_generator.h 327 bool CanMoveNullCheckToUser(HNullCheck* null_check);
331 void GenerateNullCheck(HNullCheck* null_check);
332 virtual void GenerateImplicitNullCheck(HNullCheck* null_check) = 0;
333 virtual void GenerateExplicitNullCheck(HNullCheck* null_check) = 0;
    [all...]
prepare_for_register_allocation.cc 35 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) {
code_generator_mips.h 574 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
575 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_mips64.h 537 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
538 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_x86.h 603 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
604 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_x86_64.h 581 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
582 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_arm64.h 740 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
741 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
    [all...]
code_generator_arm_vixl.h 714 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
715 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
    [all...]
reference_type_propagation.cc 101 void VisitNullCheck(HNullCheck* instr) OVERRIDE;
663 void ReferenceTypePropagation::RTPVisitor::VisitNullCheck(HNullCheck* instr) {
    [all...]
code_generator.cc     [all...]
instruction_simplifier.cc 78 void VisitNullCheck(HNullCheck* instruction) OVERRIDE;
445 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) {
    [all...]
code_generator_arm64.cc 464 explicit NullCheckSlowPathARM64(HNullCheck* instr) : SlowPathCodeARM64(instr) {}
    [all...]
code_generator_mips64.cc 356 explicit NullCheckSlowPathMIPS64(HNullCheck* instr) : SlowPathCodeMIPS64(instr) {}
    [all...]
instruction_builder.cc 234 HNullCheck* null_check = new (arena_) HNullCheck(ref, dex_pc);
    [all...]
code_generator_arm_vixl.cc 345 explicit NullCheckSlowPathARMVIXL(HNullCheck* instruction) : SlowPathCodeARMVIXL(instruction) {}
    [all...]
code_generator_mips.cc 407 explicit NullCheckSlowPathMIPS(HNullCheck* instr) : SlowPathCodeMIPS(instr) {}
    [all...]
code_generator_x86.cc 57 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_x86_64.cc 61 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
nodes.h     [all...]

Completed in 324 milliseconds