Lines Matching refs:GetDexPc

350   HBasicBlock* new_block = new (allocator_) HBasicBlock(this, successor->GetDexPc());  in SplitEdge()
362 new_block->AddInstruction(new (allocator_) HGoto(successor->GetDexPc())); in SplitCriticalEdge()
448 HBasicBlock* preheader = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopToSinglePreheaderFormat()
450 preheader->AddInstruction(new (allocator_) HGoto(header->GetDexPc())); in TransformLoopToSinglePreheaderFormat()
681 entry_block_->GetDexPc()); in GetCurrentMethod()
1554 return graph->GetIntConstant(static_cast<int8_t>(value), GetDexPc()); in TryStaticEvaluation()
1556 return graph->GetIntConstant(static_cast<uint8_t>(value), GetDexPc()); in TryStaticEvaluation()
1558 return graph->GetIntConstant(static_cast<int16_t>(value), GetDexPc()); in TryStaticEvaluation()
1560 return graph->GetIntConstant(static_cast<uint16_t>(value), GetDexPc()); in TryStaticEvaluation()
1562 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1564 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
1566 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1574 return graph->GetIntConstant(static_cast<int8_t>(value), GetDexPc()); in TryStaticEvaluation()
1576 return graph->GetIntConstant(static_cast<uint8_t>(value), GetDexPc()); in TryStaticEvaluation()
1578 return graph->GetIntConstant(static_cast<int16_t>(value), GetDexPc()); in TryStaticEvaluation()
1580 return graph->GetIntConstant(static_cast<uint16_t>(value), GetDexPc()); in TryStaticEvaluation()
1582 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1584 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
1586 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1595 return graph->GetIntConstant(0, GetDexPc()); in TryStaticEvaluation()
1597 return graph->GetIntConstant(kPrimIntMax, GetDexPc()); in TryStaticEvaluation()
1599 return graph->GetIntConstant(kPrimIntMin, GetDexPc()); in TryStaticEvaluation()
1600 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1603 return graph->GetLongConstant(0, GetDexPc()); in TryStaticEvaluation()
1605 return graph->GetLongConstant(kPrimLongMax, GetDexPc()); in TryStaticEvaluation()
1607 return graph->GetLongConstant(kPrimLongMin, GetDexPc()); in TryStaticEvaluation()
1608 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1610 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1619 return graph->GetIntConstant(0, GetDexPc()); in TryStaticEvaluation()
1621 return graph->GetIntConstant(kPrimIntMax, GetDexPc()); in TryStaticEvaluation()
1623 return graph->GetIntConstant(kPrimIntMin, GetDexPc()); in TryStaticEvaluation()
1624 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1627 return graph->GetLongConstant(0, GetDexPc()); in TryStaticEvaluation()
1629 return graph->GetLongConstant(kPrimLongMax, GetDexPc()); in TryStaticEvaluation()
1631 return graph->GetLongConstant(kPrimLongMin, GetDexPc()); in TryStaticEvaluation()
1632 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1634 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
1842 new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), cursor->GetDexPc()); in SplitBefore()
1854 AddInstruction(new (GetGraph()->GetAllocator()) HGoto(new_block->GetDexPc())); in SplitBefore()
1871 HBasicBlock* new_block = new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), GetDexPc()); in CreateImmediateDominator()
1888 new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), cursor->GetDexPc()); in SplitBeforeForInlining()
1920 HBasicBlock* new_block = new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), GetDexPc()); in SplitAfterForInlining()
2226 predecessor->AddInstruction(new (graph_->GetAllocator()) HGoto(last_instruction->GetDexPc())); in DisconnectAndDelete()
2580 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc()); in InlineInto()
2587 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc())); in InlineInto()
2615 replacement = outer_graph->GetNullConstant(current->GetDexPc()); in InlineInto()
2618 current->AsIntConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2621 current->AsLongConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2624 current->AsFloatConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2627 current->AsDoubleConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2674 HBasicBlock* if_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2675 HBasicBlock* true_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2676 HBasicBlock* false_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2677 HBasicBlock* new_pre_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2732 HBasicBlock* new_pre_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
2733 HBasicBlock* new_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
2734 HBasicBlock* new_body = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
2767 HSuspendCheck* suspend_check = new (allocator_) HSuspendCheck(header->GetDexPc()); in TransformLoopForVectorization()