/art/compiler/optimizing/ |
D | bounds_check_elimination_test.cc | 90 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 103 null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 114 null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 127 null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 190 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 245 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 310 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 321 null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 332 null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 392 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); in BuildSSAGraph1() [all …]
|
D | nodes_test.cc | 45 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 87 HInstruction* to_insert = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 108 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 122 HInstruction* with_environment = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F()
|
D | prepare_for_register_allocation.h | 48 void VisitNullCheck(HNullCheck* check) override;
|
D | ssa_liveness_analysis_test.cc | 94 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F() 163 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
|
D | constructor_fence_redundancy_elimination.cc | 58 void VisitNullCheck(HNullCheck* null_check) override { in VisitNullCheck()
|
D | code_generator.h | 334 bool CanMoveNullCheckToUser(HNullCheck* null_check); 338 void GenerateNullCheck(HNullCheck* null_check); 339 virtual void GenerateImplicitNullCheck(HNullCheck* null_check) = 0; 340 virtual void GenerateExplicitNullCheck(HNullCheck* null_check) = 0;
|
D | prepare_for_register_allocation.cc | 52 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) { in VisitNullCheck()
|
D | code_generator_x86_64.h | 592 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 593 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | code_generator_mips64.h | 557 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 558 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | code_generator_mips.h | 579 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 580 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | code_generator_x86.h | 616 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 617 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | code_generator_arm64.h | 770 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 771 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | code_generator_arm_vixl.h | 727 void GenerateImplicitNullCheck(HNullCheck* instruction) override; 728 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
|
D | reference_type_propagation.cc | 116 void VisitNullCheck(HNullCheck* instr) override; 713 void ReferenceTypePropagation::RTPVisitor::VisitNullCheck(HNullCheck* instr) { in VisitNullCheck()
|
D | ssa_liveness_analysis.cc | 236 HNullCheck* check = current->GetImplicitNullCheck(); in ComputeLiveRanges()
|
D | code_generator.cc | 1398 bool CodeGenerator::CanMoveNullCheckToUser(HNullCheck* null_check) { in CanMoveNullCheckToUser() 1403 HNullCheck* null_check = instr->GetImplicitNullCheck(); in MaybeRecordImplicitNullCheck() 1431 void CodeGenerator::GenerateNullCheck(HNullCheck* instruction) { in GenerateNullCheck()
|
D | superblock_cloner_test.cc | 78 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter_, dex_pc); in CreateBasicLoopDataFlow()
|
D | load_store_analysis_test.cc | 631 HInstruction* null_check = new (GetAllocator()) HNullCheck(bound_type, 0); in TEST_F()
|
D | instruction_simplifier.cc | 76 void VisitNullCheck(HNullCheck* instruction) override; 558 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) { in VisitNullCheck()
|
D | code_generator_arm64.cc | 395 explicit NullCheckSlowPathARM64(HNullCheck* instr) : SlowPathCodeARM64(instr) {} in NullCheckSlowPathARM64() 5060 void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck() 5065 void CodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) { in GenerateImplicitNullCheck() 5078 void CodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) { in GenerateExplicitNullCheck() 5088 void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck()
|
D | instruction_builder.cc | 277 HNullCheck* null_check = new (allocator_) HNullCheck(ref, dex_pc); in LoadNullCheckedLocal()
|
D | code_generator_mips64.cc | 285 explicit NullCheckSlowPathMIPS64(HNullCheck* instr) : SlowPathCodeMIPS64(instr) {} in NullCheckSlowPathMIPS64() 6692 void LocationsBuilderMIPS64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck() 6697 void CodeGeneratorMIPS64::GenerateImplicitNullCheck(HNullCheck* instruction) { in GenerateImplicitNullCheck() 6707 void CodeGeneratorMIPS64::GenerateExplicitNullCheck(HNullCheck* instruction) { in GenerateExplicitNullCheck() 6717 void InstructionCodeGeneratorMIPS64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck()
|
D | code_generator_x86_64.cc | 72 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {} in NullCheckSlowPathX86_64() 4953 void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck() 4961 void CodeGeneratorX86_64::GenerateImplicitNullCheck(HNullCheck* instruction) { in GenerateImplicitNullCheck() 4972 void CodeGeneratorX86_64::GenerateExplicitNullCheck(HNullCheck* instruction) { in GenerateExplicitNullCheck() 4992 void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck()
|
D | code_generator_x86.cc | 73 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {} in NullCheckSlowPathX86() 5581 void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck() 5589 void CodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) { in GenerateImplicitNullCheck() 5600 void CodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) { in GenerateExplicitNullCheck() 5620 void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck()
|
D | code_generator_arm_vixl.cc | 384 explicit NullCheckSlowPathARMVIXL(HNullCheck* instruction) : SlowPathCodeARMVIXL(instruction) {} in NullCheckSlowPathARMVIXL() 5793 void LocationsBuilderARMVIXL::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck() 5798 void CodeGeneratorARMVIXL::GenerateImplicitNullCheck(HNullCheck* instruction) { in GenerateImplicitNullCheck() 5812 void CodeGeneratorARMVIXL::GenerateExplicitNullCheck(HNullCheck* instruction) { in GenerateExplicitNullCheck() 5819 void InstructionCodeGeneratorARMVIXL::VisitNullCheck(HNullCheck* instruction) { in VisitNullCheck()
|