blob: 4025622be8e460565061b2d7d6bedc2e1f9c40e0 [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;
Venkatraman Govindarajuf9a202a2014-03-02 19:31:21 +000030 bool IsVIS, IsVIS2, IsVIS3;
Chris Lattner8228b112010-02-04 06:34:01 +000031 bool Is64Bit;
Venkatraman Govindaraju35e0c382013-08-25 18:30:06 +000032 bool HasHardQuad;
Jakob Stoklund Olesenead3b3d2014-01-26 06:09:59 +000033 bool UsePopc;
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +000034
Chris Lattner158e1f52006-02-05 05:50:24 +000035public:
Evan Chengfe6e4052011-06-30 01:53:36 +000036 SparcSubtarget(const std::string &TT, const std::string &CPU,
37 const std::string &FS, bool is64bit);
Chris Lattner158e1f52006-02-05 05:50:24 +000038
39 bool isV9() const { return IsV9; }
40 bool isVIS() const { return IsVIS; }
Venkatraman Govindarajuf9a202a2014-03-02 19:31:21 +000041 bool isVIS2() const { return IsVIS2; }
42 bool isVIS3() const { return IsVIS3; }
Chris Lattner158e1f52006-02-05 05:50:24 +000043 bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
Venkatraman Govindaraju35e0c382013-08-25 18:30:06 +000044 bool hasHardQuad() const { return HasHardQuad; }
Jakob Stoklund Olesenead3b3d2014-01-26 06:09:59 +000045 bool usePopc() const { return UsePopc; }
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +000046
47 /// ParseSubtargetFeatures - Parses features string setting specified
Chris Lattner158e1f52006-02-05 05:50:24 +000048 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +000049 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +000050
Chris Lattner8228b112010-02-04 06:34:01 +000051 bool is64Bit() const { return Is64Bit; }
Jakob Stoklund Olesen03d9f7f2013-04-06 21:38:57 +000052
53 /// The 64-bit ABI uses biased stack and frame pointers, so the stack frame
54 /// of the current function is the area from [%sp+BIAS] to [%fp+BIAS].
55 int64_t getStackPointerBias() const {
56 return is64Bit() ? 2047 : 0;
57 }
Venkatraman Govindaraju3521dcd2013-06-01 04:51:18 +000058
59 /// Given a actual stack size as determined by FrameInfo, this function
60 /// returns adjusted framesize which includes space for register window
61 /// spills and arguments.
62 int getAdjustedFrameSize(int stackSize) const;
63
Chris Lattner158e1f52006-02-05 05:50:24 +000064};
65
66} // end namespace llvm
67
68#endif