Lines Matching refs:GetDexPc

524   HBasicBlock* new_block = new (allocator_) HBasicBlock(this, successor->GetDexPc());  in SplitEdge()
536 new_block->AddInstruction(new (allocator_) HGoto(successor->GetDexPc())); in SplitCriticalEdge()
622 HBasicBlock* preheader = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopToSinglePreheaderFormat()
624 preheader->AddInstruction(new (allocator_) HGoto(header->GetDexPc())); in TransformLoopToSinglePreheaderFormat()
855 entry_block_->GetDexPc()); in GetCurrentMethod()
1774 return graph->GetIntConstant(static_cast<int8_t>(value), GetDexPc()); in TryStaticEvaluation()
1776 return graph->GetIntConstant(static_cast<uint8_t>(value), GetDexPc()); in TryStaticEvaluation()
1778 return graph->GetIntConstant(static_cast<int16_t>(value), GetDexPc()); in TryStaticEvaluation()
1780 return graph->GetIntConstant(static_cast<uint16_t>(value), GetDexPc()); in TryStaticEvaluation()
1782 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1784 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
1786 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1794 return graph->GetIntConstant(static_cast<int8_t>(value), GetDexPc()); in TryStaticEvaluation()
1796 return graph->GetIntConstant(static_cast<uint8_t>(value), GetDexPc()); in TryStaticEvaluation()
1798 return graph->GetIntConstant(static_cast<int16_t>(value), GetDexPc()); in TryStaticEvaluation()
1800 return graph->GetIntConstant(static_cast<uint16_t>(value), GetDexPc()); in TryStaticEvaluation()
1802 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1804 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
1806 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1815 return graph->GetIntConstant(0, GetDexPc()); in TryStaticEvaluation()
1817 return graph->GetIntConstant(kPrimIntMax, GetDexPc()); in TryStaticEvaluation()
1819 return graph->GetIntConstant(kPrimIntMin, GetDexPc()); in TryStaticEvaluation()
1820 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1823 return graph->GetLongConstant(0, GetDexPc()); in TryStaticEvaluation()
1825 return graph->GetLongConstant(kPrimLongMax, GetDexPc()); in TryStaticEvaluation()
1827 return graph->GetLongConstant(kPrimLongMin, GetDexPc()); in TryStaticEvaluation()
1828 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1830 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); in TryStaticEvaluation()
1839 return graph->GetIntConstant(0, GetDexPc()); in TryStaticEvaluation()
1841 return graph->GetIntConstant(kPrimIntMax, GetDexPc()); in TryStaticEvaluation()
1843 return graph->GetIntConstant(kPrimIntMin, GetDexPc()); in TryStaticEvaluation()
1844 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); in TryStaticEvaluation()
1847 return graph->GetLongConstant(0, GetDexPc()); in TryStaticEvaluation()
1849 return graph->GetLongConstant(kPrimLongMax, GetDexPc()); in TryStaticEvaluation()
1851 return graph->GetLongConstant(kPrimLongMin, GetDexPc()); in TryStaticEvaluation()
1852 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); in TryStaticEvaluation()
1854 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); in TryStaticEvaluation()
2114 new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), cursor->GetDexPc()); in SplitBefore()
2126 AddInstruction(new (GetGraph()->GetAllocator()) HGoto(new_block->GetDexPc())); in SplitBefore()
2143 HBasicBlock* new_block = new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), GetDexPc()); in CreateImmediateDominator()
2160 new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), cursor->GetDexPc()); in SplitBeforeForInlining()
2192 HBasicBlock* new_block = new (GetGraph()->GetAllocator()) HBasicBlock(GetGraph(), GetDexPc()); in SplitAfterForInlining()
2498 predecessor->AddInstruction(new (graph_->GetAllocator()) HGoto(last_instruction->GetDexPc())); in DisconnectAndDelete()
2855 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc()); in InlineInto()
2862 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc())); in InlineInto()
2890 replacement = outer_graph->GetNullConstant(current->GetDexPc()); in InlineInto()
2893 current->AsIntConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2896 current->AsLongConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2899 current->AsFloatConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2902 current->AsDoubleConstant()->GetValue(), current->GetDexPc()); in InlineInto()
2949 HBasicBlock* if_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2950 HBasicBlock* true_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2951 HBasicBlock* false_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
2952 HBasicBlock* new_pre_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopHeaderForBCE()
3007 HBasicBlock* new_pre_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
3008 HBasicBlock* new_header = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
3009 HBasicBlock* new_body = new (allocator_) HBasicBlock(this, header->GetDexPc()); in TransformLoopForVectorization()
3042 HSuspendCheck* suspend_check = new (allocator_) HSuspendCheck(header->GetDexPc()); in TransformLoopForVectorization()