Teach GlobalDCE how to remove empty global_ctor entries.
[oota-llvm.git] / include / llvm / Transforms / Utils / CtorUtils.h
1 //===- CtorUtils.h - Helpers for working with global_ctors ------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines functions that are used to process llvm.global_ctors.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TRANSFORMS_UTILS_CTOR_UTILS_H
15 #define LLVM_TRANSFORMS_UTILS_CTOR_UTILS_H
16
17 #include <functional>
18 #include <vector>
19
20 namespace llvm {
21
22 class GlobalVariable;
23 class Function;
24 class Module;
25
26 typedef bool (*ShouldRemoveCtor)(void *, Function *);
27
28 /// Call "ShouldRemove" for every entry in M's global_ctor list and remove the
29 /// entries for which it returns true.  Return true if anything changed.
30 bool optimizeGlobalCtorsList(Module &M, ShouldRemoveCtor ShouldRemove,
31                              void *Context);
32
33 } // End llvm namespace
34
35 #endif