Searched refs:RefCounts (Results 1 – 6 of 6) sorted by relevance
/art/compiler/dex/quick/ |
D | ralloc_util.cc | 1133 void Mir2Lir::AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight) { in AnalyzeMIR() 1280 void Mir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { in CountRefs() 1283 RefCounts* counts = loc.fp ? fp_counts : core_counts; in CountRefs() 1328 const Mir2Lir::RefCounts* op1 = reinterpret_cast<const Mir2Lir::RefCounts*>(val1); in SortCounts() 1329 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); in SortCounts() 1339 void Mir2Lir::DumpCounts(const RefCounts* arr, int size, const char* msg) { in DumpCounts() 1376 RefCounts *core_regs = arena_->AllocArray<RefCounts>(core_reg_count_size, kArenaAllocRegAlloc); in DoPromotion() 1377 RefCounts *fp_regs = arena_->AllocArray<RefCounts>(fp_reg_count_size, kArenaAllocRegAlloc); in DoPromotion() 1395 qsort(core_regs, core_reg_count_size, sizeof(RefCounts), SortCounts); in DoPromotion() 1396 qsort(fp_regs, fp_reg_count_size, sizeof(RefCounts), SortCounts); in DoPromotion()
|
D | mir_to_lir.h | 237 struct RefCounts { struct 780 virtual void AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight); 781 virtual void CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs); 782 void DumpCounts(const RefCounts* arr, int size, const char* msg);
|
/art/compiler/dex/quick/arm/ |
D | codegen_arm.h | 264 void CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) OVERRIDE;
|
D | utility_arm.cc | 1270 void ArmMir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { in CountRefs()
|
/art/compiler/dex/quick/x86/ |
D | codegen_x86.h | 379 void AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight) OVERRIDE; 380 void CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) OVERRIDE;
|
D | utility_x86.cc | 957 void X86Mir2Lir::AnalyzeMIR(RefCounts* core_counts, MIR* mir, uint32_t weight) { in AnalyzeMIR() 1126 void X86Mir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { in CountRefs()
|