mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-31 17:04:28 +00:00
51b198af83
--- Reverse-merging r75799 into '.': U test/Analysis/PointerTracking U include/llvm/Target/TargetMachineRegistry.h U include/llvm/Target/TargetMachine.h U include/llvm/Target/TargetRegistry.h U include/llvm/Target/TargetSelect.h U tools/lto/LTOCodeGenerator.cpp U tools/lto/LTOModule.cpp U tools/llc/llc.cpp U lib/Target/PowerPC/PPCTargetMachine.h U lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp U lib/Target/PowerPC/PPCTargetMachine.cpp U lib/Target/PowerPC/PPC.h U lib/Target/ARM/ARMTargetMachine.cpp U lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp U lib/Target/ARM/ARMTargetMachine.h U lib/Target/ARM/ARM.h U lib/Target/XCore/XCoreTargetMachine.cpp U lib/Target/XCore/XCoreTargetMachine.h U lib/Target/PIC16/PIC16TargetMachine.cpp U lib/Target/PIC16/PIC16TargetMachine.h U lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp U lib/Target/Alpha/AlphaTargetMachine.cpp U lib/Target/Alpha/AlphaTargetMachine.h U lib/Target/X86/X86TargetMachine.h U lib/Target/X86/X86.h U lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.h U lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp U lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.h U lib/Target/X86/X86TargetMachine.cpp U lib/Target/MSP430/MSP430TargetMachine.cpp U lib/Target/MSP430/MSP430TargetMachine.h U lib/Target/CppBackend/CPPTargetMachine.h U lib/Target/CppBackend/CPPBackend.cpp U lib/Target/CBackend/CTargetMachine.h U lib/Target/CBackend/CBackend.cpp U lib/Target/TargetMachine.cpp U lib/Target/IA64/IA64TargetMachine.cpp U lib/Target/IA64/AsmPrinter/IA64AsmPrinter.cpp U lib/Target/IA64/IA64TargetMachine.h U lib/Target/IA64/IA64.h U lib/Target/MSIL/MSILWriter.cpp U lib/Target/CellSPU/SPUTargetMachine.h U lib/Target/CellSPU/SPU.h U lib/Target/CellSPU/AsmPrinter/SPUAsmPrinter.cpp U lib/Target/CellSPU/SPUTargetMachine.cpp U lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp U lib/Target/Mips/MipsTargetMachine.cpp U lib/Target/Mips/MipsTargetMachine.h U lib/Target/Mips/Mips.h U lib/Target/Sparc/AsmPrinter/SparcAsmPrinter.cpp U lib/Target/Sparc/SparcTargetMachine.cpp U lib/Target/Sparc/SparcTargetMachine.h U lib/ExecutionEngine/JIT/TargetSelect.cpp U lib/Support/TargetRegistry.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75820 91177308-0d34-0410-b5e6-96231b3b80d8
148 lines
5.5 KiB
C++
148 lines
5.5 KiB
C++
//===-- ARMTargetMachine.h - Define TargetMachine for ARM -------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the ARM specific subclass of TargetMachine.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ARMTARGETMACHINE_H
|
|
#define ARMTARGETMACHINE_H
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
#include "llvm/Target/TargetData.h"
|
|
#include "ARMInstrInfo.h"
|
|
#include "ARMFrameInfo.h"
|
|
#include "ARMJITInfo.h"
|
|
#include "ARMSubtarget.h"
|
|
#include "ARMISelLowering.h"
|
|
#include "Thumb1InstrInfo.h"
|
|
#include "Thumb2InstrInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
class Module;
|
|
|
|
class ARMBaseTargetMachine : public LLVMTargetMachine {
|
|
protected:
|
|
ARMSubtarget Subtarget;
|
|
|
|
private:
|
|
ARMFrameInfo FrameInfo;
|
|
ARMJITInfo JITInfo;
|
|
InstrItineraryData InstrItins;
|
|
Reloc::Model DefRelocModel; // Reloc model before it's overridden.
|
|
|
|
protected:
|
|
// To avoid having target depend on the asmprinter stuff libraries, asmprinter
|
|
// set this functions to ctor pointer at startup time if they are linked in.
|
|
typedef FunctionPass *(*AsmPrinterCtorFn)(formatted_raw_ostream &o,
|
|
TargetMachine &tm,
|
|
bool verbose);
|
|
static AsmPrinterCtorFn AsmPrinterCtor;
|
|
|
|
public:
|
|
ARMBaseTargetMachine(const Target &T, const Module &M, const std::string &FS,
|
|
bool isThumb);
|
|
|
|
virtual const ARMFrameInfo *getFrameInfo() const { return &FrameInfo; }
|
|
virtual ARMJITInfo *getJITInfo() { return &JITInfo; }
|
|
virtual const ARMSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
|
virtual const InstrItineraryData getInstrItineraryData() const {
|
|
return InstrItins;
|
|
}
|
|
|
|
static void registerAsmPrinter(AsmPrinterCtorFn F) {
|
|
AsmPrinterCtor = F;
|
|
}
|
|
|
|
virtual const TargetAsmInfo *createTargetAsmInfo() const;
|
|
|
|
// Pass Pipeline Configuration
|
|
virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
virtual bool addAssemblyEmitter(PassManagerBase &PM,
|
|
CodeGenOpt::Level OptLevel,
|
|
bool Verbose, formatted_raw_ostream &Out);
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm, MachineCodeEmitter &MCE);
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm, JITCodeEmitter &MCE);
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm, ObjectCodeEmitter &OCE);
|
|
virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
|
|
CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm,
|
|
MachineCodeEmitter &MCE);
|
|
virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
|
|
CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm,
|
|
JITCodeEmitter &MCE);
|
|
virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
|
|
CodeGenOpt::Level OptLevel,
|
|
bool DumpAsm,
|
|
ObjectCodeEmitter &OCE);
|
|
};
|
|
|
|
/// ARMTargetMachine - ARM target machine.
|
|
///
|
|
class ARMTargetMachine : public ARMBaseTargetMachine {
|
|
ARMInstrInfo InstrInfo;
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
ARMTargetLowering TLInfo;
|
|
public:
|
|
ARMTargetMachine(const Target &T, const Module &M, const std::string &FS);
|
|
|
|
virtual const ARMRegisterInfo *getRegisterInfo() const {
|
|
return &InstrInfo.getRegisterInfo();
|
|
}
|
|
|
|
virtual ARMTargetLowering *getTargetLowering() const {
|
|
return const_cast<ARMTargetLowering*>(&TLInfo);
|
|
}
|
|
|
|
virtual const ARMInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
|
|
|
static unsigned getJITMatchQuality();
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
};
|
|
|
|
/// ThumbTargetMachine - Thumb target machine.
|
|
/// Due to the way architectures are handled, this represents both
|
|
/// Thumb-1 and Thumb-2.
|
|
///
|
|
class ThumbTargetMachine : public ARMBaseTargetMachine {
|
|
ARMBaseInstrInfo *InstrInfo; // either Thumb1InstrInfo or Thumb2InstrInfo
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
ARMTargetLowering TLInfo;
|
|
public:
|
|
ThumbTargetMachine(const Target &T, const Module &M, const std::string &FS);
|
|
|
|
/// returns either Thumb1RegisterInfo of Thumb2RegisterInfo
|
|
virtual const ARMBaseRegisterInfo *getRegisterInfo() const {
|
|
return &InstrInfo->getRegisterInfo();
|
|
}
|
|
|
|
virtual ARMTargetLowering *getTargetLowering() const {
|
|
return const_cast<ARMTargetLowering*>(&TLInfo);
|
|
}
|
|
|
|
/// returns either Thumb1InstrInfo or Thumb2InstrInfo
|
|
virtual const ARMBaseInstrInfo *getInstrInfo() const { return InstrInfo; }
|
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
|
|
|
static unsigned getJITMatchQuality();
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|