c518c01b94f75c7d970c65eac6f7072a71cde6b6
[oota-llvm.git] / lib / Bytecode / Writer / WriterInternals.h
1 //===- WriterInternals.h - Data structures shared by the Writer -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header defines the interface used between components of the bytecode
11 // writer.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LIB_BYTECODE_WRITER_WRITERINTERNALS_H
16 #define LLVM_LIB_BYTECODE_WRITER_WRITERINTERNALS_H
17
18 #include "SlotCalculator.h"
19 #include "llvm/Bytecode/Writer.h"
20 #include "llvm/Bytecode/Format.h"
21 #include "llvm/Instruction.h"
22 #include "llvm/Support/DataTypes.h"
23 #include <string>
24 #include <vector>
25
26 namespace llvm {
27   class InlineAsm;
28   class TypeSymbolTable;
29
30 class BytecodeWriter {
31   std::vector<unsigned char> &Out;
32   SlotCalculator Table;
33 public:
34   BytecodeWriter(std::vector<unsigned char> &o, const Module *M);
35
36 private:
37   void outputConstants(bool isFunction);
38   void outputConstantStrings();
39   void outputFunction(const Function *F);
40   void outputCompactionTable();
41   void outputCompactionTypes(unsigned StartNo);
42   void outputCompactionTablePlane(unsigned PlaneNo,
43                                   const std::vector<const Value*> &TypePlane,
44                                   unsigned StartNo);
45   void outputInstructions(const Function *F);
46   void outputInstruction(const Instruction &I);
47   void outputInstructionFormat0(const Instruction *I, unsigned Opcode,
48                                 const SlotCalculator &Table,
49                                 unsigned Type);
50   void outputInstrVarArgsCall(const Instruction *I,
51                               unsigned Opcode,
52                               const SlotCalculator &Table,
53                               unsigned Type) ;
54   inline void outputInstructionFormat1(const Instruction *I,
55                                        unsigned Opcode,
56                                        unsigned *Slots,
57                                        unsigned Type) ;
58   inline void outputInstructionFormat2(const Instruction *I,
59                                        unsigned Opcode,
60                                        unsigned *Slots,
61                                        unsigned Type) ;
62   inline void outputInstructionFormat3(const Instruction *I,
63                                        unsigned Opcode,
64                                        unsigned *Slots,
65                                        unsigned Type) ;
66
67   void outputModuleInfoBlock(const Module *C);
68   void outputTypeSymbolTable(const TypeSymbolTable &TST);
69   void outputValueSymbolTable(const SymbolTable &ST);
70   void outputTypes(unsigned StartNo);
71   void outputConstantsInPlane(const std::vector<const Value*> &Plane,
72                               unsigned StartNo);
73   void outputConstant(const Constant *CPV);
74   void outputInlineAsm(const InlineAsm *IA);
75   void outputType(const Type *T);
76
77   /// @brief Unsigned integer output primitive
78   inline void output(unsigned i, int pos = -1);
79
80   /// @brief Signed integer output primitive
81   inline void output(int i);
82
83   /// @brief 64-bit variable bit rate output primitive.
84   inline void output_vbr(uint64_t i);
85
86   /// @brief 32-bit variable bit rate output primitive.
87   inline void output_vbr(unsigned i);
88
89   /// @brief Signed 64-bit variable bit rate output primitive.
90   inline void output_vbr(int64_t i);
91
92   /// @brief Signed 32-bit variable bit rate output primitive.
93   inline void output_vbr(int i);
94
95   inline void output(const std::string &s);
96
97   inline void output_data(const void *Ptr, const void *End);
98
99   inline void output_float(float& FloatVal);
100   inline void output_double(double& DoubleVal);
101
102   inline void output_typeid(unsigned i);
103
104   inline size_t size() const { return Out.size(); }
105   inline void resize(size_t S) { Out.resize(S); }
106   friend class BytecodeBlock;
107 };
108
109 /// BytecodeBlock - Little helper class is used by the bytecode writer to help
110 /// do backpatching of bytecode block sizes really easily.  It backpatches when
111 /// it goes out of scope.
112 ///
113 class BytecodeBlock {
114   unsigned Id;
115   unsigned Loc;
116   BytecodeWriter& Writer;
117
118   /// ElideIfEmpty - If this is true and the bytecode block ends up being empty,
119   /// the block can remove itself from the output stream entirely.
120   bool ElideIfEmpty;
121
122   /// If this is true then the block is written with a long format header using
123   /// a uint (32-bits) for both the block id and size. Otherwise, it uses the
124   /// short format which is a single uint with 27 bits for size and 5 bits for
125   /// the block id. Both formats are used in a bc file with version 1.3.
126   /// Previously only the long format was used.
127   bool HasLongFormat;
128
129   BytecodeBlock(const BytecodeBlock &);   // do not implement
130   void operator=(const BytecodeBlock &);  // do not implement
131 public:
132   inline BytecodeBlock(unsigned ID, BytecodeWriter& w,
133                        bool elideIfEmpty = false, bool hasLongFormat = false);
134
135   inline ~BytecodeBlock();
136 };
137
138 } // End llvm namespace
139
140 #endif