Home | History | Annotate | Download | only in dex

Lines Matching refs:lvn

324   // Don't do a separate LVN if we did the GVN.
569 LOG(WARNING) << "LVN overflow in " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
1172 LocalValueNumbering* lvn = temp_gvn_->PrepareBasicBlock(bb);
1173 if (lvn != nullptr) {
1175 lvn->GetValueNumber(mir);
1178 bool change = (lvn != nullptr) && temp_gvn_->FinishBasicBlock(bb);
1188 ScopedArenaAllocator allocator(&cu_->arena_stack); // Reclaim memory after each LVN.
1189 LocalValueNumbering* lvn = temp_gvn_->PrepareBasicBlock(bb, &allocator);
1190 if (lvn != nullptr) {
1192 lvn->GetValueNumber(mir);
1347 // Do lvn for all blocks in this extended set.