2006-02-05 05:50:24 +00:00
|
|
|
//===-- SparcTargetMachine.h - Define TargetMachine for Sparc ---*- C++ -*-===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-02-25 19:28:19 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2006-02-05 05:50:24 +00:00
|
|
|
// This file declares the Sparc specific subclass of TargetMachine.
|
2004-02-25 19:28:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_SPARC_SPARCTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_SPARC_SPARCTARGETMACHINE_H
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "SparcInstrInfo.h"
|
2010-11-15 00:06:54 +00:00
|
|
|
#include "SparcSubtarget.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-02-25 19:28:19 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
class SparcTargetMachine : public LLVMTargetMachine {
|
2014-11-13 09:26:31 +00:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2006-02-05 05:50:24 +00:00
|
|
|
SparcSubtarget Subtarget;
|
2004-02-25 19:28:19 +00:00
|
|
|
public:
|
2015-06-11 19:41:26 +00:00
|
|
|
SparcTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
|
|
|
StringRef FS, const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL,
|
|
|
|
bool is64bit);
|
2014-11-20 23:37:18 +00:00
|
|
|
~SparcTargetMachine() override;
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2015-03-21 04:22:23 +00:00
|
|
|
const SparcSubtarget *getSubtargetImpl(const Function &) const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
2014-08-05 22:10:21 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 07:57:13 +00:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2014-11-13 09:26:31 +00:00
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
|
|
|
return TLOF.get();
|
|
|
|
}
|
2004-02-25 19:28:19 +00:00
|
|
|
};
|
|
|
|
|
2010-02-04 06:34:01 +00:00
|
|
|
/// SparcV8TargetMachine - Sparc 32-bit target machine
|
|
|
|
///
|
|
|
|
class SparcV8TargetMachine : public SparcTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2010-02-04 06:34:01 +00:00
|
|
|
public:
|
2015-06-11 19:41:26 +00:00
|
|
|
SparcV8TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
|
|
|
StringRef FS, const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2010-02-04 06:34:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// SparcV9TargetMachine - Sparc 64-bit target machine
|
|
|
|
///
|
|
|
|
class SparcV9TargetMachine : public SparcTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2010-02-04 06:34:01 +00:00
|
|
|
public:
|
2015-06-11 19:41:26 +00:00
|
|
|
SparcV9TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2015-04-29 20:30:57 +00:00
|
|
|
StringRef FS, const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
|
|
|
};
|
|
|
|
|
|
|
|
class SparcelTargetMachine : public SparcTargetMachine {
|
|
|
|
virtual void anchor();
|
|
|
|
|
|
|
|
public:
|
2015-06-11 19:41:26 +00:00
|
|
|
SparcelTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2015-04-29 20:30:57 +00:00
|
|
|
StringRef FS, const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2010-02-04 06:34:01 +00:00
|
|
|
};
|
|
|
|
|
2004-02-25 19:28:19 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|