Home
last modified time | relevance | path

Searched refs:NodeTy (Results 1 – 25 of 25) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h59 std::conditional_t<IsPostDom, Inverse<NodeTy *>, NodeTy *>;
104 DominatorTreeBase<NodeTy, IsPostDom> &DT;
107 const SmallPtrSetImpl<NodeTy *> *LiveInBlocks;
108 const SmallPtrSetImpl<NodeTy *> *DefBlocks;
117 template <class NodeTy, bool IsPostDom>
129 template <class NodeTy, bool IsPostDom>
131 SmallVectorImpl<NodeTy *> &IDFBlocks) { in calculate()
150 for (NodeTy *BB : *DefBlocks) in calculate()
172 NodeTy *BB = Node->getBlock(); in calculate()
175 auto DoWork = [&](NodeTy *Succ) { in calculate()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_node.h283 template <typename NodeTy, typename ParentTy, class... Options>
284 class ilist_node_with_parent : public ilist_node<NodeTy, Options...> {
295 return static_cast<const NodeTy *>(this)->getParent(); in getNodeParent()
302 NodeTy *getPrevNode() { in getPrevNode()
306 getNodeParent()->*(ParentTy::getSublistAccess((NodeTy *)nullptr)); in getPrevNode()
307 return List.getPrevNode(*static_cast<NodeTy *>(this)); in getPrevNode()
311 const NodeTy *getPrevNode() const { in getPrevNode()
316 NodeTy *getNextNode() { in getNextNode()
320 getNodeParent()->*(ParentTy::getSublistAccess((NodeTy *)nullptr)); in getNextNode()
321 return List.getNextNode(*static_cast<NodeTy *>(this)); in getNextNode()
[all …]
H A Dilist.h41 template <typename NodeTy> struct ilist_alloc_traits {
42 static void deleteNode(NodeTy *V) { delete V; } in deleteNode()
57 template <typename NodeTy> struct ilist_noalloc_traits {
58 static void deleteNode(NodeTy *V) {} in deleteNode()
65 template <typename NodeTy> struct ilist_callback_traits {
66 void addNodeToList(NodeTy *) {} in addNodeToList()
67 void removeNodeFromList(NodeTy *) {} in removeNodeFromList()
82 template <typename NodeTy>
83 struct ilist_node_traits : ilist_alloc_traits<NodeTy>,
89 template <typename NodeTy>
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp400 NodeTy::Profile(profile, L, State, IsSink); in getNode()
401 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos); in getNode()
410 V = getAllocator().Allocate<NodeTy>(); in getNode()
414 new (V) NodeTy(L, State, NumNodes, IsSink); in getNode()
434 NodeTy *V = getAllocator().Allocate<NodeTy>(); in createUncachedNode()
435 new (V) NodeTy(L, State, Id, IsSink); in createUncachedNode()
440 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks, in trim()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIntervalIterator.h86 template<class NodeTy, class OrigContainer_t, class GT = GraphTraits<NodeTy *>,
87 class IGT = GraphTraits<Inverse<NodeTy *>>>
175 bool ProcessInterval(NodeTy *Node) { in ProcessInterval()
199 void ProcessNode(Interval *Int, NodeTy *Node) { in ProcessNode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.h379 template <class NodeTy>
380 SDValue getAddrLocal(NodeTy *N, const SDLoc &DL, EVT Ty, SelectionDAG &DAG, in getAddrLocal()
398 template <class NodeTy>
411 template <class NodeTy>
412 SDValue getAddrGlobalLargeGOT(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrGlobalLargeGOT()
430 template <class NodeTy>
431 SDValue getAddrNonPIC(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrNonPIC()
447 template <class NodeTy>
448 SDValue getAddrNonPICSym64(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrNonPICSym64()
474 template <class NodeTy>
[all …]
H A DMips16ISelDAGToDAG.cpp187 EVT NodeTy = Node->getValueType(0); in trySelect() local
199 selectMULT(Node, MultOpc, DL, NodeTy, true, true); in trySelect()
213 auto LoHi = selectMULT(Node, MultOpc, DL, NodeTy, false, true); in trySelect()
H A DRelocation.txt21 template <class NodeTy> // lib/Target/Mips/MipsISelLowering.h
22 SDValue getAddrLocal(NodeTy *N, const SDLoc &DL, EVT Ty,
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h251 template <class NodeTy>
252 MDNodeOpsKey(const NodeTy *N, unsigned Offset = 0)
255 template <class NodeTy>
281 template <class NodeTy> struct MDNodeKeyImpl;
285 using KeyTy = MDNodeKeyImpl<NodeTy>;
291 static bool isSubsetEqual(const NodeTy *LHS, const NodeTy *RHS) {
1354 template <class NodeTy> struct MDNodeInfo {
1355 using KeyTy = MDNodeKeyImpl<NodeTy>;
1358 static inline NodeTy *getEmptyKey() {
1362 static inline NodeTy *getTombstoneKey() {
[all …]
H A DMetadata.cpp972 template <class NodeTy> struct MDNode::HasCachedHash {
981 static const bool value = sizeof(check<NodeTy>(nullptr)) == sizeof(Yes);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DSymbolTableListTraits.h47 template <typename NodeTy> struct SymbolTableListParentType {};
60 template <typename NodeTy, typename... Args> class SymbolTableList;
H A DMetadata.h1387 template <class NodeTy> struct HasCachedHash;
1388 template <class NodeTy>
1389 static void dispatchRecalculateHash(NodeTy *N, std::true_type) {
1392 template <class NodeTy>
1393 static void dispatchRecalculateHash(NodeTy *, std::false_type) {}
1394 template <class NodeTy>
1395 static void dispatchResetHash(NodeTy *N, std::true_type) {
1398 template <class NodeTy>
1399 static void dispatchResetHash(NodeTy *, std::false_type) {}
H A DDIBuilder.h1019 template <class NodeTy>
1020 NodeTy *replaceTemporary(TempMDNode &&N, NodeTy *Replacement) { in replaceTemporary()
1022 return cast<NodeTy>(MDNode::replaceWithUniqued(std::move(N))); in replaceTemporary()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h2243 : SDNode(NodeTy, 0, DebugLoc(), getSDVTList(VT)),
2355 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2447 VPBaseLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2451 : MemSDNode(NodeTy, Order, DL, VTs, MemVT, MMO) {
2655 MaskedLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2659 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2762 VPGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order,
2765 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2849 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2935 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h1084 template <class NodeTy>
1085 SDValue getGOT(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1086 template <class NodeTy>
1087 SDValue getAddrLarge(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1088 template <class NodeTy>
1089 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1090 template <class NodeTy>
1091 SDValue getAddrTiny(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
H A DAArch64ISelLowering.cpp8414 template <class NodeTy>
8415 SDValue AArch64TargetLowering::getGOT(NodeTy *N, SelectionDAG &DAG, in getGOT()
8427 template <class NodeTy>
8428 SDValue AArch64TargetLowering::getAddrLarge(NodeTy *N, SelectionDAG &DAG, in getAddrLarge()
8443 template <class NodeTy>
8444 SDValue AArch64TargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
8457 template <class NodeTy>
8458 SDValue AArch64TargetLowering::getAddrTiny(NodeTy *N, SelectionDAG &DAG, in getAddrTiny()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.h131 template <class NodeTy, bool IsCall = false>
132 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const {
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h258 template <class NodeTy>
259 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, CodeModel::Model M,
H A DLoongArchISelLowering.cpp770 template <class NodeTy>
771 SDValue LoongArchTargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DParentMapContext.cpp94 template <typename NodeTy, typename MapTy>
95 static DynTypedNodeList getDynNodeFromMap(const NodeTy &Node, in getDynNodeFromMap()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h390 using NodeTy = ExplodedNode; variable
435 trim(ArrayRef<const NodeTy *> Nodes,
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1251 template <typename NodeTy> struct CompareNode {
1252 bool operator()(const NodeTy *N1, const NodeTy *N2) const { in operator ()()
1465 template <typename NodeTy>
1467 getEndCharLoc(const NodeTy *Node, const SourceManager &SM, in getEndCharLoc()
1479 template <typename NodeTy>
1480 static std::optional<SourceLocation> getPastLoc(const NodeTy *Node, in getPastLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h852 template <class NodeTy>
853 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true,
H A DRISCVISelLowering.cpp6804 template <class NodeTy>
6805 SDValue RISCVTargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp11057 auto NodeTy = in LowerATOMIC_CMP_SWAP() local
11059 return DAG.getMemIntrinsicNode(NodeTy, dl, Tys, Ops, MemVT, MMO); in LowerATOMIC_CMP_SWAP()