003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
lib
/
Target
/
NVPTX
/
MCTargetDesc
/
📁
..
📄
NVPTXBaseInfo.h
(1.33 KB)
📄
NVPTXInstPrinter.cpp
(8.43 KB)
📄
NVPTXInstPrinter.h
(2.03 KB)
📄
NVPTXMCAsmInfo.cpp
(1.76 KB)
📄
NVPTXMCAsmInfo.h
(1.24 KB)
📄
NVPTXMCTargetDesc.cpp
(2.99 KB)
📄
NVPTXMCTargetDesc.h
(959 B)
📄
NVPTXTargetStreamer.cpp
(5.16 KB)
📄
NVPTXTargetStreamer.h
(2.15 KB)
Editing: NVPTXMCAsmInfo.h
//===-- NVPTXMCAsmInfo.h - NVPTX asm properties ----------------*- C++ -*--===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains the declaration of the NVPTXMCAsmInfo class. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCASMINFO_H #define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCASMINFO_H #include "llvm/MC/MCAsmInfo.h" namespace llvm { class Triple; class NVPTXMCAsmInfo : public MCAsmInfo { virtual void anchor(); public: explicit NVPTXMCAsmInfo(const Triple &TheTriple, const MCTargetOptions &Options); /// Return true if the .section directive should be omitted when /// emitting \p SectionName. For example: /// /// shouldOmitSectionDirective(".text") /// /// returns false => .section .text,#alloc,#execinstr /// returns true => .text bool shouldOmitSectionDirective(StringRef SectionName) const override { return true; } }; } // namespace llvm #endif
Upload File
Create Folder