Home | History | Annotate | Download | only in Mips

Lines Matching refs:Prefix

3405 /// into non-numeric and numeric parts (Prefix and Reg). The first boolean flag
3408 static std::pair<bool, bool> parsePhysicalReg(StringRef C, StringRef &Prefix,
3417 Prefix = StringRef(B, I - B);
3433 StringRef Prefix;
3436 std::pair<bool, bool> R = parsePhysicalReg(C, Prefix, Reg);
3441 if ((Prefix == "hi" || Prefix == "lo")) { // Parse hi/lo.
3446 RC = TRI->getRegClass(Prefix == "hi" ?
3449 } else if (Prefix.startswith("$msa")) {
3456 Reg = StringSwitch<unsigned long long>(Prefix)
3477 if (Prefix == "$f") { // Parse $f0-$f31.
3489 } else if (Prefix == "$fcc") // Parse $fcc0-$fcc7.
3491 else if (Prefix == "$w") { // Parse $w0-$w31.
3494 assert(Prefix == "$");