mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Teach TableGen to put chains on more instructions
When generating selection tables for Pat instances, TableGen relied on an output Instruction's Pattern field being set to infer whether a chain should be added. This patch adds additional logic to check various flag fields so that correct code can be generated even if Pattern is unset. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159217 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
da72dd2a01
commit
ca578e7ba6
@ -690,6 +690,13 @@ EmitResultInstructionAsOperand(const TreePatternNode *N,
|
||||
bool NodeHasChain = InstPatNode &&
|
||||
InstPatNode->TreeHasProperty(SDNPHasChain, CGP);
|
||||
|
||||
// Instructions which load and store from memory should have a chain,
|
||||
// regardless of whether they happen to have an internal pattern saying so.
|
||||
if (Pattern.getSrcPattern()->TreeHasProperty(SDNPHasChain, CGP)
|
||||
&& (II.hasCtrlDep || II.mayLoad || II.mayStore || II.canFoldAsLoad ||
|
||||
II.hasSideEffects))
|
||||
NodeHasChain = true;
|
||||
|
||||
bool isRoot = N == Pattern.getDstPattern();
|
||||
|
||||
// TreeHasOutGlue - True if this tree has glue.
|
||||
|
Loading…
Reference in New Issue
Block a user