blob: 8eadec00d05786dfe4574088c7e59b33ab839c79 [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);
36
37 bool hasF2I() const { return HasF2I; }
38 bool hasCT() const { return HasCT; }
39};
40} // End llvm namespace
41
42#endif