Disable stack coloring with register for now. It's not able to set kill markers.
[llvm/avr.git] / lib / Target / Blackfin / Blackfin.h
blobec1fa8689ded78282aaf2984b7b147f90f95891e
1 //=== Blackfin.h - Top-level interface for Blackfin backend -----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the entry points for global functions defined in the LLVM
11 // Blackfin back-end.
13 //===----------------------------------------------------------------------===//
15 #ifndef TARGET_BLACKFIN_H
16 #define TARGET_BLACKFIN_H
18 #include "llvm/Target/TargetMachine.h"
20 namespace llvm {
22 class FunctionPass;
23 class BlackfinTargetMachine;
25 FunctionPass *createBlackfinISelDag(BlackfinTargetMachine &TM,
26 CodeGenOpt::Level OptLevel);
27 extern Target TheBlackfinTarget;
29 } // end namespace llvm
31 // Defines symbolic names for Blackfin registers. This defines a mapping from
32 // register name to register number.
33 #include "BlackfinGenRegisterNames.inc"
35 // Defines symbolic names for the Blackfin instructions.
36 #include "BlackfinGenInstrNames.inc"
38 #endif