From 25f5009d0613d4ab5d0f6f60f1bb9f9fa643e77b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 28 Mar 2002 18:01:22 +0000 Subject: [PATCH] New file for new pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2012 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/IPO/PoolAllocate.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/llvm/Transforms/IPO/PoolAllocate.h diff --git a/include/llvm/Transforms/IPO/PoolAllocate.h b/include/llvm/Transforms/IPO/PoolAllocate.h new file mode 100644 index 00000000000..f503549fc86 --- /dev/null +++ b/include/llvm/Transforms/IPO/PoolAllocate.h @@ -0,0 +1,15 @@ +//===-- Transforms/IPO/PoolAllocate.h - Pool Allocation Pass -----*- C++ -*--=// +// +// This transform changes programs so that disjoint data structures are +// allocated out of different pools of memory, increasing locality and shrinking +// pointer size. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_TRANSFORM_IPO_POOLALLOCATE_H +#define LLVM_TRANSFORM_IPO_POOLALLOCATE_H + +class Pass; +Pass *createPoolAllocatePass(); + +#endif