[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git] / llvm / lib / Target / NVPTX / NVPTXTargetObjectFile.h
blob6b68e79fabc29b1d7c3c31c0d3bfb16cec678649
1 //===-- NVPTXTargetObjectFile.h - NVPTX Object Info -------------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_TARGET_NVPTX_NVPTXTARGETOBJECTFILE_H
10 #define LLVM_LIB_TARGET_NVPTX_NVPTXTARGETOBJECTFILE_H
12 #include "llvm/MC/MCSection.h"
13 #include "llvm/MC/SectionKind.h"
14 #include "llvm/Target/TargetLoweringObjectFile.h"
16 namespace llvm {
18 class NVPTXTargetObjectFile : public TargetLoweringObjectFile {
19 public:
20 NVPTXTargetObjectFile() = default;
22 ~NVPTXTargetObjectFile() override;
24 MCSection *getSectionForConstant(const DataLayout &DL, SectionKind Kind,
25 const Constant *C,
26 Align &Alignment) const override {
27 return ReadOnlySection;
30 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
31 const TargetMachine &TM) const override {
32 return DataSection;
35 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
36 const TargetMachine &TM) const override;
39 } // end namespace llvm
41 #endif // LLVM_LIB_TARGET_NVPTX_NVPTXTARGETOBJECTFILE_H