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

/art/compiler/dex/quick/arm/
H A Dutility_arm.cc1270 void ArmMir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { argument
1272 Mir2Lir::CountRefs(core_counts, fp_counts, num_regs);
1280 if (core_counts[p_map_idx].count == 1) {
1281 core_counts[p_map_idx].count = 0;
1283 core_counts[p_map_idx].count *= 3;
/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;
1126 void X86Mir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { argument
1128 Mir2Lir::CountRefs(core_counts, fp_counts, num_regs);
1136 if (core_counts[p_map_idx].count == 1) {
1137 core_counts[p_map_idx].count = 0;
1139 core_counts[p_map_idx].count *= 2;
/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;
1280 void Mir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { argument
1283 RefCounts* counts = loc.fp ? fp_counts : core_counts;
1310 DCHECK_EQ(core_counts[SRegToPMap(mir_graph_->GetMethodLoc().s_reg_low)].count, 0);
1312 DCHECK_EQ(core_counts[SRegToPMap(pc_rel_temp_->s_reg_low)].count, 0);
1321 AnalyzeMIR(core_counts, mir, weight);

Completed in 64 milliseconds