blob: 42d6936999948b9cdf15e644e9bb6b0bcf09f53d [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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_SPARC_SPARCSUBTARGET_H
15#define LLVM_LIB_TARGET_SPARC_SPARCSUBTARGET_H
Chris Lattner158e1f52006-02-05 05:50:24 +000016
Eric Christopherca38fdc2014-06-26 22:33:55 +000017#include "SparcFrameLowering.h"
Eric Christopherca38fdc2014-06-26 22:33:55 +000018#include "SparcISelLowering.h"
Benjamin Kramerf9172fd42016-01-27 16:32:26 +000019#include "SparcInstrInfo.h"
20#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
Eric Christopherca38fdc2014-06-26 22:33:55 +000021#include "llvm/IR/DataLayout.h"
22#include "llvm/Target/TargetFrameLowering.h"
Evan Cheng0d639a22011-07-01 21:01:15 +000023#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner158e1f52006-02-05 05:50:24 +000024#include <string>
25
Evan Cheng54b68e32011-07-01 20:45:01 +000026#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000027#include "SparcGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000028
Chris Lattner158e1f52006-02-05 05:50:24 +000029namespace llvm {
Evan Cheng1a72add62011-07-07 07:07:08 +000030class StringRef;
Daniel Dunbar31b44e82009-08-02 22:11:08 +000031
Evan Cheng54b68e32011-07-01 20:45:01 +000032class SparcSubtarget : public SparcGenSubtargetInfo {
Marcin Koscielnicki33571e22016-04-26 10:37:14 +000033 Triple TargetTriple;
David Blaikiea379b1812011-12-20 02:50:00 +000034 virtual void anchor();
Chris Lattner158e1f52006-02-05 05:50:24 +000035 bool IsV9;
Chris Dewhurst60197022016-04-22 08:17:17 +000036 bool IsLeon;
Chris Lattner158e1f52006-02-05 05:50:24 +000037 bool V8DeprecatedInsts;
Venkatraman Govindarajuf9a202a2014-03-02 19:31:21 +000038 bool IsVIS, IsVIS2, IsVIS3;
Chris Lattner8228b112010-02-04 06:34:01 +000039 bool Is64Bit;
Venkatraman Govindaraju35e0c382013-08-25 18:30:06 +000040 bool HasHardQuad;
Jakob Stoklund Olesenead3b3d2014-01-26 06:09:59 +000041 bool UsePopc;
Chris Dewhurst68388a02016-05-18 09:14:13 +000042 bool UseSoftFloat;
Chris Dewhurst7d8412f2016-05-16 11:02:00 +000043
44 // LEON features
45 bool HasUmacSmac;
46 bool HasLeonCasa;
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000047 bool InsertNOPLoad;
Chris Dewhurst0c1e0022016-06-19 11:03:28 +000048 bool FixFSMULD;
49 bool ReplaceFMULS;
50 bool FixAllFDIVSQRT;
Chris Dewhurst3202f062016-07-08 15:33:56 +000051 bool UseSoftFpu;
52 bool PerformSDIVReplace;
53 bool FixCallImmediates;
54 bool IgnoreZeroFlag;
55 bool InsertNOPDoublePrecision;
56 bool PreventRoundChange;
57 bool FlushCacheLineSWAP;
58 bool InsertNOPsLoadStore;
Chris Dewhurst7d8412f2016-05-16 11:02:00 +000059
Eric Christopherca38fdc2014-06-26 22:33:55 +000060 SparcInstrInfo InstrInfo;
61 SparcTargetLowering TLInfo;
Benjamin Kramerf9172fd42016-01-27 16:32:26 +000062 SelectionDAGTargetInfo TSInfo;
Eric Christopherca38fdc2014-06-26 22:33:55 +000063 SparcFrameLowering FrameLowering;
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +000064
Chris Lattner158e1f52006-02-05 05:50:24 +000065public:
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000066 SparcSubtarget(const Triple &TT, const std::string &CPU,
James Y Knightef31eaf2016-05-03 14:57:18 +000067 const std::string &FS, const TargetMachine &TM, bool is64bit);
Eric Christopherca38fdc2014-06-26 22:33:55 +000068
Eric Christopherd9134482014-08-04 21:25:23 +000069 const SparcInstrInfo *getInstrInfo() const override { return &InstrInfo; }
70 const TargetFrameLowering *getFrameLowering() const override {
71 return &FrameLowering;
72 }
73 const SparcRegisterInfo *getRegisterInfo() const override {
Eric Christopherca38fdc2014-06-26 22:33:55 +000074 return &InstrInfo.getRegisterInfo();
75 }
Eric Christopherd9134482014-08-04 21:25:23 +000076 const SparcTargetLowering *getTargetLowering() const override {
77 return &TLInfo;
78 }
Benjamin Kramerf9172fd42016-01-27 16:32:26 +000079 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
Eric Christopherd9134482014-08-04 21:25:23 +000080 return &TSInfo;
81 }
Chris Lattner158e1f52006-02-05 05:50:24 +000082
James Y Knight1f3e6af2015-09-10 21:49:06 +000083 bool enableMachineScheduler() const override;
84
Chris Lattner158e1f52006-02-05 05:50:24 +000085 bool isV9() const { return IsV9; }
Chris Dewhurst60197022016-04-22 08:17:17 +000086 bool isLeon() const { return IsLeon; }
Chris Lattner158e1f52006-02-05 05:50:24 +000087 bool isVIS() const { return IsVIS; }
Venkatraman Govindarajuf9a202a2014-03-02 19:31:21 +000088 bool isVIS2() const { return IsVIS2; }
89 bool isVIS3() const { return IsVIS3; }
Chris Lattner158e1f52006-02-05 05:50:24 +000090 bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
Venkatraman Govindaraju35e0c382013-08-25 18:30:06 +000091 bool hasHardQuad() const { return HasHardQuad; }
Jakob Stoklund Olesenead3b3d2014-01-26 06:09:59 +000092 bool usePopc() const { return UsePopc; }
Chris Dewhurst68388a02016-05-18 09:14:13 +000093 bool useSoftFloat() const { return UseSoftFloat; }
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +000094
Chris Dewhurst7d8412f2016-05-16 11:02:00 +000095 // Leon options
Chris Dewhurst3202f062016-07-08 15:33:56 +000096 bool useSoftFpu() const { return UseSoftFpu; }
Chris Dewhurst7d8412f2016-05-16 11:02:00 +000097 bool hasLeonCasa() const { return HasLeonCasa; }
Chris Dewhurst3202f062016-07-08 15:33:56 +000098 bool hasUmacSmac() const { return HasUmacSmac; }
99 bool performSDIVReplace() const { return PerformSDIVReplace; }
100 bool fixCallImmediates() const { return FixCallImmediates; }
101 bool ignoreZeroFlag() const { return IgnoreZeroFlag; }
102 bool insertNOPDoublePrecision() const { return InsertNOPDoublePrecision; }
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000103 bool fixFSMULD() const { return FixFSMULD; }
104 bool replaceFMULS() const { return ReplaceFMULS; }
Chris Dewhurst3202f062016-07-08 15:33:56 +0000105 bool preventRoundChange() const { return PreventRoundChange; }
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000106 bool fixAllFDIVSQRT() const { return FixAllFDIVSQRT; }
Chris Dewhurst3202f062016-07-08 15:33:56 +0000107 bool flushCacheLineSWAP() const { return FlushCacheLineSWAP; }
108 bool insertNOPsLoadStore() const { return InsertNOPsLoadStore; }
109 bool insertNOPLoad() const { return InsertNOPLoad; }
Chris Dewhurst7d8412f2016-05-16 11:02:00 +0000110
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +0000111 /// ParseSubtargetFeatures - Parses features string setting specified
Chris Lattner158e1f52006-02-05 05:50:24 +0000112 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000113 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Eric Christopherca38fdc2014-06-26 22:33:55 +0000114 SparcSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
Venkatraman Govindarajua54533ed2013-06-04 18:33:25 +0000115
Chris Lattner8228b112010-02-04 06:34:01 +0000116 bool is64Bit() const { return Is64Bit; }
Jakob Stoklund Olesen03d9f7f2013-04-06 21:38:57 +0000117
118 /// The 64-bit ABI uses biased stack and frame pointers, so the stack frame
119 /// of the current function is the area from [%sp+BIAS] to [%fp+BIAS].
120 int64_t getStackPointerBias() const {
121 return is64Bit() ? 2047 : 0;
122 }
Venkatraman Govindaraju3521dcd2013-06-01 04:51:18 +0000123
124 /// Given a actual stack size as determined by FrameInfo, this function
125 /// returns adjusted framesize which includes space for register window
126 /// spills and arguments.
127 int getAdjustedFrameSize(int stackSize) const;
Marcin Koscielnicki33571e22016-04-26 10:37:14 +0000128
129 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
Chris Lattner158e1f52006-02-05 05:50:24 +0000130};
131
132} // end namespace llvm
133
134#endif