Home
last modified time | relevance | path

Searched refs:block_id (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dfind_loops_test.cc111 int block_id, in TestBlock() argument
116 HBasicBlock* block = graph->GetBlocks().Get(block_id); in TestBlock()
/art/compiler/dex/
Dmir_graph.h596 BasicBlock* GetBasicBlock(unsigned int block_id) const { in GetBasicBlock() argument
597 return (block_id == NullBasicBlockId) ? NULL : block_list_.Get(block_id); in GetBasicBlock()
976 BasicBlock* NewMemBB(BBType block_type, int block_id);
Dmir_graph.cc272 int block_id = dex_pc_to_block_map_.Get(code_offset); in FindBlock() local
273 BasicBlock* bb = (block_id == 0) ? NULL : block_list_.Get(block_id); in FindBlock()
1485 BasicBlock* MIRGraph::NewMemBB(BBType block_type, int block_id) { in NewMemBB() argument
1489 bb->id = block_id; in NewMemBB()
1495 block_id_map_.Put(block_id, block_id); in NewMemBB()
/art/compiler/dex/quick/
Dmir_to_lir.cc1119 int block_id = bb->id; in MethodBlockCodeGen() local
1121 block_label_list_[block_id].operands[0] = bb->start_offset; in MethodBlockCodeGen()
1124 block_label_list_[block_id].opcode = kPseudoNormalBlockLabel; in MethodBlockCodeGen()
1125 block_label_list_[block_id].flags.fixup = kFixupLabel; in MethodBlockCodeGen()
1126 AppendLIR(&block_label_list_[block_id]); in MethodBlockCodeGen()