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

References

lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
  998   assert(Val < 1024); // enum10
 1000   bool IsAGPR = Val & 512;
 1001   Val &= 511;
 1003   if (VGPR_MIN <= Val && Val <= VGPR_MAX) {
 1003   if (VGPR_MIN <= Val && Val <= VGPR_MAX) {
 1005                                    : getVgprClassId(Width), Val - VGPR_MIN);
 1007   if (Val <= SGPR_MAX) {
 1009     return createSRegOperand(getSgprClassId(Width), Val - SGPR_MIN);
 1012   int TTmpIdx = getTTmpIdx(Val);
 1017   if (INLINE_INTEGER_C_MIN <= Val && Val <= INLINE_INTEGER_C_MAX)
 1017   if (INLINE_INTEGER_C_MIN <= Val && Val <= INLINE_INTEGER_C_MAX)
 1018     return decodeIntImmed(Val);
 1020   if (INLINE_FLOATING_C_MIN <= Val && Val <= INLINE_FLOATING_C_MAX)
 1020   if (INLINE_FLOATING_C_MIN <= Val && Val <= INLINE_FLOATING_C_MAX)
 1021     return decodeFPImmed(Width, Val);
 1023   if (Val == LITERAL_CONST)
 1030     return decodeSpecialReg32(Val);
 1032     return decodeSpecialReg64(Val);