Home | History | Annotate | Download | only in llvm

Lines Matching refs:createSentinel

39   // createSentinel is used to get hold of the node that marks the end of the
41 Function *createSentinel() const {
46 Function *provideInitialHead() const { return createSentinel(); }
47 Function *ensureHead(Function*) const { return createSentinel(); }
56 // createSentinel is used to create a node that marks the end of the list.
57 GlobalVariable *createSentinel() const {
62 GlobalVariable *provideInitialHead() const { return createSentinel(); }
63 GlobalVariable *ensureHead(GlobalVariable*) const { return createSentinel(); }
71 // createSentinel is used to create a node that marks the end of the list.
72 GlobalAlias *createSentinel() const {
77 GlobalAlias *provideInitialHead() const { return createSentinel(); }
78 GlobalAlias *ensureHead(GlobalAlias*) const { return createSentinel(); }
86 // createSentinel is used to get hold of a node that marks the end of
88 NamedMDNode *createSentinel() const {
93 NamedMDNode *provideInitialHead() const { return createSentinel(); }
94 NamedMDNode *ensureHead(NamedMDNode*) const { return createSentinel(); }