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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARC_SUBTARGET_H
|
|
|
|
#define SPARC_SUBTARGET_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;
|
|
|
|
bool IsVIS;
|
2010-02-04 06:34:01 +00:00
|
|
|
bool Is64Bit;
|
|
|
|
|
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,
|
|
|
|
const std::string &FS, bool is64bit);
|
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; }
|
|
|
|
bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
|
2006-01-26 06:51:21 +00:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 07:07:08 +00:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2010-02-04 06:34:01 +00:00
|
|
|
|
|
|
|
bool is64Bit() const { return Is64Bit; }
|
|
|
|
std::string getDataLayout() const {
|
|
|
|
const char *p;
|
|
|
|
if (is64Bit()) {
|
|
|
|
p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64";
|
|
|
|
} else {
|
|
|
|
p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32";
|
|
|
|
}
|
|
|
|
return std::string(p);
|
|
|
|
}
|
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;
|
|
|
|
}
|
2006-01-26 06:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|