Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h39 template <class NodeTy, bool IsPostDom> struct ChildrenGetterTy {
40 using NodeRef = typename GraphTraits<NodeTy *>::NodeRef;
41 using ChildIteratorType = typename GraphTraits<NodeTy *>::ChildIteratorType;
58 template <class NodeTy, bool IsPostDom> class IDFCalculatorBase {
61 std::conditional_t<IsPostDom, Inverse<NodeTy *>, NodeTy *>;
63 IDFCalculatorDetail::ChildrenGetterTy<NodeTy, IsPostDom>;
65 IDFCalculatorBase(DominatorTreeBase<NodeTy, IsPostDom> &DT) : DT(DT) {} in IDFCalculatorBase() argument
67 IDFCalculatorBase(DominatorTreeBase<NodeTy, IsPostDom> &DT, in IDFCalculatorBase() argument
76 void setDefiningBlocks(const SmallPtrSetImpl<NodeTy *> &Blocks) { in setDefiningBlocks()
85 void setLiveInBlocks(const SmallPtrSetImpl<NodeTy *> &Blocks) { in setLiveInBlocks()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_node.h30 template <class NodeTy, class ParentTy> class node_parent_access {
33 return static_cast<const NodeTy *>(this)->getNodeBaseParent(); in getParent()
36 return static_cast<NodeTy *>(this)->getNodeBaseParent(); in getParent()
39 return static_cast<NodeTy *>(this)->setNodeBaseParent(Parent); in setParent()
42 template <class NodeTy> class node_parent_access<NodeTy, void> {};
320 template <typename NodeTy, typename ParentTy, class... Options>
321 class ilist_node_with_parent : public ilist_node<NodeTy, Options...> {
332 return static_cast<const NodeTy *>(this)->getParent(); in getNodeParent()
339 NodeTy *getPrevNode() { in getPrevNode()
343 getNodeParent()->*(ParentTy::getSublistAccess((NodeTy *)nullptr)); in getPrevNode()
[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>,
84 ilist_callback_traits<NodeTy> {};
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.h383 template <class NodeTy>
384 SDValue getAddrLocal(NodeTy *N, const SDLoc &DL, EVT Ty, SelectionDAG &DAG, in getAddrLocal()
402 template <class NodeTy>
403 SDValue getAddrGlobal(NodeTy *N, const SDLoc &DL, EVT Ty, SelectionDAG &DAG, in getAddrGlobal()
415 template <class NodeTy>
416 SDValue getAddrGlobalLargeGOT(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrGlobalLargeGOT()
434 template <class NodeTy>
435 SDValue getAddrNonPIC(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrNonPIC()
451 template <class NodeTy>
452 SDValue getAddrNonPICSym64(NodeTy *N, const SDLoc &DL, EVT Ty, in getAddrNonPICSym64()
[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/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h253 template <class NodeTy>
254 MDNodeOpsKey(const NodeTy *N, unsigned Offset = 0)
257 template <class NodeTy>
258 bool compareOps(const NodeTy *RHS, unsigned Offset = 0) const {
283 template <class NodeTy> struct MDNodeKeyImpl;
286 template <class NodeTy> struct MDNodeSubsetEqualImpl {
287 using KeyTy = MDNodeKeyImpl<NodeTy>;
289 static bool isSubsetEqual(const KeyTy &LHS, const NodeTy *RHS) {
293 static bool isSubsetEqual(const NodeTy *LHS, const NodeTy *RHS) {
1368 template <class NodeTy> struct MDNodeInfo {
[all …]
H A DMetadata.cpp981 template <class NodeTy> struct MDNode::HasCachedHash {
990 static const bool value = sizeof(check<NodeTy>(nullptr)) == sizeof(Yes);
/freebsd/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.h1397 template <class NodeTy> struct HasCachedHash;
1398 template <class NodeTy>
1399 static void dispatchRecalculateHash(NodeTy *N, std::true_type) {
1402 template <class NodeTy>
1403 static void dispatchRecalculateHash(NodeTy *, std::false_type) {}
1404 template <class NodeTy>
1405 static void dispatchResetHash(NodeTy *N, std::true_type) {
1408 template <class NodeTy>
1409 static void dispatchResetHash(NodeTy *, std::false_type) {}
H A DDIBuilder.h1050 template <class NodeTy>
1051 NodeTy *replaceTemporary(TempMDNode &&N, NodeTy *Replacement) { in replaceTemporary()
1053 return cast<NodeTy>(MDNode::replaceWithUniqued(std::move(N))); in replaceTemporary()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelLowering.h84 template <class NodeTy>
85 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
H A DBPFISelLowering.cpp706 template <class NodeTy>
707 SDValue BPFTargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h2287 BlockAddressSDNode(unsigned NodeTy, SDVTList VTs, const BlockAddress *ba,
2289 : SDNode(NodeTy, 0, DebugLoc(), VTs), BA(ba), Offset(o),
2399 LSBaseSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl,
2402 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2494 VPBaseLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2498 : MemSDNode(NodeTy, Order, DL, VTs, MemVT, MMO) {
2702 MaskedLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2706 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2809 VPGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order,
2812 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h1114 template <class NodeTy>
1115 SDValue getGOT(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1116 template <class NodeTy>
1117 SDValue getAddrLarge(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1118 template <class NodeTy>
1119 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
1120 template <class NodeTy>
1121 SDValue getAddrTiny(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
H A DAArch64ISelLowering.cpp9195 template <class NodeTy>
9196 SDValue AArch64TargetLowering::getGOT(NodeTy *N, SelectionDAG &DAG, in getGOT()
9208 template <class NodeTy>
9209 SDValue AArch64TargetLowering::getAddrLarge(NodeTy *N, SelectionDAG &DAG, in getAddrLarge()
9224 template <class NodeTy>
9225 SDValue AArch64TargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
9238 template <class NodeTy>
9239 SDValue AArch64TargetLowering::getAddrTiny(NodeTy *N, SelectionDAG &DAG, in getAddrTiny()
/freebsd/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/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h276 template <class NodeTy>
277 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, CodeModel::Model M,
H A DLoongArchISelLowering.cpp1692 template <class NodeTy>
1693 SDValue LoongArchTargetLowering::getAddr(NodeTy *N, SelectionDAG &DAG, in getAddr()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h390 using NodeTy = ExplodedNode; variable
435 trim(ArrayRef<const NodeTy *> Nodes,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DParentMapContext.cpp113 template <typename NodeTy, typename MapTy>
114 static DynTypedNodeList getDynNodeFromMap(const NodeTy &Node, in getDynNodeFromMap()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1492 template <typename NodeTy> struct CompareNode {
1493 bool operator()(const NodeTy *N1, const NodeTy *N2) const { in operator ()()
1737 template <typename NodeTy>
1739 getEndCharLoc(const NodeTy *Node, const SourceManager &SM, in getEndCharLoc()
1751 template <typename NodeTy>
1752 static std::optional<SourceLocation> getPastLoc(const NodeTy *Node, in getPastLoc()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h914 template <class NodeTy>
915 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true,
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp11250 auto NodeTy = in LowerATOMIC_CMP_SWAP() local
11252 return DAG.getMemIntrinsicNode(NodeTy, dl, Tys, Ops, MemVT, MMO); in LowerATOMIC_CMP_SWAP()

12