2012-02-18 20:03:15 +08:00
|
|
|
//===-- SparcSubtarget.h - Define Subtarget for the SPARC -------*- C++ -*-===//
|
2006-02-05 13:50:24 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-02-05 13:50:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-02 05:01:15 +08:00
|
|
|
// This file declares the SPARC specific subclass of TargetSubtargetInfo.
|
2006-02-05 13:50:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARC_SUBTARGET_H
|
|
|
|
#define SPARC_SUBTARGET_H
|
|
|
|
|
2011-07-02 05:01:15 +08:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2006-02-05 13:50:24 +08:00
|
|
|
#include <string>
|
|
|
|
|
2011-07-02 04:45:01 +08:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-02 06:36:09 +08:00
|
|
|
#include "SparcGenSubtargetInfo.inc"
|
2011-07-02 04:45:01 +08:00
|
|
|
|
2006-02-05 13:50:24 +08:00
|
|
|
namespace llvm {
|
2011-07-07 15:07:08 +08:00
|
|
|
class StringRef;
|
2009-08-03 06:11:08 +08:00
|
|
|
|
2011-07-02 04:45:01 +08:00
|
|
|
class SparcSubtarget : public SparcGenSubtargetInfo {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
2006-02-05 13:50:24 +08:00
|
|
|
bool IsV9;
|
|
|
|
bool V8DeprecatedInsts;
|
|
|
|
bool IsVIS;
|
2010-02-04 14:34:01 +08:00
|
|
|
bool Is64Bit;
|
|
|
|
|
2006-02-05 13:50:24 +08:00
|
|
|
public:
|
2011-06-30 09:53:36 +08:00
|
|
|
SparcSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, bool is64bit);
|
2006-02-05 13:50:24 +08:00
|
|
|
|
|
|
|
bool isV9() const { return IsV9; }
|
|
|
|
bool isVIS() const { return IsVIS; }
|
|
|
|
bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
|
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 15:07:08 +08:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2010-02-04 14:34:01 +08: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);
|
|
|
|
}
|
2006-02-05 13:50:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|