blob: a81931b34aa241e9b955f891be37949ac0853765 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- SparcSubtarget.h - Define Subtarget for the SPARC -------*- C++ -*-===//
Chris Lattner158e1f52006-02-05 05:50:24 +00002//
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.
Chris Lattner158e1f52006-02-05 05:50:24 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file declares the SPARC specific subclass of TargetSubtargetInfo.
Chris Lattner158e1f52006-02-05 05:50:24 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef SPARC_SUBTARGET_H
15#define SPARC_SUBTARGET_H
16
Evan Cheng0d639a22011-07-01 21:01:15 +000017#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner158e1f52006-02-05 05:50:24 +000018#include <string>
19
Evan Cheng54b68e32011-07-01 20:45:01 +000020#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000021#include "SparcGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000022
Chris Lattner158e1f52006-02-05 05:50:24 +000023namespace llvm {
Evan Cheng1a72add62011-07-07 07:07:08 +000024class StringRef;
Daniel Dunbar31b44e82009-08-02 22:11:08 +000025
Evan Cheng54b68e32011-07-01 20:45:01 +000026class SparcSubtarget : public SparcGenSubtargetInfo {
David Blaikiea379b1812011-12-20 02:50:00 +000027 virtual void anchor();
Chris Lattner158e1f52006-02-05 05:50:24 +000028 bool IsV9;
29 bool V8DeprecatedInsts;
30 bool IsVIS;
Chris Lattner8228b112010-02-04 06:34:01 +000031 bool Is64Bit;
32
Chris Lattner158e1f52006-02-05 05:50:24 +000033public:
Evan Chengfe6e4052011-06-30 01:53:36 +000034 SparcSubtarget(const std::string &TT, const std::string &CPU,
35 const std::string &FS, bool is64bit);
Chris Lattner158e1f52006-02-05 05:50:24 +000036
37 bool isV9() const { return IsV9; }
38 bool isVIS() const { return IsVIS; }
39 bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
40
41 /// ParseSubtargetFeatures - Parses features string setting specified
42 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +000043 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Chris Lattner8228b112010-02-04 06:34:01 +000044
45 bool is64Bit() const { return Is64Bit; }
46 std::string getDataLayout() const {
47 const char *p;
48 if (is64Bit()) {
49 p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64";
50 } else {
51 p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32";
52 }
53 return std::string(p);
54 }
Chris Lattner158e1f52006-02-05 05:50:24 +000055};
56
57} // end namespace llvm
58
59#endif