2006-02-05 06:50:24 +01:00
|
|
|
//=====-- SparcSubtarget.h - Define Subtarget for the SPARC ----*- C++ -*-====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-02-05 06:50:24 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the SPARC specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARC_SUBTARGET_H
|
|
|
|
#define SPARC_SUBTARGET_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetSubtarget.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-03 00:11:08 +02:00
|
|
|
|
2006-02-05 06:50:24 +01:00
|
|
|
class SparcSubtarget : public TargetSubtarget {
|
|
|
|
bool IsV9;
|
|
|
|
bool V8DeprecatedInsts;
|
|
|
|
bool IsVIS;
|
2010-02-04 07:34:01 +01:00
|
|
|
bool Is64Bit;
|
|
|
|
|
2006-02-05 06:50:24 +01:00
|
|
|
public:
|
2010-02-04 07:34:01 +01:00
|
|
|
SparcSubtarget(const std::string &TT, const std::string &FS, bool is64bit);
|
2006-02-05 06:50:24 +01: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.
|
2009-05-23 21:50:50 +02:00
|
|
|
std::string ParseSubtargetFeatures(const std::string &FS,
|
|
|
|
const std::string &CPU);
|
2010-02-04 07:34:01 +01: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 06:50:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|