blob: d5847f3bf3534b1e0812ea455e3f1d31c53a8ac8 [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//
5// This file was developed by Andrew Lenharth and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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/TargetSubtarget.h"
18
19#include <string>
20
21namespace llvm {
22class Module;
23
24class AlphaSubtarget : public TargetSubtarget {
25protected:
26
27 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
28 bool HasF2I;
29 bool HasCT;
30
31public:
32 /// This constructor initializes the data members to match that
33 /// of the specified module.
34 ///
35 AlphaSubtarget(const Module &M, const std::string &FS);
Jim Laskey581a8f72005-10-26 17:30:34 +000036
37 /// ParseSubtargetFeatures - Parses features string setting specified
38 /// subtarget options. Definition of function is usto generated by tblgen.
39 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
Andrew Lenharth120ab482005-09-29 22:54:56 +000040
41 bool hasF2I() const { return HasF2I; }
42 bool hasCT() const { return HasCT; }
43};
44} // End llvm namespace
45
46#endif