Lines Matching defs:list
8 // this list of conditions and the following disclaimer.
10 // notice, this list of conditions and the following disclaimer in the
584 bool AliasesAvailableScratchRegister([[maybe_unused]] SRegisterList list) {
586 for (int n = 0; n < list.GetLength(); n++) {
587 if (AliasesAvailableScratchRegister(list.GetSRegister(n))) return true;
594 bool AliasesAvailableScratchRegister([[maybe_unused]] DRegisterList list) {
596 for (int n = 0; n < list.GetLength(); n++) {
597 if (AliasesAvailableScratchRegister(list.GetDRegister(n))) return true;
604 bool AliasesAvailableScratchRegister([[maybe_unused]] NeonRegisterList list) {
606 for (int n = 0; n < list.GetLength(); n++) {
607 if (AliasesAvailableScratchRegister(list.GetDRegister(n))) return true;
614 bool AliasesAvailableScratchRegister([[maybe_unused]] RegisterList list) {
616 return GetScratchRegisterList()->Overlaps(list);
13413 // Take a register from the temp list. It will be returned automatically when
13422 // the temp list.
13428 void Include(const RegisterList& list);
13435 void Include(const VRegisterList& list);
13446 void Exclude(const RegisterList& list);
13453 void Exclude(const VRegisterList& list);
13468 // The MacroAssembler maintains a list of available scratch registers, and