aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-28 18:01:22 +0000
committerChris Lattner <sabre@nondot.org>2002-03-28 18:01:22 +0000
commit25f5009d0613d4ab5d0f6f60f1bb9f9fa643e77b (patch)
treee2055cf8a773bdb6633945ce9c805bf836e5fd53 /include/llvm/Transforms
parentfe59454fa2f4b62a07c8a49f561d8368107f4c2e (diff)
downloadexternal_llvm-25f5009d0613d4ab5d0f6f60f1bb9f9fa643e77b.zip
external_llvm-25f5009d0613d4ab5d0f6f60f1bb9f9fa643e77b.tar.gz
external_llvm-25f5009d0613d4ab5d0f6f60f1bb9f9fa643e77b.tar.bz2
New file for new pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2012 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/IPO/PoolAllocate.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/llvm/Transforms/IPO/PoolAllocate.h b/include/llvm/Transforms/IPO/PoolAllocate.h
new file mode 100644
index 0000000..f503549
--- /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