Add a new emitAlignment method
[oota-llvm.git] / include / llvm / CodeGen / MachineJumpTableInfo.h
1 //===-- CodeGen/MachineJumpTableInfo.h - Abstract Jump Tables  --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Nate Begeman and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // The MachineJumpTableInfo class keeps track of jump tables referenced by
11 // lowered switch instructions in the MachineFunction.
12 //
13 // Instructions reference the address of these jump tables through the use of 
14 // MO_JumpTableIndex values.  When emitting assembly or machine code, these 
15 // virtual address references are converted to refer to the address of the 
16 // function jump tables.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #ifndef LLVM_CODEGEN_MACHINEJUMPTABLEINFO_H
21 #define LLVM_CODEGEN_MACHINEJUMPTABLEINFO_H
22
23 #include <vector>
24 #include <iosfwd>
25
26 namespace llvm {
27
28 class MachineBasicBlock;
29
30 /// MachineJumpTableEntry - One jump table in the jump table info.
31 ///
32 struct MachineJumpTableEntry {
33   /// MBBs - The vector of basic blocks from which to create the jump table.
34   std::vector<MachineBasicBlock*> MBBs;
35   
36   MachineJumpTableEntry(std::vector<MachineBasicBlock*> &M) : MBBs(M) {}
37 };
38   
39 class MachineJumpTableInfo {
40   const TargetData &TD;
41   std::vector<MachineJumpTableEntry> JumpTables;
42 public:
43   MachineJumpTableInfo(const TargetData &td) : TD(td) {}
44     
45   /// getJumpTableIndex - Create a new jump table or return an existing one.
46   ///
47   unsigned getJumpTableIndex(std::vector<MachineBasicBlock*> &DestBBs);
48   
49   /// isEmpty - Return true if there are no jump tables.
50   ///
51   bool isEmpty() const { return JumpTables.empty(); }
52
53   const std::vector<MachineJumpTableEntry> &getJumpTables() const {
54     return JumpTables;
55   }
56   
57   /// getEntrySize - returns the size of an individual field in a jump table 
58   unsigned getEntrySize() const;
59   
60   /// getAlignment - returns the target's preferred alignment for jump tables
61   unsigned getAlignment() const;
62   
63   /// print - Used by the MachineFunction printer to print information about
64   /// jump tables.  Implemented in MachineFunction.cpp
65   ///
66   void print(std::ostream &OS) const;
67
68   /// dump - Call print(std::cerr) to be called from the debugger.
69   ///
70   void dump() const;
71 };
72
73 } // End llvm namespace
74
75 #endif