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

1 2

  /art/compiler/optimizing/
prepare_for_register_allocation.h 43 void VisitNullCheck(HNullCheck* check) OVERRIDE;
bounds_check_elimination_test.cc 90 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
103 null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
114 null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
127 null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
190 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
245 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0);
310 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter, 0)
    [all...]
nodes_test.cc 45 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0);
87 HInstruction* to_insert = new (GetAllocator()) HNullCheck(parameter1, 0);
108 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0);
122 HInstruction* with_environment = new (GetAllocator()) HNullCheck(parameter1, 0);
constructor_fence_redundancy_elimination.cc 58 void VisitNullCheck(HNullCheck* null_check) OVERRIDE {
ssa_liveness_analysis_test.cc 104 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0);
173 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0);
code_generator.h 329 bool CanMoveNullCheckToUser(HNullCheck* null_check);
333 void GenerateNullCheck(HNullCheck* null_check);
334 virtual void GenerateImplicitNullCheck(HNullCheck* null_check) = 0;
335 virtual void GenerateExplicitNullCheck(HNullCheck* null_check) = 0;
    [all...]
prepare_for_register_allocation.cc 37 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) {
code_generator_mips.h 576 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
577 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_mips64.h 555 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
556 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_x86.h 602 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
603 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
code_generator_x86_64.h 582 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
583 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
superblock_cloner_test.cc 94 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter_, dex_pc);
code_generator_arm64.h     [all...]
code_generator_arm_vixl.h 739 void GenerateImplicitNullCheck(HNullCheck* instruction) OVERRIDE;
740 void GenerateExplicitNullCheck(HNullCheck* instruction) OVERRIDE;
    [all...]
reference_type_propagation.cc 103 void VisitNullCheck(HNullCheck* instr) OVERRIDE;
679 void ReferenceTypePropagation::RTPVisitor::VisitNullCheck(HNullCheck* instr) {
    [all...]
code_generator.cc     [all...]
load_store_analysis_test.cc 622 HInstruction* null_check = new (GetAllocator()) HNullCheck(bound_type, 0);
instruction_simplifier.cc 78 void VisitNullCheck(HNullCheck* instruction) OVERRIDE;
551 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) {
    [all...]
code_generator_arm64.cc 401 explicit NullCheckSlowPathARM64(HNullCheck* instr) : SlowPathCodeARM64(instr) {}
    [all...]
instruction_builder.cc 277 HNullCheck* null_check = new (allocator_) HNullCheck(ref, dex_pc);
    [all...]
code_generator_arm_vixl.cc 403 explicit NullCheckSlowPathARMVIXL(HNullCheck* instruction) : SlowPathCodeARMVIXL(instruction) {}
    [all...]
code_generator_mips64.cc 276 explicit NullCheckSlowPathMIPS64(HNullCheck* instr) : SlowPathCodeMIPS64(instr) {}
    [all...]
code_generator_x86.cc 60 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_x86_64.cc 64 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_mips.cc 320 explicit NullCheckSlowPathMIPS(HNullCheck* instr) : SlowPathCodeMIPS(instr) {}
    [all...]

Completed in 1005 milliseconds

1 2