freebsd-dev/lib/Target/XCore/XCoreSubtarget.h

43 lines
1.3 KiB
C
Raw Normal View History

2009-06-02 17:52:33 +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.
//
//===----------------------------------------------------------------------===//
//
// This file declares the XCore specific subclass of TargetSubtargetInfo.
2009-06-02 17:52:33 +00:00
//
//===----------------------------------------------------------------------===//
#ifndef XCORESUBTARGET_H
#define XCORESUBTARGET_H
#include "llvm/Target/TargetSubtargetInfo.h"
2009-06-02 17:52:33 +00:00
#include "llvm/Target/TargetMachine.h"
#include <string>
#define GET_SUBTARGETINFO_HEADER
#include "XCoreGenSubtargetInfo.inc"
2009-06-02 17:52:33 +00:00
namespace llvm {
class StringRef;
2009-06-02 17:52:33 +00:00
class XCoreSubtarget : public XCoreGenSubtargetInfo {
2009-06-02 17:52:33 +00:00
public:
/// This constructor initializes the data members to match that
2009-10-14 17:57:32 +00:00
/// of the specified triple.
2009-06-02 17:52:33 +00:00
///
XCoreSubtarget(const std::string &TT, const std::string &CPU,
const std::string &FS);
2009-06-02 17:52:33 +00:00
/// ParseSubtargetFeatures - Parses features string setting specified
/// subtarget options. Definition of function is auto generated by tblgen.
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
2009-06-02 17:52:33 +00:00
};
} // End llvm namespace
#endif