Home
last modified time | relevance | path

Searched refs:LMap (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DPRBTree.h68 struct LMap struct
72 LMap *parent; argument
73 LMap *chld[NPTRS]; argument
77 LMap *next; argument
79 LMap (Key_t _key, void *_item);
80 LMap (const LMap& lm);
82 friend struct LMap;
84 LMap *mlist; // The master list of all nodes
85 Vector<LMap*> *roots;
88 LMap *root;
[all …]
H A DPRBTree.cc45 PRBTree::LMap::LMap (Key_t _key, void *_item) in LMap() function in PRBTree::LMap
59 PRBTree::LMap::LMap (const LMap& lm) in LMap() function in PRBTree::LMap
75 roots = new Vector<LMap*>; in PRBTree()
88 LMap *lm = mlist; in ~PRBTree()
103 for (LMap *lm = mlist; lm; lm = lm->next) in values()
109 PRBTree::LMap *
112 LMap *lm = new LMap (key, item); in rb_new_node()
118 PRBTree::LMap *
119 PRBTree::rb_new_node (LMap *lm) in rb_new_node()
121 LMap *lmnew = new LMap (*lm); in rb_new_node()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DPRBTree.h68 struct LMap struct
72 LMap *parent; argument
73 LMap *chld[NPTRS]; argument
77 LMap *next; argument
79 LMap (Key_t _key, void *_item);
80 LMap (const LMap& lm);
82 friend struct LMap;
84 LMap *mlist; // The master list of all nodes
85 Vector<LMap*> *roots;
88 LMap *root;
[all …]
H A DPRBTree.cc45 PRBTree::LMap::LMap (Key_t _key, void *_item) in LMap() function in PRBTree::LMap
59 PRBTree::LMap::LMap (const LMap& lm) in LMap() function in PRBTree::LMap
75 roots = new Vector<LMap*>; in PRBTree()
88 LMap *lm = mlist; in ~PRBTree()
103 for (LMap *lm = mlist; lm; lm = lm->next) in values()
109 PRBTree::LMap *
112 LMap *lm = new LMap (key, item); in rb_new_node()
118 PRBTree::LMap *
119 PRBTree::rb_new_node (LMap *lm) in rb_new_node()
121 LMap *lmnew = new LMap (*lm); in rb_new_node()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp805 DenseMap<Loop *, Loop *> LMap; in cloneLoopWithPreheader() local
808 LMap[OrigLoop] = NewLoop; in cloneLoopWithPreheader()
829 Loop *&NewLoop = LMap[CurLoop]; in cloneLoopWithPreheader()
836 Loop *NewParentLoop = LMap[OrigParent]; in cloneLoopWithPreheader()
845 Loop *&NewLoop = LMap[CurLoop]; in cloneLoopWithPreheader()
865 LMap[CurLoop]->moveToHeader(cast<BasicBlock>(VMap[BB])); in cloneLoopWithPreheader()