Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:RegisterAllocator

35       RegisterAllocator(ARMAssemblerProxy::getCodegenArch()), mOptLevel(7)
56 RegisterAllocator::reset();
1026 RegisterAllocator::RegisterAllocator(int arch) : mRegs(arch)
1030 void RegisterAllocator::reset()
1035 int RegisterAllocator::reserveReg(int reg)
1040 int RegisterAllocator::obtainReg()
1045 void RegisterAllocator::recycleReg(int reg)
1050 RegisterAllocator::RegisterFile& RegisterAllocator::registerFile()
1057 RegisterAllocator::RegisterFile::RegisterFile(int codegen_arch)
1067 RegisterAllocator::RegisterFile::RegisterFile(const RegisterFile& rhs, int codegen_arch)
1075 RegisterAllocator::RegisterFile::~RegisterFile()
1079 bool RegisterAllocator::RegisterFile::operator == (const RegisterFile& rhs) const
1084 void RegisterAllocator::RegisterFile::reset()
1094 int RegisterAllocator::RegisterFile::reserve(int reg)
1106 void RegisterAllocator::RegisterFile::reserveSeveral(uint32_t regMask)
1112 int RegisterAllocator::RegisterFile::isUsed(int reg) const
1118 int RegisterAllocator::RegisterFile::obtain()
1145 bool RegisterAllocator::RegisterFile::hasFreeRegs() const
1151 int RegisterAllocator::RegisterFile::countFreeRegs() const
1163 void RegisterAllocator::RegisterFile::recycle(int reg)
1174 void RegisterAllocator::RegisterFile::recycleSeveral(uint32_t regMask)
1186 uint32_t RegisterAllocator::RegisterFile::touched() const