2005-09-30 00:54:56 +02:00
|
|
|
//=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-09-30 00:54:56 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 23:01:15 +02:00
|
|
|
// This file declares the Alpha specific subclass of TargetSubtargetInfo.
|
2005-09-30 00:54:56 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ALPHASUBTARGET_H
|
|
|
|
#define ALPHASUBTARGET_H
|
|
|
|
|
2011-07-01 23:01:15 +02:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2011-06-29 03:14:12 +02:00
|
|
|
#include "llvm/MC/MCInstrItineraries.h"
|
2005-09-30 00:54:56 +02:00
|
|
|
#include <string>
|
|
|
|
|
2011-07-01 22:45:01 +02:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-02 00:36:09 +02:00
|
|
|
#include "AlphaGenSubtargetInfo.inc"
|
2011-07-01 22:45:01 +02:00
|
|
|
|
2005-09-30 00:54:56 +02:00
|
|
|
namespace llvm {
|
2011-07-07 09:07:08 +02:00
|
|
|
class StringRe;
|
2005-09-30 00:54:56 +02:00
|
|
|
|
2011-07-01 22:45:01 +02:00
|
|
|
class AlphaSubtarget : public AlphaGenSubtargetInfo {
|
2005-09-30 00:54:56 +02:00
|
|
|
protected:
|
|
|
|
|
|
|
|
bool HasCT;
|
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
InstrItineraryData InstrItins;
|
|
|
|
|
2005-09-30 00:54:56 +02:00
|
|
|
public:
|
|
|
|
/// This constructor initializes the data members to match that
|
2009-08-03 00:11:08 +02:00
|
|
|
/// of the specified triple.
|
2005-09-30 00:54:56 +02:00
|
|
|
///
|
2011-06-30 03:53:36 +02:00
|
|
|
AlphaSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS);
|
2005-10-26 19:30:34 +02:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
2005-10-26 20:07:50 +02:00
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 09:07:08 +02:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2005-09-30 00:54:56 +02:00
|
|
|
|
|
|
|
bool hasCT() const { return HasCT; }
|
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|