Searched defs:curr (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/
H A Dssa_transformation.cc74 BasicBlock* curr = succ.back(); local
75 BasicBlock* next_successor = NextUnvisitedSuccessor(curr);
81 curr->dfs_id = dfs_post_order_->Size();
82 dfs_post_order_->Insert(curr->id);
182 std::pair<BasicBlock*, ArenaBitVector::Iterator*> curr = work_stack.back(); local
183 BasicBlock* curr_bb = curr.first;
184 ArenaBitVector::Iterator* curr_idom_iter = curr.second;
/art/compiler/dex/quick/
H A Dralloc_util.cc1045 RegLocation *curr = &mir_graph_->reg_location_[i]; local
1046 int p_map_idx = SRegToPMap(curr->s_reg_low);
1047 if (!curr->wide) {
1048 if (curr->fp) {
1050 curr->location = kLocPhysReg;
1051 curr->low_reg = promotion_map_[p_map_idx].FpReg;
1052 curr->home = true;
1056 curr->location = kLocPhysReg;
1057 curr->low_reg = promotion_map_[p_map_idx].core_reg;
1058 curr
[all...]

Completed in 185 milliseconds