@@ -716,33 +716,33 @@ class SIInstrInfo final : public AMDGPUGenInstrInfo {
716
716
static bool isVGPRSpill (const MachineInstr &MI) {
717
717
return MI.getOpcode () != AMDGPU::SI_SPILL_S32_TO_VGPR &&
718
718
MI.getOpcode () != AMDGPU::SI_RESTORE_S32_FROM_VGPR &&
719
- (isSpill (MI) & isVALU (MI));
719
+ (isSpill (MI) & isVALU (MI));
720
720
}
721
721
722
722
bool isVGPRSpill (uint16_t Opcode) const {
723
723
return Opcode != AMDGPU::SI_SPILL_S32_TO_VGPR &&
724
724
Opcode != AMDGPU::SI_RESTORE_S32_FROM_VGPR &&
725
- (isSpill (Opcode) & isVALU (Opcode));
725
+ (isSpill (Opcode) & isVALU (Opcode));
726
726
}
727
727
728
728
static bool isSGPRSpill (const MachineInstr &MI) {
729
729
return MI.getOpcode () == AMDGPU::SI_SPILL_S32_TO_VGPR ||
730
730
MI.getOpcode () == AMDGPU::SI_RESTORE_S32_FROM_VGPR ||
731
- (isSpill (MI) & isSALU (MI));
731
+ (isSpill (MI) & isSALU (MI));
732
732
}
733
733
734
734
bool isSGPRSpill (uint16_t Opcode) const {
735
735
return Opcode == AMDGPU::SI_SPILL_S32_TO_VGPR ||
736
736
Opcode == AMDGPU::SI_RESTORE_S32_FROM_VGPR ||
737
- (isSpill (Opcode) & isSALU (Opcode));
737
+ (isSpill (Opcode) & isSALU (Opcode));
738
738
}
739
739
740
740
bool isSpill (uint16_t Opcode) const {
741
741
return get (Opcode).TSFlags & SIInstrFlags::Spill;
742
742
}
743
743
744
744
static bool isSpill (const MachineInstr &MI) {
745
- return MI.getDesc ().TSFlags & SIInstrFlags::Spill;
745
+ return MI.getDesc ().TSFlags & SIInstrFlags::Spill;
746
746
}
747
747
748
748
static bool isWWMRegSpillOpcode (uint16_t Opcode) {
0 commit comments