Lines Matching refs:GetGraph

553     if (!GetGraph()->IsCompilingOsr()) {
1278 HInstruction* upper = GetGraph()->GetIntConstant(max_c);
1282 HInstruction* lower = new (GetGraph()->GetAllocator())
1283 HAdd(DataType::Type::kInt32, base, GetGraph()->GetIntConstant(min_c));
1284 upper = new (GetGraph()->GetAllocator()) HAdd(DataType::Type::kInt32, base, upper);
1287 InsertDeoptInBlock(bounds_check, new (GetGraph()->GetAllocator()) HAbove(lower, upper));
1290 bounds_check, new (GetGraph()->GetAllocator()) HAboveOrEqual(upper, array_length));
1337 HBasicBlock* exit = GetGraph()->GetExitBlock();
1493 other_bounds_check, other_index, GetGraph(), block, &max_lower, &max_upper);
1496 other_bounds_check, other_index, GetGraph(), block, &min_lower, &min_upper);
1522 loop, block, new (GetGraph()->GetAllocator()) HAbove(min_upper, max_upper));
1533 loop, block, new (GetGraph()->GetAllocator()) HAbove(min_lower, max_lower));
1539 loop, block, new (GetGraph()->GetAllocator()) HAbove(max_lower, max_upper));
1542 loop, block, new (GetGraph()->GetAllocator()) HAboveOrEqual(max_upper, array_length));
1560 if (GetGraph()->IsCompilingOsr()) {
1636 new (GetGraph()->GetAllocator()) HEqual(array, GetGraph()->GetNullConstant());
1711 HDeoptimize* deoptimize = new (GetGraph()->GetAllocator()) HDeoptimize(
1712 GetGraph()->GetAllocator(), condition, kind, suspend->GetDexPc());
1724 HDeoptimize* deoptimize = new (GetGraph()->GetAllocator()) HDeoptimize(
1725 GetGraph()->GetAllocator(),
1785 GetGraph()->TransformLoopHeaderForBCE(header);
1792 true_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto());
1793 false_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto());
1794 new_preheader->AddInstruction(new (GetGraph()->GetAllocator()) HGoto());
1798 if_block->AddInstruction(new (GetGraph()->GetAllocator()) HGoto()); // placeholder
1800 header->GetLastInstruction(), GetGraph(), if_block);
1803 if_block->AddInstruction(new (GetGraph()->GetAllocator()) HIf(condition));
1874 HGraph* graph = GetGraph();