blob: 43770343d3348c5d2bfcac41e76a230faa1b922e [file] [log] [blame]
Chris Lattner7c90f732006-02-05 05:50:24 +00001//=====-- SparcSubtarget.h - Define Subtarget for the SPARC ----*- C++ -*-====//
Chris Lattner0d170a72006-01-26 06:51:21 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner0d170a72006-01-26 06:51:21 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the SPARC specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef SPARC_SUBTARGET_H
15#define SPARC_SUBTARGET_H
16
17#include "llvm/Target/TargetSubtarget.h"
18#include <string>
19
20namespace llvm {
Daniel Dunbar3be03402009-08-02 22:11:08 +000021
Chris Lattner7c90f732006-02-05 05:50:24 +000022class SparcSubtarget : public TargetSubtarget {
Chris Lattner4dcfaac2006-01-26 07:22:22 +000023 bool IsV9;
24 bool V8DeprecatedInsts;
25 bool IsVIS;
Chris Lattner0d170a72006-01-26 06:51:21 +000026public:
Daniel Dunbar3be03402009-08-02 22:11:08 +000027 SparcSubtarget(const std::string &TT, const std::string &FS);
Chris Lattner0d170a72006-01-26 06:51:21 +000028
Chris Lattner4dcfaac2006-01-26 07:22:22 +000029 bool isV9() const { return IsV9; }
30 bool isVIS() const { return IsVIS; }
31 bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
Chris Lattner0d170a72006-01-26 06:51:21 +000032
33 /// ParseSubtargetFeatures - Parses features string setting specified
34 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov41a02432009-05-23 19:50:50 +000035 std::string ParseSubtargetFeatures(const std::string &FS,
36 const std::string &CPU);
37
Chris Lattner0d170a72006-01-26 06:51:21 +000038};
39
40} // end namespace llvm
41
42#endif