You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.3 KiB
118 lines
4.3 KiB
//===-- ARMMCTargetDesc.h - ARM Target Descriptions -------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file provides ARM specific target descriptions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCTARGETDESC_H
|
|
#define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCTARGETDESC_H
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/Support/DataTypes.h"
|
|
#include <string>
|
|
|
|
namespace llvm_ks {
|
|
class formatted_raw_ostream;
|
|
class MCAsmBackend;
|
|
class MCCodeEmitter;
|
|
class MCContext;
|
|
class MCInstrInfo;
|
|
class MCObjectWriter;
|
|
class MCRegisterInfo;
|
|
class MCSubtargetInfo;
|
|
class MCStreamer;
|
|
class MCRelocationInfo;
|
|
class MCTargetStreamer;
|
|
class StringRef;
|
|
class Target;
|
|
class Triple;
|
|
class raw_ostream;
|
|
class raw_pwrite_stream;
|
|
|
|
extern Target TheARMLETarget, TheThumbLETarget;
|
|
extern Target TheARMBETarget, TheThumbBETarget;
|
|
|
|
namespace ARM_MC {
|
|
std::string ParseARMTriple(const Triple &TT, StringRef CPU);
|
|
|
|
/// Create a ARM MCSubtargetInfo instance. This is exposed so Asm parser, etc.
|
|
/// do not need to go through TargetRegistry.
|
|
MCSubtargetInfo *createARMMCSubtargetInfo(const Triple &TT, StringRef CPU,
|
|
StringRef FS);
|
|
}
|
|
|
|
MCTargetStreamer *createARMNullTargetStreamer(MCStreamer &S);
|
|
MCTargetStreamer *createARMTargetAsmStreamer(MCStreamer &S,
|
|
formatted_raw_ostream &OS,
|
|
bool isVerboseAsm);
|
|
MCTargetStreamer *createARMObjectTargetStreamer(MCStreamer &S,
|
|
const MCSubtargetInfo &STI);
|
|
|
|
MCCodeEmitter *createARMLEMCCodeEmitter(const MCInstrInfo &MCII,
|
|
const MCRegisterInfo &MRI,
|
|
MCContext &Ctx);
|
|
|
|
MCCodeEmitter *createARMBEMCCodeEmitter(const MCInstrInfo &MCII,
|
|
const MCRegisterInfo &MRI,
|
|
MCContext &Ctx);
|
|
|
|
MCAsmBackend *createARMAsmBackend(const Target &T, const MCRegisterInfo &MRI,
|
|
const Triple &TT, StringRef CPU,
|
|
bool IsLittleEndian);
|
|
|
|
MCAsmBackend *createARMLEAsmBackend(const Target &T, const MCRegisterInfo &MRI,
|
|
const Triple &TT, StringRef CPU);
|
|
|
|
MCAsmBackend *createARMBEAsmBackend(const Target &T, const MCRegisterInfo &MRI,
|
|
const Triple &TT, StringRef CPU);
|
|
|
|
MCAsmBackend *createThumbLEAsmBackend(const Target &T,
|
|
const MCRegisterInfo &MRI,
|
|
const Triple &TT, StringRef CPU);
|
|
|
|
MCAsmBackend *createThumbBEAsmBackend(const Target &T,
|
|
const MCRegisterInfo &MRI,
|
|
const Triple &TT, StringRef CPU);
|
|
|
|
// Construct a PE/COFF machine code streamer which will generate a PE/COFF
|
|
// object file.
|
|
MCStreamer *createARMWinCOFFStreamer(MCContext &Context, MCAsmBackend &MAB,
|
|
raw_pwrite_stream &OS,
|
|
MCCodeEmitter *Emitter, bool RelaxAll,
|
|
bool IncrementalLinkerCompatible);
|
|
|
|
/// Construct an ELF Mach-O object writer.
|
|
MCObjectWriter *createARMELFObjectWriter(raw_pwrite_stream &OS, uint8_t OSABI,
|
|
bool IsLittleEndian);
|
|
|
|
/// Construct an ARM PE/COFF object writer.
|
|
MCObjectWriter *createARMWinCOFFObjectWriter(raw_pwrite_stream &OS,
|
|
bool Is64Bit);
|
|
|
|
/// Construct ARM Mach-O relocation info.
|
|
MCRelocationInfo *createARMMachORelocationInfo(MCContext &Ctx);
|
|
} // End llvm namespace
|
|
|
|
// Defines symbolic names for ARM registers. This defines a mapping from
|
|
// register name to register number.
|
|
//
|
|
#define GET_REGINFO_ENUM
|
|
#include "ARMGenRegisterInfo.inc"
|
|
|
|
// Defines symbolic names for the ARM instructions.
|
|
//
|
|
#define GET_INSTRINFO_ENUM
|
|
#include "ARMGenInstrInfo.inc"
|
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
#include "ARMGenSubtargetInfo.inc"
|
|
|
|
#endif
|