1//===-- NVPTXCtorDtorLowering.h --------------------------------*- 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#ifndef LLVM_LIB_TARGET_NVPTX_NVPTXCTORDTORLOWERING_H
10#define LLVM_LIB_TARGET_NVPTX_NVPTXCTORDTORLOWERING_H
11
12#include "llvm/IR/PassManager.h"
13
14namespace llvm {
15class Module;
16class PassRegistry;
17
18/// Lower llvm.global_ctors and llvm.global_dtors to special kernels.
19class NVPTXCtorDtorLoweringPass
20 : public PassInfoMixin<NVPTXCtorDtorLoweringPass> {
21public:
22 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
23};
24
25} // namespace llvm
26
27#endif // LLVM_LIB_TARGET_NVPTX_NVPTXCTORDTORLOWERING_H
28