2009-08-02 17:32:10 +00:00
|
|
|
//=== Blackfin.h - Top-level interface for Blackfin backend -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// Blackfin back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_BLACKFIN_H
|
|
|
|
#define TARGET_BLACKFIN_H
|
|
|
|
|
2011-07-14 20:59:42 +00:00
|
|
|
#include "MCTargetDesc/BlackfinMCTargetDesc.h"
|
2009-08-02 17:32:10 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class FunctionPass;
|
|
|
|
class BlackfinTargetMachine;
|
|
|
|
|
|
|
|
FunctionPass *createBlackfinISelDag(BlackfinTargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|