//===-- PPCMCTargetDesc.h - PowerPC Target Descriptions ---------*- 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 provides PowerPC specific target descriptions. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H #define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H // GCC #defines PPC on Linux but we use it as our namespace name #undef PPC #include "llvm/MC/MCRegisterInfo.h" #include "llvm/Support/MathExtras.h" #include <cstdint> #include <memory> namespace llvm { class MCAsmBackend; class MCCodeEmitter; class MCContext; class MCInstrDesc; class MCInstrInfo; class MCObjectTargetWriter; class MCRegisterInfo; class MCSubtargetInfo; class MCTargetOptions; class Target; namespace PPC { /// stripRegisterPrefix - This method strips the character prefix from a /// register name so that only the number is left. Used by for linux asm. const char *stripRegisterPrefix(const char *RegName); /// getRegNumForOperand - some operands use different numbering schemes /// for the same registers. For example, a VSX instruction may have any of /// vs0-vs63 allocated whereas an Altivec instruction could only have /// vs32-vs63 allocated (numbered as v0-v31). This function returns the actual /// register number needed for the opcode/operand number combination. /// The operand number argument will be useful when we need to extend this /// to instructions that use both Altivec and VSX numbering (for different /// operands). unsigned getRegNumForOperand(const MCInstrDesc &Desc, unsigned Reg, unsigned OpNo); } // namespace PPC MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx); MCAsmBackend *createPPCAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options); /// Construct an PPC ELF object writer. std::unique_ptr<MCObjectTargetWriter> createPPCELFObjectWriter(bool Is64Bit, uint8_t OSABI); /// Construct a PPC Mach-O object writer. std::unique_ptr<MCObjectTargetWriter> createPPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype); /// Construct a PPC XCOFF object writer. std::unique_ptr<MCObjectTargetWriter> createPPCXCOFFObjectWriter(bool Is64Bit); /// Returns true iff Val consists of one contiguous run of 1s with any number of /// 0s on either side. The 1s are allowed to wrap from LSB to MSB, so /// 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is not, /// since all 1s are not contiguous. static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { … } static inline bool isRunOfOnes64(uint64_t Val, unsigned &MB, unsigned &ME) { … } /// PPCII - This namespace holds all of the PowerPC target-specific /// per-instruction flags. These must match the corresponding definitions in /// PPC.td and PPCInstrFormats.td. namespace PPCII { enum { … }; enum PPC970_Unit { … }; enum { … }; } // end namespace PPCII } // end namespace llvm // Defines symbolic names for PowerPC registers. This defines a mapping from // register name to register number. // #define GET_REGINFO_ENUM #include "PPCGenRegisterInfo.inc" // Defines symbolic names for the PowerPC instructions. // #define GET_INSTRINFO_ENUM #define GET_INSTRINFO_SCHED_ENUM #define GET_INSTRINFO_MC_HELPER_DECLS #include "PPCGenInstrInfo.inc" #define GET_SUBTARGETINFO_ENUM #include "PPCGenSubtargetInfo.inc" #define PPC_REGS0_7(X) … #define PPC_REGS0_31(X) … #define PPC_REGS_EVEN0_30(X) … #define PPC_REGS0_63(X) … #define PPC_REGS_NO0_31(Z, X) … #define PPC_REGS_LO_HI(LO, HI) … #define PPC_REGS0_7(X) … #define PPC_REGS0_3(X) … MCPhysReg; #define DEFINE_PPC_REGCLASSES … namespace llvm { namespace PPC { static inline bool isVFRegister(unsigned Reg) { … } static inline bool isVRRegister(unsigned Reg) { … } } // namespace PPC } // namespace llvm #endif // LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H