2009-06-02 17:52:33 +00:00
|
|
|
//===-- SparcTargetMachine.h - Define TargetMachine for Sparc ---*- 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 Sparc specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARCTARGETMACHINE_H
|
|
|
|
#define SPARCTARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "SparcInstrInfo.h"
|
|
|
|
#include "SparcISelLowering.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "SparcFrameLowering.h"
|
2010-05-27 15:15:58 +00:00
|
|
|
#include "SparcSelectionDAGInfo.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "SparcSubtarget.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2012-12-02 13:10:19 +00:00
|
|
|
#include "llvm/DataLayout.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2012-12-02 13:10:19 +00:00
|
|
|
#include "llvm/Target/TargetTransformImpl.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class SparcTargetMachine : public LLVMTargetMachine {
|
|
|
|
SparcSubtarget Subtarget;
|
2012-12-02 13:10:19 +00:00
|
|
|
const DataLayout DL; // Calculates type size & alignment
|
2012-08-15 19:34:23 +00:00
|
|
|
SparcInstrInfo InstrInfo;
|
2009-06-02 17:52:33 +00:00
|
|
|
SparcTargetLowering TLInfo;
|
2010-05-27 15:15:58 +00:00
|
|
|
SparcSelectionDAGInfo TSInfo;
|
2011-02-20 12:57:14 +00:00
|
|
|
SparcFrameLowering FrameLowering;
|
2012-12-02 13:10:19 +00:00
|
|
|
ScalarTargetTransformImpl STTI;
|
|
|
|
VectorTargetTransformImpl VTTI;
|
2009-06-02 17:52:33 +00:00
|
|
|
public:
|
2011-10-20 21:10:27 +00:00
|
|
|
SparcTargetMachine(const Target &T, StringRef TT,
|
2012-04-14 13:54:10 +00:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL, bool is64bit);
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
2011-02-20 12:57:14 +00:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
virtual const SparcSubtarget *getSubtargetImpl() const{ return &Subtarget; }
|
|
|
|
virtual const SparcRegisterInfo *getRegisterInfo() const {
|
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2010-05-04 16:11:02 +00:00
|
|
|
virtual const SparcTargetLowering* getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2010-05-27 15:15:58 +00:00
|
|
|
virtual const SparcSelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
2012-12-02 13:10:19 +00:00
|
|
|
virtual const ScalarTargetTransformInfo *getScalarTargetTransformInfo()const {
|
|
|
|
return &STTI;
|
|
|
|
}
|
|
|
|
virtual const VectorTargetTransformInfo *getVectorTargetTransformInfo()const {
|
|
|
|
return &VTTI;
|
|
|
|
}
|
|
|
|
virtual const DataLayout *getDataLayout() const { return &DL; }
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
// Pass Pipeline Configuration
|
2012-04-14 13:54:10 +00:00
|
|
|
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
2009-06-02 17:52:33 +00:00
|
|
|
};
|
|
|
|
|
2010-02-16 09:30:23 +00:00
|
|
|
/// SparcV8TargetMachine - Sparc 32-bit target machine
|
|
|
|
///
|
|
|
|
class SparcV8TargetMachine : public SparcTargetMachine {
|
2012-04-14 13:54:10 +00:00
|
|
|
virtual void anchor();
|
2010-02-16 09:30:23 +00:00
|
|
|
public:
|
2011-10-20 21:10:27 +00:00
|
|
|
SparcV8TargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2012-04-14 13:54:10 +00:00
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2010-02-16 09:30:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// SparcV9TargetMachine - Sparc 64-bit target machine
|
|
|
|
///
|
|
|
|
class SparcV9TargetMachine : public SparcTargetMachine {
|
2012-04-14 13:54:10 +00:00
|
|
|
virtual void anchor();
|
2010-02-16 09:30:23 +00:00
|
|
|
public:
|
2011-10-20 21:10:27 +00:00
|
|
|
SparcV9TargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2012-04-14 13:54:10 +00:00
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2010-02-16 09:30:23 +00:00
|
|
|
};
|
|
|
|
|
2009-06-02 17:52:33 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|