mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-21 03:28:31 +00:00
[X86] Check YMM31/ZMM31 as well
- No test case as there's no calling convention preserve YMM31/ZMM31 only git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196391 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e834f41f7a
commit
a2f6f94b74
@ -122,11 +122,11 @@ static bool checkFnHasLiveInYmm(MachineRegisterInfo &MRI) {
|
||||
}
|
||||
|
||||
static bool clobbersAllYmmRegs(const MachineOperand &MO) {
|
||||
for (unsigned reg = X86::YMM0; reg < X86::YMM31; ++reg) {
|
||||
for (unsigned reg = X86::YMM0; reg <= X86::YMM31; ++reg) {
|
||||
if (!MO.clobbersPhysReg(reg))
|
||||
return false;
|
||||
}
|
||||
for (unsigned reg = X86::ZMM0; reg < X86::ZMM31; ++reg) {
|
||||
for (unsigned reg = X86::ZMM0; reg <= X86::ZMM31; ++reg) {
|
||||
if (!MO.clobbersPhysReg(reg))
|
||||
return false;
|
||||
}
|
||||
@ -155,11 +155,11 @@ static bool clobbersAnyYmmReg(MachineInstr *MI) {
|
||||
const MachineOperand &MO = MI->getOperand(i);
|
||||
if (!MO.isRegMask())
|
||||
continue;
|
||||
for (unsigned reg = X86::YMM0; reg < X86::YMM31; ++reg) {
|
||||
for (unsigned reg = X86::YMM0; reg <= X86::YMM31; ++reg) {
|
||||
if (MO.clobbersPhysReg(reg))
|
||||
return true;
|
||||
}
|
||||
for (unsigned reg = X86::ZMM0; reg < X86::ZMM31; ++reg) {
|
||||
for (unsigned reg = X86::ZMM0; reg <= X86::ZMM31; ++reg) {
|
||||
if (MO.clobbersPhysReg(reg))
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user