Home | History | Annotate | Download | only in Basic

Lines Matching refs:Names

499   ArrayRef<const char *> Names = getGCCRegNames();
505 return n < Names.size();
508 // Check register names.
509 if (llvm::is_contained(Names, Name))
512 // Check any additional names that we have.
514 for (const char *AN : ARN.Names) {
518 // the bounds of the register names from above.
519 if (AN == Name && ARN.RegNum < Names.size())
542 ArrayRef<const char *> Names = getGCCRegNames();
548 assert(n < Names.size() && "Out of bounds register number!");
549 return Names[n];
553 // Check any additional names that we have.
555 for (const char *AN : ARN.Names) {
559 // the bounds of the register names from above.
560 if (AN == Name && ARN.RegNum < Names.size())
561 return ReturnCanonical ? Names[ARN.RegNum] : Name;