Don't generate carry bit when loading immediate values on the Microblaze.
[oota-llvm.git] / lib / Target / MBlaze / MBlaze.h
1 //===-- MBlaze.h - Top-level interface for MBlaze ---------------*- 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
11 // the LLVM MBlaze back-end.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef TARGET_MBLAZE_H
16 #define TARGET_MBLAZE_H
17
18 #include "llvm/Target/TargetMachine.h"
19
20 namespace llvm {
21   class MBlazeTargetMachine;
22   class FunctionPass;
23   class MachineCodeEmitter;
24   class MCCodeEmitter;
25   class TargetAsmBackend;
26   class formatted_raw_ostream;
27
28   MCCodeEmitter *createMBlazeMCCodeEmitter(const Target &,
29                                            TargetMachine &TM,
30                                            MCContext &Ctx);
31
32   TargetAsmBackend *createMBlazeAsmBackend(const Target &, const std::string &);
33
34   FunctionPass *createMBlazeISelDag(MBlazeTargetMachine &TM);
35   FunctionPass *createMBlazeDelaySlotFillerPass(MBlazeTargetMachine &TM);
36
37   extern Target TheMBlazeTarget;
38 } // end namespace llvm;
39
40 // Defines symbolic names for MBlaze registers.  This defines a mapping from
41 // register name to register number.
42 #include "MBlazeGenRegisterNames.inc"
43
44 // Defines symbolic names for the MBlaze instructions.
45 #include "MBlazeGenInstrNames.inc"
46
47 #endif