Home
last modified time | relevance | path

Searched refs:NodeInfo (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSCCIterator.h259 struct NodeInfo { struct
260 NodeInfo *Group = this; argument
268 NodeInfo *find(NodeInfo *Node) { in find() argument
277 NodeInfo *G1 = find(&NodeInfoMap[Edge->Source]); in unionGroups()
278 NodeInfo *G2 = find(&NodeInfoMap[Edge->Target]); in unionGroups()
296 std::unordered_map<NodeType *, NodeInfo> NodeInfoMap;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp386 TruncInstCombine::Info &NodeInfo = Itr.second; in ReduceExpressionGraph() local
388 assert(!NodeInfo.NewValue && "Instruction has been evaluated"); in ReduceExpressionGraph()
403 NodeInfo.NewValue = I->getOperand(0); in ReduceExpressionGraph()
476 NodeInfo.NewValue = Res; in ReduceExpressionGraph()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h137 struct NodeInfo { struct
143 NodeInfo() = default; argument
146 std::vector<NodeInfo> ScheduleInfo;
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp1595 const SDNodeInfo &NodeInfo, in getOperandNum() argument
1597 unsigned NumResults = NodeInfo.getNumResults(); in getOperandNum()
1621 const SDNodeInfo &NodeInfo, in ApplyTypeConstraint() argument
1627 TreePatternNode &NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo); in ApplyTypeConstraint()
1649 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NodeInfo, OResNo); in ApplyTypeConstraint()
1672 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N, NodeInfo, OResNo); in ApplyTypeConstraint()
1680 x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NodeInfo, BResNo); in ApplyTypeConstraint()
1687 x.SDTCisEltOfVec_Info.OtherOperandNum, N, NodeInfo, VResNo); in ApplyTypeConstraint()
1696 x.SDTCisSubVecOfVec_Info.OtherOperandNum, N, NodeInfo, VResNo); in ApplyTypeConstraint()
1709 x.SDTCisSameNumEltsAs_Info.OtherOperandNum, N, NodeInfo, OResNo); in ApplyTypeConstraint()
[all …]
H A DCodeGenDAGPatterns.h409 bool ApplyTypeConstraint(TreePatternNode &N, const SDNodeInfo &NodeInfo,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1388 auto NodeInfo = PFS.IRSlots.MetadataNodes.find(ID); in parseMetadata() local
1389 if (NodeInfo != PFS.IRSlots.MetadataNodes.end()) { in parseMetadata()
1390 MD = NodeInfo->second.get(); in parseMetadata()
1394 NodeInfo = PFS.MachineMetadataNodes.find(ID); in parseMetadata()
1395 if (NodeInfo != PFS.MachineMetadataNodes.end()) { in parseMetadata()
1396 MD = NodeInfo->second.get(); in parseMetadata()
2293 auto NodeInfo = PFS.IRSlots.MetadataNodes.find(ID); in parseMDNode() local
2294 if (NodeInfo == PFS.IRSlots.MetadataNodes.end()) { in parseMDNode()
2295 NodeInfo = PFS.MachineMetadataNodes.find(ID); in parseMDNode()
2296 if (NodeInfo == PFS.MachineMetadataNodes.end()) in parseMDNode()
[all …]