1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/lib/Target/XCore/XCoreSubtarget.h

44 lines
1.3 KiB
C
Raw Normal View History

//===-- XCoreSubtarget.h - Define Subtarget for the XCore -------*- C++ -*-===//
2008-11-07 11:59:00 +01:00
//
// 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.
2008-11-07 11:59:00 +01:00
//
//===----------------------------------------------------------------------===//
#ifndef XCORESUBTARGET_H
#define XCORESUBTARGET_H
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetSubtargetInfo.h"
2008-11-07 11:59:00 +01:00
#include <string>
#define GET_SUBTARGETINFO_HEADER
#include "XCoreGenSubtargetInfo.inc"
2008-11-07 11:59:00 +01:00
namespace llvm {
class StringRef;
2008-11-07 11:59:00 +01:00
class XCoreSubtarget : public XCoreGenSubtargetInfo {
virtual void anchor();
2008-11-07 11:59:00 +01:00
public:
/// This constructor initializes the data members to match that
/// of the specified triple.
2008-11-07 11:59:00 +01:00
///
XCoreSubtarget(const std::string &TT, const std::string &CPU,
const std::string &FS);
2008-11-07 11:59:00 +01:00
/// ParseSubtargetFeatures - Parses features string setting specified
/// subtarget options. Definition of function is auto generated by tblgen.
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
2008-11-07 11:59:00 +01:00
};
} // End llvm namespace
#endif