2017-02-01 09:22:51 +08:00
|
|
|
//===- MipsTargetMachine.h - Define TargetMachine for Mips ------*- C++ -*-===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
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
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// This file declares the Mips specific subclass of TargetMachine.
|
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2015-02-13 17:09:03 +08:00
|
|
|
#include "MCTargetDesc/MipsABIInfo.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "MipsSubtarget.h"
|
2017-02-01 09:22:51 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Support/CodeGen.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2017-02-01 09:22:51 +08:00
|
|
|
#include <memory>
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2010-11-15 08:06:54 +08:00
|
|
|
|
2017-10-13 06:57:28 +08:00
|
|
|
class MipsTargetMachine : public LLVMTargetMachine {
|
2014-09-26 09:44:08 +08:00
|
|
|
bool isLittle;
|
2014-11-13 17:26:31 +08:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2015-01-27 01:33:46 +08:00
|
|
|
// Selected ABI
|
|
|
|
MipsABIInfo ABI;
|
2019-04-24 14:48:31 +08:00
|
|
|
const MipsSubtarget *Subtarget;
|
2014-07-19 07:41:32 +08:00
|
|
|
MipsSubtarget DefaultSubtarget;
|
|
|
|
MipsSubtarget NoMips16Subtarget;
|
|
|
|
MipsSubtarget Mips16Subtarget;
|
2011-07-22 00:28:51 +08:00
|
|
|
|
2014-09-26 09:44:08 +08:00
|
|
|
mutable StringMap<std::unique_ptr<MipsSubtarget>> SubtargetMap;
|
|
|
|
|
2012-08-01 05:39:17 +08:00
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2016-05-19 06:04:49 +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, bool isLittle);
|
2014-11-21 07:37:18 +08:00
|
|
|
~MipsTargetMachine() override;
|
2012-08-01 05:39:17 +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;
|
2013-04-10 03:46:01 +08:00
|
|
|
|
2015-03-21 12:22:23 +08:00
|
|
|
const MipsSubtarget *getSubtargetImpl() const {
|
2014-07-19 07:41:32 +08:00
|
|
|
if (Subtarget)
|
|
|
|
return Subtarget;
|
|
|
|
return &DefaultSubtarget;
|
|
|
|
}
|
2014-08-05 05:25:23 +08:00
|
|
|
|
2014-09-26 09:44:08 +08:00
|
|
|
const MipsSubtarget *getSubtargetImpl(const Function &F) const override;
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Reset the subtarget for the Mips target.
|
2014-07-19 07:41:32 +08:00
|
|
|
void resetSubtarget(MachineFunction *MF);
|
2012-08-01 05:39:17 +08:00
|
|
|
|
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 15:58:02 +08:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2014-11-13 17:26:31 +08:00
|
|
|
|
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
|
|
|
return TLOF.get();
|
|
|
|
}
|
2015-01-06 09:12:30 +08:00
|
|
|
|
2016-05-28 06:50:12 +08:00
|
|
|
/// Returns true if a cast between SrcAS and DestAS is a noop.
|
|
|
|
bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
|
|
|
|
// Mips doesn't have any special address spaces so we just reserve
|
|
|
|
// the first 256 for software use (e.g. OpenCL) and treat casts
|
|
|
|
// between them as noops.
|
|
|
|
return SrcAS < 256 && DestAS < 256;
|
|
|
|
}
|
|
|
|
|
2015-01-06 09:12:30 +08:00
|
|
|
bool isLittleEndian() const { return isLittle; }
|
2015-01-27 01:33:46 +08:00
|
|
|
const MipsABIInfo &getABI() const { return ABI; }
|
2012-08-01 05:39:17 +08:00
|
|
|
};
|
2008-06-04 09:45:25 +08:00
|
|
|
|
2016-05-19 00:00:24 +08:00
|
|
|
/// Mips32/64 big endian target machine.
|
2011-09-21 11:00:58 +08:00
|
|
|
///
|
|
|
|
class MipsebTargetMachine : public MipsTargetMachine {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
2017-02-01 09:22:51 +08:00
|
|
|
|
2011-09-21 11:00:58 +08:00
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
MipsebTargetMachine(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);
|
2011-09-21 11:00:58 +08:00
|
|
|
};
|
|
|
|
|
2016-05-19 00:00:24 +08:00
|
|
|
/// Mips32/64 little endian target machine.
|
2008-06-04 09:45:25 +08:00
|
|
|
///
|
|
|
|
class MipselTargetMachine : public MipsTargetMachine {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
2017-02-01 09:22:51 +08:00
|
|
|
|
2008-06-04 09:45:25 +08:00
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
MipselTargetMachine(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);
|
2008-06-04 09:45:25 +08:00
|
|
|
};
|
|
|
|
|
2017-02-01 09:22:51 +08:00
|
|
|
} // end namespace llvm
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2017-02-01 09:22:51 +08:00
|
|
|
#endif // LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
|