mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
sdisel flag -> glue.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122507 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8950bcaa5a
commit
a4359be032
@ -145,10 +145,10 @@ public:
|
||||
};
|
||||
|
||||
enum {
|
||||
OPFL_None = 0, // Node has no chain or flag input and isn't variadic.
|
||||
OPFL_None = 0, // Node has no chain or flag input and isn't variadic.
|
||||
OPFL_Chain = 1, // Node has a chain input.
|
||||
OPFL_FlagInput = 2, // Node has a flag input.
|
||||
OPFL_FlagOutput = 4, // Node has a flag output.
|
||||
OPFL_GlueInput = 2, // Node has a glue input.
|
||||
OPFL_GlueOutput = 4, // Node has a glue output.
|
||||
OPFL_MemRefs = 8, // Node gets accumulated MemRefs.
|
||||
OPFL_Variadic0 = 1<<4, // Node is variadic, root has 0 fixed inputs.
|
||||
OPFL_Variadic1 = 2<<4, // Node is variadic, root has 1 fixed inputs.
|
||||
@ -305,10 +305,10 @@ private:
|
||||
/// state machines that start with a OPC_SwitchOpcode node.
|
||||
std::vector<unsigned> OpcodeOffset;
|
||||
|
||||
void UpdateChainsAndFlags(SDNode *NodeToMatch, SDValue InputChain,
|
||||
const SmallVectorImpl<SDNode*> &ChainNodesMatched,
|
||||
SDValue InputFlag,const SmallVectorImpl<SDNode*> &F,
|
||||
bool isMorphNodeTo);
|
||||
void UpdateChainsAndGlue(SDNode *NodeToMatch, SDValue InputChain,
|
||||
const SmallVectorImpl<SDNode*> &ChainNodesMatched,
|
||||
SDValue InputGlue, const SmallVectorImpl<SDNode*> &F,
|
||||
bool isMorphNodeTo);
|
||||
|
||||
};
|
||||
|
||||
|
@ -1288,7 +1288,7 @@ SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
|
||||
|
||||
unsigned i = InlineAsm::Op_FirstOperand, e = InOps.size();
|
||||
if (InOps[e-1].getValueType() == MVT::Glue)
|
||||
--e; // Don't process a flag operand if it is here.
|
||||
--e; // Don't process a glue operand if it is here.
|
||||
|
||||
while (i != e) {
|
||||
unsigned Flags = cast<ConstantSDNode>(InOps[i])->getZExtValue();
|
||||
@ -1315,15 +1315,15 @@ SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops) {
|
||||
}
|
||||
}
|
||||
|
||||
// Add the flag input back if present.
|
||||
// Add the glue input back if present.
|
||||
if (e != InOps.size())
|
||||
Ops.push_back(InOps.back());
|
||||
}
|
||||
|
||||
/// findFlagUse - Return use of EVT::Flag value produced by the specified
|
||||
/// findGlueUse - Return use of MVT::Glue value produced by the specified
|
||||
/// SDNode.
|
||||
///
|
||||
static SDNode *findFlagUse(SDNode *N) {
|
||||
static SDNode *findGlueUse(SDNode *N) {
|
||||
unsigned FlagResNo = N->getNumValues()-1;
|
||||
for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
|
||||
SDUse &Use = I.getUse();
|
||||
@ -1345,7 +1345,7 @@ static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
|
||||
// never find it.
|
||||
//
|
||||
// The Use may be -1 (unassigned) if it is a newly allocated node. This can
|
||||
// happen because we scan down to newly selected nodes in the case of flag
|
||||
// happen because we scan down to newly selected nodes in the case of glue
|
||||
// uses.
|
||||
if ((Use->getNodeId() < Def->getNodeId() && Use->getNodeId() != -1))
|
||||
return false;
|
||||
@ -1406,8 +1406,8 @@ bool SelectionDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
|
||||
//
|
||||
// * indicates nodes to be folded together.
|
||||
//
|
||||
// If Root produces a flag, then it gets (even more) interesting. Since it
|
||||
// will be "glued" together with its flag use in the scheduler, we need to
|
||||
// If Root produces glue, then it gets (even more) interesting. Since it
|
||||
// will be "glued" together with its glue use in the scheduler, we need to
|
||||
// check if it might reach N.
|
||||
//
|
||||
// [N*] //
|
||||
@ -1425,24 +1425,24 @@ bool SelectionDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
|
||||
// ^ / //
|
||||
// f / //
|
||||
// | / //
|
||||
// [FU] //
|
||||
// [GU] //
|
||||
//
|
||||
// If FU (flag use) indirectly reaches N (the load), and Root folds N
|
||||
// (call it Fold), then X is a predecessor of FU and a successor of
|
||||
// Fold. But since Fold and FU are flagged together, this will create
|
||||
// If GU (glue use) indirectly reaches N (the load), and Root folds N
|
||||
// (call it Fold), then X is a predecessor of GU and a successor of
|
||||
// Fold. But since Fold and GU are glued together, this will create
|
||||
// a cycle in the scheduling graph.
|
||||
|
||||
// If the node has flags, walk down the graph to the "lowest" node in the
|
||||
// flagged set.
|
||||
// If the node has glue, walk down the graph to the "lowest" node in the
|
||||
// glueged set.
|
||||
EVT VT = Root->getValueType(Root->getNumValues()-1);
|
||||
while (VT == MVT::Glue) {
|
||||
SDNode *FU = findFlagUse(Root);
|
||||
if (FU == NULL)
|
||||
SDNode *GU = findGlueUse(Root);
|
||||
if (GU == NULL)
|
||||
break;
|
||||
Root = FU;
|
||||
Root = GU;
|
||||
VT = Root->getValueType(Root->getNumValues()-1);
|
||||
|
||||
// If our query node has a flag result with a use, we've walked up it. If
|
||||
// If our query node has a glue result with a use, we've walked up it. If
|
||||
// the user (which has already been selected) has a chain or indirectly uses
|
||||
// the chain, our WalkChainUsers predicate will not consider it. Because of
|
||||
// this, we cannot ignore chains in this predicate.
|
||||
@ -1489,20 +1489,20 @@ GetVBR(uint64_t Val, const unsigned char *MatcherTable, unsigned &Idx) {
|
||||
}
|
||||
|
||||
|
||||
/// UpdateChainsAndFlags - When a match is complete, this method updates uses of
|
||||
/// interior flag and chain results to use the new flag and chain results.
|
||||
/// UpdateChainsAndGlue - When a match is complete, this method updates uses of
|
||||
/// interior glue and chain results to use the new glue and chain results.
|
||||
void SelectionDAGISel::
|
||||
UpdateChainsAndFlags(SDNode *NodeToMatch, SDValue InputChain,
|
||||
const SmallVectorImpl<SDNode*> &ChainNodesMatched,
|
||||
SDValue InputFlag,
|
||||
const SmallVectorImpl<SDNode*> &FlagResultNodesMatched,
|
||||
bool isMorphNodeTo) {
|
||||
UpdateChainsAndGlue(SDNode *NodeToMatch, SDValue InputChain,
|
||||
const SmallVectorImpl<SDNode*> &ChainNodesMatched,
|
||||
SDValue InputGlue,
|
||||
const SmallVectorImpl<SDNode*> &GlueResultNodesMatched,
|
||||
bool isMorphNodeTo) {
|
||||
SmallVector<SDNode*, 4> NowDeadNodes;
|
||||
|
||||
ISelUpdater ISU(ISelPosition);
|
||||
|
||||
// Now that all the normal results are replaced, we replace the chain and
|
||||
// flag results if present.
|
||||
// glue results if present.
|
||||
if (!ChainNodesMatched.empty()) {
|
||||
assert(InputChain.getNode() != 0 &&
|
||||
"Matched input chains but didn't produce a chain");
|
||||
@ -1533,21 +1533,21 @@ UpdateChainsAndFlags(SDNode *NodeToMatch, SDValue InputChain,
|
||||
}
|
||||
}
|
||||
|
||||
// If the result produces a flag, update any flag results in the matched
|
||||
// pattern with the flag result.
|
||||
if (InputFlag.getNode() != 0) {
|
||||
// If the result produces glue, update any glue results in the matched
|
||||
// pattern with the glue result.
|
||||
if (InputGlue.getNode() != 0) {
|
||||
// Handle any interior nodes explicitly marked.
|
||||
for (unsigned i = 0, e = FlagResultNodesMatched.size(); i != e; ++i) {
|
||||
SDNode *FRN = FlagResultNodesMatched[i];
|
||||
for (unsigned i = 0, e = GlueResultNodesMatched.size(); i != e; ++i) {
|
||||
SDNode *FRN = GlueResultNodesMatched[i];
|
||||
|
||||
// If this node was already deleted, don't look at it.
|
||||
if (FRN->getOpcode() == ISD::DELETED_NODE)
|
||||
continue;
|
||||
|
||||
assert(FRN->getValueType(FRN->getNumValues()-1) == MVT::Glue &&
|
||||
"Doesn't have a flag result");
|
||||
"Doesn't have a glue result");
|
||||
CurDAG->ReplaceAllUsesOfValueWith(SDValue(FRN, FRN->getNumValues()-1),
|
||||
InputFlag, &ISU);
|
||||
InputGlue, &ISU);
|
||||
|
||||
// If the node became dead and we haven't already seen it, delete it.
|
||||
if (FRN->use_empty() &&
|
||||
@ -1745,15 +1745,15 @@ MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList,
|
||||
const SDValue *Ops, unsigned NumOps, unsigned EmitNodeInfo) {
|
||||
// It is possible we're using MorphNodeTo to replace a node with no
|
||||
// normal results with one that has a normal result (or we could be
|
||||
// adding a chain) and the input could have flags and chains as well.
|
||||
// adding a chain) and the input could have glue and chains as well.
|
||||
// In this case we need to shift the operands down.
|
||||
// FIXME: This is a horrible hack and broken in obscure cases, no worse
|
||||
// than the old isel though.
|
||||
int OldFlagResultNo = -1, OldChainResultNo = -1;
|
||||
int OldGlueResultNo = -1, OldChainResultNo = -1;
|
||||
|
||||
unsigned NTMNumResults = Node->getNumValues();
|
||||
if (Node->getValueType(NTMNumResults-1) == MVT::Glue) {
|
||||
OldFlagResultNo = NTMNumResults-1;
|
||||
OldGlueResultNo = NTMNumResults-1;
|
||||
if (NTMNumResults != 1 &&
|
||||
Node->getValueType(NTMNumResults-2) == MVT::Other)
|
||||
OldChainResultNo = NTMNumResults-2;
|
||||
@ -1774,13 +1774,13 @@ MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList,
|
||||
}
|
||||
|
||||
unsigned ResNumResults = Res->getNumValues();
|
||||
// Move the flag if needed.
|
||||
if ((EmitNodeInfo & OPFL_FlagOutput) && OldFlagResultNo != -1 &&
|
||||
(unsigned)OldFlagResultNo != ResNumResults-1)
|
||||
CurDAG->ReplaceAllUsesOfValueWith(SDValue(Node, OldFlagResultNo),
|
||||
// Move the glue if needed.
|
||||
if ((EmitNodeInfo & OPFL_GlueOutput) && OldGlueResultNo != -1 &&
|
||||
(unsigned)OldGlueResultNo != ResNumResults-1)
|
||||
CurDAG->ReplaceAllUsesOfValueWith(SDValue(Node, OldGlueResultNo),
|
||||
SDValue(Res, ResNumResults-1));
|
||||
|
||||
if ((EmitNodeInfo & OPFL_FlagOutput) != 0)
|
||||
if ((EmitNodeInfo & OPFL_GlueOutput) != 0)
|
||||
--ResNumResults;
|
||||
|
||||
// Move the chain reference if needed.
|
||||
@ -1978,11 +1978,11 @@ struct MatchScope {
|
||||
/// NumMatchedMemRefs - The number of matched memref entries.
|
||||
unsigned NumMatchedMemRefs;
|
||||
|
||||
/// InputChain/InputFlag - The current chain/flag
|
||||
SDValue InputChain, InputFlag;
|
||||
/// InputChain/InputGlue - The current chain/glue
|
||||
SDValue InputChain, InputGlue;
|
||||
|
||||
/// HasChainNodesMatched - True if the ChainNodesMatched list is non-empty.
|
||||
bool HasChainNodesMatched, HasFlagResultNodesMatched;
|
||||
bool HasChainNodesMatched, HasGlueResultNodesMatched;
|
||||
};
|
||||
|
||||
}
|
||||
@ -2045,17 +2045,17 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
// pattern.
|
||||
SmallVector<MachineMemOperand*, 2> MatchedMemRefs;
|
||||
|
||||
// These are the current input chain and flag for use when generating nodes.
|
||||
// These are the current input chain and glue for use when generating nodes.
|
||||
// Various Emit operations change these. For example, emitting a copytoreg
|
||||
// uses and updates these.
|
||||
SDValue InputChain, InputFlag;
|
||||
SDValue InputChain, InputGlue;
|
||||
|
||||
// ChainNodesMatched - If a pattern matches nodes that have input/output
|
||||
// chains, the OPC_EmitMergeInputChains operation is emitted which indicates
|
||||
// which ones they are. The result is captured into this list so that we can
|
||||
// update the chain results when the pattern is complete.
|
||||
SmallVector<SDNode*, 3> ChainNodesMatched;
|
||||
SmallVector<SDNode*, 3> FlagResultNodesMatched;
|
||||
SmallVector<SDNode*, 3> GlueResultNodesMatched;
|
||||
|
||||
DEBUG(errs() << "ISEL: Starting pattern match on root node: ";
|
||||
NodeToMatch->dump(CurDAG);
|
||||
@ -2159,9 +2159,9 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
NewEntry.NumRecordedNodes = RecordedNodes.size();
|
||||
NewEntry.NumMatchedMemRefs = MatchedMemRefs.size();
|
||||
NewEntry.InputChain = InputChain;
|
||||
NewEntry.InputFlag = InputFlag;
|
||||
NewEntry.InputGlue = InputGlue;
|
||||
NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty();
|
||||
NewEntry.HasFlagResultNodesMatched = !FlagResultNodesMatched.empty();
|
||||
NewEntry.HasGlueResultNodesMatched = !GlueResultNodesMatched.empty();
|
||||
MatchScopes.push_back(NewEntry);
|
||||
continue;
|
||||
}
|
||||
@ -2191,10 +2191,10 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
continue;
|
||||
|
||||
case OPC_CaptureFlagInput:
|
||||
// If the current node has an input flag, capture it in InputFlag.
|
||||
// If the current node has an input glue, capture it in InputGlue.
|
||||
if (N->getNumOperands() != 0 &&
|
||||
N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Glue)
|
||||
InputFlag = N->getOperand(N->getNumOperands()-1);
|
||||
InputGlue = N->getOperand(N->getNumOperands()-1);
|
||||
continue;
|
||||
|
||||
case OPC_MoveChild: {
|
||||
@ -2470,9 +2470,9 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
|
||||
InputChain = CurDAG->getCopyToReg(InputChain, NodeToMatch->getDebugLoc(),
|
||||
DestPhysReg, RecordedNodes[RecNo].first,
|
||||
InputFlag);
|
||||
InputGlue);
|
||||
|
||||
InputFlag = InputChain.getValue(1);
|
||||
InputGlue = InputChain.getValue(1);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -2502,7 +2502,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
|
||||
if (EmitNodeInfo & OPFL_Chain)
|
||||
VTs.push_back(MVT::Other);
|
||||
if (EmitNodeInfo & OPFL_FlagOutput)
|
||||
if (EmitNodeInfo & OPFL_GlueOutput)
|
||||
VTs.push_back(MVT::Glue);
|
||||
|
||||
// This is hot code, so optimize the two most common cases of 1 and 2
|
||||
@ -2534,7 +2534,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
FirstOpToCopy += (EmitNodeInfo & OPFL_Chain) ? 1 : 0;
|
||||
assert(NodeToMatch->getNumOperands() >= FirstOpToCopy &&
|
||||
"Invalid variadic node");
|
||||
// Copy all of the variadic operands, not including a potential flag
|
||||
// Copy all of the variadic operands, not including a potential glue
|
||||
// input.
|
||||
for (unsigned i = FirstOpToCopy, e = NodeToMatch->getNumOperands();
|
||||
i != e; ++i) {
|
||||
@ -2544,11 +2544,11 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
}
|
||||
}
|
||||
|
||||
// If this has chain/flag inputs, add them.
|
||||
// If this has chain/glue inputs, add them.
|
||||
if (EmitNodeInfo & OPFL_Chain)
|
||||
Ops.push_back(InputChain);
|
||||
if ((EmitNodeInfo & OPFL_FlagInput) && InputFlag.getNode() != 0)
|
||||
Ops.push_back(InputFlag);
|
||||
if ((EmitNodeInfo & OPFL_GlueInput) && InputGlue.getNode() != 0)
|
||||
Ops.push_back(InputGlue);
|
||||
|
||||
// Create the node.
|
||||
SDNode *Res = 0;
|
||||
@ -2558,7 +2558,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
Res = CurDAG->getMachineNode(TargetOpc, NodeToMatch->getDebugLoc(),
|
||||
VTList, Ops.data(), Ops.size());
|
||||
|
||||
// Add all the non-flag/non-chain results to the RecordedNodes list.
|
||||
// Add all the non-glue/non-chain results to the RecordedNodes list.
|
||||
for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
|
||||
if (VTs[i] == MVT::Other || VTs[i] == MVT::Glue) break;
|
||||
RecordedNodes.push_back(std::pair<SDValue,SDNode*>(SDValue(Res, i),
|
||||
@ -2570,16 +2570,16 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
EmitNodeInfo);
|
||||
}
|
||||
|
||||
// If the node had chain/flag results, update our notion of the current
|
||||
// chain and flag.
|
||||
if (EmitNodeInfo & OPFL_FlagOutput) {
|
||||
InputFlag = SDValue(Res, VTs.size()-1);
|
||||
// If the node had chain/glue results, update our notion of the current
|
||||
// chain and glue.
|
||||
if (EmitNodeInfo & OPFL_GlueOutput) {
|
||||
InputGlue = SDValue(Res, VTs.size()-1);
|
||||
if (EmitNodeInfo & OPFL_Chain)
|
||||
InputChain = SDValue(Res, VTs.size()-2);
|
||||
} else if (EmitNodeInfo & OPFL_Chain)
|
||||
InputChain = SDValue(Res, VTs.size()-1);
|
||||
|
||||
// If the OPFL_MemRefs flag is set on this node, slap all of the
|
||||
// If the OPFL_MemRefs glue is set on this node, slap all of the
|
||||
// accumulated memrefs onto it.
|
||||
//
|
||||
// FIXME: This is vastly incorrect for patterns with multiple outputs
|
||||
@ -2599,9 +2599,9 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
|
||||
// If this was a MorphNodeTo then we're completely done!
|
||||
if (Opcode == OPC_MorphNodeTo) {
|
||||
// Update chain and flag uses.
|
||||
UpdateChainsAndFlags(NodeToMatch, InputChain, ChainNodesMatched,
|
||||
InputFlag, FlagResultNodesMatched, true);
|
||||
// Update chain and glue uses.
|
||||
UpdateChainsAndGlue(NodeToMatch, InputChain, ChainNodesMatched,
|
||||
InputGlue, GlueResultNodesMatched, true);
|
||||
return Res;
|
||||
}
|
||||
|
||||
@ -2611,14 +2611,14 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
case OPC_MarkFlagResults: {
|
||||
unsigned NumNodes = MatcherTable[MatcherIndex++];
|
||||
|
||||
// Read and remember all the flag-result nodes.
|
||||
// Read and remember all the glue-result nodes.
|
||||
for (unsigned i = 0; i != NumNodes; ++i) {
|
||||
unsigned RecNo = MatcherTable[MatcherIndex++];
|
||||
if (RecNo & 128)
|
||||
RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
|
||||
|
||||
assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
|
||||
FlagResultNodesMatched.push_back(RecordedNodes[RecNo].first.getNode());
|
||||
GlueResultNodesMatched.push_back(RecordedNodes[RecNo].first.getNode());
|
||||
}
|
||||
continue;
|
||||
}
|
||||
@ -2650,14 +2650,13 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
CurDAG->ReplaceAllUsesOfValueWith(SDValue(NodeToMatch, i), Res);
|
||||
}
|
||||
|
||||
// If the root node defines a flag, add it to the flag nodes to update
|
||||
// list.
|
||||
// If the root node defines glue, add it to the flag nodes to update list.
|
||||
if (NodeToMatch->getValueType(NodeToMatch->getNumValues()-1) == MVT::Glue)
|
||||
FlagResultNodesMatched.push_back(NodeToMatch);
|
||||
GlueResultNodesMatched.push_back(NodeToMatch);
|
||||
|
||||
// Update chain and flag uses.
|
||||
UpdateChainsAndFlags(NodeToMatch, InputChain, ChainNodesMatched,
|
||||
InputFlag, FlagResultNodesMatched, false);
|
||||
// Update chain and glue uses.
|
||||
UpdateChainsAndGlue(NodeToMatch, InputChain, ChainNodesMatched,
|
||||
InputGlue, GlueResultNodesMatched, false);
|
||||
|
||||
assert(NodeToMatch->use_empty() &&
|
||||
"Didn't replace all uses of the node?");
|
||||
@ -2694,11 +2693,11 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
DEBUG(errs() << " Continuing at " << MatcherIndex << "\n");
|
||||
|
||||
InputChain = LastScope.InputChain;
|
||||
InputFlag = LastScope.InputFlag;
|
||||
InputGlue = LastScope.InputGlue;
|
||||
if (!LastScope.HasChainNodesMatched)
|
||||
ChainNodesMatched.clear();
|
||||
if (!LastScope.HasFlagResultNodesMatched)
|
||||
FlagResultNodesMatched.clear();
|
||||
if (!LastScope.HasGlueResultNodesMatched)
|
||||
GlueResultNodesMatched.clear();
|
||||
|
||||
// Check to see what the offset is at the new MatcherIndex. If it is zero
|
||||
// we have reached the end of this scope, otherwise we have another child
|
||||
|
@ -485,8 +485,8 @@ EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx,
|
||||
OS << ", TARGET_OPCODE(" << EN->getOpcodeName() << "), 0";
|
||||
|
||||
if (EN->hasChain()) OS << "|OPFL_Chain";
|
||||
if (EN->hasInFlag()) OS << "|OPFL_FlagInput";
|
||||
if (EN->hasOutFlag()) OS << "|OPFL_FlagOutput";
|
||||
if (EN->hasInFlag()) OS << "|OPFL_GlueInput";
|
||||
if (EN->hasOutFlag()) OS << "|OPFL_GlueOutput";
|
||||
if (EN->hasMemRefs()) OS << "|OPFL_MemRefs";
|
||||
if (EN->getNumFixedArityOperands() != -1)
|
||||
OS << "|OPFL_Variadic" << EN->getNumFixedArityOperands();
|
||||
|
Loading…
x
Reference in New Issue
Block a user