2012-02-18 12:03:15 +00:00
|
|
|
//===-- XCoreSubtarget.h - Define Subtarget for the XCore -------*- C++ -*-===//
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file declares the XCore specific subclass of TargetSubtargetInfo.
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_XCORE_XCORESUBTARGET_H
|
|
|
|
#define LLVM_LIB_TARGET_XCORE_XCORESUBTARGET_H
|
2008-11-07 10:59:00 +00:00
|
|
|
|
2014-07-02 00:10:09 +00:00
|
|
|
#include "XCoreFrameLowering.h"
|
|
|
|
#include "XCoreISelLowering.h"
|
|
|
|
#include "XCoreInstrInfo.h"
|
|
|
|
#include "XCoreSelectionDAGInfo.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
#include <string>
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "XCoreGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2008-11-07 10:59:00 +00:00
|
|
|
namespace llvm {
|
2011-07-07 07:07:08 +00:00
|
|
|
class StringRef;
|
2008-11-07 10:59:00 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
class XCoreSubtarget : public XCoreGenSubtargetInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2014-07-02 00:10:09 +00:00
|
|
|
XCoreInstrInfo InstrInfo;
|
|
|
|
XCoreFrameLowering FrameLowering;
|
|
|
|
XCoreTargetLowering TLInfo;
|
|
|
|
XCoreSelectionDAGInfo TSInfo;
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// This constructor initializes the data members to match that
|
2009-08-02 22:11:08 +00:00
|
|
|
/// of the specified triple.
|
2008-11-07 10:59:00 +00:00
|
|
|
///
|
2015-06-10 12:11:26 +00:00
|
|
|
XCoreSubtarget(const Triple &TT, const std::string &CPU,
|
2014-07-02 00:10:09 +00:00
|
|
|
const std::string &FS, const TargetMachine &TM);
|
2015-06-10 12:11:26 +00:00
|
|
|
|
2008-11-07 10:59:00 +00:00
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 07:07:08 +00:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2014-07-02 00:10:09 +00:00
|
|
|
|
2014-08-04 21:25:23 +00:00
|
|
|
const XCoreInstrInfo *getInstrInfo() const override { return &InstrInfo; }
|
|
|
|
const XCoreFrameLowering *getFrameLowering() const override {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
|
|
|
const XCoreTargetLowering *getTargetLowering() const override {
|
|
|
|
return &TLInfo;
|
|
|
|
}
|
|
|
|
const XCoreSelectionDAGInfo *getSelectionDAGInfo() const override {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
const TargetRegisterInfo *getRegisterInfo() const override {
|
2014-07-02 00:10:09 +00:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2008-11-07 10:59:00 +00:00
|
|
|
};
|
2015-06-23 09:49:53 +00:00
|
|
|
} // End llvm namespace
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
#endif
|