blob: 0f81cc960f8238c4a90eb72ec07f7289a46e509f [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +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//
Evan Cheng5b1b44892011-07-01 21:01:15 +000010// This file declares the SPARC specific subclass of TargetSubtargetInfo.
Chris Lattner0d170a72006-01-26 06:51:21 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef SPARC_SUBTARGET_H
15#define SPARC_SUBTARGET_H
16
Evan Cheng5b1b44892011-07-01 21:01:15 +000017#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner0d170a72006-01-26 06:51:21 +000018#include <string>
19
Evan Cheng94214702011-07-01 20:45:01 +000020#define GET_SUBTARGETINFO_HEADER
Evan Cheng385e9302011-07-01 22:36:09 +000021#include "SparcGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000022
Chris Lattner0d170a72006-01-26 06:51:21 +000023namespace llvm {
Evan Cheng0ddff1b2011-07-07 07:07:08 +000024class StringRef;
Daniel Dunbar3be03402009-08-02 22:11:08 +000025
Evan Cheng94214702011-07-01 20:45:01 +000026class SparcSubtarget : public SparcGenSubtargetInfo {
David Blaikie2d24e2a2011-12-20 02:50:00 +000027 virtual void anchor();
Chris Lattner4dcfaac2006-01-26 07:22:22 +000028 bool IsV9;
29 bool V8DeprecatedInsts;
30 bool IsVIS;
Chris Lattner87c06d62010-02-04 06:34:01 +000031 bool Is64Bit;
Venkatraman Govindaraju2f17d0f2013-08-25 18:30:06 +000032 bool HasHardQuad;
Venkatraman Govindaraju1e06bcb2013-06-04 18:33:25 +000033
Chris Lattner0d170a72006-01-26 06:51:21 +000034public:
Evan Cheng276365d2011-06-30 01:53:36 +000035 SparcSubtarget(const std::string &TT, const std::string &CPU,
36 const std::string &FS, bool is64bit);
Chris Lattner0d170a72006-01-26 06:51:21 +000037
Chris Lattner4dcfaac2006-01-26 07:22:22 +000038 bool isV9() const { return IsV9; }
39 bool isVIS() const { return IsVIS; }
40 bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
Venkatraman Govindaraju2f17d0f2013-08-25 18:30:06 +000041 bool hasHardQuad() const { return HasHardQuad; }
Venkatraman Govindaraju1e06bcb2013-06-04 18:33:25 +000042
43 /// ParseSubtargetFeatures - Parses features string setting specified
Chris Lattner0d170a72006-01-26 06:51:21 +000044 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000045 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Venkatraman Govindaraju1e06bcb2013-06-04 18:33:25 +000046
Chris Lattner87c06d62010-02-04 06:34:01 +000047 bool is64Bit() const { return Is64Bit; }
48 std::string getDataLayout() const {
49 const char *p;
50 if (is64Bit()) {
51 p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64";
52 } else {
53 p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32";
54 }
55 return std::string(p);
56 }
Jakob Stoklund Olesen2b9355f2013-04-06 21:38:57 +000057
58 /// The 64-bit ABI uses biased stack and frame pointers, so the stack frame
59 /// of the current function is the area from [%sp+BIAS] to [%fp+BIAS].
60 int64_t getStackPointerBias() const {
61 return is64Bit() ? 2047 : 0;
62 }
Venkatraman Govindaraju72ad17c2013-06-01 04:51:18 +000063
64 /// Given a actual stack size as determined by FrameInfo, this function
65 /// returns adjusted framesize which includes space for register window
66 /// spills and arguments.
67 int getAdjustedFrameSize(int stackSize) const;
68
Chris Lattner0d170a72006-01-26 06:51:21 +000069};
70
71} // end namespace llvm
72
73#endif