2011-12-13 05:14:40 +08:00
|
|
|
//=-- HexagonTargetMachine.h - Define TargetMachine for Hexagon ---*- 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 Hexagon specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONTARGETMACHINE_H
|
2011-12-13 05:14:40 +08:00
|
|
|
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "HexagonInstrInfo.h"
|
|
|
|
#include "HexagonSubtarget.h"
|
2015-12-19 04:19:30 +08:00
|
|
|
#include "HexagonTargetObjectFile.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2011-12-13 05:14:40 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Module;
|
|
|
|
|
2017-10-13 06:57:28 +08:00
|
|
|
class HexagonTargetMachine : public LLVMTargetMachine {
|
2014-11-13 17:26:31 +08:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2015-08-06 02:35:37 +08:00
|
|
|
mutable StringMap<std::unique_ptr<HexagonSubtarget>> SubtargetMap;
|
2011-12-13 05:14:40 +08:00
|
|
|
|
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
HexagonTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2012-03-17 17:24:09 +08:00
|
|
|
StringRef FS, const TargetOptions &Options,
|
2017-08-03 10:16:21 +08:00
|
|
|
Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
|
|
|
|
CodeGenOpt::Level OL, bool JIT);
|
2014-11-21 07:37:18 +08:00
|
|
|
~HexagonTargetMachine() override;
|
2015-08-06 02:35:37 +08:00
|
|
|
const HexagonSubtarget *getSubtargetImpl(const Function &F) const override;
|
|
|
|
|
2011-12-13 05:14:40 +08:00
|
|
|
static unsigned getModuleMatchQuality(const Module &M);
|
|
|
|
|
2017-01-27 05:41:10 +08:00
|
|
|
void adjustPassManager(PassManagerBuilder &PMB) override;
|
2014-04-29 15:58:16 +08:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
(Re-landing) Expose a TargetMachine::getTargetTransformInfo function
Re-land r321234. It had to be reverted because it broke the shared
library build. The shared library build broke because there was a
missing LLVMBuild dependency from lib/Passes (which calls
TargetMachine::getTargetIRAnalysis) to lib/Target. As far as I can
tell, this problem was always there but was somehow masked
before (perhaps because TargetMachine::getTargetIRAnalysis was a
virtual function).
Original commit message:
This makes the TargetMachine interface a bit simpler. We still need
the std::function in TargetIRAnalysis to avoid having to add a
dependency from Analysis to Target.
See discussion:
http://lists.llvm.org/pipermail/llvm-dev/2017-December/119749.html
I avoided adding all of the backend owners to this review since the
change is simple, but let me know if you feel differently about this.
Reviewers: echristo, MatzeB, hfinkel
Reviewed By: hfinkel
Subscribers: jholewinski, jfb, arsenm, dschuff, mcrosier, sdardis, nemanjai, nhaehnle, javed.absar, sbc100, jgravelle-google, aheejin, kbarton, llvm-commits
Differential Revision: https://reviews.llvm.org/D41464
llvm-svn: 321375
2017-12-23 02:21:59 +08:00
|
|
|
TargetTransformInfo getTargetTransformInfo(const Function &F) override;
|
2014-11-13 17:26:31 +08:00
|
|
|
|
2015-12-19 04:19:30 +08:00
|
|
|
HexagonTargetObjectFile *getObjFileLowering() const override {
|
|
|
|
return static_cast<HexagonTargetObjectFile*>(TLOF.get());
|
2014-11-13 17:26:31 +08:00
|
|
|
}
|
2011-12-13 05:14:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|