Use opaque decl instead of #include
[oota-llvm.git] / lib / Bytecode / Writer / ConstantWriter.cpp
1 //===-- WriteConst.cpp - Functions for writing constants ---------*- C++ -*--=//
2 //
3 // This file implements the routines for encoding constants to a bytecode 
4 // stream.
5 //
6 // Note that the performance of this library is not terribly important, because
7 // it shouldn't be used by JIT type applications... so it is not a huge focus
8 // at least.  :)
9 //
10 //===----------------------------------------------------------------------===//
11
12 #include "WriterInternals.h"
13 #include "llvm/ConstantVals.h"
14 #include "llvm/SymbolTable.h"
15 #include "llvm/DerivedTypes.h"
16 #include <iostream>
17 using std::cerr;
18
19 void BytecodeWriter::outputType(const Type *T) {
20   output_vbr((unsigned)T->getPrimitiveID(), Out);
21   
22   // That's all there is to handling primitive types...
23   if (T->isPrimitiveType())
24     return;     // We might do this if we alias a prim type: %x = type int
25   
26   switch (T->getPrimitiveID()) {   // Handle derived types now.
27   case Type::FunctionTyID: {
28     const FunctionType *MT = cast<const FunctionType>(T);
29     int Slot = Table.getValSlot(MT->getReturnType());
30     assert(Slot != -1 && "Type used but not available!!");
31     output_vbr((unsigned)Slot, Out);
32
33     // Output the number of arguments to method (+1 if varargs):
34     output_vbr(MT->getParamTypes().size()+MT->isVarArg(), Out);
35
36     // Output all of the arguments...
37     FunctionType::ParamTypes::const_iterator I = MT->getParamTypes().begin();
38     for (; I != MT->getParamTypes().end(); ++I) {
39       Slot = Table.getValSlot(*I);
40       assert(Slot != -1 && "Type used but not available!!");
41       output_vbr((unsigned)Slot, Out);
42     }
43
44     // Terminate list with VoidTy if we are a varargs function...
45     if (MT->isVarArg())
46       output_vbr((unsigned)Type::VoidTy->getPrimitiveID(), Out);
47     break;
48   }
49
50   case Type::ArrayTyID: {
51     const ArrayType *AT = cast<const ArrayType>(T);
52     int Slot = Table.getValSlot(AT->getElementType());
53     assert(Slot != -1 && "Type used but not available!!");
54     output_vbr((unsigned)Slot, Out);
55     //cerr << "Type slot = " << Slot << " Type = " << T->getName() << endl;
56
57     output_vbr(AT->getNumElements(), Out);
58     break;
59   }
60
61   case Type::StructTyID: {
62     const StructType *ST = cast<const StructType>(T);
63
64     // Output all of the element types...
65     StructType::ElementTypes::const_iterator I = ST->getElementTypes().begin();
66     for (; I != ST->getElementTypes().end(); ++I) {
67       int Slot = Table.getValSlot(*I);
68       assert(Slot != -1 && "Type used but not available!!");
69       output_vbr((unsigned)Slot, Out);
70     }
71
72     // Terminate list with VoidTy
73     output_vbr((unsigned)Type::VoidTy->getPrimitiveID(), Out);
74     break;
75   }
76
77   case Type::PointerTyID: {
78     const PointerType *PT = cast<const PointerType>(T);
79     int Slot = Table.getValSlot(PT->getElementType());
80     assert(Slot != -1 && "Type used but not available!!");
81     output_vbr((unsigned)Slot, Out);
82     break;
83   }
84
85   case Type::OpaqueTyID: {
86     // No need to emit anything, just the count of opaque types is enough.
87     break;
88   }
89
90   //case Type::PackedTyID:
91   default:
92     cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
93          << " Type '" << T->getDescription() << "'\n";
94     break;
95   }
96 }
97
98 bool BytecodeWriter::outputConstant(const Constant *CPV) {
99   switch (CPV->getType()->getPrimitiveID()) {
100   case Type::BoolTyID:    // Boolean Types
101     if (cast<const ConstantBool>(CPV)->getValue())
102       output_vbr((unsigned)1, Out);
103     else
104       output_vbr((unsigned)0, Out);
105     break;
106
107   case Type::UByteTyID:   // Unsigned integer types...
108   case Type::UShortTyID:
109   case Type::UIntTyID:
110   case Type::ULongTyID:
111     output_vbr(cast<const ConstantUInt>(CPV)->getValue(), Out);
112     break;
113
114   case Type::SByteTyID:   // Signed integer types...
115   case Type::ShortTyID:
116   case Type::IntTyID:
117   case Type::LongTyID:
118     output_vbr(cast<const ConstantSInt>(CPV)->getValue(), Out);
119     break;
120
121   case Type::TypeTyID:     // Serialize type type
122     assert(0 && "Types should not be in the Constant!");
123     break;
124
125   case Type::ArrayTyID: {
126     const ConstantArray *CPA = cast<const ConstantArray>(CPV);
127     unsigned size = CPA->getValues().size();
128     assert(size == cast<ArrayType>(CPA->getType())->getNumElements() && "ConstantArray out of whack!");
129     for (unsigned i = 0; i < size; i++) {
130       int Slot = Table.getValSlot(CPA->getOperand(i));
131       assert(Slot != -1 && "Constant used but not available!!");
132       output_vbr((unsigned)Slot, Out);
133     }
134     break;
135   }
136
137   case Type::StructTyID: {
138     const ConstantStruct *CPS = cast<const ConstantStruct>(CPV);
139     const std::vector<Use> &Vals = CPS->getValues();
140
141     for (unsigned i = 0; i < Vals.size(); ++i) {
142       int Slot = Table.getValSlot(Vals[i]);
143       assert(Slot != -1 && "Constant used but not available!!");
144       output_vbr((unsigned)Slot, Out);
145     }      
146     break;
147   }
148
149   case Type::PointerTyID: {
150     const ConstantPointer *CPP = cast<const ConstantPointer>(CPV);
151     if (isa<ConstantPointerNull>(CPP)) {
152       output_vbr((unsigned)0, Out);
153     } else if (const ConstantPointerRef *CPR = 
154                         dyn_cast<ConstantPointerRef>(CPP)) {
155       output_vbr((unsigned)1, Out);
156       int Slot = Table.getValSlot((Value*)CPR->getValue());
157       assert(Slot != -1 && "Global used but not available!!");
158       output_vbr((unsigned)Slot, Out);
159     } else {
160       assert(0 && "Unknown ConstantPointer Subclass!");
161     }
162     break;
163   }
164
165   case Type::FloatTyID: {   // Floating point types...
166     float Tmp = (float)cast<ConstantFP>(CPV)->getValue();
167     output_data(&Tmp, &Tmp+1, Out);
168     break;
169   }
170   case Type::DoubleTyID: {
171     double Tmp = cast<ConstantFP>(CPV)->getValue();
172     output_data(&Tmp, &Tmp+1, Out);
173     break;
174   }
175
176   case Type::VoidTyID: 
177   case Type::LabelTyID:
178   default:
179     cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
180          << " type '" << CPV->getType()->getName() << "'\n";
181     break;
182   }
183   return false;
184 }