1//===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9// 10// 11//===----------------------------------------------------------------------===// 12 13#include "SparcTargetMachine.h" 14#include "Sparc.h" 15#include "llvm/PassManager.h" 16#include "llvm/CodeGen/Passes.h" 17#include "llvm/Support/TargetRegistry.h" 18using namespace llvm; 19 20extern "C" void LLVMInitializeSparcTarget() { 21 // Register the target. 22 RegisterTargetMachine<SparcV8TargetMachine> X(TheSparcTarget); 23 RegisterTargetMachine<SparcV9TargetMachine> Y(TheSparcV9Target); 24} 25 26/// SparcTargetMachine ctor - Create an ILP32 architecture model 27/// 28SparcTargetMachine::SparcTargetMachine(const Target &T, StringRef TT, 29 StringRef CPU, StringRef FS, 30 const TargetOptions &Options, 31 Reloc::Model RM, CodeModel::Model CM, 32 CodeGenOpt::Level OL, 33 bool is64bit) 34 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), 35 Subtarget(TT, CPU, FS, is64bit), 36 DataLayout(Subtarget.getDataLayout()), 37 InstrInfo(Subtarget), 38 TLInfo(*this), TSInfo(*this), 39 FrameLowering(Subtarget) { 40} 41 42namespace { 43/// Sparc Code Generator Pass Configuration Options. 44class SparcPassConfig : public TargetPassConfig { 45public: 46 SparcPassConfig(SparcTargetMachine *TM, PassManagerBase &PM) 47 : TargetPassConfig(TM, PM) {} 48 49 SparcTargetMachine &getSparcTargetMachine() const { 50 return getTM<SparcTargetMachine>(); 51 } 52 53 virtual bool addInstSelector(); 54 virtual bool addPreEmitPass(); 55}; 56} // namespace 57 58TargetPassConfig *SparcTargetMachine::createPassConfig(PassManagerBase &PM) { 59 return new SparcPassConfig(this, PM); 60} 61 62bool SparcPassConfig::addInstSelector() { 63 addPass(createSparcISelDag(getSparcTargetMachine())); 64 return false; 65} 66 67/// addPreEmitPass - This pass may be implemented by targets that want to run 68/// passes immediately before machine code is emitted. This should return 69/// true if -print-machineinstrs should print out the code after the passes. 70bool SparcPassConfig::addPreEmitPass(){ 71 addPass(createSparcFPMoverPass(getSparcTargetMachine())); 72 addPass(createSparcDelaySlotFillerPass(getSparcTargetMachine())); 73 return true; 74} 75 76void SparcV8TargetMachine::anchor() { } 77 78SparcV8TargetMachine::SparcV8TargetMachine(const Target &T, 79 StringRef TT, StringRef CPU, 80 StringRef FS, 81 const TargetOptions &Options, 82 Reloc::Model RM, 83 CodeModel::Model CM, 84 CodeGenOpt::Level OL) 85 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) { 86} 87 88void SparcV9TargetMachine::anchor() { } 89 90SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, 91 StringRef TT, StringRef CPU, 92 StringRef FS, 93 const TargetOptions &Options, 94 Reloc::Model RM, 95 CodeModel::Model CM, 96 CodeGenOpt::Level OL) 97 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) { 98} 99