blob: f0eb93c6cba2e62b63210af95941901b4d4b3f92 [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 {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023
24class AlphaSubtarget : public TargetSubtarget {
25protected:
26
27 bool HasCT;
28
29 InstrItineraryData InstrItins;
30
31public:
32 /// This constructor initializes the data members to match that
Daniel Dunbarb711cf02009-08-02 22:11:08 +000033 /// of the specified triple.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034 ///
Daniel Dunbarb711cf02009-08-02 22:11:08 +000035 AlphaSubtarget(const std::string &TT, const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036
37 /// ParseSubtargetFeatures - Parses features string setting specified
38 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov7357d8f2009-05-23 19:50:50 +000039 std::string ParseSubtargetFeatures(const std::string &FS,
40 const std::string &CPU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041
42 bool hasCT() const { return HasCT; }
43};
44} // End llvm namespace
45
46#endif