blob: f0eb93c6cba2e62b63210af95941901b4d4b3f92 [file] [log] [blame]
Andrew Lenhartha7a83b92005-09-29 22:54:56 +00001//=====-- AlphaSubtarget.h - Define Subtarget for the Alpha --*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lenhartha7a83b92005-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 Lenharth16b96d22006-03-09 17:16:45 +000017#include "llvm/Target/TargetInstrItineraries.h"
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000018#include "llvm/Target/TargetSubtarget.h"
19
20#include <string>
21
22namespace llvm {
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000023
24class AlphaSubtarget : public TargetSubtarget {
25protected:
26
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000027 bool HasCT;
28
Andrew Lenharth16b96d22006-03-09 17:16:45 +000029 InstrItineraryData InstrItins;
30
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000031public:
32 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +000033 /// of the specified triple.
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000034 ///
Daniel Dunbar31b44e82009-08-02 22:11:08 +000035 AlphaSubtarget(const std::string &TT, const std::string &FS);
Jim Laskeya2b52352005-10-26 17:30:34 +000036
37 /// ParseSubtargetFeatures - Parses features string setting specified
Jim Laskey75eab3c2005-10-26 18:07:50 +000038 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov08bf4c02009-05-23 19:50:50 +000039 std::string ParseSubtargetFeatures(const std::string &FS,
40 const std::string &CPU);
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000041
Andrew Lenhartha7a83b92005-09-29 22:54:56 +000042 bool hasCT() const { return HasCT; }
43};
44} // End llvm namespace
45
46#endif