2008-11-07 18:59:00 +08:00
|
|
|
//===-- XCoreTargetMachine.h - Define TargetMachine for XCore ---*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2008-11-07 18:59:00 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the XCore specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_XCORE_XCORETARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_XCORE_XCORETARGETMACHINE_H
|
2008-11-07 18:59:00 +08:00
|
|
|
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "XCoreSubtarget.h"
|
2017-01-25 07:02:48 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2017-01-25 07:02:48 +08:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2017-01-25 07:02:48 +08:00
|
|
|
#include <memory>
|
2008-11-07 18:59:00 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-10-13 06:57:28 +08:00
|
|
|
class XCoreTargetMachine : public LLVMTargetMachine {
|
2014-11-13 17:26:31 +08:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2008-11-07 18:59:00 +08:00
|
|
|
XCoreSubtarget Subtarget;
|
2017-01-25 07:02:48 +08:00
|
|
|
|
2008-11-07 18:59:00 +08:00
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
XCoreTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
|
|
|
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
|
|
|
~XCoreTargetMachine() override;
|
2008-11-07 18:59:00 +08:00
|
|
|
|
2015-03-21 12:22:23 +08:00
|
|
|
const XCoreSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
|
|
|
const XCoreSubtarget *getSubtargetImpl(const Function &) const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
2008-11-07 18:59:00 +08:00
|
|
|
|
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 15:57:00 +08:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2013-09-18 20:43:35 +08:00
|
|
|
|
(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;
|
2017-01-25 07:02:48 +08:00
|
|
|
|
2014-11-13 17:26:31 +08:00
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
|
|
|
return TLOF.get();
|
|
|
|
}
|
2008-11-07 18:59:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2017-01-25 07:02:48 +08:00
|
|
|
#endif // LLVM_LIB_TARGET_XCORE_XCORETARGETMACHINE_H
|