blob: 7d745ffd50d2d437718a1a4c38af95eb94bedfac [file] [log] [blame]
Chris Lattner1a9df8e2007-04-29 05:31:57 +00001//===--- Bitcode/Writer/BitcodeWriter.cpp - Bitcode Writer ----------------===//
Chris Lattnerfd57cec2007-04-22 06:24:45 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerfd57cec2007-04-22 06:24:45 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Bitcode writer implementation.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Bitcode/ReaderWriter.h"
15#include "llvm/Bitcode/BitstreamWriter.h"
Chris Lattner47f96bf2007-04-23 01:01:37 +000016#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000017#include "ValueEnumerator.h"
Chris Lattner2edd22b2007-04-24 00:16:04 +000018#include "llvm/Constants.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000019#include "llvm/DerivedTypes.h"
Chris Lattner2bce93a2007-05-06 01:58:20 +000020#include "llvm/InlineAsm.h"
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +000021#include "llvm/Instructions.h"
Nick Lewyckycb337992009-05-10 20:57:05 +000022#include "llvm/MDNode.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000023#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000024#include "llvm/Operator.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000025#include "llvm/TypeSymbolTable.h"
Chris Lattnerb992be12007-04-23 20:35:01 +000026#include "llvm/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000028#include "llvm/Support/MathExtras.h"
Chris Lattnere35f1ca2008-08-23 21:33:24 +000029#include "llvm/Support/Streams.h"
Daniel Dunbard1ce3b42008-10-22 17:39:14 +000030#include "llvm/Support/raw_ostream.h"
Anton Korobeynikovb0a882f2008-06-06 07:24:01 +000031#include "llvm/System/Program.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000032using namespace llvm;
33
Chris Lattner59698302007-05-04 20:52:02 +000034/// These are manifest constants used by the bitcode writer. They do not need to
35/// be kept in sync with the reader, but need to be consistent within this file.
36enum {
37 CurVersion = 0,
38
39 // VALUE_SYMTAB_BLOCK abbrev id's.
40 VST_ENTRY_8_ABBREV = bitc::FIRST_APPLICATION_ABBREV,
Chris Lattner2453f712007-05-04 20:58:35 +000041 VST_ENTRY_7_ABBREV,
Chris Lattnerff294a42007-05-05 01:26:50 +000042 VST_ENTRY_6_ABBREV,
Chris Lattnera0f1ecc2007-05-05 07:36:14 +000043 VST_BBENTRY_6_ABBREV,
44
45 // CONSTANTS_BLOCK abbrev id's.
46 CONSTANTS_SETTYPE_ABBREV = bitc::FIRST_APPLICATION_ABBREV,
47 CONSTANTS_INTEGER_ABBREV,
48 CONSTANTS_CE_CAST_Abbrev,
Chris Lattner440168b2007-05-05 07:44:49 +000049 CONSTANTS_NULL_Abbrev,
50
51 // FUNCTION_BLOCK abbrev id's.
Chris Lattner94687ac2007-05-06 01:28:01 +000052 FUNCTION_INST_LOAD_ABBREV = bitc::FIRST_APPLICATION_ABBREV,
Chris Lattnerf9f2e832007-05-06 02:38:57 +000053 FUNCTION_INST_BINOP_ABBREV,
Dan Gohman1224c382009-07-20 21:19:07 +000054 FUNCTION_INST_BINOP_FLAGS_ABBREV,
Chris Lattnerf9f2e832007-05-06 02:38:57 +000055 FUNCTION_INST_CAST_ABBREV,
Chris Lattner94687ac2007-05-06 01:28:01 +000056 FUNCTION_INST_RET_VOID_ABBREV,
57 FUNCTION_INST_RET_VAL_ABBREV,
58 FUNCTION_INST_UNREACHABLE_ABBREV
Chris Lattner59698302007-05-04 20:52:02 +000059};
60
Chris Lattnerfd57cec2007-04-22 06:24:45 +000061
Chris Lattnerf581c3b2007-04-24 07:07:11 +000062static unsigned GetEncodedCastOpcode(unsigned Opcode) {
63 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +000064 default: llvm_unreachable("Unknown cast instruction!");
Chris Lattnerf581c3b2007-04-24 07:07:11 +000065 case Instruction::Trunc : return bitc::CAST_TRUNC;
66 case Instruction::ZExt : return bitc::CAST_ZEXT;
67 case Instruction::SExt : return bitc::CAST_SEXT;
68 case Instruction::FPToUI : return bitc::CAST_FPTOUI;
69 case Instruction::FPToSI : return bitc::CAST_FPTOSI;
70 case Instruction::UIToFP : return bitc::CAST_UITOFP;
71 case Instruction::SIToFP : return bitc::CAST_SITOFP;
72 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC;
73 case Instruction::FPExt : return bitc::CAST_FPEXT;
74 case Instruction::PtrToInt: return bitc::CAST_PTRTOINT;
75 case Instruction::IntToPtr: return bitc::CAST_INTTOPTR;
76 case Instruction::BitCast : return bitc::CAST_BITCAST;
77 }
78}
79
80static unsigned GetEncodedBinaryOpcode(unsigned Opcode) {
81 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +000082 default: llvm_unreachable("Unknown binary instruction!");
Dan Gohmanae3a0be2009-06-04 22:49:04 +000083 case Instruction::Add:
84 case Instruction::FAdd: return bitc::BINOP_ADD;
85 case Instruction::Sub:
86 case Instruction::FSub: return bitc::BINOP_SUB;
87 case Instruction::Mul:
88 case Instruction::FMul: return bitc::BINOP_MUL;
Chris Lattnerf581c3b2007-04-24 07:07:11 +000089 case Instruction::UDiv: return bitc::BINOP_UDIV;
90 case Instruction::FDiv:
91 case Instruction::SDiv: return bitc::BINOP_SDIV;
92 case Instruction::URem: return bitc::BINOP_UREM;
93 case Instruction::FRem:
94 case Instruction::SRem: return bitc::BINOP_SREM;
95 case Instruction::Shl: return bitc::BINOP_SHL;
96 case Instruction::LShr: return bitc::BINOP_LSHR;
97 case Instruction::AShr: return bitc::BINOP_ASHR;
98 case Instruction::And: return bitc::BINOP_AND;
99 case Instruction::Or: return bitc::BINOP_OR;
100 case Instruction::Xor: return bitc::BINOP_XOR;
101 }
102}
103
104
105
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000106static void WriteStringRecord(unsigned Code, const std::string &Str,
107 unsigned AbbrevToUse, BitstreamWriter &Stream) {
108 SmallVector<unsigned, 64> Vals;
109
Chris Lattner15e6d172007-05-04 19:11:41 +0000110 // Code: [strchar x N]
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000111 for (unsigned i = 0, e = Str.size(); i != e; ++i)
112 Vals.push_back(Str[i]);
113
114 // Emit the finished record.
115 Stream.EmitRecord(Code, Vals, AbbrevToUse);
116}
117
Chris Lattner62bbeea2007-05-04 00:44:52 +0000118// Emit information about parameter attributes.
Devang Patel05988662008-09-25 21:00:45 +0000119static void WriteAttributeTable(const ValueEnumerator &VE,
Chris Lattner62bbeea2007-05-04 00:44:52 +0000120 BitstreamWriter &Stream) {
Devang Patel05988662008-09-25 21:00:45 +0000121 const std::vector<AttrListPtr> &Attrs = VE.getAttributes();
Chris Lattner62bbeea2007-05-04 00:44:52 +0000122 if (Attrs.empty()) return;
123
Chris Lattnerf0a65312007-05-04 02:59:04 +0000124 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3);
125
126 SmallVector<uint64_t, 64> Record;
127 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
Devang Patel05988662008-09-25 21:00:45 +0000128 const AttrListPtr &A = Attrs[i];
Chris Lattner58d74912008-03-12 17:45:29 +0000129 for (unsigned i = 0, e = A.getNumSlots(); i != e; ++i) {
Devang Patel05988662008-09-25 21:00:45 +0000130 const AttributeWithIndex &PAWI = A.getSlot(i);
Chris Lattner58d74912008-03-12 17:45:29 +0000131 Record.push_back(PAWI.Index);
Nick Lewycky73ddd4f2008-12-19 09:38:31 +0000132
133 // FIXME: remove in LLVM 3.0
134 // Store the alignment in the bitcode as a 16-bit raw value instead of a
135 // 5-bit log2 encoded value. Shift the bits above the alignment up by
136 // 11 bits.
137 uint64_t FauxAttr = PAWI.Attrs & 0xffff;
138 if (PAWI.Attrs & Attribute::Alignment)
139 FauxAttr |= (1ull<<16)<<(((PAWI.Attrs & Attribute::Alignment)-1) >> 16);
140 FauxAttr |= (PAWI.Attrs & (0x3FFull << 21)) << 11;
141
142 Record.push_back(FauxAttr);
Chris Lattnerf0a65312007-05-04 02:59:04 +0000143 }
144
145 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
146 Record.clear();
147 }
Chris Lattner62bbeea2007-05-04 00:44:52 +0000148
Chris Lattnerf0a65312007-05-04 02:59:04 +0000149 Stream.ExitBlock();
Chris Lattner62bbeea2007-05-04 00:44:52 +0000150}
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000151
152/// WriteTypeTable - Write out the type table for a module.
153static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
154 const ValueEnumerator::TypeList &TypeList = VE.getTypes();
155
156 Stream.EnterSubblock(bitc::TYPE_BLOCK_ID, 4 /*count from # abbrevs */);
157 SmallVector<uint64_t, 64> TypeVals;
158
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000159 // Abbrev for TYPE_CODE_POINTER.
160 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
161 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
162 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
163 Log2_32_Ceil(VE.getTypes().size()+1)));
Christopher Lambd49e18d2007-12-12 08:44:39 +0000164 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000165 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
166
167 // Abbrev for TYPE_CODE_FUNCTION.
168 Abbv = new BitCodeAbbrev();
169 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
170 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
Chris Lattnera1afde72007-11-27 17:48:06 +0000171 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000172 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
173 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
174 Log2_32_Ceil(VE.getTypes().size()+1)));
175 unsigned FunctionAbbrev = Stream.EmitAbbrev(Abbv);
176
177 // Abbrev for TYPE_CODE_STRUCT.
178 Abbv = new BitCodeAbbrev();
179 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_STRUCT));
180 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
181 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
182 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
183 Log2_32_Ceil(VE.getTypes().size()+1)));
184 unsigned StructAbbrev = Stream.EmitAbbrev(Abbv);
185
186 // Abbrev for TYPE_CODE_ARRAY.
187 Abbv = new BitCodeAbbrev();
188 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_ARRAY));
189 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // size
190 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
191 Log2_32_Ceil(VE.getTypes().size()+1)));
192 unsigned ArrayAbbrev = Stream.EmitAbbrev(Abbv);
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000193
194 // Emit an entry count so the reader can reserve space.
195 TypeVals.push_back(TypeList.size());
196 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals);
197 TypeVals.clear();
198
199 // Loop over all of the types, emitting each in turn.
200 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
201 const Type *T = TypeList[i].first;
202 int AbbrevToUse = 0;
203 unsigned Code = 0;
204
205 switch (T->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000206 default: llvm_unreachable("Unknown type!");
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000207 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
208 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
209 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000210 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
211 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break;
212 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000213 case Type::LabelTyID: Code = bitc::TYPE_CODE_LABEL; break;
214 case Type::OpaqueTyID: Code = bitc::TYPE_CODE_OPAQUE; break;
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000215 case Type::MetadataTyID: Code = bitc::TYPE_CODE_METADATA; break;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000216 case Type::IntegerTyID:
217 // INTEGER: [width]
218 Code = bitc::TYPE_CODE_INTEGER;
219 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth());
220 break;
Duncan Sands216b74c2007-12-11 12:20:47 +0000221 case Type::PointerTyID: {
Christopher Lambfe63fb92007-12-11 08:59:05 +0000222 const PointerType *PTy = cast<PointerType>(T);
Christopher Lambd49e18d2007-12-12 08:44:39 +0000223 // POINTER: [pointee type, address space]
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000224 Code = bitc::TYPE_CODE_POINTER;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000225 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
Christopher Lambd49e18d2007-12-12 08:44:39 +0000226 unsigned AddressSpace = PTy->getAddressSpace();
227 TypeVals.push_back(AddressSpace);
228 if (AddressSpace == 0) AbbrevToUse = PtrAbbrev;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000229 break;
Duncan Sands216b74c2007-12-11 12:20:47 +0000230 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000231 case Type::FunctionTyID: {
232 const FunctionType *FT = cast<FunctionType>(T);
Chris Lattnera1afde72007-11-27 17:48:06 +0000233 // FUNCTION: [isvararg, attrid, retty, paramty x N]
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000234 Code = bitc::TYPE_CODE_FUNCTION;
235 TypeVals.push_back(FT->isVarArg());
Chris Lattnera1afde72007-11-27 17:48:06 +0000236 TypeVals.push_back(0); // FIXME: DEAD: remove in llvm 3.0
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000237 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000238 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
239 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000240 AbbrevToUse = FunctionAbbrev;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000241 break;
242 }
243 case Type::StructTyID: {
244 const StructType *ST = cast<StructType>(T);
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000245 // STRUCT: [ispacked, eltty x N]
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000246 Code = bitc::TYPE_CODE_STRUCT;
247 TypeVals.push_back(ST->isPacked());
Chris Lattner15e6d172007-05-04 19:11:41 +0000248 // Output all of the element types.
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000249 for (StructType::element_iterator I = ST->element_begin(),
250 E = ST->element_end(); I != E; ++I)
251 TypeVals.push_back(VE.getTypeID(*I));
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000252 AbbrevToUse = StructAbbrev;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000253 break;
254 }
255 case Type::ArrayTyID: {
256 const ArrayType *AT = cast<ArrayType>(T);
257 // ARRAY: [numelts, eltty]
258 Code = bitc::TYPE_CODE_ARRAY;
259 TypeVals.push_back(AT->getNumElements());
260 TypeVals.push_back(VE.getTypeID(AT->getElementType()));
Chris Lattnerd092e0e2007-05-05 06:30:12 +0000261 AbbrevToUse = ArrayAbbrev;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000262 break;
263 }
264 case Type::VectorTyID: {
265 const VectorType *VT = cast<VectorType>(T);
266 // VECTOR [numelts, eltty]
267 Code = bitc::TYPE_CODE_VECTOR;
268 TypeVals.push_back(VT->getNumElements());
269 TypeVals.push_back(VE.getTypeID(VT->getElementType()));
270 break;
271 }
272 }
273
274 // Emit the finished record.
275 Stream.EmitRecord(Code, TypeVals, AbbrevToUse);
276 TypeVals.clear();
277 }
278
279 Stream.ExitBlock();
280}
281
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000282static unsigned getEncodedLinkage(const GlobalValue *GV) {
283 switch (GV->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000284 default: llvm_unreachable("Invalid linkage!");
Chris Lattner384003d2007-05-11 23:51:59 +0000285 case GlobalValue::GhostLinkage: // Map ghost linkage onto external.
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000286 case GlobalValue::ExternalLinkage: return 0;
287 case GlobalValue::WeakAnyLinkage: return 1;
288 case GlobalValue::AppendingLinkage: return 2;
289 case GlobalValue::InternalLinkage: return 3;
290 case GlobalValue::LinkOnceAnyLinkage: return 4;
291 case GlobalValue::DLLImportLinkage: return 5;
292 case GlobalValue::DLLExportLinkage: return 6;
293 case GlobalValue::ExternalWeakLinkage: return 7;
294 case GlobalValue::CommonLinkage: return 8;
295 case GlobalValue::PrivateLinkage: return 9;
296 case GlobalValue::WeakODRLinkage: return 10;
297 case GlobalValue::LinkOnceODRLinkage: return 11;
298 case GlobalValue::AvailableExternallyLinkage: return 12;
299 case GlobalValue::LinkerPrivateLinkage: return 13;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000300 }
301}
302
303static unsigned getEncodedVisibility(const GlobalValue *GV) {
304 switch (GV->getVisibility()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000305 default: llvm_unreachable("Invalid visibility!");
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000306 case GlobalValue::DefaultVisibility: return 0;
307 case GlobalValue::HiddenVisibility: return 1;
308 case GlobalValue::ProtectedVisibility: return 2;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000309 }
310}
311
312// Emit top-level description of module, including target triple, inline asm,
313// descriptors for global variables, and function prototype info.
314static void WriteModuleInfo(const Module *M, const ValueEnumerator &VE,
315 BitstreamWriter &Stream) {
316 // Emit the list of dependent libraries for the Module.
317 for (Module::lib_iterator I = M->lib_begin(), E = M->lib_end(); I != E; ++I)
318 WriteStringRecord(bitc::MODULE_CODE_DEPLIB, *I, 0/*TODO*/, Stream);
319
320 // Emit various pieces of data attached to a module.
321 if (!M->getTargetTriple().empty())
322 WriteStringRecord(bitc::MODULE_CODE_TRIPLE, M->getTargetTriple(),
323 0/*TODO*/, Stream);
324 if (!M->getDataLayout().empty())
325 WriteStringRecord(bitc::MODULE_CODE_DATALAYOUT, M->getDataLayout(),
326 0/*TODO*/, Stream);
327 if (!M->getModuleInlineAsm().empty())
328 WriteStringRecord(bitc::MODULE_CODE_ASM, M->getModuleInlineAsm(),
329 0/*TODO*/, Stream);
330
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000331 // Emit information about sections and GC, computing how many there are. Also
332 // compute the maximum alignment value.
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000333 std::map<std::string, unsigned> SectionMap;
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000334 std::map<std::string, unsigned> GCMap;
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000335 unsigned MaxAlignment = 0;
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000336 unsigned MaxGlobalType = 0;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000337 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end();
338 GV != E; ++GV) {
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000339 MaxAlignment = std::max(MaxAlignment, GV->getAlignment());
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000340 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType()));
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000341
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000342 if (!GV->hasSection()) continue;
343 // Give section names unique ID's.
344 unsigned &Entry = SectionMap[GV->getSection()];
345 if (Entry != 0) continue;
346 WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, GV->getSection(),
347 0/*TODO*/, Stream);
348 Entry = SectionMap.size();
349 }
350 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000351 MaxAlignment = std::max(MaxAlignment, F->getAlignment());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000352 if (F->hasSection()) {
353 // Give section names unique ID's.
354 unsigned &Entry = SectionMap[F->getSection()];
355 if (!Entry) {
356 WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, F->getSection(),
357 0/*TODO*/, Stream);
358 Entry = SectionMap.size();
359 }
360 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000361 if (F->hasGC()) {
362 // Same for GC names.
363 unsigned &Entry = GCMap[F->getGC()];
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000364 if (!Entry) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000365 WriteStringRecord(bitc::MODULE_CODE_GCNAME, F->getGC(),
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000366 0/*TODO*/, Stream);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000367 Entry = GCMap.size();
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000368 }
369 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000370 }
371
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000372 // Emit abbrev for globals, now that we know # sections and max alignment.
373 unsigned SimpleGVarAbbrev = 0;
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000374 if (!M->global_empty()) {
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000375 // Add an abbrev for common globals with no visibility or thread localness.
376 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
377 Abbv->Add(BitCodeAbbrevOp(bitc::MODULE_CODE_GLOBALVAR));
Chris Lattner2e7899d2007-05-04 20:34:50 +0000378 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000379 Log2_32_Ceil(MaxGlobalType+1)));
Chris Lattner2e7899d2007-05-04 20:34:50 +0000380 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Constant.
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000381 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Initializer.
Dale Johannesen66676462008-05-15 20:49:28 +0000382 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // Linkage.
Chris Lattner2e7899d2007-05-04 20:34:50 +0000383 if (MaxAlignment == 0) // Alignment.
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000384 Abbv->Add(BitCodeAbbrevOp(0));
385 else {
386 unsigned MaxEncAlignment = Log2_32(MaxAlignment)+1;
Chris Lattner2e7899d2007-05-04 20:34:50 +0000387 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000388 Log2_32_Ceil(MaxEncAlignment+1)));
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000389 }
390 if (SectionMap.empty()) // Section.
391 Abbv->Add(BitCodeAbbrevOp(0));
392 else
Chris Lattner2e7899d2007-05-04 20:34:50 +0000393 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
Chris Lattner631a8ed2007-04-24 03:29:47 +0000394 Log2_32_Ceil(SectionMap.size()+1)));
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000395 // Don't bother emitting vis + thread local.
396 SimpleGVarAbbrev = Stream.EmitAbbrev(Abbv);
397 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000398
399 // Emit the global variable information.
400 SmallVector<unsigned, 64> Vals;
401 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end();
402 GV != E; ++GV) {
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000403 unsigned AbbrevToUse = 0;
404
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000405 // GLOBALVAR: [type, isconst, initid,
406 // linkage, alignment, section, visibility, threadlocal]
407 Vals.push_back(VE.getTypeID(GV->getType()));
408 Vals.push_back(GV->isConstant());
409 Vals.push_back(GV->isDeclaration() ? 0 :
410 (VE.getValueID(GV->getInitializer()) + 1));
411 Vals.push_back(getEncodedLinkage(GV));
412 Vals.push_back(Log2_32(GV->getAlignment())+1);
413 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000414 if (GV->isThreadLocal() ||
415 GV->getVisibility() != GlobalValue::DefaultVisibility) {
416 Vals.push_back(getEncodedVisibility(GV));
417 Vals.push_back(GV->isThreadLocal());
418 } else {
419 AbbrevToUse = SimpleGVarAbbrev;
420 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000421
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000422 Stream.EmitRecord(bitc::MODULE_CODE_GLOBALVAR, Vals, AbbrevToUse);
423 Vals.clear();
424 }
425
426 // Emit the function proto information.
427 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
Duncan Sandsdc024672007-11-27 13:23:08 +0000428 // FUNCTION: [type, callingconv, isproto, paramattr,
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000429 // linkage, alignment, section, visibility, gc]
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000430 Vals.push_back(VE.getTypeID(F->getType()));
431 Vals.push_back(F->getCallingConv());
432 Vals.push_back(F->isDeclaration());
433 Vals.push_back(getEncodedLinkage(F));
Devang Patel05988662008-09-25 21:00:45 +0000434 Vals.push_back(VE.getAttributeID(F->getAttributes()));
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000435 Vals.push_back(Log2_32(F->getAlignment())+1);
436 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
437 Vals.push_back(getEncodedVisibility(F));
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000438 Vals.push_back(F->hasGC() ? GCMap[F->getGC()] : 0);
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000439
440 unsigned AbbrevToUse = 0;
441 Stream.EmitRecord(bitc::MODULE_CODE_FUNCTION, Vals, AbbrevToUse);
442 Vals.clear();
443 }
Chris Lattner07d98b42007-04-26 02:46:40 +0000444
445
446 // Emit the alias information.
447 for (Module::const_alias_iterator AI = M->alias_begin(), E = M->alias_end();
448 AI != E; ++AI) {
449 Vals.push_back(VE.getTypeID(AI->getType()));
450 Vals.push_back(VE.getValueID(AI->getAliasee()));
451 Vals.push_back(getEncodedLinkage(AI));
Anton Korobeynikovf8342b92008-03-11 21:40:17 +0000452 Vals.push_back(getEncodedVisibility(AI));
Chris Lattner07d98b42007-04-26 02:46:40 +0000453 unsigned AbbrevToUse = 0;
454 Stream.EmitRecord(bitc::MODULE_CODE_ALIAS, Vals, AbbrevToUse);
455 Vals.clear();
456 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000457}
458
Dan Gohman1224c382009-07-20 21:19:07 +0000459static uint64_t GetOptimizationFlags(const Value *V) {
460 uint64_t Flags = 0;
461
462 if (const OverflowingBinaryOperator *OBO =
463 dyn_cast<OverflowingBinaryOperator>(V)) {
464 if (OBO->hasNoSignedOverflow())
465 Flags |= 1 << bitc::OBO_NO_SIGNED_OVERFLOW;
466 if (OBO->hasNoUnsignedOverflow())
467 Flags |= 1 << bitc::OBO_NO_UNSIGNED_OVERFLOW;
468 } else if (const SDivOperator *Div = dyn_cast<SDivOperator>(V)) {
469 if (Div->isExact())
470 Flags |= 1 << bitc::SDIV_EXACT;
471 }
472
473 return Flags;
474}
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000475
Devang Patele54abc92009-07-22 17:43:22 +0000476 static void WriteModuleMetadata(const ValueEnumerator &VE,
477 BitstreamWriter &Stream) {
478 const ValueEnumerator::ValueList &Vals = VE.getValues();
479 bool StartedMetadataBlock = false;
480 unsigned MDSAbbrev = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000481 SmallVector<uint64_t, 64> Record;
Devang Patele54abc92009-07-22 17:43:22 +0000482 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
Devang Patel104cf9e2009-07-23 01:07:34 +0000483
484 if (const MDNode *N = dyn_cast<MDNode>(Vals[i].first)) {
485 if (!StartedMetadataBlock) {
486 Stream.EnterSubblock(bitc::METADATA_BLOCK_ID, 3);
487 StartedMetadataBlock = true;
488 }
489 for (unsigned i = 0, e = N->getNumElements(); i != e; ++i) {
490 if (N->getElement(i)) {
491 Record.push_back(VE.getTypeID(N->getElement(i)->getType()));
492 Record.push_back(VE.getValueID(N->getElement(i)));
493 } else {
494 Record.push_back(VE.getTypeID(Type::VoidTy));
495 Record.push_back(0);
496 }
497 }
498 Stream.EmitRecord(bitc::METADATA_NODE, Record, 0);
499 Record.clear();
500 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
Devang Patele54abc92009-07-22 17:43:22 +0000501 if (!StartedMetadataBlock) {
502 Stream.EnterSubblock(bitc::METADATA_BLOCK_ID, 3);
503
Devang Patel70c9d172009-07-22 21:10:50 +0000504 // Abbrev for METADATA_STRING.
505 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
506 Abbv->Add(BitCodeAbbrevOp(bitc::METADATA_STRING));
Devang Patele54abc92009-07-22 17:43:22 +0000507 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
Devang Patel70c9d172009-07-22 21:10:50 +0000508 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8));
509 MDSAbbrev = Stream.EmitAbbrev(Abbv);
510 StartedMetadataBlock = true;
Devang Patele54abc92009-07-22 17:43:22 +0000511 }
512
Devang Patele54abc92009-07-22 17:43:22 +0000513 // Code: [strchar x N]
514 const char *StrBegin = MDS->begin();
515 for (unsigned i = 0, e = MDS->size(); i != e; ++i)
Devang Patel104cf9e2009-07-23 01:07:34 +0000516 Record.push_back(StrBegin[i]);
Devang Patele54abc92009-07-22 17:43:22 +0000517
518 // Emit the finished record.
Devang Patel104cf9e2009-07-23 01:07:34 +0000519 Stream.EmitRecord(bitc::METADATA_STRING, Record, MDSAbbrev);
520 Record.clear();
Devang Patele54abc92009-07-22 17:43:22 +0000521 }
522 }
523
524 if (StartedMetadataBlock)
525 Stream.ExitBlock();
526}
527
528
Chris Lattner2edd22b2007-04-24 00:16:04 +0000529static void WriteConstants(unsigned FirstVal, unsigned LastVal,
530 const ValueEnumerator &VE,
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000531 BitstreamWriter &Stream, bool isGlobal) {
Chris Lattner2edd22b2007-04-24 00:16:04 +0000532 if (FirstVal == LastVal) return;
533
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000534 Stream.EnterSubblock(bitc::CONSTANTS_BLOCK_ID, 4);
Chris Lattnerb992be12007-04-23 20:35:01 +0000535
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000536 unsigned AggregateAbbrev = 0;
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000537 unsigned String8Abbrev = 0;
538 unsigned CString7Abbrev = 0;
539 unsigned CString6Abbrev = 0;
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000540 // If this is a constant pool for the module, emit module-specific abbrevs.
541 if (isGlobal) {
542 // Abbrev for CST_CODE_AGGREGATE.
543 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
544 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_AGGREGATE));
545 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
546 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, Log2_32_Ceil(LastVal+1)));
547 AggregateAbbrev = Stream.EmitAbbrev(Abbv);
Chris Lattner817f08a2007-05-06 00:42:18 +0000548
549 // Abbrev for CST_CODE_STRING.
550 Abbv = new BitCodeAbbrev();
551 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_STRING));
552 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000553 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8));
554 String8Abbrev = Stream.EmitAbbrev(Abbv);
555 // Abbrev for CST_CODE_CSTRING.
556 Abbv = new BitCodeAbbrev();
557 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CSTRING));
558 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
Chris Lattner817f08a2007-05-06 00:42:18 +0000559 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000560 CString7Abbrev = Stream.EmitAbbrev(Abbv);
561 // Abbrev for CST_CODE_CSTRING.
562 Abbv = new BitCodeAbbrev();
563 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CSTRING));
564 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
565 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6));
566 CString6Abbrev = Stream.EmitAbbrev(Abbv);
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000567 }
568
Chris Lattner2edd22b2007-04-24 00:16:04 +0000569 SmallVector<uint64_t, 64> Record;
570
571 const ValueEnumerator::ValueList &Vals = VE.getValues();
572 const Type *LastTy = 0;
573 for (unsigned i = FirstVal; i != LastVal; ++i) {
574 const Value *V = Vals[i].first;
Devang Patel104cf9e2009-07-23 01:07:34 +0000575 if (isa<MDString>(V) || isa<MDNode>(V))
Devang Patele54abc92009-07-22 17:43:22 +0000576 continue;
Chris Lattner2edd22b2007-04-24 00:16:04 +0000577 // If we need to switch types, do so now.
578 if (V->getType() != LastTy) {
579 LastTy = V->getType();
580 Record.push_back(VE.getTypeID(LastTy));
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000581 Stream.EmitRecord(bitc::CST_CODE_SETTYPE, Record,
582 CONSTANTS_SETTYPE_ABBREV);
Chris Lattner2edd22b2007-04-24 00:16:04 +0000583 Record.clear();
584 }
585
586 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattner2bce93a2007-05-06 01:58:20 +0000587 Record.push_back(unsigned(IA->hasSideEffects()));
588
589 // Add the asm string.
590 const std::string &AsmStr = IA->getAsmString();
591 Record.push_back(AsmStr.size());
592 for (unsigned i = 0, e = AsmStr.size(); i != e; ++i)
593 Record.push_back(AsmStr[i]);
594
595 // Add the constraint string.
596 const std::string &ConstraintStr = IA->getConstraintString();
597 Record.push_back(ConstraintStr.size());
598 for (unsigned i = 0, e = ConstraintStr.size(); i != e; ++i)
599 Record.push_back(ConstraintStr[i]);
600 Stream.EmitRecord(bitc::CST_CODE_INLINEASM, Record);
601 Record.clear();
Chris Lattner2edd22b2007-04-24 00:16:04 +0000602 continue;
603 }
604 const Constant *C = cast<Constant>(V);
605 unsigned Code = -1U;
606 unsigned AbbrevToUse = 0;
607 if (C->isNullValue()) {
608 Code = bitc::CST_CODE_NULL;
609 } else if (isa<UndefValue>(C)) {
610 Code = bitc::CST_CODE_UNDEF;
611 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) {
612 if (IV->getBitWidth() <= 64) {
613 int64_t V = IV->getSExtValue();
614 if (V >= 0)
615 Record.push_back(V << 1);
616 else
617 Record.push_back((-V << 1) | 1);
618 Code = bitc::CST_CODE_INTEGER;
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000619 AbbrevToUse = CONSTANTS_INTEGER_ABBREV;
Chris Lattner2edd22b2007-04-24 00:16:04 +0000620 } else { // Wide integers, > 64 bits in size.
621 // We have an arbitrary precision integer value to write whose
622 // bit width is > 64. However, in canonical unsigned integer
623 // format it is likely that the high bits are going to be zero.
624 // So, we only write the number of active words.
625 unsigned NWords = IV->getValue().getActiveWords();
626 const uint64_t *RawWords = IV->getValue().getRawData();
Chris Lattner2edd22b2007-04-24 00:16:04 +0000627 for (unsigned i = 0; i != NWords; ++i) {
628 int64_t V = RawWords[i];
629 if (V >= 0)
630 Record.push_back(V << 1);
631 else
632 Record.push_back((-V << 1) | 1);
633 }
634 Code = bitc::CST_CODE_WIDE_INTEGER;
635 }
636 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
637 Code = bitc::CST_CODE_FLOAT;
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000638 const Type *Ty = CFP->getType();
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000639 if (Ty == Type::FloatTy || Ty == Type::DoubleTy) {
Dale Johannesen7111b022008-10-09 18:53:47 +0000640 Record.push_back(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000641 } else if (Ty == Type::X86_FP80Ty) {
Dale Johannesen693717f2007-09-26 23:20:33 +0000642 // api needed to prevent premature destruction
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000643 // bits are not in the same order as a normal i80 APInt, compensate.
Dale Johannesen7111b022008-10-09 18:53:47 +0000644 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen693717f2007-09-26 23:20:33 +0000645 const uint64_t *p = api.getRawData();
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000646 Record.push_back((p[1] << 48) | (p[0] >> 16));
647 Record.push_back(p[0] & 0xffffLL);
Dale Johannesena471c2e2007-10-11 18:07:22 +0000648 } else if (Ty == Type::FP128Ty || Ty == Type::PPC_FP128Ty) {
Dale Johannesen7111b022008-10-09 18:53:47 +0000649 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen693717f2007-09-26 23:20:33 +0000650 const uint64_t *p = api.getRawData();
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000651 Record.push_back(p[0]);
652 Record.push_back(p[1]);
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000653 } else {
654 assert (0 && "Unknown FP type!");
Chris Lattner2edd22b2007-04-24 00:16:04 +0000655 }
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000656 } else if (isa<ConstantArray>(C) && cast<ConstantArray>(C)->isString()) {
657 // Emit constant strings specially.
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000658 unsigned NumOps = C->getNumOperands();
659 // If this is a null-terminated string, use the denser CSTRING encoding.
660 if (C->getOperand(NumOps-1)->isNullValue()) {
661 Code = bitc::CST_CODE_CSTRING;
662 --NumOps; // Don't encode the null, which isn't allowed by char6.
663 } else {
664 Code = bitc::CST_CODE_STRING;
665 AbbrevToUse = String8Abbrev;
666 }
667 bool isCStr7 = Code == bitc::CST_CODE_CSTRING;
668 bool isCStrChar6 = Code == bitc::CST_CODE_CSTRING;
669 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner817f08a2007-05-06 00:42:18 +0000670 unsigned char V = cast<ConstantInt>(C->getOperand(i))->getZExtValue();
671 Record.push_back(V);
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000672 isCStr7 &= (V & 128) == 0;
673 if (isCStrChar6)
674 isCStrChar6 = BitCodeAbbrevOp::isChar6(V);
Chris Lattner817f08a2007-05-06 00:42:18 +0000675 }
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000676
677 if (isCStrChar6)
678 AbbrevToUse = CString6Abbrev;
679 else if (isCStr7)
680 AbbrevToUse = CString7Abbrev;
Chris Lattner2edd22b2007-04-24 00:16:04 +0000681 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(V) ||
682 isa<ConstantVector>(V)) {
683 Code = bitc::CST_CODE_AGGREGATE;
Chris Lattner2edd22b2007-04-24 00:16:04 +0000684 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
685 Record.push_back(VE.getValueID(C->getOperand(i)));
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000686 AbbrevToUse = AggregateAbbrev;
Chris Lattner2edd22b2007-04-24 00:16:04 +0000687 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000688 switch (CE->getOpcode()) {
689 default:
690 if (Instruction::isCast(CE->getOpcode())) {
691 Code = bitc::CST_CODE_CE_CAST;
692 Record.push_back(GetEncodedCastOpcode(CE->getOpcode()));
693 Record.push_back(VE.getTypeID(C->getOperand(0)->getType()));
694 Record.push_back(VE.getValueID(C->getOperand(0)));
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000695 AbbrevToUse = CONSTANTS_CE_CAST_Abbrev;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000696 } else {
697 assert(CE->getNumOperands() == 2 && "Unknown constant expr!");
698 Code = bitc::CST_CODE_CE_BINOP;
699 Record.push_back(GetEncodedBinaryOpcode(CE->getOpcode()));
700 Record.push_back(VE.getValueID(C->getOperand(0)));
701 Record.push_back(VE.getValueID(C->getOperand(1)));
Dan Gohman1224c382009-07-20 21:19:07 +0000702 uint64_t Flags = GetOptimizationFlags(CE);
703 if (Flags != 0)
704 Record.push_back(Flags);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000705 }
706 break;
707 case Instruction::GetElementPtr:
708 Code = bitc::CST_CODE_CE_GEP;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000709 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) {
710 Record.push_back(VE.getTypeID(C->getOperand(i)->getType()));
711 Record.push_back(VE.getValueID(C->getOperand(i)));
712 }
713 break;
714 case Instruction::Select:
715 Code = bitc::CST_CODE_CE_SELECT;
716 Record.push_back(VE.getValueID(C->getOperand(0)));
717 Record.push_back(VE.getValueID(C->getOperand(1)));
718 Record.push_back(VE.getValueID(C->getOperand(2)));
719 break;
720 case Instruction::ExtractElement:
721 Code = bitc::CST_CODE_CE_EXTRACTELT;
722 Record.push_back(VE.getTypeID(C->getOperand(0)->getType()));
723 Record.push_back(VE.getValueID(C->getOperand(0)));
724 Record.push_back(VE.getValueID(C->getOperand(1)));
725 break;
726 case Instruction::InsertElement:
727 Code = bitc::CST_CODE_CE_INSERTELT;
728 Record.push_back(VE.getValueID(C->getOperand(0)));
729 Record.push_back(VE.getValueID(C->getOperand(1)));
730 Record.push_back(VE.getValueID(C->getOperand(2)));
731 break;
732 case Instruction::ShuffleVector:
Nate Begeman0f123cf2009-02-12 21:28:33 +0000733 // If the return type and argument types are the same, this is a
734 // standard shufflevector instruction. If the types are different,
735 // then the shuffle is widening or truncating the input vectors, and
736 // the argument type must also be encoded.
737 if (C->getType() == C->getOperand(0)->getType()) {
738 Code = bitc::CST_CODE_CE_SHUFFLEVEC;
739 } else {
740 Code = bitc::CST_CODE_CE_SHUFVEC_EX;
741 Record.push_back(VE.getTypeID(C->getOperand(0)->getType()));
742 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000743 Record.push_back(VE.getValueID(C->getOperand(0)));
744 Record.push_back(VE.getValueID(C->getOperand(1)));
745 Record.push_back(VE.getValueID(C->getOperand(2)));
746 break;
747 case Instruction::ICmp:
748 case Instruction::FCmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000749 Code = bitc::CST_CODE_CE_CMP;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000750 Record.push_back(VE.getTypeID(C->getOperand(0)->getType()));
751 Record.push_back(VE.getValueID(C->getOperand(0)));
752 Record.push_back(VE.getValueID(C->getOperand(1)));
753 Record.push_back(CE->getPredicate());
754 break;
755 }
Chris Lattner2edd22b2007-04-24 00:16:04 +0000756 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000757 llvm_unreachable("Unknown constant!");
Chris Lattner2edd22b2007-04-24 00:16:04 +0000758 }
759 Stream.EmitRecord(Code, Record, AbbrevToUse);
760 Record.clear();
761 }
762
763 Stream.ExitBlock();
764}
765
766static void WriteModuleConstants(const ValueEnumerator &VE,
767 BitstreamWriter &Stream) {
768 const ValueEnumerator::ValueList &Vals = VE.getValues();
769
770 // Find the first constant to emit, which is the first non-globalvalue value.
771 // We know globalvalues have been emitted by WriteModuleInfo.
772 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
773 if (!isa<GlobalValue>(Vals[i].first)) {
Chris Lattnera0f1ecc2007-05-05 07:36:14 +0000774 WriteConstants(i, Vals.size(), VE, Stream, true);
Chris Lattner2edd22b2007-04-24 00:16:04 +0000775 return;
776 }
777 }
778}
Chris Lattnerb992be12007-04-23 20:35:01 +0000779
Chris Lattner7337ab92007-05-06 00:00:00 +0000780/// PushValueAndType - The file has to encode both the value and type id for
781/// many values, because we need to know what type to create for forward
782/// references. However, most operands are not forward references, so this type
783/// field is not needed.
784///
785/// This function adds V's value ID to Vals. If the value ID is higher than the
786/// instruction ID, then it is a forward reference, and it also includes the
787/// type ID.
Gabor Greif75a46eb2009-01-16 18:40:27 +0000788static bool PushValueAndType(const Value *V, unsigned InstID,
Chris Lattner7337ab92007-05-06 00:00:00 +0000789 SmallVector<unsigned, 64> &Vals,
790 ValueEnumerator &VE) {
791 unsigned ValID = VE.getValueID(V);
792 Vals.push_back(ValID);
793 if (ValID >= InstID) {
794 Vals.push_back(VE.getTypeID(V->getType()));
795 return true;
796 }
797 return false;
798}
799
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000800/// WriteInstruction - Emit an instruction to the specified stream.
Chris Lattner7337ab92007-05-06 00:00:00 +0000801static void WriteInstruction(const Instruction &I, unsigned InstID,
802 ValueEnumerator &VE, BitstreamWriter &Stream,
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000803 SmallVector<unsigned, 64> &Vals) {
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000804 unsigned Code = 0;
805 unsigned AbbrevToUse = 0;
806 switch (I.getOpcode()) {
807 default:
808 if (Instruction::isCast(I.getOpcode())) {
Chris Lattnerd309c752007-05-01 02:13:26 +0000809 Code = bitc::FUNC_CODE_INST_CAST;
Chris Lattnerf9f2e832007-05-06 02:38:57 +0000810 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE))
811 AbbrevToUse = FUNCTION_INST_CAST_ABBREV;
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000812 Vals.push_back(VE.getTypeID(I.getType()));
Chris Lattnerabfbf852007-05-06 00:21:25 +0000813 Vals.push_back(GetEncodedCastOpcode(I.getOpcode()));
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000814 } else {
815 assert(isa<BinaryOperator>(I) && "Unknown instruction!");
Chris Lattnerf6398752007-05-02 04:26:36 +0000816 Code = bitc::FUNC_CODE_INST_BINOP;
Chris Lattnerf9f2e832007-05-06 02:38:57 +0000817 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE))
818 AbbrevToUse = FUNCTION_INST_BINOP_ABBREV;
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000819 Vals.push_back(VE.getValueID(I.getOperand(1)));
Chris Lattnerabfbf852007-05-06 00:21:25 +0000820 Vals.push_back(GetEncodedBinaryOpcode(I.getOpcode()));
Dan Gohman1224c382009-07-20 21:19:07 +0000821 uint64_t Flags = GetOptimizationFlags(&I);
822 if (Flags != 0) {
823 if (AbbrevToUse == FUNCTION_INST_BINOP_ABBREV)
824 AbbrevToUse = FUNCTION_INST_BINOP_FLAGS_ABBREV;
825 Vals.push_back(Flags);
826 }
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000827 }
828 break;
Chris Lattnerd309c752007-05-01 02:13:26 +0000829
830 case Instruction::GetElementPtr:
831 Code = bitc::FUNC_CODE_INST_GEP;
Chris Lattner7337ab92007-05-06 00:00:00 +0000832 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
833 PushValueAndType(I.getOperand(i), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000834 break;
Dan Gohman0aab28b2008-05-31 19:11:15 +0000835 case Instruction::ExtractValue: {
Dan Gohmane4977cf2008-05-23 01:55:30 +0000836 Code = bitc::FUNC_CODE_INST_EXTRACTVAL;
Dan Gohman0aab28b2008-05-31 19:11:15 +0000837 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
838 const ExtractValueInst *EVI = cast<ExtractValueInst>(&I);
839 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
840 Vals.push_back(*i);
Dan Gohmane4977cf2008-05-23 01:55:30 +0000841 break;
Dan Gohman0aab28b2008-05-31 19:11:15 +0000842 }
843 case Instruction::InsertValue: {
Dan Gohmane4977cf2008-05-23 01:55:30 +0000844 Code = bitc::FUNC_CODE_INST_INSERTVAL;
Dan Gohman0aab28b2008-05-31 19:11:15 +0000845 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
846 PushValueAndType(I.getOperand(1), InstID, Vals, VE);
847 const InsertValueInst *IVI = cast<InsertValueInst>(&I);
848 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
849 Vals.push_back(*i);
Dan Gohmane4977cf2008-05-23 01:55:30 +0000850 break;
Dan Gohman0aab28b2008-05-31 19:11:15 +0000851 }
Chris Lattnerd309c752007-05-01 02:13:26 +0000852 case Instruction::Select:
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +0000853 Code = bitc::FUNC_CODE_INST_VSELECT;
Chris Lattnerabfbf852007-05-06 00:21:25 +0000854 PushValueAndType(I.getOperand(1), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000855 Vals.push_back(VE.getValueID(I.getOperand(2)));
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +0000856 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000857 break;
858 case Instruction::ExtractElement:
859 Code = bitc::FUNC_CODE_INST_EXTRACTELT;
Chris Lattnerabfbf852007-05-06 00:21:25 +0000860 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000861 Vals.push_back(VE.getValueID(I.getOperand(1)));
862 break;
863 case Instruction::InsertElement:
864 Code = bitc::FUNC_CODE_INST_INSERTELT;
Chris Lattnerabfbf852007-05-06 00:21:25 +0000865 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000866 Vals.push_back(VE.getValueID(I.getOperand(1)));
867 Vals.push_back(VE.getValueID(I.getOperand(2)));
868 break;
869 case Instruction::ShuffleVector:
870 Code = bitc::FUNC_CODE_INST_SHUFFLEVEC;
Chris Lattnerabfbf852007-05-06 00:21:25 +0000871 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000872 Vals.push_back(VE.getValueID(I.getOperand(1)));
873 Vals.push_back(VE.getValueID(I.getOperand(2)));
874 break;
875 case Instruction::ICmp:
876 case Instruction::FCmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000877 // compare returning Int1Ty or vector of Int1Ty
878 Code = bitc::FUNC_CODE_INST_CMP2;
Chris Lattner7337ab92007-05-06 00:00:00 +0000879 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000880 Vals.push_back(VE.getValueID(I.getOperand(1)));
881 Vals.push_back(cast<CmpInst>(I).getPredicate());
882 break;
883
Devang Pateld9d99ff2008-02-26 01:29:32 +0000884 case Instruction::Ret:
885 {
886 Code = bitc::FUNC_CODE_INST_RET;
887 unsigned NumOperands = I.getNumOperands();
Devang Pateld9d99ff2008-02-26 01:29:32 +0000888 if (NumOperands == 0)
889 AbbrevToUse = FUNCTION_INST_RET_VOID_ABBREV;
890 else if (NumOperands == 1) {
891 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE))
892 AbbrevToUse = FUNCTION_INST_RET_VAL_ABBREV;
893 } else {
894 for (unsigned i = 0, e = NumOperands; i != e; ++i)
895 PushValueAndType(I.getOperand(i), InstID, Vals, VE);
896 }
897 }
Chris Lattnerd309c752007-05-01 02:13:26 +0000898 break;
899 case Instruction::Br:
Gabor Greifae6ab1e2009-01-30 18:27:21 +0000900 {
901 Code = bitc::FUNC_CODE_INST_BR;
902 BranchInst &II(cast<BranchInst>(I));
903 Vals.push_back(VE.getValueID(II.getSuccessor(0)));
904 if (II.isConditional()) {
905 Vals.push_back(VE.getValueID(II.getSuccessor(1)));
906 Vals.push_back(VE.getValueID(II.getCondition()));
907 }
Chris Lattnerd309c752007-05-01 02:13:26 +0000908 }
909 break;
910 case Instruction::Switch:
911 Code = bitc::FUNC_CODE_INST_SWITCH;
912 Vals.push_back(VE.getTypeID(I.getOperand(0)->getType()));
Chris Lattnerd309c752007-05-01 02:13:26 +0000913 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
914 Vals.push_back(VE.getValueID(I.getOperand(i)));
915 break;
Chris Lattner60ce9b52007-05-01 07:03:37 +0000916 case Instruction::Invoke: {
Gabor Greif75a46eb2009-01-16 18:40:27 +0000917 const InvokeInst *II = cast<InvokeInst>(&I);
918 const Value *Callee(II->getCalledValue());
919 const PointerType *PTy = cast<PointerType>(Callee->getType());
Chris Lattnera9bb7132007-05-08 05:38:01 +0000920 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattnerd309c752007-05-01 02:13:26 +0000921 Code = bitc::FUNC_CODE_INST_INVOKE;
Chris Lattnera9bb7132007-05-08 05:38:01 +0000922
Devang Patel05988662008-09-25 21:00:45 +0000923 Vals.push_back(VE.getAttributeID(II->getAttributes()));
Duncan Sandsdc024672007-11-27 13:23:08 +0000924 Vals.push_back(II->getCallingConv());
Gabor Greif8fe53b72009-01-07 22:39:29 +0000925 Vals.push_back(VE.getValueID(II->getNormalDest()));
926 Vals.push_back(VE.getValueID(II->getUnwindDest()));
Gabor Greif75a46eb2009-01-16 18:40:27 +0000927 PushValueAndType(Callee, InstID, Vals, VE);
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000928
Chris Lattnerd309c752007-05-01 02:13:26 +0000929 // Emit value #'s for the fixed parameters.
Chris Lattnerd309c752007-05-01 02:13:26 +0000930 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Bill Wendling9a507cd2009-03-13 21:15:59 +0000931 Vals.push_back(VE.getValueID(I.getOperand(i+3))); // fixed param.
Chris Lattnerd309c752007-05-01 02:13:26 +0000932
933 // Emit type/value pairs for varargs params.
934 if (FTy->isVarArg()) {
Bill Wendling9a507cd2009-03-13 21:15:59 +0000935 for (unsigned i = 3+FTy->getNumParams(), e = I.getNumOperands();
Chris Lattner7337ab92007-05-06 00:00:00 +0000936 i != e; ++i)
937 PushValueAndType(I.getOperand(i), InstID, Vals, VE); // vararg
Chris Lattnerd309c752007-05-01 02:13:26 +0000938 }
939 break;
Chris Lattner60ce9b52007-05-01 07:03:37 +0000940 }
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000941 case Instruction::Unwind:
942 Code = bitc::FUNC_CODE_INST_UNWIND;
943 break;
944 case Instruction::Unreachable:
945 Code = bitc::FUNC_CODE_INST_UNREACHABLE;
Chris Lattner94687ac2007-05-06 01:28:01 +0000946 AbbrevToUse = FUNCTION_INST_UNREACHABLE_ABBREV;
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000947 break;
Chris Lattnerd309c752007-05-01 02:13:26 +0000948
949 case Instruction::PHI:
950 Code = bitc::FUNC_CODE_INST_PHI;
951 Vals.push_back(VE.getTypeID(I.getType()));
Chris Lattnerd309c752007-05-01 02:13:26 +0000952 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
953 Vals.push_back(VE.getValueID(I.getOperand(i)));
954 break;
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000955
Chris Lattnerd309c752007-05-01 02:13:26 +0000956 case Instruction::Malloc:
957 Code = bitc::FUNC_CODE_INST_MALLOC;
958 Vals.push_back(VE.getTypeID(I.getType()));
959 Vals.push_back(VE.getValueID(I.getOperand(0))); // size.
960 Vals.push_back(Log2_32(cast<MallocInst>(I).getAlignment())+1);
961 break;
962
963 case Instruction::Free:
964 Code = bitc::FUNC_CODE_INST_FREE;
Chris Lattnerabfbf852007-05-06 00:21:25 +0000965 PushValueAndType(I.getOperand(0), InstID, Vals, VE);
Chris Lattnerd309c752007-05-01 02:13:26 +0000966 break;
967
968 case Instruction::Alloca:
969 Code = bitc::FUNC_CODE_INST_ALLOCA;
970 Vals.push_back(VE.getTypeID(I.getType()));
971 Vals.push_back(VE.getValueID(I.getOperand(0))); // size.
972 Vals.push_back(Log2_32(cast<AllocaInst>(I).getAlignment())+1);
973 break;
974
975 case Instruction::Load:
976 Code = bitc::FUNC_CODE_INST_LOAD;
Chris Lattner7337ab92007-05-06 00:00:00 +0000977 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE)) // ptr
978 AbbrevToUse = FUNCTION_INST_LOAD_ABBREV;
979
Chris Lattnerd309c752007-05-01 02:13:26 +0000980 Vals.push_back(Log2_32(cast<LoadInst>(I).getAlignment())+1);
981 Vals.push_back(cast<LoadInst>(I).isVolatile());
982 break;
983 case Instruction::Store:
Christopher Lambfe63fb92007-12-11 08:59:05 +0000984 Code = bitc::FUNC_CODE_INST_STORE2;
985 PushValueAndType(I.getOperand(1), InstID, Vals, VE); // ptrty + ptr
986 Vals.push_back(VE.getValueID(I.getOperand(0))); // val.
Chris Lattnerd309c752007-05-01 02:13:26 +0000987 Vals.push_back(Log2_32(cast<StoreInst>(I).getAlignment())+1);
988 Vals.push_back(cast<StoreInst>(I).isVolatile());
989 break;
990 case Instruction::Call: {
Chris Lattnera9bb7132007-05-08 05:38:01 +0000991 const PointerType *PTy = cast<PointerType>(I.getOperand(0)->getType());
992 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
993
Chris Lattnerd309c752007-05-01 02:13:26 +0000994 Code = bitc::FUNC_CODE_INST_CALL;
Chris Lattnera9bb7132007-05-08 05:38:01 +0000995
Duncan Sandsdc024672007-11-27 13:23:08 +0000996 const CallInst *CI = cast<CallInst>(&I);
Devang Patel05988662008-09-25 21:00:45 +0000997 Vals.push_back(VE.getAttributeID(CI->getAttributes()));
Duncan Sandsdc024672007-11-27 13:23:08 +0000998 Vals.push_back((CI->getCallingConv() << 1) | unsigned(CI->isTailCall()));
999 PushValueAndType(CI->getOperand(0), InstID, Vals, VE); // Callee
Chris Lattnerd309c752007-05-01 02:13:26 +00001000
1001 // Emit value #'s for the fixed parameters.
Chris Lattnerd309c752007-05-01 02:13:26 +00001002 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
1003 Vals.push_back(VE.getValueID(I.getOperand(i+1))); // fixed param.
1004
Chris Lattner60ce9b52007-05-01 07:03:37 +00001005 // Emit type/value pairs for varargs params.
1006 if (FTy->isVarArg()) {
1007 unsigned NumVarargs = I.getNumOperands()-1-FTy->getNumParams();
Chris Lattner60ce9b52007-05-01 07:03:37 +00001008 for (unsigned i = I.getNumOperands()-NumVarargs, e = I.getNumOperands();
Chris Lattner7337ab92007-05-06 00:00:00 +00001009 i != e; ++i)
1010 PushValueAndType(I.getOperand(i), InstID, Vals, VE); // varargs
Chris Lattnerd309c752007-05-01 02:13:26 +00001011 }
1012 break;
Chris Lattner60ce9b52007-05-01 07:03:37 +00001013 }
Chris Lattnerd309c752007-05-01 02:13:26 +00001014 case Instruction::VAArg:
1015 Code = bitc::FUNC_CODE_INST_VAARG;
1016 Vals.push_back(VE.getTypeID(I.getOperand(0)->getType())); // valistty
1017 Vals.push_back(VE.getValueID(I.getOperand(0))); // valist.
1018 Vals.push_back(VE.getTypeID(I.getType())); // restype.
1019 break;
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001020 }
1021
1022 Stream.EmitRecord(Code, Vals, AbbrevToUse);
1023 Vals.clear();
1024}
1025
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001026// Emit names for globals/functions etc.
1027static void WriteValueSymbolTable(const ValueSymbolTable &VST,
1028 const ValueEnumerator &VE,
1029 BitstreamWriter &Stream) {
1030 if (VST.empty()) return;
Chris Lattnerff294a42007-05-05 01:26:50 +00001031 Stream.EnterSubblock(bitc::VALUE_SYMTAB_BLOCK_ID, 4);
Chris Lattner2e7899d2007-05-04 20:34:50 +00001032
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001033 // FIXME: Set up the abbrev, we know how many values there are!
1034 // FIXME: We know if the type names can use 7-bit ascii.
1035 SmallVector<unsigned, 64> NameVals;
1036
1037 for (ValueSymbolTable::const_iterator SI = VST.begin(), SE = VST.end();
1038 SI != SE; ++SI) {
Chris Lattner59698302007-05-04 20:52:02 +00001039
1040 const ValueName &Name = *SI;
1041
1042 // Figure out the encoding to use for the name.
1043 bool is7Bit = true;
Chris Lattnerff294a42007-05-05 01:26:50 +00001044 bool isChar6 = true;
1045 for (const char *C = Name.getKeyData(), *E = C+Name.getKeyLength();
1046 C != E; ++C) {
1047 if (isChar6)
1048 isChar6 = BitCodeAbbrevOp::isChar6(*C);
1049 if ((unsigned char)*C & 128) {
Chris Lattner59698302007-05-04 20:52:02 +00001050 is7Bit = false;
Chris Lattnerff294a42007-05-05 01:26:50 +00001051 break; // don't bother scanning the rest.
Chris Lattner59698302007-05-04 20:52:02 +00001052 }
Chris Lattnerff294a42007-05-05 01:26:50 +00001053 }
Chris Lattner59698302007-05-04 20:52:02 +00001054
Chris Lattnerfd1ae952007-05-04 21:31:13 +00001055 unsigned AbbrevToUse = VST_ENTRY_8_ABBREV;
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001056
Chris Lattnerfd1ae952007-05-04 21:31:13 +00001057 // VST_ENTRY: [valueid, namechar x N]
1058 // VST_BBENTRY: [bbid, namechar x N]
Chris Lattnere825ed52007-05-03 22:18:21 +00001059 unsigned Code;
1060 if (isa<BasicBlock>(SI->getValue())) {
1061 Code = bitc::VST_CODE_BBENTRY;
Chris Lattnerff294a42007-05-05 01:26:50 +00001062 if (isChar6)
1063 AbbrevToUse = VST_BBENTRY_6_ABBREV;
Chris Lattnere825ed52007-05-03 22:18:21 +00001064 } else {
1065 Code = bitc::VST_CODE_ENTRY;
Chris Lattnerff294a42007-05-05 01:26:50 +00001066 if (isChar6)
1067 AbbrevToUse = VST_ENTRY_6_ABBREV;
1068 else if (is7Bit)
1069 AbbrevToUse = VST_ENTRY_7_ABBREV;
Chris Lattnere825ed52007-05-03 22:18:21 +00001070 }
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001071
Chris Lattnere825ed52007-05-03 22:18:21 +00001072 NameVals.push_back(VE.getValueID(SI->getValue()));
Chris Lattner59698302007-05-04 20:52:02 +00001073 for (const char *P = Name.getKeyData(),
1074 *E = Name.getKeyData()+Name.getKeyLength(); P != E; ++P)
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001075 NameVals.push_back((unsigned char)*P);
1076
1077 // Emit the finished record.
Chris Lattnere825ed52007-05-03 22:18:21 +00001078 Stream.EmitRecord(Code, NameVals, AbbrevToUse);
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001079 NameVals.clear();
1080 }
1081 Stream.ExitBlock();
1082}
1083
Chris Lattner8d35c792007-04-26 03:50:57 +00001084/// WriteFunction - Emit a function body to the module stream.
Chris Lattner198f34a2007-04-26 03:27:58 +00001085static void WriteFunction(const Function &F, ValueEnumerator &VE,
1086 BitstreamWriter &Stream) {
Chris Lattnerf9f2e832007-05-06 02:38:57 +00001087 Stream.EnterSubblock(bitc::FUNCTION_BLOCK_ID, 4);
Chris Lattner8d35c792007-04-26 03:50:57 +00001088 VE.incorporateFunction(F);
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001089
1090 SmallVector<unsigned, 64> Vals;
1091
1092 // Emit the number of basic blocks, so the reader can create them ahead of
1093 // time.
1094 Vals.push_back(VE.getBasicBlocks().size());
1095 Stream.EmitRecord(bitc::FUNC_CODE_DECLAREBLOCKS, Vals);
1096 Vals.clear();
1097
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001098 // If there are function-local constants, emit them now.
1099 unsigned CstStart, CstEnd;
1100 VE.getFunctionConstantRange(CstStart, CstEnd);
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001101 WriteConstants(CstStart, CstEnd, VE, Stream, false);
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001102
Chris Lattner7337ab92007-05-06 00:00:00 +00001103 // Keep a running idea of what the instruction ID is.
1104 unsigned InstID = CstEnd;
1105
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001106 // Finally, emit all the instructions, in order.
Nick Lewycky280a6e62008-04-25 16:53:59 +00001107 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
Chris Lattner7337ab92007-05-06 00:00:00 +00001108 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
1109 I != E; ++I) {
1110 WriteInstruction(*I, InstID, VE, Stream, Vals);
1111 if (I->getType() != Type::VoidTy)
1112 ++InstID;
1113 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001114
Chris Lattnerbe1f9932007-05-01 02:14:57 +00001115 // Emit names for all the instructions etc.
1116 WriteValueSymbolTable(F.getValueSymbolTable(), VE, Stream);
1117
Chris Lattner8d35c792007-04-26 03:50:57 +00001118 VE.purgeFunction();
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +00001119 Stream.ExitBlock();
Chris Lattner198f34a2007-04-26 03:27:58 +00001120}
1121
1122/// WriteTypeSymbolTable - Emit a block for the specified type symtab.
1123static void WriteTypeSymbolTable(const TypeSymbolTable &TST,
1124 const ValueEnumerator &VE,
1125 BitstreamWriter &Stream) {
1126 if (TST.empty()) return;
1127
1128 Stream.EnterSubblock(bitc::TYPE_SYMTAB_BLOCK_ID, 3);
1129
Chris Lattner7a263ea2007-05-05 00:47:19 +00001130 // 7-bit fixed width VST_CODE_ENTRY strings.
1131 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1132 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
1133 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
1134 Log2_32_Ceil(VE.getTypes().size()+1)));
1135 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
1136 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
1137 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv);
Chris Lattner198f34a2007-04-26 03:27:58 +00001138
1139 SmallVector<unsigned, 64> NameVals;
1140
1141 for (TypeSymbolTable::const_iterator TI = TST.begin(), TE = TST.end();
1142 TI != TE; ++TI) {
Chris Lattner7a263ea2007-05-05 00:47:19 +00001143 // TST_ENTRY: [typeid, namechar x N]
Chris Lattner198f34a2007-04-26 03:27:58 +00001144 NameVals.push_back(VE.getTypeID(TI->second));
1145
1146 const std::string &Str = TI->first;
Chris Lattner7a263ea2007-05-05 00:47:19 +00001147 bool is7Bit = true;
1148 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1149 NameVals.push_back((unsigned char)Str[i]);
1150 if (Str[i] & 128)
1151 is7Bit = false;
1152 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001153
1154 // Emit the finished record.
Chris Lattner7a263ea2007-05-05 00:47:19 +00001155 Stream.EmitRecord(bitc::VST_CODE_ENTRY, NameVals, is7Bit ? V7Abbrev : 0);
Chris Lattner198f34a2007-04-26 03:27:58 +00001156 NameVals.clear();
1157 }
1158
1159 Stream.ExitBlock();
1160}
1161
Chris Lattner07faafc2007-05-04 18:26:27 +00001162// Emit blockinfo, which defines the standard abbreviations etc.
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001163static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
Chris Lattner07faafc2007-05-04 18:26:27 +00001164 // We only want to emit block info records for blocks that have multiple
1165 // instances: CONSTANTS_BLOCK, FUNCTION_BLOCK and VALUE_SYMTAB_BLOCK. Other
1166 // blocks can defined their abbrevs inline.
Chris Lattnere17b6582007-05-05 00:17:00 +00001167 Stream.EnterBlockInfoBlock(2);
Chris Lattner07faafc2007-05-04 18:26:27 +00001168
Chris Lattnere17b6582007-05-05 00:17:00 +00001169 { // 8-bit fixed-width VST_ENTRY/VST_BBENTRY strings.
1170 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1171 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3));
1172 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1173 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
1174 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8));
1175 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
1176 Abbv) != VST_ENTRY_8_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001177 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnere17b6582007-05-05 00:17:00 +00001178 }
1179
1180 { // 7-bit fixed width VST_ENTRY strings.
1181 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1182 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
1183 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1184 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
1185 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
1186 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
1187 Abbv) != VST_ENTRY_7_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001188 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnere17b6582007-05-05 00:17:00 +00001189 }
Chris Lattnerff294a42007-05-05 01:26:50 +00001190 { // 6-bit char6 VST_ENTRY strings.
1191 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1192 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
1193 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1194 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
1195 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6));
1196 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
1197 Abbv) != VST_ENTRY_6_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001198 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnerff294a42007-05-05 01:26:50 +00001199 }
1200 { // 6-bit char6 VST_BBENTRY strings.
Chris Lattnere17b6582007-05-05 00:17:00 +00001201 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1202 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_BBENTRY));
1203 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1204 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
Chris Lattnerff294a42007-05-05 01:26:50 +00001205 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6));
Chris Lattnere17b6582007-05-05 00:17:00 +00001206 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
Chris Lattnerff294a42007-05-05 01:26:50 +00001207 Abbv) != VST_BBENTRY_6_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001208 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnere17b6582007-05-05 00:17:00 +00001209 }
1210
Chris Lattner440168b2007-05-05 07:44:49 +00001211
1212
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001213 { // SETTYPE abbrev for CONSTANTS_BLOCK.
1214 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1215 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_SETTYPE));
1216 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
1217 Log2_32_Ceil(VE.getTypes().size()+1)));
1218 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
1219 Abbv) != CONSTANTS_SETTYPE_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001220 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001221 }
1222
1223 { // INTEGER abbrev for CONSTANTS_BLOCK.
1224 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1225 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_INTEGER));
1226 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1227 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
1228 Abbv) != CONSTANTS_INTEGER_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001229 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001230 }
1231
1232 { // CE_CAST abbrev for CONSTANTS_BLOCK.
1233 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1234 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CE_CAST));
1235 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // cast opc
1236 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, // typeid
1237 Log2_32_Ceil(VE.getTypes().size()+1)));
1238 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // value id
1239
1240 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
1241 Abbv) != CONSTANTS_CE_CAST_Abbrev)
Torok Edwinc23197a2009-07-14 16:55:14 +00001242 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001243 }
1244 { // NULL abbrev for CONSTANTS_BLOCK.
1245 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1246 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_NULL));
1247 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
1248 Abbv) != CONSTANTS_NULL_Abbrev)
Torok Edwinc23197a2009-07-14 16:55:14 +00001249 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001250 }
1251
Chris Lattner440168b2007-05-05 07:44:49 +00001252 // FIXME: This should only use space for first class types!
1253
1254 { // INST_LOAD abbrev for FUNCTION_BLOCK.
1255 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1256 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_LOAD));
Chris Lattner440168b2007-05-05 07:44:49 +00001257 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Ptr
1258 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 4)); // Align
1259 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // volatile
1260 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1261 Abbv) != FUNCTION_INST_LOAD_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001262 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattner440168b2007-05-05 07:44:49 +00001263 }
Chris Lattnerf9f2e832007-05-06 02:38:57 +00001264 { // INST_BINOP abbrev for FUNCTION_BLOCK.
1265 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1266 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_BINOP));
1267 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // LHS
1268 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // RHS
1269 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc
1270 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1271 Abbv) != FUNCTION_INST_BINOP_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001272 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnerf9f2e832007-05-06 02:38:57 +00001273 }
Dan Gohman1224c382009-07-20 21:19:07 +00001274 { // INST_BINOP_FLAGS abbrev for FUNCTION_BLOCK.
1275 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1276 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_BINOP));
1277 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // LHS
1278 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // RHS
1279 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc
1280 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7)); // flags
1281 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1282 Abbv) != FUNCTION_INST_BINOP_FLAGS_ABBREV)
1283 llvm_unreachable("Unexpected abbrev ordering!");
1284 }
Chris Lattnerf9f2e832007-05-06 02:38:57 +00001285 { // INST_CAST abbrev for FUNCTION_BLOCK.
1286 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1287 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_CAST));
1288 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // OpVal
1289 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, // dest ty
1290 Log2_32_Ceil(VE.getTypes().size()+1)));
1291 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc
1292 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1293 Abbv) != FUNCTION_INST_CAST_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001294 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattnerf9f2e832007-05-06 02:38:57 +00001295 }
1296
Chris Lattner94687ac2007-05-06 01:28:01 +00001297 { // INST_RET abbrev for FUNCTION_BLOCK.
1298 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1299 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_RET));
1300 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1301 Abbv) != FUNCTION_INST_RET_VOID_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001302 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattner94687ac2007-05-06 01:28:01 +00001303 }
1304 { // INST_RET abbrev for FUNCTION_BLOCK.
1305 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1306 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_RET));
1307 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ValID
1308 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1309 Abbv) != FUNCTION_INST_RET_VAL_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001310 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattner94687ac2007-05-06 01:28:01 +00001311 }
1312 { // INST_UNREACHABLE abbrev for FUNCTION_BLOCK.
1313 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
1314 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_UNREACHABLE));
1315 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
1316 Abbv) != FUNCTION_INST_UNREACHABLE_ABBREV)
Torok Edwinc23197a2009-07-14 16:55:14 +00001317 llvm_unreachable("Unexpected abbrev ordering!");
Chris Lattner94687ac2007-05-06 01:28:01 +00001318 }
Chris Lattner440168b2007-05-05 07:44:49 +00001319
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001320 Stream.ExitBlock();
1321}
1322
1323
1324/// WriteModule - Emit the specified module to the bitstream.
1325static void WriteModule(const Module *M, BitstreamWriter &Stream) {
1326 Stream.EnterSubblock(bitc::MODULE_BLOCK_ID, 3);
1327
1328 // Emit the version number if it is non-zero.
1329 if (CurVersion) {
1330 SmallVector<unsigned, 1> Vals;
1331 Vals.push_back(CurVersion);
1332 Stream.EmitRecord(bitc::MODULE_CODE_VERSION, Vals);
1333 }
1334
1335 // Analyze the module, enumerating globals, functions, etc.
1336 ValueEnumerator VE(M);
1337
1338 // Emit blockinfo, which defines the standard abbreviations etc.
1339 WriteBlockInfo(VE, Stream);
1340
1341 // Emit information about parameter attributes.
Devang Patel05988662008-09-25 21:00:45 +00001342 WriteAttributeTable(VE, Stream);
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001343
1344 // Emit information describing all of the types in the module.
1345 WriteTypeTable(VE, Stream);
1346
1347 // Emit top-level description of module, including target triple, inline asm,
1348 // descriptors for global variables, and function prototype info.
1349 WriteModuleInfo(M, VE, Stream);
Devang Patele54abc92009-07-22 17:43:22 +00001350
Devang Patel104cf9e2009-07-23 01:07:34 +00001351 // Emit constants.
1352 WriteModuleConstants(VE, Stream);
1353
Devang Patele54abc92009-07-22 17:43:22 +00001354 // Emit metadata.
1355 WriteModuleMetadata(VE, Stream);
1356
Chris Lattnera0f1ecc2007-05-05 07:36:14 +00001357 // Emit function bodies.
1358 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1359 if (!I->isDeclaration())
1360 WriteFunction(*I, VE, Stream);
1361
1362 // Emit the type symbol table information.
1363 WriteTypeSymbolTable(M->getTypeSymbolTable(), VE, Stream);
1364
1365 // Emit names for globals/functions etc.
1366 WriteValueSymbolTable(M->getValueSymbolTable(), VE, Stream);
1367
Chris Lattner07faafc2007-05-04 18:26:27 +00001368 Stream.ExitBlock();
1369}
1370
Chris Lattner6fa6a322008-07-09 05:14:23 +00001371/// EmitDarwinBCHeader - If generating a bc file on darwin, we have to emit a
1372/// header and trailer to make it compatible with the system archiver. To do
1373/// this we emit the following header, and then emit a trailer that pads the
1374/// file out to be a multiple of 16 bytes.
1375///
1376/// struct bc_header {
1377/// uint32_t Magic; // 0x0B17C0DE
1378/// uint32_t Version; // Version, currently always 0.
1379/// uint32_t BitcodeOffset; // Offset to traditional bitcode file.
1380/// uint32_t BitcodeSize; // Size of traditional bitcode file.
1381/// uint32_t CPUType; // CPU specifier.
1382/// ... potentially more later ...
1383/// };
1384enum {
1385 DarwinBCSizeFieldOffset = 3*4, // Offset to bitcode_size.
1386 DarwinBCHeaderSize = 5*4
1387};
1388
1389static void EmitDarwinBCHeader(BitstreamWriter &Stream,
1390 const std::string &TT) {
1391 unsigned CPUType = ~0U;
1392
1393 // Match x86_64-*, i[3-9]86-*, powerpc-*, powerpc64-*. The CPUType is a
1394 // magic number from /usr/include/mach/machine.h. It is ok to reproduce the
1395 // specific constants here because they are implicitly part of the Darwin ABI.
1396 enum {
1397 DARWIN_CPU_ARCH_ABI64 = 0x01000000,
1398 DARWIN_CPU_TYPE_X86 = 7,
1399 DARWIN_CPU_TYPE_POWERPC = 18
1400 };
1401
1402 if (TT.find("x86_64-") == 0)
1403 CPUType = DARWIN_CPU_TYPE_X86 | DARWIN_CPU_ARCH_ABI64;
1404 else if (TT.size() >= 5 && TT[0] == 'i' && TT[2] == '8' && TT[3] == '6' &&
1405 TT[4] == '-' && TT[1] - '3' < 6)
1406 CPUType = DARWIN_CPU_TYPE_X86;
1407 else if (TT.find("powerpc-") == 0)
1408 CPUType = DARWIN_CPU_TYPE_POWERPC;
1409 else if (TT.find("powerpc64-") == 0)
1410 CPUType = DARWIN_CPU_TYPE_POWERPC | DARWIN_CPU_ARCH_ABI64;
1411
1412 // Traditional Bitcode starts after header.
1413 unsigned BCOffset = DarwinBCHeaderSize;
1414
1415 Stream.Emit(0x0B17C0DE, 32);
1416 Stream.Emit(0 , 32); // Version.
1417 Stream.Emit(BCOffset , 32);
1418 Stream.Emit(0 , 32); // Filled in later.
1419 Stream.Emit(CPUType , 32);
1420}
1421
1422/// EmitDarwinBCTrailer - Emit the darwin epilog after the bitcode file and
1423/// finalize the header.
1424static void EmitDarwinBCTrailer(BitstreamWriter &Stream, unsigned BufferSize) {
1425 // Update the size field in the header.
1426 Stream.BackpatchWord(DarwinBCSizeFieldOffset, BufferSize-DarwinBCHeaderSize);
1427
1428 // If the file is not a multiple of 16 bytes, insert dummy padding.
1429 while (BufferSize & 15) {
1430 Stream.Emit(0, 8);
1431 ++BufferSize;
1432 }
1433}
1434
Chris Lattner07faafc2007-05-04 18:26:27 +00001435
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001436/// WriteBitcodeToFile - Write the specified module to the specified output
1437/// stream.
1438void llvm::WriteBitcodeToFile(const Module *M, std::ostream &Out) {
Daniel Dunbard1ce3b42008-10-22 17:39:14 +00001439 raw_os_ostream RawOut(Out);
Daniel Dunbare2e9d8e2008-10-23 19:37:34 +00001440 // If writing to stdout, set binary mode.
1441 if (llvm::cout == Out)
1442 sys::Program::ChangeStdoutToBinary();
Daniel Dunbard1ce3b42008-10-22 17:39:14 +00001443 WriteBitcodeToFile(M, RawOut);
1444}
1445
1446/// WriteBitcodeToFile - Write the specified module to the specified output
1447/// stream.
1448void llvm::WriteBitcodeToFile(const Module *M, raw_ostream &Out) {
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001449 std::vector<unsigned char> Buffer;
1450 BitstreamWriter Stream(Buffer);
1451
1452 Buffer.reserve(256*1024);
Chris Lattner38e77212008-12-19 18:37:59 +00001453
1454 WriteBitcodeToStream( M, Stream );
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001455
Chris Lattner38e77212008-12-19 18:37:59 +00001456 // If writing to stdout, set binary mode.
1457 if (&llvm::outs() == &Out)
1458 sys::Program::ChangeStdoutToBinary();
1459
1460 // Write the generated bitstream to "Out".
1461 Out.write((char*)&Buffer.front(), Buffer.size());
1462
1463 // Make sure it hits disk now.
1464 Out.flush();
1465}
1466
1467/// WriteBitcodeToStream - Write the specified module to the specified output
1468/// stream.
1469void llvm::WriteBitcodeToStream(const Module *M, BitstreamWriter &Stream) {
Chris Lattner6fa6a322008-07-09 05:14:23 +00001470 // If this is darwin, emit a file header and trailer if needed.
1471 bool isDarwin = M->getTargetTriple().find("-darwin") != std::string::npos;
1472 if (isDarwin)
1473 EmitDarwinBCHeader(Stream, M->getTargetTriple());
1474
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001475 // Emit the file header.
1476 Stream.Emit((unsigned)'B', 8);
1477 Stream.Emit((unsigned)'C', 8);
1478 Stream.Emit(0x0, 4);
1479 Stream.Emit(0xC, 4);
1480 Stream.Emit(0xE, 4);
1481 Stream.Emit(0xD, 4);
1482
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001483 // Emit the module.
1484 WriteModule(M, Stream);
Chris Lattner6fa6a322008-07-09 05:14:23 +00001485
1486 if (isDarwin)
Chris Lattner38e77212008-12-19 18:37:59 +00001487 EmitDarwinBCTrailer(Stream, Stream.getBuffer().size());
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001488}