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;
|
2015-08-06 02:35:37 +08:00
|
|
|
TargetIRAnalysis getTargetIRAnalysis() 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
|