mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
MC: mayAffectControlFlow() handling for variadic instructions.
Variadic MC instructions don't note whether the variable operands are uses or defs, so mayAffectControlFlow() must conservatively assume they are defs and return true if the PC is in the operand list. rdar://14488628 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186846 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b987c40548
commit
741e37ed0d
@ -268,8 +268,20 @@ public:
|
||||
if (isBranch() || isCall() || isReturn() || isIndirectBranch())
|
||||
return true;
|
||||
unsigned PC = RI.getProgramCounter();
|
||||
if (PC == 0) return false;
|
||||
return hasDefOfPhysReg(MI, PC, RI);
|
||||
if (PC == 0)
|
||||
return false;
|
||||
if (hasDefOfPhysReg(MI, PC, RI))
|
||||
return true;
|
||||
// A variadic instruction may define PC in the variable operand list.
|
||||
// There's currently no indication of which entries in a variable
|
||||
// list are defs and which are uses. While that's the case, this function
|
||||
// needs to assume they're defs in order to be conservatively correct.
|
||||
for (int i = NumOperands, e = MI.getNumOperands(); i != e; ++i) {
|
||||
if (MI.getOperand(i).isReg() &&
|
||||
RI.isSubRegisterEq(PC, MI.getOperand(i).getReg()))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/// \brief Return true if this instruction has a predicate operand
|
||||
|
Loading…
x
Reference in New Issue
Block a user