Home
last modified time | relevance | path

Searched refs:RefCounts (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/quick/
Dralloc_util.cc1133 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()
Dmir_to_lir.h237 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/
Dcodegen_arm.h264 void CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) OVERRIDE;
Dutility_arm.cc1270 void ArmMir2Lir::CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs) { in CountRefs()
/art/compiler/dex/quick/x86/
Dcodegen_x86.h379 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;
Dutility_x86.cc957 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()