blob: bcbb62813e499ada2381049a24b92365203aa4a4 [file] [log] [blame]
Andrew Lenharth120ab482005-09-29 22:54:56 +00001//=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Andrew Lenharth120ab482005-09-29 22:54:56 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the Alpha specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ALPHASUBTARGET_H
15#define ALPHASUBTARGET_H
16
Andrew Lenharth017c5562006-03-09 17:16:45 +000017#include "llvm/Target/TargetInstrItineraries.h"
Andrew Lenharth120ab482005-09-29 22:54:56 +000018#include "llvm/Target/TargetSubtarget.h"
19
20#include <string>
21
22namespace llvm {
23class Module;
24
25class AlphaSubtarget : public TargetSubtarget {
26protected:
27
Andrew Lenharth120ab482005-09-29 22:54:56 +000028 bool HasCT;
29
Andrew Lenharth017c5562006-03-09 17:16:45 +000030 InstrItineraryData InstrItins;
31
Andrew Lenharth120ab482005-09-29 22:54:56 +000032public:
33 /// This constructor initializes the data members to match that
34 /// of the specified module.
35 ///
36 AlphaSubtarget(const Module &M, const std::string &FS);
Jim Laskey581a8f72005-10-26 17:30:34 +000037
38 /// ParseSubtargetFeatures - Parses features string setting specified
Jim Laskey2cbc2072005-10-26 18:07:50 +000039 /// subtarget options. Definition of function is auto generated by tblgen.
Jim Laskey581a8f72005-10-26 17:30:34 +000040 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
Andrew Lenharth120ab482005-09-29 22:54:56 +000041
Andrew Lenharth120ab482005-09-29 22:54:56 +000042 bool hasCT() const { return HasCT; }
43};
44} // End llvm namespace
45
46#endif