Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Prefix

656   OperandMatchResultTy parseIntWithPrefix(const char *Prefix, int64_t &Int);
657 OperandMatchResultTy parseIntWithPrefix(const char *Prefix,
663 OperandMatchResultTy parseStringWithPrefix(StringRef Prefix, StringRef &Value);
722 OperandMatchResultTy parseSDWASel(OperandVector &Operands, StringRef Prefix,
1539 AMDGPUAsmParser::parseIntWithPrefix(const char *Prefix, int64_t &Int) {
1544 if (!Name.equals(Prefix)) {
1565 AMDGPUAsmParser::parseIntWithPrefix(const char *Prefix, OperandVector &Operands,
1572 AMDGPUAsmParser::OperandMatchResultTy Res = parseIntWithPrefix(Prefix, Value);
1631 AMDGPUAsmParser::parseStringWithPrefix(StringRef Prefix, StringRef &Value) {
1636 if (Tok != Prefix) {
2461 StringRef Prefix;
2465 Prefix = Parser.getTok().getString();
2470 if (Prefix == "row_mirror") {
2472 } else if (Prefix == "row_half_mirror") {
2476 if (Prefix != "quad_perm"
2477 && Prefix != "row_shl"
2478 && Prefix != "row_shr"
2479 && Prefix != "row_ror"
2480 && Prefix != "wave_shl"
2481 && Prefix != "wave_rol"
2482 && Prefix != "wave_shr"
2483 && Prefix != "wave_ror"
2484 && Prefix != "row_bcast") {
2492 if (Prefix == "quad_perm") {
2538 if (Prefix == "row_shl") {
2540 } else if (Prefix == "row_shr") {
2542 } else if (Prefix == "row_ror") {
2544 } else if (Prefix == "wave_shl") {
2546 } else if (Prefix == "wave_rol") {
2548 } else if (Prefix == "wave_shr") {
2550 } else if (Prefix == "wave_ror") {
2552 } else if (Prefix == "row_bcast") {
2619 AMDGPUAsmParser::parseSDWASel(OperandVector &Operands, StringRef Prefix,
2625 res = parseStringWithPrefix(Prefix, Value);