Home
last modified time | relevance | path

Searched refs:HNullCheck (Results 1 – 25 of 27) sorted by relevance

12

/art/compiler/optimizing/
Dbounds_check_elimination_test.cc90 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 …]
Dnodes_test.cc45 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()
Dprepare_for_register_allocation.h48 void VisitNullCheck(HNullCheck* check) override;
Dssa_liveness_analysis_test.cc94 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
163 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
Dconstructor_fence_redundancy_elimination.cc58 void VisitNullCheck(HNullCheck* null_check) override { in VisitNullCheck()
Dcode_generator.h334 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;
Dprepare_for_register_allocation.cc52 void PrepareForRegisterAllocation::VisitNullCheck(HNullCheck* check) { in VisitNullCheck()
Dcode_generator_x86_64.h592 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
593 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dcode_generator_mips64.h557 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
558 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dcode_generator_mips.h579 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
580 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dcode_generator_x86.h616 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
617 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dcode_generator_arm64.h770 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
771 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dcode_generator_arm_vixl.h727 void GenerateImplicitNullCheck(HNullCheck* instruction) override;
728 void GenerateExplicitNullCheck(HNullCheck* instruction) override;
Dreference_type_propagation.cc116 void VisitNullCheck(HNullCheck* instr) override;
713 void ReferenceTypePropagation::RTPVisitor::VisitNullCheck(HNullCheck* instr) { in VisitNullCheck()
Dssa_liveness_analysis.cc236 HNullCheck* check = current->GetImplicitNullCheck(); in ComputeLiveRanges()
Dcode_generator.cc1398 bool CodeGenerator::CanMoveNullCheckToUser(HNullCheck* null_check) { in CanMoveNullCheckToUser()
1403 HNullCheck* null_check = instr->GetImplicitNullCheck(); in MaybeRecordImplicitNullCheck()
1431 void CodeGenerator::GenerateNullCheck(HNullCheck* instruction) { in GenerateNullCheck()
Dsuperblock_cloner_test.cc78 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter_, dex_pc); in CreateBasicLoopDataFlow()
Dload_store_analysis_test.cc631 HInstruction* null_check = new (GetAllocator()) HNullCheck(bound_type, 0); in TEST_F()
Dinstruction_simplifier.cc76 void VisitNullCheck(HNullCheck* instruction) override;
558 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) { in VisitNullCheck()
Dcode_generator_arm64.cc395 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()
Dinstruction_builder.cc277 HNullCheck* null_check = new (allocator_) HNullCheck(ref, dex_pc); in LoadNullCheckedLocal()
Dcode_generator_mips64.cc285 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()
Dcode_generator_x86_64.cc72 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()
Dcode_generator_x86.cc73 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()
Dcode_generator_arm_vixl.cc384 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()

12