reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
 6551     Prefix = Parser.getTok().getString();
 6556   if (Prefix == "row_mirror") {
 6559   } else if (Prefix == "row_half_mirror") {
 6564     if (Prefix != "quad_perm"
 6565         && Prefix != "row_shl"
 6566         && Prefix != "row_shr"
 6567         && Prefix != "row_ror"
 6568         && Prefix != "wave_shl"
 6569         && Prefix != "wave_rol"
 6570         && Prefix != "wave_shr"
 6571         && Prefix != "wave_ror"
 6572         && Prefix != "row_bcast"
 6573         && Prefix != "row_share"
 6574         && Prefix != "row_xmask") {
 6578     if (!isGFX10() && (Prefix == "row_share" || Prefix == "row_xmask"))
 6578     if (!isGFX10() && (Prefix == "row_share" || Prefix == "row_xmask"))
 6582         (Prefix == "wave_shl" || Prefix == "wave_shr" ||
 6582         (Prefix == "wave_shl" || Prefix == "wave_shr" ||
 6583          Prefix == "wave_rol" || Prefix == "wave_ror" ||
 6583          Prefix == "wave_rol" || Prefix == "wave_ror" ||
 6584          Prefix == "row_bcast"))
 6591     if (Prefix == "quad_perm") {
 6622       if (Prefix == "row_shl" && 1 <= Int && Int <= 15) {
 6624       } else if (Prefix == "row_shr" && 1 <= Int && Int <= 15) {
 6626       } else if (Prefix == "row_ror" && 1 <= Int && Int <= 15) {
 6628       } else if (Prefix == "wave_shl" && 1 == Int) {
 6630       } else if (Prefix == "wave_rol" && 1 == Int) {
 6632       } else if (Prefix == "wave_shr" && 1 == Int) {
 6634       } else if (Prefix == "wave_ror" && 1 == Int) {
 6636       } else if (Prefix == "row_bcast") {
 6644       } else if (Prefix == "row_share" && 0 <= Int && Int <= 15) {
 6646       } else if (Prefix == "row_xmask" && 0 <= Int && Int <= 15) {