2006-02-05 05:50:24 +00:00
|
|
|
//===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===//
|
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
|
|
|
//
|
2004-02-25 19:28:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
#include "SparcTargetMachine.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "Sparc.h"
|
2012-02-03 05:12:41 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2004-02-28 19:52:49 +00:00
|
|
|
using namespace llvm;
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2009-07-25 06:49:55 +00:00
|
|
|
extern "C" void LLVMInitializeSparcTarget() {
|
|
|
|
// Register the target.
|
2010-02-04 06:34:01 +00:00
|
|
|
RegisterTargetMachine<SparcV8TargetMachine> X(TheSparcTarget);
|
|
|
|
RegisterTargetMachine<SparcV9TargetMachine> Y(TheSparcV9Target);
|
2006-09-07 23:39:26 +00:00
|
|
|
}
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
/// SparcTargetMachine ctor - Create an ILP32 architecture model
|
2004-02-25 19:28:19 +00:00
|
|
|
///
|
2012-02-03 05:12:41 +00:00
|
|
|
SparcTargetMachine::SparcTargetMachine(const Target &T, StringRef TT,
|
2011-07-19 06:37:02 +00:00
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-07-20 07:51:56 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeGenOpt::Level OL,
|
2011-07-20 07:51:56 +00:00
|
|
|
bool is64bit)
|
2011-12-02 22:16:29 +00:00
|
|
|
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
2014-06-26 22:33:55 +00:00
|
|
|
Subtarget(TT, CPU, FS, *this, is64bit) {
|
2013-05-13 01:16:13 +00:00
|
|
|
initAsmInfo();
|
2004-10-09 05:57:01 +00:00
|
|
|
}
|
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
namespace {
|
|
|
|
/// Sparc Code Generator Pass Configuration Options.
|
|
|
|
class SparcPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2012-02-04 02:56:59 +00:00
|
|
|
SparcPassConfig(SparcTargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: TargetPassConfig(TM, PM) {}
|
2012-02-03 05:12:41 +00:00
|
|
|
|
|
|
|
SparcTargetMachine &getSparcTargetMachine() const {
|
|
|
|
return getTM<SparcTargetMachine>();
|
|
|
|
}
|
|
|
|
|
2014-04-29 07:57:13 +00:00
|
|
|
bool addInstSelector() override;
|
|
|
|
bool addPreEmitPass() override;
|
2012-02-03 05:12:41 +00:00
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2012-02-04 02:56:59 +00:00
|
|
|
TargetPassConfig *SparcTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new SparcPassConfig(this, PM);
|
2012-02-03 05:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SparcPassConfig::addInstSelector() {
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createSparcISelDag(getSparcTargetMachine()));
|
2006-09-04 04:14:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-02-29 00:27:00 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
/// addPreEmitPass - This pass may be implemented by targets that want to run
|
|
|
|
/// passes immediately before machine code is emitted. This should return
|
|
|
|
/// true if -print-machineinstrs should print out the code after the passes.
|
2012-02-03 05:12:41 +00:00
|
|
|
bool SparcPassConfig::addPreEmitPass(){
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createSparcDelaySlotFillerPass(getSparcTargetMachine()));
|
2006-09-04 04:14:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
2010-02-04 06:34:01 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void SparcV8TargetMachine::anchor() { }
|
|
|
|
|
2010-02-04 06:34:01 +00:00
|
|
|
SparcV8TargetMachine::SparcV8TargetMachine(const Target &T,
|
2011-07-20 07:51:56 +00:00
|
|
|
StringRef TT, StringRef CPU,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef FS,
|
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-02 22:16:29 +00:00
|
|
|
: SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
|
2010-02-04 06:34:01 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void SparcV9TargetMachine::anchor() { }
|
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
SparcV9TargetMachine::SparcV9TargetMachine(const Target &T,
|
2011-07-20 07:51:56 +00:00
|
|
|
StringRef TT, StringRef CPU,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef FS,
|
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-02 22:16:29 +00:00
|
|
|
: SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {
|
2010-02-04 06:34:01 +00:00
|
|
|
}
|