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

  /art/compiler/optimizing/
prepare_for_register_allocation.h 36 void VisitNullCheck(HNullCheck* check) OVERRIDE;
bounds_check_elimination_test.cc 71 HNullCheck* null_check = new (&allocator) HNullCheck(parameter1, 0);
84 null_check = new (&allocator) HNullCheck(parameter1, 0);
95 null_check = new (&allocator) HNullCheck(parameter1, 0);
108 null_check = new (&allocator) HNullCheck(parameter1, 0);
178 HNullCheck* null_check = new (&allocator) HNullCheck(parameter1, 0);
241 HNullCheck* null_check = new (&allocator) HNullCheck(parameter1, 0);
312 HNullCheck* null_check = new (&allocator) HNullCheck(parameter, 0)
    [all...]
nodes_test.cc 44 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0);
87 HInstruction* to_insert = new (&allocator) HNullCheck(parameter1, 0);
110 HInstruction* to_add = new (&allocator) HNullCheck(parameter, 0);
126 HInstruction* with_environment = new (&allocator) HNullCheck(parameter1, 0);
prepare_for_register_allocation.cc 33 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) {
code_generator_arm.h 189 void GenerateImplicitNullCheck(HNullCheck* instruction);
190 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_mips64.h 192 void GenerateImplicitNullCheck(HNullCheck* instruction);
193 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_x86.h 182 void GenerateImplicitNullCheck(HNullCheck* instruction);
183 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_x86_64.h 181 void GenerateImplicitNullCheck(HNullCheck* instruction);
182 void GenerateExplicitNullCheck(HNullCheck* instruction);
code_generator_arm64.h 162 void GenerateImplicitNullCheck(HNullCheck* instruction);
163 void GenerateExplicitNullCheck(HNullCheck* instruction);
instruction_simplifier.cc 50 void VisitNullCheck(HNullCheck* instruction) OVERRIDE;
162 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) {
builder.cc 745 HNullCheck* null_check = new (arena_) HNullCheck(arg, dex_pc);
    [all...]
code_generator.h 220 bool CanMoveNullCheckToUser(HNullCheck* null_check);
code_generator.cc     [all...]
code_generator_arm64.cc 245 explicit NullCheckSlowPathARM64(HNullCheck* instr) : instruction_(instr) {}
256 HNullCheck* const instruction_;
    [all...]
code_generator_mips64.cc 257 explicit NullCheckSlowPathMIPS64(HNullCheck* instr) : instruction_(instr) {}
270 HNullCheck* const instruction_;
    [all...]
code_generator_arm.cc 61 explicit NullCheckSlowPathARM(HNullCheck* instruction) : instruction_(instruction) {}
71 HNullCheck* const instruction_;
    [all...]
code_generator_x86.cc 50 explicit NullCheckSlowPathX86(HNullCheck* instruction) : instruction_(instruction) {}
59 HNullCheck* const instruction_;
    [all...]
code_generator_x86_64.cc 53 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : instruction_(instruction) {}
63 HNullCheck* const instruction_;
    [all...]
nodes.h     [all...]
bounds_check_elimination.cc     [all...]

Completed in 61 milliseconds