2006-02-05 05:50:24 +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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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 {
|
|
|
|
class Module;
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
class SparcSubtarget : public TargetSubtarget {
|
2006-01-26 07:22:22 +00:00
|
|
|
bool IsV9;
|
|
|
|
bool V8DeprecatedInsts;
|
|
|
|
bool IsVIS;
|
2006-01-26 06:51:21 +00:00
|
|
|
public:
|
2006-02-05 05:50:24 +00:00
|
|
|
SparcSubtarget(const Module &M, const std::string &FS);
|
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.
|
2009-05-23 19:50:50 +00:00
|
|
|
std::string ParseSubtargetFeatures(const std::string &FS,
|
|
|
|
const std::string &CPU);
|
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|