HomeSort by relevance Sort by last modified time
    Searched refs:createSentinel (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/
Module.h 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
    [all...]
Function.h 37 // createSentinel is used to get hold of the node that marks the end of the
39 BasicBlock *createSentinel() const {
44 BasicBlock *provideInitialHead() const { return createSentinel(); }
45 BasicBlock *ensureHead(BasicBlock*) const { return createSentinel(); }
56 Argument *createSentinel() const {
61 Argument *provideInitialHead() const { return createSentinel(); }
62 Argument *ensureHead(Argument*) const { return createSentinel(); }
BasicBlock.h 32 // createSentinel is used to get hold of a node that marks the end of
36 Instruction *createSentinel() const {
49 Instruction *provideInitialHead() const { return createSentinel(); }
50 Instruction *ensureHead(Instruction*) const { return createSentinel(); }
  /external/llvm/include/llvm/Support/
Recycler.h 45 RecyclerStruct *createSentinel() const {
50 RecyclerStruct *provideInitialHead() const { return createSentinel(); }
51 RecyclerStruct *ensureHead(RecyclerStruct*) const { return createSentinel(); }
  /external/llvm/include/llvm/Analysis/
IVUsers.h 95 // createSentinel is used to get hold of a node that marks the end of
99 IVStrideUse *createSentinel() const {
112 IVStrideUse *provideInitialHead() const { return createSentinel(); }
113 IVStrideUse *ensureHead(IVStrideUse*) const { return createSentinel(); }
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 48 MachineBasicBlock *createSentinel() const {
53 MachineBasicBlock *provideInitialHead() const { return createSentinel(); }
55 return createSentinel();
MachineBasicBlock.h 43 MachineInstr *createSentinel() const {
48 MachineInstr *provideInitialHead() const { return createSentinel(); }
49 MachineInstr *ensureHead(MachineInstr*) const { return createSentinel(); }
SelectionDAG.h 44 SDNode *createSentinel() const {
49 SDNode *provideInitialHead() const { return createSentinel(); }
50 SDNode *ensureHead(SDNode*) const { return createSentinel(); }
    [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 25 // created (using ilist_traits<>::createSentinel()). This tail node is
76 /// createSentinel - create the dynamic sentinel
77 static NodeTy *createSentinel() { return new NodeTy(); }
92 Head = ilist_traits<NodeTy>::createSentinel();
301 /// sentinel is created by the Traits::createSentinel method and is a link

Completed in 86 milliseconds