Searched defs:weight (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/
H A Dmir_dataflow.cc1388 uint32_t weight = std::max(1U, depth * 100); local
1389 return weight;
1401 uint32_t weight = GetUseCountWeight(bb); local
1409 use_counts_[s_reg] += weight;
/art/compiler/dex/quick/x86/
H A Dutility_x86.cc957 void X86Mir2Lir::AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight) { argument
959 Mir2Lir::AnalyzeMIR(core_counts, mir, weight);
1016 Mir2Lir::AnalyzeMIR(core_counts, mir, weight);
1022 core_counts[SRegToPMap(pc_rel_temp_->s_reg_low)].count += weight;
1131 // Now, if the dex cache array base temp is used only once outside any loops (weight = 1),
1132 // avoid the promotion, otherwise boost the weight by factor 2 because the full PC-relative
/art/compiler/dex/quick/
H A Dralloc_util.cc1133 void Mir2Lir::AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight) { argument
1266 core_counts[SRegToPMap(mir_graph_->GetMethodLoc().s_reg_low)].count += weight;
1270 core_counts[SRegToPMap(pc_rel_temp_->s_reg_low)].count += weight;
1319 uint32_t weight = mir_graph_->GetUseCountWeight(bb); local
1321 AnalyzeMIR(core_counts, mir, weight);

Completed in 4265 milliseconds