003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
lib
/
Target
/
PowerPC
/
MCTargetDesc
/
📁
..
📄
PPCAsmBackend.cpp
(9.2 KB)
📄
PPCELFObjectWriter.cpp
(15.05 KB)
📄
PPCELFStreamer.cpp
(4.59 KB)
📄
PPCELFStreamer.h
(1.92 KB)
📄
PPCFixupKinds.h
(1.71 KB)
📄
PPCInstPrinter.cpp
(18.91 KB)
📄
PPCInstPrinter.h
(3.83 KB)
📄
PPCMCAsmInfo.cpp
(1.95 KB)
📄
PPCMCAsmInfo.h
(1.08 KB)
📄
PPCMCCodeEmitter.cpp
(18.43 KB)
📄
PPCMCCodeEmitter.h
(5.77 KB)
📄
PPCMCExpr.cpp
(4.31 KB)
📄
PPCMCExpr.h
(2.47 KB)
📄
PPCMCTargetDesc.cpp
(11.95 KB)
📄
PPCMCTargetDesc.h
(7.14 KB)
📄
PPCPredicates.cpp
(3.47 KB)
📄
PPCPredicates.h
(3.08 KB)
📄
PPCXCOFFObjectWriter.cpp
(2.89 KB)
Editing: PPCMCAsmInfo.h
//===-- PPCMCAsmInfo.h - PPC 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 declarations of the PowerPC MCAsmInfo classes. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H #define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H #include "llvm/MC/MCAsmInfoDarwin.h" #include "llvm/MC/MCAsmInfoELF.h" #include "llvm/MC/MCAsmInfoXCOFF.h" namespace llvm { class Triple; class PPCELFMCAsmInfo : public MCAsmInfoELF { void anchor() override; public: explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &); }; class PPCXCOFFMCAsmInfo : public MCAsmInfoXCOFF { void anchor() override; public: explicit PPCXCOFFMCAsmInfo(bool is64Bit, const Triple &); }; } // namespace llvm #endif
Upload File
Create Folder