HomeSort by relevance Sort by last modified time
    Searched refs:HNullCheck (Results 1 - 22 of 22) 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);
code_generator.h 284 bool CanMoveNullCheckToUser(HNullCheck* null_check);
286 void GenerateNullCheck(HNullCheck* null_check);
287 virtual void GenerateImplicitNullCheck(HNullCheck* null_check) = 0;
288 virtual void GenerateExplicitNullCheck(HNullCheck* null_check) = 0;
299 bool IsImplicitNullCheckAllowed(HNullCheck* null_check) const;
code_generator_mips.h 366 void GenerateImplicitNullCheck(HNullCheck* instruction);
367 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_mips64.h 358 void GenerateImplicitNullCheck(HNullCheck* instruction);
359 void GenerateExplicitNullCheck(HNullCheck* instruction);
prepare_for_register_allocation.cc 33 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) {
code_generator_arm.h 518 void GenerateImplicitNullCheck(HNullCheck* instruction);
519 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_arm64.h 569 void GenerateImplicitNullCheck(HNullCheck* instruction);
570 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_x86.h 549 void GenerateImplicitNullCheck(HNullCheck* instruction);
550 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_x86_64.h 523 void GenerateImplicitNullCheck(HNullCheck* instruction);
524 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator.cc     [all...]
reference_type_propagation.cc 103 void VisitNullCheck(HNullCheck* instr) OVERRIDE;
600 void ReferenceTypePropagation::RTPVisitor::VisitNullCheck(HNullCheck* instr) {
    [all...]
instruction_simplifier.cc 66 void VisitNullCheck(HNullCheck* instruction) OVERRIDE;
396 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) {
    [all...]
code_generator_mips64.cc 266 explicit NullCheckSlowPathMIPS64(HNullCheck* instr) : SlowPathCodeMIPS64(instr) {}
    [all...]
instruction_builder.cc 224 HNullCheck* null_check = new (arena_) HNullCheck(ref, dex_pc);
    [all...]
code_generator_arm64.cc 368 explicit NullCheckSlowPathARM64(HNullCheck* instr) : SlowPathCodeARM64(instr) {}
    [all...]
code_generator_mips.cc 312 explicit NullCheckSlowPathMIPS(HNullCheck* instr) : SlowPathCodeMIPS(instr) {}
    [all...]
code_generator_arm.cc 67 explicit NullCheckSlowPathARM(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_x86.cc 55 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_x86_64.cc 59 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
nodes.h     [all...]

Completed in 5606 milliseconds