2009-08-02 17:32:10 +00:00
|
|
|
//===- BlackfinSubtarget.h - Define Subtarget for the Blackfin -*- C++ -*-====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file declares the BLACKFIN specific subclass of TargetSubtargetInfo.
|
2009-08-02 17:32:10 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef BLACKFIN_SUBTARGET_H
|
|
|
|
#define BLACKFIN_SUBTARGET_H
|
|
|
|
|
2011-07-01 21:01:15 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2009-08-02 17:32:10 +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 "BlackfinGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2009-08-02 17:32:10 +00:00
|
|
|
namespace llvm {
|
2011-07-07 07:07:08 +00:00
|
|
|
class StringRef;
|
2009-08-02 17:32:10 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
class BlackfinSubtarget : public BlackfinGenSubtargetInfo {
|
2009-08-02 18:27:36 +00:00
|
|
|
bool sdram;
|
|
|
|
bool icplb;
|
|
|
|
bool wa_mi_shift;
|
|
|
|
bool wa_csync;
|
|
|
|
bool wa_specld;
|
|
|
|
bool wa_mmr_stall;
|
|
|
|
bool wa_lcregs;
|
|
|
|
bool wa_hwloop;
|
|
|
|
bool wa_ind_call;
|
|
|
|
bool wa_killed_mmr;
|
|
|
|
bool wa_rets;
|
2009-08-02 17:32:10 +00:00
|
|
|
public:
|
2011-06-30 01:53:36 +00:00
|
|
|
BlackfinSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS);
|
2009-08-02 17:32:10 +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);
|
2009-08-02 17:32:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|