2012-02-18 12:03:15 +00:00
|
|
|
//===-- SparcSubtarget.h - Define Subtarget for the SPARC -------*- C++ -*-===//
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file declares the SPARC specific subclass of TargetSubtargetInfo.
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_SPARC_SPARCSUBTARGET_H
|
|
|
|
#define LLVM_LIB_TARGET_SPARC_SPARCSUBTARGET_H
|
2006-01-26 06:51:21 +00:00
|
|
|
|
2014-06-26 22:33:55 +00:00
|
|
|
#include "SparcFrameLowering.h"
|
|
|
|
#include "SparcInstrInfo.h"
|
|
|
|
#include "SparcISelLowering.h"
|
|
|
|
#include "SparcSelectionDAGInfo.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2011-07-01 21:01:15 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2006-01-26 06:51:21 +00:00
|
|
|
#include <string>
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "SparcGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
namespace llvm {
|
2011-07-07 07:07:08 +00:00
|
|
|
class StringRef;
|
2009-08-02 22:11:08 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
class SparcSubtarget : public SparcGenSubtargetInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2006-01-26 07:22:22 +00:00
|
|
|
bool IsV9;
|
|
|
|
bool V8DeprecatedInsts;
|
2014-03-02 19:31:21 +00:00
|
|
|
bool IsVIS, IsVIS2, IsVIS3;
|
2010-02-04 06:34:01 +00:00
|
|
|
bool Is64Bit;
|
2013-08-25 18:30:06 +00:00
|
|
|
bool HasHardQuad;
|
2014-01-26 06:09:59 +00:00
|
|
|
bool UsePopc;
|
2014-06-26 22:33:55 +00:00
|
|
|
const DataLayout DL; // Calculates type size & alignment
|
|
|
|
SparcInstrInfo InstrInfo;
|
|
|
|
SparcTargetLowering TLInfo;
|
|
|
|
SparcSelectionDAGInfo TSInfo;
|
|
|
|
SparcFrameLowering FrameLowering;
|
2013-06-04 18:33:25 +00:00
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
public:
|
2011-06-30 01:53:36 +00:00
|
|
|
SparcSubtarget(const std::string &TT, const std::string &CPU,
|
2014-06-26 22:33:55 +00:00
|
|
|
const std::string &FS, TargetMachine &TM, bool is64bit);
|
|
|
|
|
2014-08-04 21:25:23 +00:00
|
|
|
const SparcInstrInfo *getInstrInfo() const override { return &InstrInfo; }
|
|
|
|
const TargetFrameLowering *getFrameLowering() const override {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
|
|
|
const SparcRegisterInfo *getRegisterInfo() const override {
|
2014-06-26 22:33:55 +00:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
2014-08-04 21:25:23 +00:00
|
|
|
const SparcTargetLowering *getTargetLowering() const override {
|
|
|
|
return &TLInfo;
|
|
|
|
}
|
|
|
|
const SparcSelectionDAGInfo *getSelectionDAGInfo() const override {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
const DataLayout *getDataLayout() const override { return &DL; }
|
2006-01-26 06:51:21 +00:00
|
|
|
|
2006-01-26 07:22:22 +00:00
|
|
|
bool isV9() const { return IsV9; }
|
|
|
|
bool isVIS() const { return IsVIS; }
|
2014-03-02 19:31:21 +00:00
|
|
|
bool isVIS2() const { return IsVIS2; }
|
|
|
|
bool isVIS3() const { return IsVIS3; }
|
2006-01-26 07:22:22 +00:00
|
|
|
bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
|
2013-08-25 18:30:06 +00:00
|
|
|
bool hasHardQuad() const { return HasHardQuad; }
|
2014-01-26 06:09:59 +00:00
|
|
|
bool usePopc() const { return UsePopc; }
|
2013-06-04 18:33:25 +00:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
2006-01-26 06:51:21 +00:00
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 07:07:08 +00:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2014-06-26 22:33:55 +00:00
|
|
|
SparcSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
|
2013-06-04 18:33:25 +00:00
|
|
|
|
2010-02-04 06:34:01 +00:00
|
|
|
bool is64Bit() const { return Is64Bit; }
|
2013-04-06 21:38:57 +00:00
|
|
|
|
|
|
|
/// The 64-bit ABI uses biased stack and frame pointers, so the stack frame
|
|
|
|
/// of the current function is the area from [%sp+BIAS] to [%fp+BIAS].
|
|
|
|
int64_t getStackPointerBias() const {
|
|
|
|
return is64Bit() ? 2047 : 0;
|
|
|
|
}
|
2013-06-01 04:51:18 +00:00
|
|
|
|
|
|
|
/// Given a actual stack size as determined by FrameInfo, this function
|
|
|
|
/// returns adjusted framesize which includes space for register window
|
|
|
|
/// spills and arguments.
|
|
|
|
int getAdjustedFrameSize(int stackSize) const;
|
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|