Home
last modified time | relevance | path

Searched refs:FindBlock (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/
Dmir_graph.cc266 BasicBlock* MIRGraph::FindBlock(DexOffset code_offset, bool split, bool create, in FindBlock() function in art::MIRGraph
325 FindBlock(address, false /* split */, true /*create*/, in ProcessTryCatchBlocks()
431 BasicBlock* taken_block = FindBlock(target, /* split */ true, /* create */ true, in ProcessCanBranch()
438 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, in ProcessCanBranch()
459 FindBlock(cur_offset + width, /* split */ false, /* create */ true, in ProcessCanBranch()
520 BasicBlock* case_block = FindBlock(cur_offset + target_table[i], /* split */ true, in ProcessCanSwitch()
534 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* split */ false, in ProcessCanSwitch()
561 BasicBlock* catch_block = FindBlock(iterator.GetHandlerAddress(), false /* split*/, in ProcessCanThrow()
598 FindBlock(cur_offset + width, /* split */ false, /* create */ true, in ProcessCanThrow()
767 FindBlock(current_offset_ + width, /* split */ false, /* create */ true, in InlineMethod()
[all …]
Dmir_graph.h564 BasicBlock* FindBlock(DexOffset code_offset) { in FindBlock() function
565 return FindBlock(code_offset, false, false, NULL); in FindBlock()
1096 BasicBlock* FindBlock(DexOffset code_offset, bool split, bool create,
/art/compiler/dex/quick/x86/
Dcall_x86.cc42 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenLargeSparseSwitch()
/art/compiler/dex/quick/
Dgen_common.cc2059 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenSmallPackedSwitch()
2069 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenSmallPackedSwitch()
2074 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenSmallPackedSwitch()
2080 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenSmallPackedSwitch()
2112 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]); in GenSmallSparseSwitch()
Dcodegen_util.cc831 LIR* boundary_lir = &block_label_list_[mir_graph_->FindBlock(vaddr)->id]; in InsertCaseLabel()
/art/compiler/dex/portable/
Dmir_to_gbc.cc138 BasicBlock* bb = mir_graph_->FindBlock(vaddr); in FindCaseTarget()