blob: 127a3bac003ce06a54057c8fc82d75ac896e175c [file] [log] [blame]
Chris Lattner14999342004-01-10 19:07:06 +00001//===-- Writer.cpp - Library for writing LLVM bytecode files --------------===//
Misha Brukman23c6d2c2005-04-21 21:48:46 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Misha Brukman23c6d2c2005-04-21 21:48:46 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Bytecode/Writer.h
11//
Chris Lattner00950542001-06-06 20:29:01 +000012// Note that this file uses an unusual technique of outputting all the bytecode
Reid Spencerad89bd62004-07-25 18:07:36 +000013// to a vector of unsigned char, then copies the vector to an ostream. The
Chris Lattner00950542001-06-06 20:29:01 +000014// reason for this is that we must do "seeking" in the stream to do back-
15// patching, and some very important ostreams that we want to support (like
16// pipes) do not support seeking. :( :( :(
17//
Chris Lattner00950542001-06-06 20:29:01 +000018//===----------------------------------------------------------------------===//
19
20#include "WriterInternals.h"
Chris Lattner635cd932002-07-23 19:56:44 +000021#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattnerdee199f2005-05-06 22:34:01 +000022#include "llvm/CallingConv.h"
Chris Lattner83bb3d22004-01-14 23:36:54 +000023#include "llvm/Constants.h"
24#include "llvm/DerivedTypes.h"
Chris Lattner3bc5a602006-01-25 23:08:15 +000025#include "llvm/InlineAsm.h"
Reid Spencerad89bd62004-07-25 18:07:36 +000026#include "llvm/Instructions.h"
Chris Lattner00950542001-06-06 20:29:01 +000027#include "llvm/Module.h"
Chris Lattner00950542001-06-06 20:29:01 +000028#include "llvm/SymbolTable.h"
Reid Spencerad89bd62004-07-25 18:07:36 +000029#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer17f52c52004-11-06 23:17:23 +000030#include "llvm/Support/Compressor.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000031#include "llvm/Support/MathExtras.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000032#include "llvm/Support/Streams.h"
Reid Spencer32f55532006-06-07 23:18:34 +000033#include "llvm/System/Program.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/ADT/STLExtras.h"
35#include "llvm/ADT/Statistic.h"
Chris Lattner32abce62004-01-10 19:10:01 +000036#include <cstring>
Chris Lattner00950542001-06-06 20:29:01 +000037#include <algorithm>
Chris Lattner44f549b2004-01-10 18:49:43 +000038using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000039
Reid Spencer38d54be2004-08-17 07:45:14 +000040/// This value needs to be incremented every time the bytecode format changes
41/// so that the reader can distinguish which format of the bytecode file has
42/// been written.
43/// @brief The bytecode version number
Reid Spencer6996feb2006-11-08 21:27:54 +000044const unsigned BCVersionNum = 7;
Reid Spencer38d54be2004-08-17 07:45:14 +000045
Chris Lattner635cd932002-07-23 19:56:44 +000046static RegisterPass<WriteBytecodePass> X("emitbytecode", "Bytecode Writer");
47
Misha Brukman23c6d2c2005-04-21 21:48:46 +000048static Statistic<>
Chris Lattnera92f6962002-10-01 22:38:41 +000049BytesWritten("bytecodewriter", "Number of bytecode bytes written");
Chris Lattner635cd932002-07-23 19:56:44 +000050
Reid Spencerad89bd62004-07-25 18:07:36 +000051//===----------------------------------------------------------------------===//
52//=== Output Primitives ===//
53//===----------------------------------------------------------------------===//
54
55// output - If a position is specified, it must be in the valid portion of the
Misha Brukman23c6d2c2005-04-21 21:48:46 +000056// string... note that this should be inlined always so only the relevant IF
Reid Spencerad89bd62004-07-25 18:07:36 +000057// body should be included.
58inline void BytecodeWriter::output(unsigned i, int pos) {
59 if (pos == -1) { // Be endian clean, little endian is our friend
Misha Brukman23c6d2c2005-04-21 21:48:46 +000060 Out.push_back((unsigned char)i);
Reid Spencerad89bd62004-07-25 18:07:36 +000061 Out.push_back((unsigned char)(i >> 8));
62 Out.push_back((unsigned char)(i >> 16));
63 Out.push_back((unsigned char)(i >> 24));
64 } else {
65 Out[pos ] = (unsigned char)i;
66 Out[pos+1] = (unsigned char)(i >> 8);
67 Out[pos+2] = (unsigned char)(i >> 16);
68 Out[pos+3] = (unsigned char)(i >> 24);
69 }
70}
71
72inline void BytecodeWriter::output(int i) {
73 output((unsigned)i);
74}
75
76/// output_vbr - Output an unsigned value, by using the least number of bytes
77/// possible. This is useful because many of our "infinite" values are really
78/// very small most of the time; but can be large a few times.
Misha Brukman23c6d2c2005-04-21 21:48:46 +000079/// Data format used: If you read a byte with the high bit set, use the low
80/// seven bits as data and then read another byte.
Reid Spencerad89bd62004-07-25 18:07:36 +000081inline void BytecodeWriter::output_vbr(uint64_t i) {
82 while (1) {
83 if (i < 0x80) { // done?
84 Out.push_back((unsigned char)i); // We know the high bit is clear...
85 return;
86 }
Misha Brukman23c6d2c2005-04-21 21:48:46 +000087
Reid Spencerad89bd62004-07-25 18:07:36 +000088 // Nope, we are bigger than a character, output the next 7 bits and set the
89 // high bit to say that there is more coming...
90 Out.push_back(0x80 | ((unsigned char)i & 0x7F));
91 i >>= 7; // Shift out 7 bits now...
92 }
93}
94
95inline void BytecodeWriter::output_vbr(unsigned i) {
96 while (1) {
97 if (i < 0x80) { // done?
98 Out.push_back((unsigned char)i); // We know the high bit is clear...
99 return;
100 }
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000101
Reid Spencerad89bd62004-07-25 18:07:36 +0000102 // Nope, we are bigger than a character, output the next 7 bits and set the
103 // high bit to say that there is more coming...
104 Out.push_back(0x80 | ((unsigned char)i & 0x7F));
105 i >>= 7; // Shift out 7 bits now...
106 }
107}
108
109inline void BytecodeWriter::output_typeid(unsigned i) {
110 if (i <= 0x00FFFFFF)
111 this->output_vbr(i);
112 else {
113 this->output_vbr(0x00FFFFFF);
114 this->output_vbr(i);
115 }
116}
117
118inline void BytecodeWriter::output_vbr(int64_t i) {
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000119 if (i < 0)
Reid Spencerad89bd62004-07-25 18:07:36 +0000120 output_vbr(((uint64_t)(-i) << 1) | 1); // Set low order sign bit...
121 else
122 output_vbr((uint64_t)i << 1); // Low order bit is clear.
123}
124
125
126inline void BytecodeWriter::output_vbr(int i) {
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000127 if (i < 0)
Reid Spencerad89bd62004-07-25 18:07:36 +0000128 output_vbr(((unsigned)(-i) << 1) | 1); // Set low order sign bit...
129 else
130 output_vbr((unsigned)i << 1); // Low order bit is clear.
131}
132
Reid Spencer38d54be2004-08-17 07:45:14 +0000133inline void BytecodeWriter::output(const std::string &s) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000134 unsigned Len = s.length();
Chris Lattnerc847f7c2006-07-28 22:07:54 +0000135 output_vbr(Len); // Strings may have an arbitrary length.
Reid Spencerad89bd62004-07-25 18:07:36 +0000136 Out.insert(Out.end(), s.begin(), s.end());
Reid Spencerad89bd62004-07-25 18:07:36 +0000137}
138
139inline void BytecodeWriter::output_data(const void *Ptr, const void *End) {
140 Out.insert(Out.end(), (const unsigned char*)Ptr, (const unsigned char*)End);
141}
142
143inline void BytecodeWriter::output_float(float& FloatVal) {
144 /// FIXME: This isn't optimal, it has size problems on some platforms
145 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000146 uint32_t i = FloatToBits(FloatVal);
Chris Lattnerc847f7c2006-07-28 22:07:54 +0000147 Out.push_back( static_cast<unsigned char>( (i ) & 0xFF));
148 Out.push_back( static_cast<unsigned char>( (i >> 8 ) & 0xFF));
Jim Laskeycb6682f2005-08-17 19:34:49 +0000149 Out.push_back( static_cast<unsigned char>( (i >> 16) & 0xFF));
150 Out.push_back( static_cast<unsigned char>( (i >> 24) & 0xFF));
Reid Spencerad89bd62004-07-25 18:07:36 +0000151}
152
153inline void BytecodeWriter::output_double(double& DoubleVal) {
154 /// FIXME: This isn't optimal, it has size problems on some platforms
155 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000156 uint64_t i = DoubleToBits(DoubleVal);
Chris Lattnerc847f7c2006-07-28 22:07:54 +0000157 Out.push_back( static_cast<unsigned char>( (i ) & 0xFF));
158 Out.push_back( static_cast<unsigned char>( (i >> 8 ) & 0xFF));
Jim Laskeycb6682f2005-08-17 19:34:49 +0000159 Out.push_back( static_cast<unsigned char>( (i >> 16) & 0xFF));
160 Out.push_back( static_cast<unsigned char>( (i >> 24) & 0xFF));
161 Out.push_back( static_cast<unsigned char>( (i >> 32) & 0xFF));
162 Out.push_back( static_cast<unsigned char>( (i >> 40) & 0xFF));
163 Out.push_back( static_cast<unsigned char>( (i >> 48) & 0xFF));
164 Out.push_back( static_cast<unsigned char>( (i >> 56) & 0xFF));
Reid Spencerad89bd62004-07-25 18:07:36 +0000165}
166
Chris Lattnerc76ea432005-11-12 18:34:09 +0000167inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter &w,
168 bool elideIfEmpty, bool hasLongFormat)
Reid Spencerad89bd62004-07-25 18:07:36 +0000169 : Id(ID), Writer(w), ElideIfEmpty(elideIfEmpty), HasLongFormat(hasLongFormat){
170
171 if (HasLongFormat) {
172 w.output(ID);
173 w.output(0U); // For length in long format
174 } else {
175 w.output(0U); /// Place holder for ID and length for this block
176 }
177 Loc = w.size();
178}
179
Chris Lattnerb0bf6642004-10-14 01:35:17 +0000180inline BytecodeBlock::~BytecodeBlock() { // Do backpatch when block goes out
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000181 // of scope...
Reid Spencerad89bd62004-07-25 18:07:36 +0000182 if (Loc == Writer.size() && ElideIfEmpty) {
183 // If the block is empty, and we are allowed to, do not emit the block at
184 // all!
185 Writer.resize(Writer.size()-(HasLongFormat?8:4));
186 return;
187 }
188
Reid Spencerad89bd62004-07-25 18:07:36 +0000189 if (HasLongFormat)
190 Writer.output(unsigned(Writer.size()-Loc), int(Loc-4));
191 else
192 Writer.output(unsigned(Writer.size()-Loc) << 5 | (Id & 0x1F), int(Loc-4));
Reid Spencerad89bd62004-07-25 18:07:36 +0000193}
194
195//===----------------------------------------------------------------------===//
196//=== Constant Output ===//
197//===----------------------------------------------------------------------===//
198
199void BytecodeWriter::outputType(const Type *T) {
200 output_vbr((unsigned)T->getTypeID());
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000201
Reid Spencerad89bd62004-07-25 18:07:36 +0000202 // That's all there is to handling primitive types...
203 if (T->isPrimitiveType()) {
204 return; // We might do this if we alias a prim type: %x = type int
205 }
206
207 switch (T->getTypeID()) { // Handle derived types now.
208 case Type::FunctionTyID: {
209 const FunctionType *MT = cast<FunctionType>(T);
210 int Slot = Table.getSlot(MT->getReturnType());
211 assert(Slot != -1 && "Type used but not available!!");
212 output_typeid((unsigned)Slot);
213
214 // Output the number of arguments to function (+1 if varargs):
215 output_vbr((unsigned)MT->getNumParams()+MT->isVarArg());
216
217 // Output all of the arguments...
218 FunctionType::param_iterator I = MT->param_begin();
219 for (; I != MT->param_end(); ++I) {
220 Slot = Table.getSlot(*I);
221 assert(Slot != -1 && "Type used but not available!!");
222 output_typeid((unsigned)Slot);
223 }
224
225 // Terminate list with VoidTy if we are a varargs function...
226 if (MT->isVarArg())
227 output_typeid((unsigned)Type::VoidTyID);
228 break;
229 }
230
231 case Type::ArrayTyID: {
232 const ArrayType *AT = cast<ArrayType>(T);
233 int Slot = Table.getSlot(AT->getElementType());
234 assert(Slot != -1 && "Type used but not available!!");
235 output_typeid((unsigned)Slot);
Reid Spencerad89bd62004-07-25 18:07:36 +0000236 output_vbr(AT->getNumElements());
237 break;
238 }
239
Brian Gaeke715c90b2004-08-20 06:00:58 +0000240 case Type::PackedTyID: {
241 const PackedType *PT = cast<PackedType>(T);
242 int Slot = Table.getSlot(PT->getElementType());
243 assert(Slot != -1 && "Type used but not available!!");
244 output_typeid((unsigned)Slot);
245 output_vbr(PT->getNumElements());
246 break;
247 }
248
249
Reid Spencerad89bd62004-07-25 18:07:36 +0000250 case Type::StructTyID: {
251 const StructType *ST = cast<StructType>(T);
252
253 // Output all of the element types...
254 for (StructType::element_iterator I = ST->element_begin(),
255 E = ST->element_end(); I != E; ++I) {
256 int Slot = Table.getSlot(*I);
257 assert(Slot != -1 && "Type used but not available!!");
258 output_typeid((unsigned)Slot);
259 }
260
261 // Terminate list with VoidTy
262 output_typeid((unsigned)Type::VoidTyID);
263 break;
264 }
265
266 case Type::PointerTyID: {
267 const PointerType *PT = cast<PointerType>(T);
268 int Slot = Table.getSlot(PT->getElementType());
269 assert(Slot != -1 && "Type used but not available!!");
270 output_typeid((unsigned)Slot);
271 break;
272 }
273
Chris Lattnerb0bf6642004-10-14 01:35:17 +0000274 case Type::OpaqueTyID:
Reid Spencerad89bd62004-07-25 18:07:36 +0000275 // No need to emit anything, just the count of opaque types is enough.
276 break;
Reid Spencerad89bd62004-07-25 18:07:36 +0000277
Reid Spencerad89bd62004-07-25 18:07:36 +0000278 default:
Bill Wendling68fe61d2006-11-29 00:19:40 +0000279 llvm_cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
Reid Spencerad89bd62004-07-25 18:07:36 +0000280 << " Type '" << T->getDescription() << "'\n";
281 break;
282 }
283}
284
285void BytecodeWriter::outputConstant(const Constant *CPV) {
286 assert((CPV->getType()->isPrimitiveType() || !CPV->isNullValue()) &&
287 "Shouldn't output null constants!");
288
289 // We must check for a ConstantExpr before switching by type because
290 // a ConstantExpr can be of any type, and has no explicit value.
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000291 //
Reid Spencerad89bd62004-07-25 18:07:36 +0000292 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
293 // FIXME: Encoding of constant exprs could be much more compact!
294 assert(CE->getNumOperands() > 0 && "ConstantExpr with 0 operands");
Reid Spencer3da59db2006-11-27 01:05:10 +0000295 assert(CE->getNumOperands() != 1 || CE->isCast());
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000296 output_vbr(1+CE->getNumOperands()); // flags as an expr
Reid Spencerb83eb642006-10-20 07:07:24 +0000297 output_vbr(CE->getOpcode()); // Put out the CE op code
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000298
Reid Spencerad89bd62004-07-25 18:07:36 +0000299 for (User::const_op_iterator OI = CE->op_begin(); OI != CE->op_end(); ++OI){
300 int Slot = Table.getSlot(*OI);
301 assert(Slot != -1 && "Unknown constant used in ConstantExpr!!");
302 output_vbr((unsigned)Slot);
303 Slot = Table.getSlot((*OI)->getType());
304 output_typeid((unsigned)Slot);
305 }
306 return;
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000307 } else if (isa<UndefValue>(CPV)) {
308 output_vbr(1U); // 1 -> UndefValue constant.
309 return;
Reid Spencerad89bd62004-07-25 18:07:36 +0000310 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +0000311 output_vbr(0U); // flag as not a ConstantExpr (i.e. 0 operands)
Reid Spencerad89bd62004-07-25 18:07:36 +0000312 }
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000313
Reid Spencerad89bd62004-07-25 18:07:36 +0000314 switch (CPV->getType()->getTypeID()) {
315 case Type::BoolTyID: // Boolean Types
316 if (cast<ConstantBool>(CPV)->getValue())
317 output_vbr(1U);
318 else
319 output_vbr(0U);
320 break;
321
322 case Type::UByteTyID: // Unsigned integer types...
323 case Type::UShortTyID:
324 case Type::UIntTyID:
325 case Type::ULongTyID:
Reid Spencerb83eb642006-10-20 07:07:24 +0000326 output_vbr(cast<ConstantInt>(CPV)->getZExtValue());
Reid Spencerad89bd62004-07-25 18:07:36 +0000327 break;
328
329 case Type::SByteTyID: // Signed integer types...
330 case Type::ShortTyID:
331 case Type::IntTyID:
332 case Type::LongTyID:
Reid Spencerb83eb642006-10-20 07:07:24 +0000333 output_vbr(cast<ConstantInt>(CPV)->getSExtValue());
Reid Spencerad89bd62004-07-25 18:07:36 +0000334 break;
335
336 case Type::ArrayTyID: {
337 const ConstantArray *CPA = cast<ConstantArray>(CPV);
338 assert(!CPA->isString() && "Constant strings should be handled specially!");
339
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000340 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000341 int Slot = Table.getSlot(CPA->getOperand(i));
342 assert(Slot != -1 && "Constant used but not available!!");
343 output_vbr((unsigned)Slot);
344 }
345 break;
346 }
347
Brian Gaeke715c90b2004-08-20 06:00:58 +0000348 case Type::PackedTyID: {
349 const ConstantPacked *CP = cast<ConstantPacked>(CPV);
350
351 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) {
352 int Slot = Table.getSlot(CP->getOperand(i));
353 assert(Slot != -1 && "Constant used but not available!!");
354 output_vbr((unsigned)Slot);
355 }
356 break;
357 }
358
Reid Spencerad89bd62004-07-25 18:07:36 +0000359 case Type::StructTyID: {
360 const ConstantStruct *CPS = cast<ConstantStruct>(CPV);
Reid Spencerad89bd62004-07-25 18:07:36 +0000361
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000362 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) {
363 int Slot = Table.getSlot(CPS->getOperand(i));
Reid Spencerad89bd62004-07-25 18:07:36 +0000364 assert(Slot != -1 && "Constant used but not available!!");
365 output_vbr((unsigned)Slot);
366 }
367 break;
368 }
369
370 case Type::PointerTyID:
371 assert(0 && "No non-null, non-constant-expr constants allowed!");
372 abort();
373
374 case Type::FloatTyID: { // Floating point types...
375 float Tmp = (float)cast<ConstantFP>(CPV)->getValue();
376 output_float(Tmp);
377 break;
378 }
379 case Type::DoubleTyID: {
380 double Tmp = cast<ConstantFP>(CPV)->getValue();
381 output_double(Tmp);
382 break;
383 }
384
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000385 case Type::VoidTyID:
Reid Spencerad89bd62004-07-25 18:07:36 +0000386 case Type::LabelTyID:
387 default:
Bill Wendling68fe61d2006-11-29 00:19:40 +0000388 llvm_cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
Reid Spencerad89bd62004-07-25 18:07:36 +0000389 << " type '" << *CPV->getType() << "'\n";
390 break;
391 }
392 return;
393}
394
Chris Lattner3bc5a602006-01-25 23:08:15 +0000395/// outputInlineAsm - InlineAsm's get emitted to the constant pool, so they can
396/// be shared by multiple uses.
397void BytecodeWriter::outputInlineAsm(const InlineAsm *IA) {
398 // Output a marker, so we know when we have one one parsing the constant pool.
399 // Note that this encoding is 5 bytes: not very efficient for a marker. Since
400 // unique inline asms are rare, this should hardly matter.
401 output_vbr(~0U);
402
403 output(IA->getAsmString());
404 output(IA->getConstraintString());
405 output_vbr(unsigned(IA->hasSideEffects()));
406}
407
Reid Spencerad89bd62004-07-25 18:07:36 +0000408void BytecodeWriter::outputConstantStrings() {
409 SlotCalculator::string_iterator I = Table.string_begin();
410 SlotCalculator::string_iterator E = Table.string_end();
411 if (I == E) return; // No strings to emit
412
413 // If we have != 0 strings to emit, output them now. Strings are emitted into
414 // the 'void' type plane.
415 output_vbr(unsigned(E-I));
416 output_typeid(Type::VoidTyID);
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000417
Reid Spencerad89bd62004-07-25 18:07:36 +0000418 // Emit all of the strings.
419 for (I = Table.string_begin(); I != E; ++I) {
420 const ConstantArray *Str = *I;
421 int Slot = Table.getSlot(Str->getType());
422 assert(Slot != -1 && "Constant string of unknown type?");
423 output_typeid((unsigned)Slot);
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000424
Reid Spencerad89bd62004-07-25 18:07:36 +0000425 // Now that we emitted the type (which indicates the size of the string),
426 // emit all of the characters.
427 std::string Val = Str->getAsString();
428 output_data(Val.c_str(), Val.c_str()+Val.size());
429 }
430}
431
432//===----------------------------------------------------------------------===//
433//=== Instruction Output ===//
434//===----------------------------------------------------------------------===//
Reid Spencerad89bd62004-07-25 18:07:36 +0000435
Chris Lattnerda895d62005-02-27 06:18:25 +0000436// outputInstructionFormat0 - Output those weird instructions that have a large
Chris Lattnerdee199f2005-05-06 22:34:01 +0000437// number of operands or have large operands themselves.
Reid Spencerad89bd62004-07-25 18:07:36 +0000438//
439// Format: [opcode] [type] [numargs] [arg0] [arg1] ... [arg<numargs-1>]
440//
Chris Lattnerf9d71782004-10-14 01:46:07 +0000441void BytecodeWriter::outputInstructionFormat0(const Instruction *I,
442 unsigned Opcode,
443 const SlotCalculator &Table,
444 unsigned Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000445 // Opcode must have top two bits clear...
446 output_vbr(Opcode << 2); // Instruction Opcode ID
447 output_typeid(Type); // Result type
448
449 unsigned NumArgs = I->getNumOperands();
Reid Spencer3da59db2006-11-27 01:05:10 +0000450 output_vbr(NumArgs + (isa<CastInst>(I) || isa<InvokeInst>(I) ||
451 isa<VAArgInst>(I) || Opcode == 58));
Reid Spencerad89bd62004-07-25 18:07:36 +0000452
453 if (!isa<GetElementPtrInst>(&I)) {
454 for (unsigned i = 0; i < NumArgs; ++i) {
455 int Slot = Table.getSlot(I->getOperand(i));
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000456 assert(Slot >= 0 && "No slot number for value!?!?");
Reid Spencerad89bd62004-07-25 18:07:36 +0000457 output_vbr((unsigned)Slot);
458 }
459
460 if (isa<CastInst>(I) || isa<VAArgInst>(I)) {
461 int Slot = Table.getSlot(I->getType());
462 assert(Slot != -1 && "Cast return type unknown?");
463 output_typeid((unsigned)Slot);
Reid Spencer3da59db2006-11-27 01:05:10 +0000464 } else if (isa<InvokeInst>(I)) {
Chris Lattnerdee199f2005-05-06 22:34:01 +0000465 output_vbr(cast<InvokeInst>(I)->getCallingConv());
466 } else if (Opcode == 58) { // Call escape sequence
467 output_vbr((cast<CallInst>(I)->getCallingConv() << 1) |
Jeff Cohen39cef602005-05-07 02:44:04 +0000468 unsigned(cast<CallInst>(I)->isTailCall()));
Reid Spencerad89bd62004-07-25 18:07:36 +0000469 }
Reid Spencerad89bd62004-07-25 18:07:36 +0000470 } else {
471 int Slot = Table.getSlot(I->getOperand(0));
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000472 assert(Slot >= 0 && "No slot number for value!?!?");
Reid Spencerad89bd62004-07-25 18:07:36 +0000473 output_vbr(unsigned(Slot));
474
475 // We need to encode the type of sequential type indices into their slot #
476 unsigned Idx = 1;
477 for (gep_type_iterator TI = gep_type_begin(I), E = gep_type_end(I);
478 Idx != NumArgs; ++TI, ++Idx) {
479 Slot = Table.getSlot(I->getOperand(Idx));
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000480 assert(Slot >= 0 && "No slot number for value!?!?");
481
Reid Spencerad89bd62004-07-25 18:07:36 +0000482 if (isa<SequentialType>(*TI)) {
483 unsigned IdxId;
484 switch (I->getOperand(Idx)->getType()->getTypeID()) {
485 default: assert(0 && "Unknown index type!");
486 case Type::UIntTyID: IdxId = 0; break;
487 case Type::IntTyID: IdxId = 1; break;
488 case Type::ULongTyID: IdxId = 2; break;
489 case Type::LongTyID: IdxId = 3; break;
490 }
491 Slot = (Slot << 2) | IdxId;
492 }
493 output_vbr(unsigned(Slot));
494 }
495 }
Reid Spencerad89bd62004-07-25 18:07:36 +0000496}
497
498
499// outputInstrVarArgsCall - Output the absurdly annoying varargs function calls.
500// This are more annoying than most because the signature of the call does not
501// tell us anything about the types of the arguments in the varargs portion.
502// Because of this, we encode (as type 0) all of the argument types explicitly
503// before the argument value. This really sucks, but you shouldn't be using
504// varargs functions in your code! *death to printf*!
505//
506// Format: [opcode] [type] [numargs] [arg0] [arg1] ... [arg<numargs-1>]
507//
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000508void BytecodeWriter::outputInstrVarArgsCall(const Instruction *I,
509 unsigned Opcode,
510 const SlotCalculator &Table,
511 unsigned Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000512 assert(isa<CallInst>(I) || isa<InvokeInst>(I));
513 // Opcode must have top two bits clear...
514 output_vbr(Opcode << 2); // Instruction Opcode ID
515 output_typeid(Type); // Result type (varargs type)
516
517 const PointerType *PTy = cast<PointerType>(I->getOperand(0)->getType());
518 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
519 unsigned NumParams = FTy->getNumParams();
520
521 unsigned NumFixedOperands;
522 if (isa<CallInst>(I)) {
523 // Output an operand for the callee and each fixed argument, then two for
524 // each variable argument.
525 NumFixedOperands = 1+NumParams;
526 } else {
527 assert(isa<InvokeInst>(I) && "Not call or invoke??");
528 // Output an operand for the callee and destinations, then two for each
529 // variable argument.
530 NumFixedOperands = 3+NumParams;
531 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000532 output_vbr(2 * I->getNumOperands()-NumFixedOperands +
533 unsigned(Opcode == 58 || isa<InvokeInst>(I)));
Reid Spencerad89bd62004-07-25 18:07:36 +0000534
535 // The type for the function has already been emitted in the type field of the
536 // instruction. Just emit the slot # now.
537 for (unsigned i = 0; i != NumFixedOperands; ++i) {
538 int Slot = Table.getSlot(I->getOperand(i));
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000539 assert(Slot >= 0 && "No slot number for value!?!?");
Reid Spencerad89bd62004-07-25 18:07:36 +0000540 output_vbr((unsigned)Slot);
541 }
542
543 for (unsigned i = NumFixedOperands, e = I->getNumOperands(); i != e; ++i) {
544 // Output Arg Type ID
545 int Slot = Table.getSlot(I->getOperand(i)->getType());
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000546 assert(Slot >= 0 && "No slot number for value!?!?");
Reid Spencerad89bd62004-07-25 18:07:36 +0000547 output_typeid((unsigned)Slot);
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000548
Reid Spencerad89bd62004-07-25 18:07:36 +0000549 // Output arg ID itself
550 Slot = Table.getSlot(I->getOperand(i));
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000551 assert(Slot >= 0 && "No slot number for value!?!?");
Reid Spencerad89bd62004-07-25 18:07:36 +0000552 output_vbr((unsigned)Slot);
553 }
Chris Lattnera65371e2006-05-26 18:42:34 +0000554
Reid Spencer3da59db2006-11-27 01:05:10 +0000555 if (isa<InvokeInst>(I)) {
556 // Emit the tail call/calling conv for invoke instructions
557 output_vbr(cast<InvokeInst>(I)->getCallingConv());
558 } else if (Opcode == 58) {
Chris Lattnera65371e2006-05-26 18:42:34 +0000559 const CallInst *CI = cast<CallInst>(I);
560 output_vbr((CI->getCallingConv() << 1) | unsigned(CI->isTailCall()));
Chris Lattnera65371e2006-05-26 18:42:34 +0000561 }
Reid Spencerad89bd62004-07-25 18:07:36 +0000562}
563
564
565// outputInstructionFormat1 - Output one operand instructions, knowing that no
566// operand index is >= 2^12.
567//
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000568inline void BytecodeWriter::outputInstructionFormat1(const Instruction *I,
569 unsigned Opcode,
570 unsigned *Slots,
571 unsigned Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000572 // bits Instruction format:
573 // --------------------------
574 // 01-00: Opcode type, fixed to 1.
575 // 07-02: Opcode
576 // 19-08: Resulting type plane
577 // 31-20: Operand #1 (if set to (2^12-1), then zero operands)
578 //
Chris Lattnerf9d71782004-10-14 01:46:07 +0000579 output(1 | (Opcode << 2) | (Type << 8) | (Slots[0] << 20));
Reid Spencerad89bd62004-07-25 18:07:36 +0000580}
581
582
583// outputInstructionFormat2 - Output two operand instructions, knowing that no
584// operand index is >= 2^8.
585//
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000586inline void BytecodeWriter::outputInstructionFormat2(const Instruction *I,
587 unsigned Opcode,
588 unsigned *Slots,
589 unsigned Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000590 // bits Instruction format:
591 // --------------------------
592 // 01-00: Opcode type, fixed to 2.
593 // 07-02: Opcode
594 // 15-08: Resulting type plane
595 // 23-16: Operand #1
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000596 // 31-24: Operand #2
Reid Spencerad89bd62004-07-25 18:07:36 +0000597 //
Chris Lattnerf9d71782004-10-14 01:46:07 +0000598 output(2 | (Opcode << 2) | (Type << 8) | (Slots[0] << 16) | (Slots[1] << 24));
Reid Spencerad89bd62004-07-25 18:07:36 +0000599}
600
601
602// outputInstructionFormat3 - Output three operand instructions, knowing that no
603// operand index is >= 2^6.
604//
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000605inline void BytecodeWriter::outputInstructionFormat3(const Instruction *I,
Reid Spencerad89bd62004-07-25 18:07:36 +0000606 unsigned Opcode,
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000607 unsigned *Slots,
608 unsigned Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000609 // bits Instruction format:
610 // --------------------------
611 // 01-00: Opcode type, fixed to 3.
612 // 07-02: Opcode
613 // 13-08: Resulting type plane
614 // 19-14: Operand #1
615 // 25-20: Operand #2
616 // 31-26: Operand #3
617 //
Chris Lattnerf9d71782004-10-14 01:46:07 +0000618 output(3 | (Opcode << 2) | (Type << 8) |
Chris Lattner84d1ced2004-10-14 01:57:28 +0000619 (Slots[0] << 14) | (Slots[1] << 20) | (Slots[2] << 26));
Reid Spencerad89bd62004-07-25 18:07:36 +0000620}
621
622void BytecodeWriter::outputInstruction(const Instruction &I) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000623 assert(I.getOpcode() < 57 && "Opcode too big???");
Reid Spencerad89bd62004-07-25 18:07:36 +0000624 unsigned Opcode = I.getOpcode();
625 unsigned NumOperands = I.getNumOperands();
626
Chris Lattner38287bd2005-05-06 06:13:34 +0000627 // Encode 'tail call' as 61, 'volatile load' as 62, and 'volatile store' as
628 // 63.
Chris Lattnerdee199f2005-05-06 22:34:01 +0000629 if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
630 if (CI->getCallingConv() == CallingConv::C) {
631 if (CI->isTailCall())
632 Opcode = 61; // CCC + Tail Call
633 else
634 ; // Opcode = Instruction::Call
635 } else if (CI->getCallingConv() == CallingConv::Fast) {
636 if (CI->isTailCall())
637 Opcode = 59; // FastCC + TailCall
638 else
639 Opcode = 60; // FastCC + Not Tail Call
640 } else {
641 Opcode = 58; // Call escape sequence.
642 }
Chris Lattnerdee199f2005-05-06 22:34:01 +0000643 } else if (isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000644 Opcode = 62;
Chris Lattnerdee199f2005-05-06 22:34:01 +0000645 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000646 Opcode = 63;
Chris Lattnerdee199f2005-05-06 22:34:01 +0000647 }
Reid Spencerad89bd62004-07-25 18:07:36 +0000648
649 // Figure out which type to encode with the instruction. Typically we want
650 // the type of the first parameter, as opposed to the type of the instruction
651 // (for example, with setcc, we always know it returns bool, but the type of
652 // the first param is actually interesting). But if we have no arguments
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000653 // we take the type of the instruction itself.
Reid Spencerad89bd62004-07-25 18:07:36 +0000654 //
655 const Type *Ty;
656 switch (I.getOpcode()) {
657 case Instruction::Select:
658 case Instruction::Malloc:
659 case Instruction::Alloca:
660 Ty = I.getType(); // These ALWAYS want to encode the return type
661 break;
662 case Instruction::Store:
663 Ty = I.getOperand(1)->getType(); // Encode the pointer type...
664 assert(isa<PointerType>(Ty) && "Store to nonpointer type!?!?");
665 break;
666 default: // Otherwise use the default behavior...
667 Ty = NumOperands ? I.getOperand(0)->getType() : I.getType();
668 break;
669 }
670
671 unsigned Type;
672 int Slot = Table.getSlot(Ty);
673 assert(Slot != -1 && "Type not available!!?!");
674 Type = (unsigned)Slot;
675
676 // Varargs calls and invokes are encoded entirely different from any other
677 // instructions.
678 if (const CallInst *CI = dyn_cast<CallInst>(&I)){
679 const PointerType *Ty =cast<PointerType>(CI->getCalledValue()->getType());
680 if (cast<FunctionType>(Ty->getElementType())->isVarArg()) {
681 outputInstrVarArgsCall(CI, Opcode, Table, Type);
682 return;
683 }
684 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
685 const PointerType *Ty =cast<PointerType>(II->getCalledValue()->getType());
686 if (cast<FunctionType>(Ty->getElementType())->isVarArg()) {
687 outputInstrVarArgsCall(II, Opcode, Table, Type);
688 return;
689 }
690 }
691
692 if (NumOperands <= 3) {
693 // Make sure that we take the type number into consideration. We don't want
694 // to overflow the field size for the instruction format we select.
695 //
696 unsigned MaxOpSlot = Type;
697 unsigned Slots[3]; Slots[0] = (1 << 12)-1; // Marker to signify 0 operands
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000698
Reid Spencerad89bd62004-07-25 18:07:36 +0000699 for (unsigned i = 0; i != NumOperands; ++i) {
700 int slot = Table.getSlot(I.getOperand(i));
701 assert(slot != -1 && "Broken bytecode!");
702 if (unsigned(slot) > MaxOpSlot) MaxOpSlot = unsigned(slot);
703 Slots[i] = unsigned(slot);
704 }
705
706 // Handle the special cases for various instructions...
707 if (isa<CastInst>(I) || isa<VAArgInst>(I)) {
708 // Cast has to encode the destination type as the second argument in the
709 // packet, or else we won't know what type to cast to!
710 Slots[1] = Table.getSlot(I.getType());
711 assert(Slots[1] != ~0U && "Cast return type unknown?");
712 if (Slots[1] > MaxOpSlot) MaxOpSlot = Slots[1];
713 NumOperands++;
Chris Lattner42ba6b42005-11-05 22:08:14 +0000714 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
715 assert(NumOperands == 1 && "Bogus allocation!");
716 if (AI->getAlignment()) {
717 Slots[1] = Log2_32(AI->getAlignment())+1;
718 if (Slots[1] > MaxOpSlot) MaxOpSlot = Slots[1];
719 NumOperands = 2;
720 }
Reid Spencerc8dab492006-12-03 06:28:54 +0000721 } else if (isa<ICmpInst>(I) || isa<FCmpInst>(I)) {
722 // We need to encode the compare instruction's predicate as the third
723 // operand. Its not really a slot, but we don't want to break the
724 // instruction format for these instructions.
725 NumOperands++;
726 assert(NumOperands == 3 && "CmpInst with wrong number of operands?");
727 Slots[2] = unsigned(cast<CmpInst>(&I)->getPredicate());
728 if (Slots[2] > MaxOpSlot)
729 MaxOpSlot = Slots[2];
Reid Spencerad89bd62004-07-25 18:07:36 +0000730 } else if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(&I)) {
731 // We need to encode the type of sequential type indices into their slot #
732 unsigned Idx = 1;
733 for (gep_type_iterator I = gep_type_begin(GEP), E = gep_type_end(GEP);
734 I != E; ++I, ++Idx)
735 if (isa<SequentialType>(*I)) {
736 unsigned IdxId;
737 switch (GEP->getOperand(Idx)->getType()->getTypeID()) {
738 default: assert(0 && "Unknown index type!");
739 case Type::UIntTyID: IdxId = 0; break;
740 case Type::IntTyID: IdxId = 1; break;
741 case Type::ULongTyID: IdxId = 2; break;
742 case Type::LongTyID: IdxId = 3; break;
743 }
744 Slots[Idx] = (Slots[Idx] << 2) | IdxId;
745 if (Slots[Idx] > MaxOpSlot) MaxOpSlot = Slots[Idx];
746 }
Chris Lattnerdee199f2005-05-06 22:34:01 +0000747 } else if (Opcode == 58) {
748 // If this is the escape sequence for call, emit the tailcall/cc info.
749 const CallInst &CI = cast<CallInst>(I);
750 ++NumOperands;
Chris Lattnerebf8e6c2006-05-19 21:57:37 +0000751 if (NumOperands <= 3) {
752 Slots[NumOperands-1] =
753 (CI.getCallingConv() << 1)|unsigned(CI.isTailCall());
Chris Lattnerdee199f2005-05-06 22:34:01 +0000754 if (Slots[NumOperands-1] > MaxOpSlot)
755 MaxOpSlot = Slots[NumOperands-1];
756 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000757 } else if (isa<InvokeInst>(I)) {
Chris Lattnerdee199f2005-05-06 22:34:01 +0000758 // Invoke escape seq has at least 4 operands to encode.
759 ++NumOperands;
Reid Spencerad89bd62004-07-25 18:07:36 +0000760 }
761
762 // Decide which instruction encoding to use. This is determined primarily
763 // by the number of operands, and secondarily by whether or not the max
764 // operand will fit into the instruction encoding. More operands == fewer
765 // bits per operand.
766 //
767 switch (NumOperands) {
768 case 0:
769 case 1:
770 if (MaxOpSlot < (1 << 12)-1) { // -1 because we use 4095 to indicate 0 ops
771 outputInstructionFormat1(&I, Opcode, Slots, Type);
772 return;
773 }
774 break;
775
776 case 2:
777 if (MaxOpSlot < (1 << 8)) {
778 outputInstructionFormat2(&I, Opcode, Slots, Type);
779 return;
780 }
781 break;
782
783 case 3:
784 if (MaxOpSlot < (1 << 6)) {
785 outputInstructionFormat3(&I, Opcode, Slots, Type);
786 return;
787 }
788 break;
789 default:
790 break;
791 }
792 }
793
Reid Spencer9f132762006-12-03 17:17:02 +0000794 // In the weird case of the ICmp or FCmp instructions, we need to also put
795 // out the instruction's predicate value. We do that here, after the
796 // instruction's type and operands have been written so we can reuse the
797 // code above.
798 if (const CmpInst* CI = dyn_cast<CmpInst>(&I))
799 output_vbr((unsigned)CI->getPredicate());
800
Reid Spencerad89bd62004-07-25 18:07:36 +0000801 // If we weren't handled before here, we either have a large number of
802 // operands or a large operand index that we are referring to.
803 outputInstructionFormat0(&I, Opcode, Table, Type);
804}
805
806//===----------------------------------------------------------------------===//
807//=== Block Output ===//
808//===----------------------------------------------------------------------===//
809
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000810BytecodeWriter::BytecodeWriter(std::vector<unsigned char> &o, const Module *M)
Reid Spencer798ff642004-05-26 07:37:11 +0000811 : Out(o), Table(M) {
Chris Lattner00950542001-06-06 20:29:01 +0000812
Chris Lattner83bb3d22004-01-14 23:36:54 +0000813 // Emit the signature...
Chris Lattnerc847f7c2006-07-28 22:07:54 +0000814 static const unsigned char *Sig = (const unsigned char*)"llvm";
Reid Spencerad89bd62004-07-25 18:07:36 +0000815 output_data(Sig, Sig+4);
Chris Lattner00950542001-06-06 20:29:01 +0000816
817 // Emit the top level CLASS block.
Reid Spencerad89bd62004-07-25 18:07:36 +0000818 BytecodeBlock ModuleBlock(BytecodeFormat::ModuleBlockID, *this, false, true);
Chris Lattner00950542001-06-06 20:29:01 +0000819
Chris Lattnerd445c6b2003-08-24 13:47:36 +0000820 bool isBigEndian = M->getEndianness() == Module::BigEndian;
821 bool hasLongPointers = M->getPointerSize() == Module::Pointer64;
822 bool hasNoEndianness = M->getEndianness() == Module::AnyEndianness;
823 bool hasNoPointerSize = M->getPointerSize() == Module::AnyPointerSize;
Chris Lattner186a1f72003-03-19 20:56:46 +0000824
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000825 // Output the version identifier and other information.
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000826 unsigned Version = (BCVersionNum << 4) |
Reid Spencer38d54be2004-08-17 07:45:14 +0000827 (unsigned)isBigEndian | (hasLongPointers << 1) |
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000828 (hasNoEndianness << 2) |
Reid Spencer38d54be2004-08-17 07:45:14 +0000829 (hasNoPointerSize << 3);
Reid Spencerad89bd62004-07-25 18:07:36 +0000830 output_vbr(Version);
Chris Lattner00950542001-06-06 20:29:01 +0000831
Reid Spencercb3595c2004-07-04 11:45:47 +0000832 // The Global type plane comes first
Chris Lattner186a1f72003-03-19 20:56:46 +0000833 {
Chris Lattnerc847f7c2006-07-28 22:07:54 +0000834 BytecodeBlock CPool(BytecodeFormat::GlobalTypePlaneBlockID, *this);
835 outputTypes(Type::FirstDerivedTyID);
Chris Lattner186a1f72003-03-19 20:56:46 +0000836 }
Chris Lattner00950542001-06-06 20:29:01 +0000837
Chris Lattner186a1f72003-03-19 20:56:46 +0000838 // The ModuleInfoBlock follows directly after the type information
Chris Lattnere8fdde12001-09-07 16:39:41 +0000839 outputModuleInfoBlock(M);
840
Chris Lattner186a1f72003-03-19 20:56:46 +0000841 // Output module level constants, used for global variable initializers
842 outputConstants(false);
843
Chris Lattnerb5794002002-04-07 22:49:37 +0000844 // Do the whole module now! Process each function at a time...
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000845 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattner186a1f72003-03-19 20:56:46 +0000846 outputFunction(I);
Chris Lattnere8fdde12001-09-07 16:39:41 +0000847
848 // If needed, output the symbol table for the module...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000849 outputSymbolTable(M->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +0000850}
851
Chris Lattnerf9d71782004-10-14 01:46:07 +0000852void BytecodeWriter::outputTypes(unsigned TypeNum) {
Reid Spencercb3595c2004-07-04 11:45:47 +0000853 // Write the type plane for types first because earlier planes (e.g. for a
854 // primitive type like float) may have constants constructed using types
855 // coming later (e.g., via getelementptr from a pointer type). The type
856 // plane is needed before types can be fwd or bkwd referenced.
857 const std::vector<const Type*>& Types = Table.getTypes();
858 assert(!Types.empty() && "No types at all?");
859 assert(TypeNum <= Types.size() && "Invalid TypeNo index");
860
861 unsigned NumEntries = Types.size() - TypeNum;
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000862
Reid Spencercb3595c2004-07-04 11:45:47 +0000863 // Output type header: [num entries]
Reid Spencerad89bd62004-07-25 18:07:36 +0000864 output_vbr(NumEntries);
Reid Spencercb3595c2004-07-04 11:45:47 +0000865
866 for (unsigned i = TypeNum; i < TypeNum+NumEntries; ++i)
867 outputType(Types[i]);
868}
869
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000870// Helper function for outputConstants().
871// Writes out all the constants in the plane Plane starting at entry StartNo.
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000872//
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000873void BytecodeWriter::outputConstantsInPlane(const std::vector<const Value*>
874 &Plane, unsigned StartNo) {
875 unsigned ValNo = StartNo;
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000876
Chris Lattner83bb3d22004-01-14 23:36:54 +0000877 // Scan through and ignore function arguments, global values, and constant
878 // strings.
879 for (; ValNo < Plane.size() &&
880 (isa<Argument>(Plane[ValNo]) || isa<GlobalValue>(Plane[ValNo]) ||
881 (isa<ConstantArray>(Plane[ValNo]) &&
882 cast<ConstantArray>(Plane[ValNo])->isString())); ValNo++)
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000883 /*empty*/;
884
885 unsigned NC = ValNo; // Number of constants
Chris Lattner3bc5a602006-01-25 23:08:15 +0000886 for (; NC < Plane.size() && (isa<Constant>(Plane[NC]) ||
887 isa<InlineAsm>(Plane[NC])); NC++)
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000888 /*empty*/;
889 NC -= ValNo; // Convert from index into count
890 if (NC == 0) return; // Skip empty type planes...
891
Chris Lattnerd6942d72004-01-14 16:54:21 +0000892 // FIXME: Most slabs only have 1 or 2 entries! We should encode this much
893 // more compactly.
894
Reid Spencerb83eb642006-10-20 07:07:24 +0000895 // Put out type header: [num entries][type id number]
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000896 //
Reid Spencerad89bd62004-07-25 18:07:36 +0000897 output_vbr(NC);
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000898
Reid Spencerb83eb642006-10-20 07:07:24 +0000899 // Put out the Type ID Number...
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000900 int Slot = Table.getSlot(Plane.front()->getType());
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000901 assert (Slot != -1 && "Type in constant pool but not in function!!");
Reid Spencerad89bd62004-07-25 18:07:36 +0000902 output_typeid((unsigned)Slot);
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000903
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000904 for (unsigned i = ValNo; i < ValNo+NC; ++i) {
905 const Value *V = Plane[i];
Chris Lattner3bc5a602006-01-25 23:08:15 +0000906 if (const Constant *C = dyn_cast<Constant>(V))
Reid Spencere0125b62004-07-18 00:16:21 +0000907 outputConstant(C);
Chris Lattner3bc5a602006-01-25 23:08:15 +0000908 else
909 outputInlineAsm(cast<InlineAsm>(V));
Vikram S. Advea7dac3d2002-07-14 23:07:51 +0000910 }
911}
912
Chris Lattner9e60d8d2005-05-05 22:21:19 +0000913static inline bool hasNullValue(const Type *Ty) {
914 return Ty != Type::LabelTy && Ty != Type::VoidTy && !isa<OpaqueType>(Ty);
Chris Lattner80b97342004-01-17 23:25:43 +0000915}
916
Chris Lattner79df7c02002-03-26 18:01:55 +0000917void BytecodeWriter::outputConstants(bool isFunction) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000918 BytecodeBlock CPool(BytecodeFormat::ConstantPoolBlockID, *this,
Chris Lattner0baa0af2004-01-15 21:06:57 +0000919 true /* Elide block if empty */);
Chris Lattner00950542001-06-06 20:29:01 +0000920
921 unsigned NumPlanes = Table.getNumPlanes();
Chris Lattnerf69315b2003-05-22 18:35:38 +0000922
Reid Spencere0125b62004-07-18 00:16:21 +0000923 if (isFunction)
924 // Output the type plane before any constants!
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000925 outputTypes(Table.getModuleTypeLevel());
Reid Spencere0125b62004-07-18 00:16:21 +0000926 else
Chris Lattnerf9d71782004-10-14 01:46:07 +0000927 // Output module-level string constants before any other constants.
Chris Lattner83bb3d22004-01-14 23:36:54 +0000928 outputConstantStrings();
929
Reid Spencercb3595c2004-07-04 11:45:47 +0000930 for (unsigned pno = 0; pno != NumPlanes; pno++) {
931 const std::vector<const Value*> &Plane = Table.getPlane(pno);
932 if (!Plane.empty()) { // Skip empty type planes...
933 unsigned ValNo = 0;
934 if (isFunction) // Don't re-emit module constants
Reid Spencer0852c802004-07-04 11:46:15 +0000935 ValNo += Table.getModuleLevel(pno);
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000936
Chris Lattner9e60d8d2005-05-05 22:21:19 +0000937 if (hasNullValue(Plane[0]->getType())) {
Reid Spencer0852c802004-07-04 11:46:15 +0000938 // Skip zero initializer
939 if (ValNo == 0)
940 ValNo = 1;
Chris Lattnerf69315b2003-05-22 18:35:38 +0000941 }
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000942
Reid Spencercb3595c2004-07-04 11:45:47 +0000943 // Write out constants in the plane
944 outputConstantsInPlane(Plane, ValNo);
Chris Lattnerf69315b2003-05-22 18:35:38 +0000945 }
Reid Spencercb3595c2004-07-04 11:45:47 +0000946 }
Chris Lattner00950542001-06-06 20:29:01 +0000947}
948
Chris Lattner6b252422003-10-16 18:28:50 +0000949static unsigned getEncodedLinkage(const GlobalValue *GV) {
950 switch (GV->getLinkage()) {
951 default: assert(0 && "Invalid linkage!");
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000952 case GlobalValue::ExternalLinkage: return 0;
953 case GlobalValue::WeakLinkage: return 1;
954 case GlobalValue::AppendingLinkage: return 2;
955 case GlobalValue::InternalLinkage: return 3;
956 case GlobalValue::LinkOnceLinkage: return 4;
957 case GlobalValue::DLLImportLinkage: return 5;
958 case GlobalValue::DLLExportLinkage: return 6;
959 case GlobalValue::ExternalWeakLinkage: return 7;
Chris Lattner6b252422003-10-16 18:28:50 +0000960 }
961}
962
Chris Lattner00950542001-06-06 20:29:01 +0000963void BytecodeWriter::outputModuleInfoBlock(const Module *M) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000964 BytecodeBlock ModuleInfoBlock(BytecodeFormat::ModuleGlobalInfoBlockID, *this);
Misha Brukman23c6d2c2005-04-21 21:48:46 +0000965
Chris Lattner404cddf2005-11-12 01:33:40 +0000966 // Give numbers to sections as we encounter them.
967 unsigned SectionIDCounter = 0;
968 std::vector<std::string> SectionNames;
969 std::map<std::string, unsigned> SectionID;
970
Chris Lattner70cc3392001-09-10 07:58:01 +0000971 // Output the types for the global variables in the module...
Chris Lattner28caccf2005-05-06 20:27:03 +0000972 for (Module::const_global_iterator I = M->global_begin(),
Chris Lattner8eb52dd2005-11-06 07:11:04 +0000973 End = M->global_end(); I != End; ++I) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000974 int Slot = Table.getSlot(I->getType());
Chris Lattner70cc3392001-09-10 07:58:01 +0000975 assert(Slot != -1 && "Module global vars is broken!");
Chris Lattnerd70684f2001-09-18 04:01:05 +0000976
Chris Lattner8eb52dd2005-11-06 07:11:04 +0000977 assert((I->hasInitializer() || !I->hasInternalLinkage()) &&
978 "Global must have an initializer or have external linkage!");
979
Chris Lattner22482a12003-10-18 06:30:21 +0000980 // Fields: bit0 = isConstant, bit1 = hasInitializer, bit2-4=Linkage,
Chris Lattner8eb52dd2005-11-06 07:11:04 +0000981 // bit5+ = Slot # for type.
Chris Lattner404cddf2005-11-12 01:33:40 +0000982 bool HasExtensionWord = (I->getAlignment() != 0) || I->hasSection();
Chris Lattner8eb52dd2005-11-06 07:11:04 +0000983
984 // If we need to use the extension byte, set linkage=3(internal) and
985 // initializer = 0 (impossible!).
986 if (!HasExtensionWord) {
987 unsigned oSlot = ((unsigned)Slot << 5) | (getEncodedLinkage(I) << 2) |
988 (I->hasInitializer() << 1) | (unsigned)I->isConstant();
989 output_vbr(oSlot);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000990 } else {
Chris Lattner8eb52dd2005-11-06 07:11:04 +0000991 unsigned oSlot = ((unsigned)Slot << 5) | (3 << 2) |
992 (0 << 1) | (unsigned)I->isConstant();
993 output_vbr(oSlot);
994
995 // The extension word has this format: bit 0 = has initializer, bit 1-3 =
Chris Lattner404cddf2005-11-12 01:33:40 +0000996 // linkage, bit 4-8 = alignment (log2), bit 9 = has SectionID,
997 // bits 10+ = future use.
Jeff Cohenba0ffcc2005-11-12 01:01:50 +0000998 unsigned ExtWord = (unsigned)I->hasInitializer() |
999 (getEncodedLinkage(I) << 1) |
Chris Lattner404cddf2005-11-12 01:33:40 +00001000 ((Log2_32(I->getAlignment())+1) << 4) |
1001 ((unsigned)I->hasSection() << 9);
Chris Lattner8eb52dd2005-11-06 07:11:04 +00001002 output_vbr(ExtWord);
Chris Lattner404cddf2005-11-12 01:33:40 +00001003 if (I->hasSection()) {
1004 // Give section names unique ID's.
1005 unsigned &Entry = SectionID[I->getSection()];
1006 if (Entry == 0) {
1007 Entry = ++SectionIDCounter;
1008 SectionNames.push_back(I->getSection());
1009 }
1010 output_vbr(Entry);
1011 }
Chris Lattner8eb52dd2005-11-06 07:11:04 +00001012 }
Chris Lattnerd70684f2001-09-18 04:01:05 +00001013
Chris Lattner1b98c5c2001-10-13 06:48:38 +00001014 // If we have an initializer, output it now.
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001015 if (I->hasInitializer()) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +00001016 Slot = Table.getSlot((Value*)I->getInitializer());
Chris Lattnerd70684f2001-09-18 04:01:05 +00001017 assert(Slot != -1 && "No slot for global var initializer!");
Reid Spencerad89bd62004-07-25 18:07:36 +00001018 output_vbr((unsigned)Slot);
Chris Lattnerd70684f2001-09-18 04:01:05 +00001019 }
Chris Lattner70cc3392001-09-10 07:58:01 +00001020 }
Reid Spencerad89bd62004-07-25 18:07:36 +00001021 output_typeid((unsigned)Table.getSlot(Type::VoidTy));
Chris Lattner70cc3392001-09-10 07:58:01 +00001022
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001023 // Output the types of the functions in this module.
Chris Lattner7fc9fe32001-06-27 23:41:11 +00001024 for (Module::const_iterator I = M->begin(), End = M->end(); I != End; ++I) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +00001025 int Slot = Table.getSlot(I->getType());
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001026 assert(Slot != -1 && "Module slot calculator is broken!");
Chris Lattner00950542001-06-06 20:29:01 +00001027 assert(Slot >= Type::FirstDerivedTyID && "Derived type not in range!");
Chris Lattnere73bd452005-11-06 07:43:39 +00001028 assert(((Slot << 6) >> 6) == Slot && "Slot # too big!");
Chris Lattner54b369e2005-11-06 07:46:13 +00001029 unsigned CC = I->getCallingConv()+1;
1030 unsigned ID = (Slot << 5) | (CC & 15);
Chris Lattner479ffeb2005-05-06 20:42:57 +00001031
Chris Lattnerd6e431f2004-11-15 22:39:49 +00001032 if (I->isExternal()) // If external, we don't have an FunctionInfo block.
1033 ID |= 1 << 4;
Chris Lattnere73bd452005-11-06 07:43:39 +00001034
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001035 if (I->getAlignment() || I->hasSection() || (CC & ~15) != 0 ||
1036 (I->isExternal() && I->hasDLLImportLinkage()) ||
1037 (I->isExternal() && I->hasExternalWeakLinkage())
1038 )
Chris Lattnere73bd452005-11-06 07:43:39 +00001039 ID |= 1 << 31; // Do we need an extension word?
1040
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001041 output_vbr(ID);
Chris Lattnere73bd452005-11-06 07:43:39 +00001042
1043 if (ID & (1 << 31)) {
1044 // Extension byte: bits 0-4 = alignment, bits 5-9 = top nibble of calling
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001045 // convention, bit 10 = hasSectionID., bits 11-12 = external linkage type
1046 unsigned extLinkage = 0;
1047
1048 if (I->isExternal()) {
1049 if (I->hasDLLImportLinkage()) {
1050 extLinkage = 1;
1051 } else if (I->hasExternalWeakLinkage()) {
1052 extLinkage = 2;
1053 }
1054 }
1055
Chris Lattner404cddf2005-11-12 01:33:40 +00001056 ID = (Log2_32(I->getAlignment())+1) | ((CC >> 4) << 5) |
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001057 (I->hasSection() << 10) |
1058 ((extLinkage & 3) << 11);
Chris Lattnere73bd452005-11-06 07:43:39 +00001059 output_vbr(ID);
Chris Lattner404cddf2005-11-12 01:33:40 +00001060
1061 // Give section names unique ID's.
1062 if (I->hasSection()) {
1063 unsigned &Entry = SectionID[I->getSection()];
1064 if (Entry == 0) {
1065 Entry = ++SectionIDCounter;
1066 SectionNames.push_back(I->getSection());
1067 }
1068 output_vbr(Entry);
1069 }
Chris Lattnere73bd452005-11-06 07:43:39 +00001070 }
Chris Lattner00950542001-06-06 20:29:01 +00001071 }
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001072 output_vbr((unsigned)Table.getSlot(Type::VoidTy) << 5);
Reid Spencerad89bd62004-07-25 18:07:36 +00001073
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001074 // Emit the list of dependent libraries for the Module.
Reid Spencer5ac88122004-07-25 21:32:02 +00001075 Module::lib_iterator LI = M->lib_begin();
1076 Module::lib_iterator LE = M->lib_end();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001077 output_vbr(unsigned(LE - LI)); // Emit the number of dependent libraries.
1078 for (; LI != LE; ++LI)
Reid Spencer38d54be2004-08-17 07:45:14 +00001079 output(*LI);
Reid Spencerad89bd62004-07-25 18:07:36 +00001080
1081 // Output the target triple from the module
Reid Spencer38d54be2004-08-17 07:45:14 +00001082 output(M->getTargetTriple());
Chris Lattner404cddf2005-11-12 01:33:40 +00001083
1084 // Emit the table of section names.
1085 output_vbr((unsigned)SectionNames.size());
1086 for (unsigned i = 0, e = SectionNames.size(); i != e; ++i)
1087 output(SectionNames[i]);
Chris Lattner7e6db762006-01-23 23:43:17 +00001088
1089 // Output the inline asm string.
Chris Lattner66316012006-01-24 04:14:29 +00001090 output(M->getModuleInlineAsm());
Chris Lattner00950542001-06-06 20:29:01 +00001091}
1092
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001093void BytecodeWriter::outputInstructions(const Function *F) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001094 BytecodeBlock ILBlock(BytecodeFormat::InstructionListBlockID, *this);
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001095 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1096 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
1097 outputInstruction(*I);
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001098}
1099
Chris Lattner186a1f72003-03-19 20:56:46 +00001100void BytecodeWriter::outputFunction(const Function *F) {
Chris Lattnerfd7f8fe2004-11-15 21:56:33 +00001101 // If this is an external function, there is nothing else to emit!
1102 if (F->isExternal()) return;
1103
Chris Lattnerd6e431f2004-11-15 22:39:49 +00001104 BytecodeBlock FunctionBlock(BytecodeFormat::FunctionBlockID, *this);
1105 output_vbr(getEncodedLinkage(F));
1106
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001107 // Get slot information about the function...
1108 Table.incorporateFunction(F);
1109
1110 if (Table.getCompactionTable().empty()) {
1111 // Output information about the constants in the function if the compaction
1112 // table is not being used.
Chris Lattnere8fdde12001-09-07 16:39:41 +00001113 outputConstants(true);
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001114 } else {
1115 // Otherwise, emit the compaction table.
1116 outputCompactionTable();
Chris Lattnere8fdde12001-09-07 16:39:41 +00001117 }
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001118
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001119 // Output all of the instructions in the body of the function
1120 outputInstructions(F);
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001121
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001122 // If needed, output the symbol table for the function...
1123 outputSymbolTable(F->getSymbolTable());
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001124
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001125 Table.purgeFunction();
1126}
1127
1128void BytecodeWriter::outputCompactionTablePlane(unsigned PlaneNo,
1129 const std::vector<const Value*> &Plane,
1130 unsigned StartNo) {
1131 unsigned End = Table.getModuleLevel(PlaneNo);
Chris Lattner52f86d62004-01-20 00:54:06 +00001132 if (Plane.empty() || StartNo == End || End == 0) return; // Nothing to emit
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001133 assert(StartNo < End && "Cannot emit negative range!");
1134 assert(StartNo < Plane.size() && End <= Plane.size());
1135
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001136 // Do not emit the null initializer!
Reid Spencercb3595c2004-07-04 11:45:47 +00001137 ++StartNo;
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001138
Chris Lattner24102432004-01-18 22:35:34 +00001139 // Figure out which encoding to use. By far the most common case we have is
1140 // to emit 0-2 entries in a compaction table plane.
1141 switch (End-StartNo) {
1142 case 0: // Avoid emitting two vbr's if possible.
1143 case 1:
1144 case 2:
Reid Spencerad89bd62004-07-25 18:07:36 +00001145 output_vbr((PlaneNo << 2) | End-StartNo);
Chris Lattner24102432004-01-18 22:35:34 +00001146 break;
1147 default:
1148 // Output the number of things.
Reid Spencerad89bd62004-07-25 18:07:36 +00001149 output_vbr((unsigned(End-StartNo) << 2) | 3);
1150 output_typeid(PlaneNo); // Emit the type plane this is
Chris Lattner24102432004-01-18 22:35:34 +00001151 break;
1152 }
1153
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001154 for (unsigned i = StartNo; i != End; ++i)
Reid Spencerad89bd62004-07-25 18:07:36 +00001155 output_vbr(Table.getGlobalSlot(Plane[i]));
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001156}
1157
Reid Spencercb3595c2004-07-04 11:45:47 +00001158void BytecodeWriter::outputCompactionTypes(unsigned StartNo) {
1159 // Get the compaction type table from the slot calculator
1160 const std::vector<const Type*> &CTypes = Table.getCompactionTypes();
1161
1162 // The compaction types may have been uncompactified back to the
1163 // global types. If so, we just write an empty table
Chris Lattnerc847f7c2006-07-28 22:07:54 +00001164 if (CTypes.size() == 0) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001165 output_vbr(0U);
Reid Spencercb3595c2004-07-04 11:45:47 +00001166 return;
1167 }
1168
1169 assert(CTypes.size() >= StartNo && "Invalid compaction types start index");
1170
1171 // Determine how many types to write
1172 unsigned NumTypes = CTypes.size() - StartNo;
1173
1174 // Output the number of types.
Reid Spencerad89bd62004-07-25 18:07:36 +00001175 output_vbr(NumTypes);
Reid Spencercb3595c2004-07-04 11:45:47 +00001176
1177 for (unsigned i = StartNo; i < StartNo+NumTypes; ++i)
Reid Spencerad89bd62004-07-25 18:07:36 +00001178 output_typeid(Table.getGlobalSlot(CTypes[i]));
Reid Spencercb3595c2004-07-04 11:45:47 +00001179}
1180
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001181void BytecodeWriter::outputCompactionTable() {
Reid Spencer0033c182004-08-27 00:38:44 +00001182 // Avoid writing the compaction table at all if there is no content.
1183 if (Table.getCompactionTypes().size() >= Type::FirstDerivedTyID ||
1184 (!Table.CompactionTableIsEmpty())) {
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001185 BytecodeBlock CTB(BytecodeFormat::CompactionTableBlockID, *this,
Reid Spencer0033c182004-08-27 00:38:44 +00001186 true/*ElideIfEmpty*/);
Chris Lattnerf9d71782004-10-14 01:46:07 +00001187 const std::vector<std::vector<const Value*> > &CT =
1188 Table.getCompactionTable();
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001189
Reid Spencer0033c182004-08-27 00:38:44 +00001190 // First things first, emit the type compaction table if there is one.
1191 outputCompactionTypes(Type::FirstDerivedTyID);
Chris Lattnercf3e67f2004-01-18 21:08:52 +00001192
Reid Spencer0033c182004-08-27 00:38:44 +00001193 for (unsigned i = 0, e = CT.size(); i != e; ++i)
1194 outputCompactionTablePlane(i, CT[i], 0);
1195 }
Chris Lattner00950542001-06-06 20:29:01 +00001196}
1197
Chris Lattner00950542001-06-06 20:29:01 +00001198void BytecodeWriter::outputSymbolTable(const SymbolTable &MST) {
Chris Lattner737d3cd2004-01-10 19:56:59 +00001199 // Do not output the Bytecode block for an empty symbol table, it just wastes
1200 // space!
Chris Lattnerf9d71782004-10-14 01:46:07 +00001201 if (MST.isEmpty()) return;
Chris Lattner737d3cd2004-01-10 19:56:59 +00001202
Reid Spencerad89bd62004-07-25 18:07:36 +00001203 BytecodeBlock SymTabBlock(BytecodeFormat::SymbolTableBlockID, *this,
Chris Lattnerf9d71782004-10-14 01:46:07 +00001204 true/*ElideIfEmpty*/);
Chris Lattner00950542001-06-06 20:29:01 +00001205
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001206 // Write the number of types
Reid Spencerad89bd62004-07-25 18:07:36 +00001207 output_vbr(MST.num_types());
Reid Spencer250c4182004-08-17 02:59:02 +00001208
1209 // Write each of the types
Reid Spencer94f2df22004-05-25 17:29:59 +00001210 for (SymbolTable::type_const_iterator TI = MST.type_begin(),
Chris Lattnerc847f7c2006-07-28 22:07:54 +00001211 TE = MST.type_end(); TI != TE; ++TI) {
Reid Spencer250c4182004-08-17 02:59:02 +00001212 // Symtab entry:[def slot #][name]
Reid Spencerad89bd62004-07-25 18:07:36 +00001213 output_typeid((unsigned)Table.getSlot(TI->second));
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001214 output(TI->first);
Reid Spencer94f2df22004-05-25 17:29:59 +00001215 }
1216
1217 // Now do each of the type planes in order.
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001218 for (SymbolTable::plane_const_iterator PI = MST.plane_begin(),
Reid Spencer94f2df22004-05-25 17:29:59 +00001219 PE = MST.plane_end(); PI != PE; ++PI) {
1220 SymbolTable::value_const_iterator I = MST.value_begin(PI->first);
1221 SymbolTable::value_const_iterator End = MST.value_end(PI->first);
Chris Lattner00950542001-06-06 20:29:01 +00001222 int Slot;
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001223
Chris Lattner00950542001-06-06 20:29:01 +00001224 if (I == End) continue; // Don't mess with an absent type...
1225
Reid Spencer250c4182004-08-17 02:59:02 +00001226 // Write the number of values in this plane
Chris Lattner001d16a2005-03-07 02:59:36 +00001227 output_vbr((unsigned)PI->second.size());
Chris Lattner00950542001-06-06 20:29:01 +00001228
Reid Spencer250c4182004-08-17 02:59:02 +00001229 // Write the slot number of the type for this plane
Reid Spencer94f2df22004-05-25 17:29:59 +00001230 Slot = Table.getSlot(PI->first);
Chris Lattner00950542001-06-06 20:29:01 +00001231 assert(Slot != -1 && "Type in symtab, but not in table!");
Reid Spencerad89bd62004-07-25 18:07:36 +00001232 output_typeid((unsigned)Slot);
Chris Lattner00950542001-06-06 20:29:01 +00001233
Reid Spencer250c4182004-08-17 02:59:02 +00001234 // Write each of the values in this plane
Chris Lattner7fc9fe32001-06-27 23:41:11 +00001235 for (; I != End; ++I) {
Chris Lattner00950542001-06-06 20:29:01 +00001236 // Symtab entry: [def slot #][name]
Alkis Evlogimenos60596382003-10-17 02:02:40 +00001237 Slot = Table.getSlot(I->second);
Chris Lattnere8fdde12001-09-07 16:39:41 +00001238 assert(Slot != -1 && "Value in symtab but has no slot number!!");
Reid Spencerad89bd62004-07-25 18:07:36 +00001239 output_vbr((unsigned)Slot);
Reid Spencer38d54be2004-08-17 07:45:14 +00001240 output(I->first);
Chris Lattner00950542001-06-06 20:29:01 +00001241 }
1242 }
1243}
1244
Bill Wendling68fe61d2006-11-29 00:19:40 +00001245void llvm::WriteBytecodeToFile(const Module *M, llvm_ostream &Out,
Chris Lattnerc847f7c2006-07-28 22:07:54 +00001246 bool compress) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001247 assert(M && "You can't write a null module!!");
Chris Lattner00950542001-06-06 20:29:01 +00001248
Reid Spencer32f55532006-06-07 23:18:34 +00001249 // Make sure that std::cout is put into binary mode for systems
1250 // that care.
Bill Wendling68fe61d2006-11-29 00:19:40 +00001251 if (Out == llvm_cout)
Reid Spencer32f55532006-06-07 23:18:34 +00001252 sys::Program::ChangeStdoutToBinary();
1253
Reid Spencer17f52c52004-11-06 23:17:23 +00001254 // Create a vector of unsigned char for the bytecode output. We
1255 // reserve 256KBytes of space in the vector so that we avoid doing
1256 // lots of little allocations. 256KBytes is sufficient for a large
1257 // proportion of the bytecode files we will encounter. Larger files
1258 // will be automatically doubled in size as needed (std::vector
1259 // behavior).
Reid Spencerad89bd62004-07-25 18:07:36 +00001260 std::vector<unsigned char> Buffer;
Reid Spencer17f52c52004-11-06 23:17:23 +00001261 Buffer.reserve(256 * 1024);
Chris Lattner00950542001-06-06 20:29:01 +00001262
Reid Spencer17f52c52004-11-06 23:17:23 +00001263 // The BytecodeWriter populates Buffer for us.
Reid Spencerad89bd62004-07-25 18:07:36 +00001264 BytecodeWriter BCW(Buffer, M);
Chris Lattner00950542001-06-06 20:29:01 +00001265
Reid Spencer17f52c52004-11-06 23:17:23 +00001266 // Keep track of how much we've written
Chris Lattnerce6ef112002-07-26 18:40:14 +00001267 BytesWritten += Buffer.size();
1268
Reid Spencer17f52c52004-11-06 23:17:23 +00001269 // Determine start and end points of the Buffer
Reid Spencer83296f52004-11-07 18:17:38 +00001270 const unsigned char *FirstByte = &Buffer.front();
Reid Spencer17f52c52004-11-06 23:17:23 +00001271
1272 // If we're supposed to compress this mess ...
1273 if (compress) {
1274
1275 // We signal compression by using an alternate magic number for the
Reid Spencer83296f52004-11-07 18:17:38 +00001276 // file. The compressed bytecode file's magic number is "llvc" instead
Misha Brukman23c6d2c2005-04-21 21:48:46 +00001277 // of "llvm".
Reid Spencer83296f52004-11-07 18:17:38 +00001278 char compressed_magic[4];
1279 compressed_magic[0] = 'l';
1280 compressed_magic[1] = 'l';
1281 compressed_magic[2] = 'v';
1282 compressed_magic[3] = 'c';
Reid Spencer17f52c52004-11-06 23:17:23 +00001283
Bill Wendling68fe61d2006-11-29 00:19:40 +00001284 Out.stream()->write(compressed_magic,4);
Reid Spencer17f52c52004-11-06 23:17:23 +00001285
Reid Spencera70d84d2004-11-14 22:01:41 +00001286 // Compress everything after the magic number (which we altered)
Reid Spencer3ed469c2006-11-02 20:25:50 +00001287 Compressor::compressToStream(
Reid Spencer17f52c52004-11-06 23:17:23 +00001288 (char*)(FirstByte+4), // Skip the magic number
1289 Buffer.size()-4, // Skip the magic number
Bill Wendling68fe61d2006-11-29 00:19:40 +00001290 *Out.stream() // Where to write compressed data
Reid Spencer17f52c52004-11-06 23:17:23 +00001291 );
1292
Reid Spencer17f52c52004-11-06 23:17:23 +00001293 } else {
1294
1295 // We're not compressing, so just write the entire block.
Bill Wendling68fe61d2006-11-29 00:19:40 +00001296 Out.stream()->write((char*)FirstByte, Buffer.size());
Chris Lattnere8fdde12001-09-07 16:39:41 +00001297 }
Reid Spencer17f52c52004-11-06 23:17:23 +00001298
1299 // make sure it hits disk now
Bill Wendling68fe61d2006-11-29 00:19:40 +00001300 Out.stream()->flush();
Chris Lattner00950542001-06-06 20:29:01 +00001301}