From: Gabor Greif Date: Sun, 1 Mar 2009 16:38:10 +0000 (+0000) Subject: Reuse a technique (pioneered for BasicBlocks) of superposing ilist with X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=abd6f28a74e74303725ec123bdfe9202617115c8;p=oota-llvm.git Reuse a technique (pioneered for BasicBlocks) of superposing ilist with its sentinel. This is quite a win when a function really has a basic block. When the function is just a declaration (and stays so) the old way did not allocate a sentinel. So this change is most beneficial when the ratio of function definition to declaration is high. I.e. linkers etc. Incidentally these are the most resource demanding applications, so I expect that the reduced malloc traffic, locality and space savings outweigh the cost of addition of two pointers to Function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65776 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Function.h b/include/llvm/Function.h index ee53252b954..bdae9cd02f5 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -32,12 +32,17 @@ class FunctionType; template<> struct ilist_traits : public SymbolTableListTraits { - // createSentinel is used to create a node that marks the end of the list... - static BasicBlock *createSentinel(); - static void destroySentinel(BasicBlock *BB) { delete BB; } + // createSentinel is used to get hold of the node that marks the end of the + // list... (same trick used here as in ilist_traits) + BasicBlock *createSentinel() const { + return const_cast(static_cast(&Sentinel)); + } + static void destroySentinel(BasicBlock*) {} static iplist &getList(Function *F); static ValueSymbolTable *getSymTab(Function *ItemParent); static int getListOffset(); +private: + ilist_node Sentinel; }; template<> struct ilist_traits diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index cff4457a418..fefe082cb4e 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -22,13 +22,6 @@ #include "llvm/ADT/StringExtras.h" using namespace llvm; -BasicBlock *ilist_traits::createSentinel() { - BasicBlock *Ret = BasicBlock::Create(); - // This should not be garbage monitored. - LeakDetector::removeGarbageObject(Ret); - return Ret; -} - iplist &ilist_traits::getList(Function *F) { return F->getBasicBlockList(); }