diff options
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r-- | include/llvm/Transforms/IPO/PoolAllocate.h | 15 |
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 |