Lines Matching refs:GetGraph

553     if (!GetGraph()->IsCompilingOsr()) {  in VisitBasicBlock()
1381 HInstruction* upper = GetGraph()->GetIntConstant(max_c); in AddCompareWithDeoptimization()
1385 HInstruction* lower = new (GetGraph()->GetAllocator()) in AddCompareWithDeoptimization()
1386 HAdd(DataType::Type::kInt32, base, GetGraph()->GetIntConstant(min_c)); in AddCompareWithDeoptimization()
1387 upper = new (GetGraph()->GetAllocator()) HAdd(DataType::Type::kInt32, base, upper); in AddCompareWithDeoptimization()
1390 InsertDeoptInBlock(bounds_check, new (GetGraph()->GetAllocator()) HAbove(lower, upper)); in AddCompareWithDeoptimization()
1393 bounds_check, new (GetGraph()->GetAllocator()) HAboveOrEqual(upper, array_length)); in AddCompareWithDeoptimization()
1440 HBasicBlock* exit = GetGraph()->GetExitBlock(); in AddComparesWithDeoptimization()
1596 other_bounds_check, other_index, GetGraph(), block, &max_lower, &max_upper); in TransformLoopForDynamicBCE()
1599 other_bounds_check, other_index, GetGraph(), block, &min_lower, &min_upper); in TransformLoopForDynamicBCE()
1625 loop, block, new (GetGraph()->GetAllocator()) HAbove(min_upper, max_upper)); in TransformLoopForDynamicBCE()
1636 loop, block, new (GetGraph()->GetAllocator()) HAbove(min_lower, max_lower)); in TransformLoopForDynamicBCE()
1642 loop, block, new (GetGraph()->GetAllocator()) HAbove(max_lower, max_upper)); in TransformLoopForDynamicBCE()
1645 loop, block, new (GetGraph()->GetAllocator()) HAboveOrEqual(max_upper, array_length)); in TransformLoopForDynamicBCE()
1663 if (GetGraph()->IsCompilingOsr()) { in DynamicBCESeemsProfitable()
1739 new (GetGraph()->GetAllocator()) HEqual(array, GetGraph()->GetNullConstant()); in CanHandleNullCheck()
1814 HDeoptimize* deoptimize = new (GetGraph()->GetAllocator()) HDeoptimize( in InsertDeoptInLoop()
1815 GetGraph()->GetAllocator(), condition, kind, suspend->GetDexPc()); in InsertDeoptInLoop()
1827 HDeoptimize* deoptimize = new (GetGraph()->GetAllocator()) HDeoptimize( in InsertDeoptInBlock()
1828 GetGraph()->GetAllocator(), in InsertDeoptInBlock()
1888 GetGraph()->TransformLoopHeaderForBCE(header); in TransformLoopForDeoptimizationIfNeeded()
1895 true_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto()); in TransformLoopForDeoptimizationIfNeeded()
1896 false_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto()); in TransformLoopForDeoptimizationIfNeeded()
1897 new_preheader->AddInstruction(new (GetGraph()->GetAllocator()) HGoto()); in TransformLoopForDeoptimizationIfNeeded()
1901 if_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto()); // placeholder in TransformLoopForDeoptimizationIfNeeded()
1903 header->GetLastInstruction(), GetGraph(), if_block); in TransformLoopForDeoptimizationIfNeeded()
1906 if_block->AddInstruction(new (GetGraph()->GetAllocator()) HIf(condition)); in TransformLoopForDeoptimizationIfNeeded()
1977 HGraph* graph = GetGraph(); in NewPhi()