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

  /art/compiler/optimizing/
bounds_check_elimination_test.cc 92 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0); local
93 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0);
97 null_check, bounds_check2, constant_1, Primitive::kPrimInt, 0);
98 block2->AddInstruction(null_check);
105 null_check = new (&allocator_) HNullCheck(parameter1, 0);
106 array_length = new (&allocator_) HArrayLength(null_check, 0);
109 block3->AddInstruction(null_check);
116 null_check = new (&allocator_) HNullCheck(parameter1, 0);
117 array_length = new (&allocator_) HArrayLength(null_check, 0);
121 null_check, bounds_check4, constant_1, Primitive::kPrimInt, 0)
191 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0); local
246 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0); local
310 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter, 0); local
392 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); local
493 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); local
635 HNullCheck* null_check = new (allocator) HNullCheck(new_array, 0); local
721 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); local
817 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter, 0); local
    [all...]
nodes_test.cc 45 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0); local
46 first_block->AddInstruction(null_check);
55 &allocator, 1, graph->GetDexFile(), graph->GetMethodIdx(), 0, kStatic, null_check);
56 null_check->SetRawEnvironment(environment);
58 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0);
63 first_block->RemoveInstruction(null_check);
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.cc 1101 HNullCheck* null_check = first_prev_not_move->AsNullCheck(); local
    [all...]
instruction_simplifier.cc 396 void InstructionSimplifierVisitor::VisitNullCheck(HNullCheck* null_check) {
397 HInstruction* obj = null_check->InputAt(0);
399 null_check->ReplaceWith(obj);
400 null_check->GetBlock()->RemoveInstruction(null_check);
    [all...]
instruction_builder.cc 224 HNullCheck* null_check = new (arena_) HNullCheck(ref, dex_pc); local
225 AppendInstruction(null_check);
226 return null_check;
    [all...]
  /system/tools/aidl/
generate_cpp.cpp 543 IfStatement* null_check = new IfStatement( local
546 on_transact->GetStatementBlock()->AddStatement(null_check);
547 null_check->OnTrue()->AddStatement(new Assignment(

Completed in 226 milliseconds