2012-02-18 20:03:15 +08:00
|
|
|
//===-- PPCTargetMachine.h - Define TargetMachine for PowerPC ---*- C++ -*-===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-11 08:09:42 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-11 08:09:42 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-17 12:55:41 +08:00
|
|
|
// This file declares the PowerPC specific subclass of TargetMachine.
|
2004-08-11 08:09:42 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_POWERPC_PPCTARGETMACHINE_H
|
2004-08-11 08:09:42 +08:00
|
|
|
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "PPCInstrInfo.h"
|
|
|
|
#include "PPCSubtarget.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2005-10-15 07:44:05 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-08-11 08:09:42 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-06-16 09:37:27 +08:00
|
|
|
/// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets.
|
|
|
|
///
|
2006-09-04 12:14:57 +08:00
|
|
|
class PPCTargetMachine : public LLVMTargetMachine {
|
2006-06-16 09:37:27 +08:00
|
|
|
PPCSubtarget Subtarget;
|
2007-01-24 11:41:36 +08:00
|
|
|
|
2005-10-15 07:44:05 +08:00
|
|
|
public:
|
2011-07-19 14:37:02 +08:00
|
|
|
PPCTargetMachine(const Target &T, StringRef TT,
|
2011-12-03 06:16:29 +08:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
2014-08-09 12:38:56 +08:00
|
|
|
CodeGenOpt::Level OL);
|
2005-10-16 13:39:50 +08:00
|
|
|
|
2014-08-05 05:25:23 +08:00
|
|
|
const PPCSubtarget *getSubtargetImpl() const override { return &Subtarget; }
|
2008-08-17 21:54:28 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 15:57:37 +08:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2014-08-08 06:02:54 +08:00
|
|
|
bool addCodeEmitter(PassManagerBase &PM,
|
|
|
|
JITCodeEmitter &JCE) override;
|
2013-01-26 07:05:59 +08:00
|
|
|
|
|
|
|
/// \brief Register PPC analysis passes with a pass manager.
|
2014-04-29 15:57:37 +08:00
|
|
|
void addAnalysisPasses(PassManagerBase &PM) override;
|
2004-08-11 08:09:42 +08:00
|
|
|
};
|
2006-06-16 09:37:27 +08:00
|
|
|
|
|
|
|
/// PPC32TargetMachine - PowerPC 32-bit target machine.
|
|
|
|
///
|
|
|
|
class PPC32TargetMachine : public PPCTargetMachine {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
2006-06-16 09:37:27 +08:00
|
|
|
public:
|
2011-07-19 14:37:02 +08:00
|
|
|
PPC32TargetMachine(const Target &T, StringRef TT,
|
2011-12-03 06:16:29 +08:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2006-06-16 09:37:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/// PPC64TargetMachine - PowerPC 64-bit target machine.
|
|
|
|
///
|
|
|
|
class PPC64TargetMachine : public PPCTargetMachine {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
2006-06-16 09:37:27 +08:00
|
|
|
public:
|
2011-07-19 14:37:02 +08:00
|
|
|
PPC64TargetMachine(const Target &T, StringRef TT,
|
2011-12-03 06:16:29 +08:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2006-06-16 09:37:27 +08:00
|
|
|
};
|
|
|
|
|
2004-08-11 08:09:42 +08:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|