2008-11-07 10:59:00 +00:00
|
|
|
//=====-- XCoreSubtarget.h - Define Subtarget for the XCore -----*- C++ -*--==//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef XCORESUBTARGET_H
|
|
|
|
#define XCORESUBTARGET_H
|
|
|
|
|
2011-07-01 21:01:15 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#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();
|
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
|
|
|
///
|
2011-06-30 01:53:36 +00:00
|
|
|
XCoreSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS);
|
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);
|
2008-11-07 10:59:00 +00:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|