[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / Transforms / Utils / CtorUtils.h
blob3625ee662b1ce03ea8d2de65bb446bae26a4a521
1 //===- CtorUtils.h - Helpers for working with global_ctors ------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines functions that are used to process llvm.global_ctors.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_TRANSFORMS_UTILS_CTORUTILS_H
14 #define LLVM_TRANSFORMS_UTILS_CTORUTILS_H
16 #include "llvm/ADT/STLExtras.h"
18 namespace llvm {
20 class GlobalVariable;
21 class Function;
22 class Module;
24 /// Call "ShouldRemove" for every entry in M's global_ctor list and remove the
25 /// entries for which it returns true. Return true if anything changed.
26 bool optimizeGlobalCtorsList(Module &M,
27 function_ref<bool(Function *)> ShouldRemove);
29 } // End llvm namespace
31 #endif