blob: bcbb62813e499ada2381049a24b92365203aa4a4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
17#include "llvm/Target/TargetInstrItineraries.h"
18#include "llvm/Target/TargetSubtarget.h"
19
20#include <string>
21
22namespace llvm {
23class Module;
24
25class AlphaSubtarget : public TargetSubtarget {
26protected:
27
28 bool HasCT;
29
30 InstrItineraryData InstrItins;
31
32public:
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);
37
38 /// ParseSubtargetFeatures - Parses features string setting specified
39 /// subtarget options. Definition of function is auto generated by tblgen.
40 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
41
42 bool hasCT() const { return HasCT; }
43};
44} // End llvm namespace
45
46#endif