1 //===--- Bitcode/Writer/BitcodeWriter.cpp - Bitcode Writer ----------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file was developed by Chris Lattner and is distributed under 6 // the University of Illinois Open Source License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // Bitcode writer implementation. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Bitcode/ReaderWriter.h" 15 #include "llvm/Bitcode/BitstreamWriter.h" 16 #include "llvm/Bitcode/LLVMBitCodes.h" 17 #include "ValueEnumerator.h" 18 #include "llvm/Constants.h" 19 #include "llvm/DerivedTypes.h" 20 #include "llvm/InlineAsm.h" 21 #include "llvm/Instructions.h" 22 #include "llvm/Module.h" 23 #include "llvm/ParameterAttributes.h" 24 #include "llvm/TypeSymbolTable.h" 25 #include "llvm/ValueSymbolTable.h" 26 #include "llvm/Support/MathExtras.h" 27 using namespace llvm; 28 29 /// These are manifest constants used by the bitcode writer. They do not need to 30 /// be kept in sync with the reader, but need to be consistent within this file. 31 enum { 32 CurVersion = 0, 33 34 // VALUE_SYMTAB_BLOCK abbrev id's. 35 VST_ENTRY_8_ABBREV = bitc::FIRST_APPLICATION_ABBREV, 36 VST_ENTRY_7_ABBREV, 37 VST_ENTRY_6_ABBREV, 38 VST_BBENTRY_6_ABBREV, 39 40 // CONSTANTS_BLOCK abbrev id's. 41 CONSTANTS_SETTYPE_ABBREV = bitc::FIRST_APPLICATION_ABBREV, 42 CONSTANTS_INTEGER_ABBREV, 43 CONSTANTS_CE_CAST_Abbrev, 44 CONSTANTS_NULL_Abbrev, 45 46 // FUNCTION_BLOCK abbrev id's. 47 FUNCTION_INST_LOAD_ABBREV = bitc::FIRST_APPLICATION_ABBREV, 48 FUNCTION_INST_BINOP_ABBREV, 49 FUNCTION_INST_CAST_ABBREV, 50 FUNCTION_INST_RET_VOID_ABBREV, 51 FUNCTION_INST_RET_VAL_ABBREV, 52 FUNCTION_INST_UNREACHABLE_ABBREV 53 }; 54 55 56 static unsigned GetEncodedCastOpcode(unsigned Opcode) { 57 switch (Opcode) { 58 default: assert(0 && "Unknown cast instruction!"); 59 case Instruction::Trunc : return bitc::CAST_TRUNC; 60 case Instruction::ZExt : return bitc::CAST_ZEXT; 61 case Instruction::SExt : return bitc::CAST_SEXT; 62 case Instruction::FPToUI : return bitc::CAST_FPTOUI; 63 case Instruction::FPToSI : return bitc::CAST_FPTOSI; 64 case Instruction::UIToFP : return bitc::CAST_UITOFP; 65 case Instruction::SIToFP : return bitc::CAST_SITOFP; 66 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC; 67 case Instruction::FPExt : return bitc::CAST_FPEXT; 68 case Instruction::PtrToInt: return bitc::CAST_PTRTOINT; 69 case Instruction::IntToPtr: return bitc::CAST_INTTOPTR; 70 case Instruction::BitCast : return bitc::CAST_BITCAST; 71 } 72 } 73 74 static unsigned GetEncodedBinaryOpcode(unsigned Opcode) { 75 switch (Opcode) { 76 default: assert(0 && "Unknown binary instruction!"); 77 case Instruction::Add: return bitc::BINOP_ADD; 78 case Instruction::Sub: return bitc::BINOP_SUB; 79 case Instruction::Mul: return bitc::BINOP_MUL; 80 case Instruction::UDiv: return bitc::BINOP_UDIV; 81 case Instruction::FDiv: 82 case Instruction::SDiv: return bitc::BINOP_SDIV; 83 case Instruction::URem: return bitc::BINOP_UREM; 84 case Instruction::FRem: 85 case Instruction::SRem: return bitc::BINOP_SREM; 86 case Instruction::Shl: return bitc::BINOP_SHL; 87 case Instruction::LShr: return bitc::BINOP_LSHR; 88 case Instruction::AShr: return bitc::BINOP_ASHR; 89 case Instruction::And: return bitc::BINOP_AND; 90 case Instruction::Or: return bitc::BINOP_OR; 91 case Instruction::Xor: return bitc::BINOP_XOR; 92 } 93 } 94 95 96 97 static void WriteStringRecord(unsigned Code, const std::string &Str, 98 unsigned AbbrevToUse, BitstreamWriter &Stream) { 99 SmallVector<unsigned, 64> Vals; 100 101 // Code: [strchar x N] 102 for (unsigned i = 0, e = Str.size(); i != e; ++i) 103 Vals.push_back(Str[i]); 104 105 // Emit the finished record. 106 Stream.EmitRecord(Code, Vals, AbbrevToUse); 107 } 108 109 // Emit information about parameter attributes. 110 static void WriteParamAttrTable(const ValueEnumerator &VE, 111 BitstreamWriter &Stream) { 112 const std::vector<const ParamAttrsList*> &Attrs = VE.getParamAttrs(); 113 if (Attrs.empty()) return; 114 115 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3); 116 117 SmallVector<uint64_t, 64> Record; 118 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) { 119 const ParamAttrsList *A = Attrs[i]; 120 for (unsigned op = 0, e = A->size(); op != e; ++op) { 121 Record.push_back(A->getParamIndex(op)); 122 Record.push_back(A->getParamAttrsAtIndex(op)); 123 } 124 125 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record); 126 Record.clear(); 127 } 128 129 Stream.ExitBlock(); 130 } 131 132 /// WriteTypeTable - Write out the type table for a module. 133 static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) { 134 const ValueEnumerator::TypeList &TypeList = VE.getTypes(); 135 136 Stream.EnterSubblock(bitc::TYPE_BLOCK_ID, 4 /*count from # abbrevs */); 137 SmallVector<uint64_t, 64> TypeVals; 138 139 // Abbrev for TYPE_CODE_POINTER. 140 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 141 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER)); 142 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 143 Log2_32_Ceil(VE.getTypes().size()+1))); 144 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv); 145 146 // Abbrev for TYPE_CODE_FUNCTION. 147 Abbv = new BitCodeAbbrev(); 148 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION)); 149 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg 150 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 151 Log2_32_Ceil(VE.getParamAttrs().size()+1))); 152 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 153 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 154 Log2_32_Ceil(VE.getTypes().size()+1))); 155 unsigned FunctionAbbrev = Stream.EmitAbbrev(Abbv); 156 157 // Abbrev for TYPE_CODE_STRUCT. 158 Abbv = new BitCodeAbbrev(); 159 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_STRUCT)); 160 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked 161 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 162 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 163 Log2_32_Ceil(VE.getTypes().size()+1))); 164 unsigned StructAbbrev = Stream.EmitAbbrev(Abbv); 165 166 // Abbrev for TYPE_CODE_ARRAY. 167 Abbv = new BitCodeAbbrev(); 168 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_ARRAY)); 169 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // size 170 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 171 Log2_32_Ceil(VE.getTypes().size()+1))); 172 unsigned ArrayAbbrev = Stream.EmitAbbrev(Abbv); 173 174 // Emit an entry count so the reader can reserve space. 175 TypeVals.push_back(TypeList.size()); 176 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); 177 TypeVals.clear(); 178 179 // Loop over all of the types, emitting each in turn. 180 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) { 181 const Type *T = TypeList[i].first; 182 int AbbrevToUse = 0; 183 unsigned Code = 0; 184 185 switch (T->getTypeID()) { 186 default: assert(0 && "Unknown type!"); 187 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break; 188 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break; 189 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break; 190 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break; 191 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break; 192 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break; 193 case Type::LabelTyID: Code = bitc::TYPE_CODE_LABEL; break; 194 case Type::OpaqueTyID: Code = bitc::TYPE_CODE_OPAQUE; break; 195 case Type::IntegerTyID: 196 // INTEGER: [width] 197 Code = bitc::TYPE_CODE_INTEGER; 198 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); 199 break; 200 case Type::PointerTyID: 201 // POINTER: [pointee type] 202 Code = bitc::TYPE_CODE_POINTER; 203 TypeVals.push_back(VE.getTypeID(cast<PointerType>(T)->getElementType())); 204 AbbrevToUse = PtrAbbrev; 205 break; 206 207 case Type::FunctionTyID: { 208 const FunctionType *FT = cast<FunctionType>(T); 209 // FUNCTION: [isvararg, attrid, retty, paramty x N] 210 Code = bitc::TYPE_CODE_FUNCTION; 211 TypeVals.push_back(FT->isVarArg()); 212 TypeVals.push_back(VE.getParamAttrID(FT->getParamAttrs())); 213 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); 214 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) 215 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); 216 AbbrevToUse = FunctionAbbrev; 217 break; 218 } 219 case Type::StructTyID: { 220 const StructType *ST = cast<StructType>(T); 221 // STRUCT: [ispacked, eltty x N] 222 Code = bitc::TYPE_CODE_STRUCT; 223 TypeVals.push_back(ST->isPacked()); 224 // Output all of the element types. 225 for (StructType::element_iterator I = ST->element_begin(), 226 E = ST->element_end(); I != E; ++I) 227 TypeVals.push_back(VE.getTypeID(*I)); 228 AbbrevToUse = StructAbbrev; 229 break; 230 } 231 case Type::ArrayTyID: { 232 const ArrayType *AT = cast<ArrayType>(T); 233 // ARRAY: [numelts, eltty] 234 Code = bitc::TYPE_CODE_ARRAY; 235 TypeVals.push_back(AT->getNumElements()); 236 TypeVals.push_back(VE.getTypeID(AT->getElementType())); 237 AbbrevToUse = ArrayAbbrev; 238 break; 239 } 240 case Type::VectorTyID: { 241 const VectorType *VT = cast<VectorType>(T); 242 // VECTOR [numelts, eltty] 243 Code = bitc::TYPE_CODE_VECTOR; 244 TypeVals.push_back(VT->getNumElements()); 245 TypeVals.push_back(VE.getTypeID(VT->getElementType())); 246 break; 247 } 248 } 249 250 // Emit the finished record. 251 Stream.EmitRecord(Code, TypeVals, AbbrevToUse); 252 TypeVals.clear(); 253 } 254 255 Stream.ExitBlock(); 256 } 257 258 static unsigned getEncodedLinkage(const GlobalValue *GV) { 259 switch (GV->getLinkage()) { 260 default: assert(0 && "Invalid linkage!"); 261 case GlobalValue::GhostLinkage: // Map ghost linkage onto external. 262 case GlobalValue::ExternalLinkage: return 0; 263 case GlobalValue::WeakLinkage: return 1; 264 case GlobalValue::AppendingLinkage: return 2; 265 case GlobalValue::InternalLinkage: return 3; 266 case GlobalValue::LinkOnceLinkage: return 4; 267 case GlobalValue::DLLImportLinkage: return 5; 268 case GlobalValue::DLLExportLinkage: return 6; 269 case GlobalValue::ExternalWeakLinkage: return 7; 270 } 271 } 272 273 static unsigned getEncodedVisibility(const GlobalValue *GV) { 274 switch (GV->getVisibility()) { 275 default: assert(0 && "Invalid visibility!"); 276 case GlobalValue::DefaultVisibility: return 0; 277 case GlobalValue::HiddenVisibility: return 1; 278 case GlobalValue::ProtectedVisibility: return 2; 279 } 280 } 281 282 // Emit top-level description of module, including target triple, inline asm, 283 // descriptors for global variables, and function prototype info. 284 static void WriteModuleInfo(const Module *M, const ValueEnumerator &VE, 285 BitstreamWriter &Stream) { 286 // Emit the list of dependent libraries for the Module. 287 for (Module::lib_iterator I = M->lib_begin(), E = M->lib_end(); I != E; ++I) 288 WriteStringRecord(bitc::MODULE_CODE_DEPLIB, *I, 0/*TODO*/, Stream); 289 290 // Emit various pieces of data attached to a module. 291 if (!M->getTargetTriple().empty()) 292 WriteStringRecord(bitc::MODULE_CODE_TRIPLE, M->getTargetTriple(), 293 0/*TODO*/, Stream); 294 if (!M->getDataLayout().empty()) 295 WriteStringRecord(bitc::MODULE_CODE_DATALAYOUT, M->getDataLayout(), 296 0/*TODO*/, Stream); 297 if (!M->getModuleInlineAsm().empty()) 298 WriteStringRecord(bitc::MODULE_CODE_ASM, M->getModuleInlineAsm(), 299 0/*TODO*/, Stream); 300 301 // Emit information about sections, computing how many there are. Also 302 // compute the maximum alignment value. 303 std::map<std::string, unsigned> SectionMap; 304 unsigned MaxAlignment = 0; 305 unsigned MaxGlobalType = 0; 306 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end(); 307 GV != E; ++GV) { 308 MaxAlignment = std::max(MaxAlignment, GV->getAlignment()); 309 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType())); 310 311 if (!GV->hasSection()) continue; 312 // Give section names unique ID's. 313 unsigned &Entry = SectionMap[GV->getSection()]; 314 if (Entry != 0) continue; 315 WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, GV->getSection(), 316 0/*TODO*/, Stream); 317 Entry = SectionMap.size(); 318 } 319 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) { 320 MaxAlignment = std::max(MaxAlignment, F->getAlignment()); 321 if (!F->hasSection()) continue; 322 // Give section names unique ID's. 323 unsigned &Entry = SectionMap[F->getSection()]; 324 if (Entry != 0) continue; 325 WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, F->getSection(), 326 0/*TODO*/, Stream); 327 Entry = SectionMap.size(); 328 } 329 330 // Emit abbrev for globals, now that we know # sections and max alignment. 331 unsigned SimpleGVarAbbrev = 0; 332 if (!M->global_empty()) { 333 // Add an abbrev for common globals with no visibility or thread localness. 334 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 335 Abbv->Add(BitCodeAbbrevOp(bitc::MODULE_CODE_GLOBALVAR)); 336 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 337 Log2_32_Ceil(MaxGlobalType+1))); 338 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Constant. 339 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Initializer. 340 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Linkage. 341 if (MaxAlignment == 0) // Alignment. 342 Abbv->Add(BitCodeAbbrevOp(0)); 343 else { 344 unsigned MaxEncAlignment = Log2_32(MaxAlignment)+1; 345 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 346 Log2_32_Ceil(MaxEncAlignment+1))); 347 } 348 if (SectionMap.empty()) // Section. 349 Abbv->Add(BitCodeAbbrevOp(0)); 350 else 351 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 352 Log2_32_Ceil(SectionMap.size()+1))); 353 // Don't bother emitting vis + thread local. 354 SimpleGVarAbbrev = Stream.EmitAbbrev(Abbv); 355 } 356 357 // Emit the global variable information. 358 SmallVector<unsigned, 64> Vals; 359 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end(); 360 GV != E; ++GV) { 361 unsigned AbbrevToUse = 0; 362 363 // GLOBALVAR: [type, isconst, initid, 364 // linkage, alignment, section, visibility, threadlocal] 365 Vals.push_back(VE.getTypeID(GV->getType())); 366 Vals.push_back(GV->isConstant()); 367 Vals.push_back(GV->isDeclaration() ? 0 : 368 (VE.getValueID(GV->getInitializer()) + 1)); 369 Vals.push_back(getEncodedLinkage(GV)); 370 Vals.push_back(Log2_32(GV->getAlignment())+1); 371 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0); 372 if (GV->isThreadLocal() || 373 GV->getVisibility() != GlobalValue::DefaultVisibility) { 374 Vals.push_back(getEncodedVisibility(GV)); 375 Vals.push_back(GV->isThreadLocal()); 376 } else { 377 AbbrevToUse = SimpleGVarAbbrev; 378 } 379 380 Stream.EmitRecord(bitc::MODULE_CODE_GLOBALVAR, Vals, AbbrevToUse); 381 Vals.clear(); 382 } 383 384 // Emit the function proto information. 385 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) { 386 // FUNCTION: [type, callingconv, isproto, linkage, alignment, section, 387 // visibility] 388 Vals.push_back(VE.getTypeID(F->getType())); 389 Vals.push_back(F->getCallingConv()); 390 Vals.push_back(F->isDeclaration()); 391 Vals.push_back(getEncodedLinkage(F)); 392 393 // Note: we emit the param attr ID number for the function type of this 394 // function. In the future, we intend for attrs to be properties of 395 // functions, instead of on the type. This is to support this future work. 396 Vals.push_back(VE.getParamAttrID(F->getFunctionType()->getParamAttrs())); 397 398 Vals.push_back(Log2_32(F->getAlignment())+1); 399 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0); 400 Vals.push_back(getEncodedVisibility(F)); 401 402 unsigned AbbrevToUse = 0; 403 Stream.EmitRecord(bitc::MODULE_CODE_FUNCTION, Vals, AbbrevToUse); 404 Vals.clear(); 405 } 406 407 408 // Emit the alias information. 409 for (Module::const_alias_iterator AI = M->alias_begin(), E = M->alias_end(); 410 AI != E; ++AI) { 411 Vals.push_back(VE.getTypeID(AI->getType())); 412 Vals.push_back(VE.getValueID(AI->getAliasee())); 413 Vals.push_back(getEncodedLinkage(AI)); 414 unsigned AbbrevToUse = 0; 415 Stream.EmitRecord(bitc::MODULE_CODE_ALIAS, Vals, AbbrevToUse); 416 Vals.clear(); 417 } 418 } 419 420 421 static void WriteConstants(unsigned FirstVal, unsigned LastVal, 422 const ValueEnumerator &VE, 423 BitstreamWriter &Stream, bool isGlobal) { 424 if (FirstVal == LastVal) return; 425 426 Stream.EnterSubblock(bitc::CONSTANTS_BLOCK_ID, 4); 427 428 unsigned AggregateAbbrev = 0; 429 unsigned String8Abbrev = 0; 430 unsigned CString7Abbrev = 0; 431 unsigned CString6Abbrev = 0; 432 // If this is a constant pool for the module, emit module-specific abbrevs. 433 if (isGlobal) { 434 // Abbrev for CST_CODE_AGGREGATE. 435 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 436 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_AGGREGATE)); 437 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 438 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, Log2_32_Ceil(LastVal+1))); 439 AggregateAbbrev = Stream.EmitAbbrev(Abbv); 440 441 // Abbrev for CST_CODE_STRING. 442 Abbv = new BitCodeAbbrev(); 443 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_STRING)); 444 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 445 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); 446 String8Abbrev = Stream.EmitAbbrev(Abbv); 447 // Abbrev for CST_CODE_CSTRING. 448 Abbv = new BitCodeAbbrev(); 449 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CSTRING)); 450 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 451 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7)); 452 CString7Abbrev = Stream.EmitAbbrev(Abbv); 453 // Abbrev for CST_CODE_CSTRING. 454 Abbv = new BitCodeAbbrev(); 455 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CSTRING)); 456 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 457 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6)); 458 CString6Abbrev = Stream.EmitAbbrev(Abbv); 459 } 460 461 SmallVector<uint64_t, 64> Record; 462 463 const ValueEnumerator::ValueList &Vals = VE.getValues(); 464 const Type *LastTy = 0; 465 for (unsigned i = FirstVal; i != LastVal; ++i) { 466 const Value *V = Vals[i].first; 467 // If we need to switch types, do so now. 468 if (V->getType() != LastTy) { 469 LastTy = V->getType(); 470 Record.push_back(VE.getTypeID(LastTy)); 471 Stream.EmitRecord(bitc::CST_CODE_SETTYPE, Record, 472 CONSTANTS_SETTYPE_ABBREV); 473 Record.clear(); 474 } 475 476 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { 477 Record.push_back(unsigned(IA->hasSideEffects())); 478 479 // Add the asm string. 480 const std::string &AsmStr = IA->getAsmString(); 481 Record.push_back(AsmStr.size()); 482 for (unsigned i = 0, e = AsmStr.size(); i != e; ++i) 483 Record.push_back(AsmStr[i]); 484 485 // Add the constraint string. 486 const std::string &ConstraintStr = IA->getConstraintString(); 487 Record.push_back(ConstraintStr.size()); 488 for (unsigned i = 0, e = ConstraintStr.size(); i != e; ++i) 489 Record.push_back(ConstraintStr[i]); 490 Stream.EmitRecord(bitc::CST_CODE_INLINEASM, Record); 491 Record.clear(); 492 continue; 493 } 494 const Constant *C = cast<Constant>(V); 495 unsigned Code = -1U; 496 unsigned AbbrevToUse = 0; 497 if (C->isNullValue()) { 498 Code = bitc::CST_CODE_NULL; 499 } else if (isa<UndefValue>(C)) { 500 Code = bitc::CST_CODE_UNDEF; 501 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { 502 if (IV->getBitWidth() <= 64) { 503 int64_t V = IV->getSExtValue(); 504 if (V >= 0) 505 Record.push_back(V << 1); 506 else 507 Record.push_back((-V << 1) | 1); 508 Code = bitc::CST_CODE_INTEGER; 509 AbbrevToUse = CONSTANTS_INTEGER_ABBREV; 510 } else { // Wide integers, > 64 bits in size. 511 // We have an arbitrary precision integer value to write whose 512 // bit width is > 64. However, in canonical unsigned integer 513 // format it is likely that the high bits are going to be zero. 514 // So, we only write the number of active words. 515 unsigned NWords = IV->getValue().getActiveWords(); 516 const uint64_t *RawWords = IV->getValue().getRawData(); 517 for (unsigned i = 0; i != NWords; ++i) { 518 int64_t V = RawWords[i]; 519 if (V >= 0) 520 Record.push_back(V << 1); 521 else 522 Record.push_back((-V << 1) | 1); 523 } 524 Code = bitc::CST_CODE_WIDE_INTEGER; 525 } 526 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { 527 Code = bitc::CST_CODE_FLOAT; 528 const Type *Ty = CFP->getType(); 529 if (Ty == Type::FloatTy) 530 Record.push_back((uint32_t)*CFP->getValueAPF().convertToAPInt(). 531 getRawData()); 532 else if (Ty == Type::DoubleTy) { 533 Record.push_back(*CFP->getValueAPF().convertToAPInt().getRawData()); 534 } else if (Ty == Type::X86_FP80Ty) { 535 const uint64_t *p = CFP->getValueAPF().convertToAPInt().getRawData(); 536 Record.push_back(p[0]); 537 Record.push_back((uint16_t)p[1]); 538 } else if (Ty == Type::FP128Ty) { 539 const uint64_t *p = CFP->getValueAPF().convertToAPInt().getRawData(); 540 Record.push_back(p[0]); 541 Record.push_back(p[1]); 542 } else if (Ty == Type::PPC_FP128Ty) { 543 assert(0 && "PowerPC long double constants not handled yet."); 544 } else { 545 assert (0 && "Unknown FP type!"); 546 } 547 } else if (isa<ConstantArray>(C) && cast<ConstantArray>(C)->isString()) { 548 // Emit constant strings specially. 549 unsigned NumOps = C->getNumOperands(); 550 // If this is a null-terminated string, use the denser CSTRING encoding. 551 if (C->getOperand(NumOps-1)->isNullValue()) { 552 Code = bitc::CST_CODE_CSTRING; 553 --NumOps; // Don't encode the null, which isn't allowed by char6. 554 } else { 555 Code = bitc::CST_CODE_STRING; 556 AbbrevToUse = String8Abbrev; 557 } 558 bool isCStr7 = Code == bitc::CST_CODE_CSTRING; 559 bool isCStrChar6 = Code == bitc::CST_CODE_CSTRING; 560 for (unsigned i = 0; i != NumOps; ++i) { 561 unsigned char V = cast<ConstantInt>(C->getOperand(i))->getZExtValue(); 562 Record.push_back(V); 563 isCStr7 &= (V & 128) == 0; 564 if (isCStrChar6) 565 isCStrChar6 = BitCodeAbbrevOp::isChar6(V); 566 } 567 568 if (isCStrChar6) 569 AbbrevToUse = CString6Abbrev; 570 else if (isCStr7) 571 AbbrevToUse = CString7Abbrev; 572 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(V) || 573 isa<ConstantVector>(V)) { 574 Code = bitc::CST_CODE_AGGREGATE; 575 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) 576 Record.push_back(VE.getValueID(C->getOperand(i))); 577 AbbrevToUse = AggregateAbbrev; 578 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { 579 switch (CE->getOpcode()) { 580 default: 581 if (Instruction::isCast(CE->getOpcode())) { 582 Code = bitc::CST_CODE_CE_CAST; 583 Record.push_back(GetEncodedCastOpcode(CE->getOpcode())); 584 Record.push_back(VE.getTypeID(C->getOperand(0)->getType())); 585 Record.push_back(VE.getValueID(C->getOperand(0))); 586 AbbrevToUse = CONSTANTS_CE_CAST_Abbrev; 587 } else { 588 assert(CE->getNumOperands() == 2 && "Unknown constant expr!"); 589 Code = bitc::CST_CODE_CE_BINOP; 590 Record.push_back(GetEncodedBinaryOpcode(CE->getOpcode())); 591 Record.push_back(VE.getValueID(C->getOperand(0))); 592 Record.push_back(VE.getValueID(C->getOperand(1))); 593 } 594 break; 595 case Instruction::GetElementPtr: 596 Code = bitc::CST_CODE_CE_GEP; 597 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) { 598 Record.push_back(VE.getTypeID(C->getOperand(i)->getType())); 599 Record.push_back(VE.getValueID(C->getOperand(i))); 600 } 601 break; 602 case Instruction::Select: 603 Code = bitc::CST_CODE_CE_SELECT; 604 Record.push_back(VE.getValueID(C->getOperand(0))); 605 Record.push_back(VE.getValueID(C->getOperand(1))); 606 Record.push_back(VE.getValueID(C->getOperand(2))); 607 break; 608 case Instruction::ExtractElement: 609 Code = bitc::CST_CODE_CE_EXTRACTELT; 610 Record.push_back(VE.getTypeID(C->getOperand(0)->getType())); 611 Record.push_back(VE.getValueID(C->getOperand(0))); 612 Record.push_back(VE.getValueID(C->getOperand(1))); 613 break; 614 case Instruction::InsertElement: 615 Code = bitc::CST_CODE_CE_INSERTELT; 616 Record.push_back(VE.getValueID(C->getOperand(0))); 617 Record.push_back(VE.getValueID(C->getOperand(1))); 618 Record.push_back(VE.getValueID(C->getOperand(2))); 619 break; 620 case Instruction::ShuffleVector: 621 Code = bitc::CST_CODE_CE_SHUFFLEVEC; 622 Record.push_back(VE.getValueID(C->getOperand(0))); 623 Record.push_back(VE.getValueID(C->getOperand(1))); 624 Record.push_back(VE.getValueID(C->getOperand(2))); 625 break; 626 case Instruction::ICmp: 627 case Instruction::FCmp: 628 Code = bitc::CST_CODE_CE_CMP; 629 Record.push_back(VE.getTypeID(C->getOperand(0)->getType())); 630 Record.push_back(VE.getValueID(C->getOperand(0))); 631 Record.push_back(VE.getValueID(C->getOperand(1))); 632 Record.push_back(CE->getPredicate()); 633 break; 634 } 635 } else { 636 assert(0 && "Unknown constant!"); 637 } 638 Stream.EmitRecord(Code, Record, AbbrevToUse); 639 Record.clear(); 640 } 641 642 Stream.ExitBlock(); 643 } 644 645 static void WriteModuleConstants(const ValueEnumerator &VE, 646 BitstreamWriter &Stream) { 647 const ValueEnumerator::ValueList &Vals = VE.getValues(); 648 649 // Find the first constant to emit, which is the first non-globalvalue value. 650 // We know globalvalues have been emitted by WriteModuleInfo. 651 for (unsigned i = 0, e = Vals.size(); i != e; ++i) { 652 if (!isa<GlobalValue>(Vals[i].first)) { 653 WriteConstants(i, Vals.size(), VE, Stream, true); 654 return; 655 } 656 } 657 } 658 659 /// PushValueAndType - The file has to encode both the value and type id for 660 /// many values, because we need to know what type to create for forward 661 /// references. However, most operands are not forward references, so this type 662 /// field is not needed. 663 /// 664 /// This function adds V's value ID to Vals. If the value ID is higher than the 665 /// instruction ID, then it is a forward reference, and it also includes the 666 /// type ID. 667 static bool PushValueAndType(Value *V, unsigned InstID, 668 SmallVector<unsigned, 64> &Vals, 669 ValueEnumerator &VE) { 670 unsigned ValID = VE.getValueID(V); 671 Vals.push_back(ValID); 672 if (ValID >= InstID) { 673 Vals.push_back(VE.getTypeID(V->getType())); 674 return true; 675 } 676 return false; 677 } 678 679 /// WriteInstruction - Emit an instruction to the specified stream. 680 static void WriteInstruction(const Instruction &I, unsigned InstID, 681 ValueEnumerator &VE, BitstreamWriter &Stream, 682 SmallVector<unsigned, 64> &Vals) { 683 unsigned Code = 0; 684 unsigned AbbrevToUse = 0; 685 switch (I.getOpcode()) { 686 default: 687 if (Instruction::isCast(I.getOpcode())) { 688 Code = bitc::FUNC_CODE_INST_CAST; 689 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE)) 690 AbbrevToUse = FUNCTION_INST_CAST_ABBREV; 691 Vals.push_back(VE.getTypeID(I.getType())); 692 Vals.push_back(GetEncodedCastOpcode(I.getOpcode())); 693 } else { 694 assert(isa<BinaryOperator>(I) && "Unknown instruction!"); 695 Code = bitc::FUNC_CODE_INST_BINOP; 696 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE)) 697 AbbrevToUse = FUNCTION_INST_BINOP_ABBREV; 698 Vals.push_back(VE.getValueID(I.getOperand(1))); 699 Vals.push_back(GetEncodedBinaryOpcode(I.getOpcode())); 700 } 701 break; 702 703 case Instruction::GetElementPtr: 704 Code = bitc::FUNC_CODE_INST_GEP; 705 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) 706 PushValueAndType(I.getOperand(i), InstID, Vals, VE); 707 break; 708 case Instruction::Select: 709 Code = bitc::FUNC_CODE_INST_SELECT; 710 PushValueAndType(I.getOperand(1), InstID, Vals, VE); 711 Vals.push_back(VE.getValueID(I.getOperand(2))); 712 Vals.push_back(VE.getValueID(I.getOperand(0))); 713 break; 714 case Instruction::ExtractElement: 715 Code = bitc::FUNC_CODE_INST_EXTRACTELT; 716 PushValueAndType(I.getOperand(0), InstID, Vals, VE); 717 Vals.push_back(VE.getValueID(I.getOperand(1))); 718 break; 719 case Instruction::InsertElement: 720 Code = bitc::FUNC_CODE_INST_INSERTELT; 721 PushValueAndType(I.getOperand(0), InstID, Vals, VE); 722 Vals.push_back(VE.getValueID(I.getOperand(1))); 723 Vals.push_back(VE.getValueID(I.getOperand(2))); 724 break; 725 case Instruction::ShuffleVector: 726 Code = bitc::FUNC_CODE_INST_SHUFFLEVEC; 727 PushValueAndType(I.getOperand(0), InstID, Vals, VE); 728 Vals.push_back(VE.getValueID(I.getOperand(1))); 729 Vals.push_back(VE.getValueID(I.getOperand(2))); 730 break; 731 case Instruction::ICmp: 732 case Instruction::FCmp: 733 Code = bitc::FUNC_CODE_INST_CMP; 734 PushValueAndType(I.getOperand(0), InstID, Vals, VE); 735 Vals.push_back(VE.getValueID(I.getOperand(1))); 736 Vals.push_back(cast<CmpInst>(I).getPredicate()); 737 break; 738 739 case Instruction::Ret: 740 Code = bitc::FUNC_CODE_INST_RET; 741 if (!I.getNumOperands()) 742 AbbrevToUse = FUNCTION_INST_RET_VOID_ABBREV; 743 else if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE)) 744 AbbrevToUse = FUNCTION_INST_RET_VAL_ABBREV; 745 break; 746 case Instruction::Br: 747 Code = bitc::FUNC_CODE_INST_BR; 748 Vals.push_back(VE.getValueID(I.getOperand(0))); 749 if (cast<BranchInst>(I).isConditional()) { 750 Vals.push_back(VE.getValueID(I.getOperand(1))); 751 Vals.push_back(VE.getValueID(I.getOperand(2))); 752 } 753 break; 754 case Instruction::Switch: 755 Code = bitc::FUNC_CODE_INST_SWITCH; 756 Vals.push_back(VE.getTypeID(I.getOperand(0)->getType())); 757 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) 758 Vals.push_back(VE.getValueID(I.getOperand(i))); 759 break; 760 case Instruction::Invoke: { 761 const PointerType *PTy = cast<PointerType>(I.getOperand(0)->getType()); 762 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); 763 Code = bitc::FUNC_CODE_INST_INVOKE; 764 765 // Note: we emit the param attr ID number for the function type of this 766 // function. In the future, we intend for attrs to be properties of 767 // functions, instead of on the type. This is to support this future work. 768 Vals.push_back(VE.getParamAttrID(FTy->getParamAttrs())); 769 770 Vals.push_back(cast<InvokeInst>(I).getCallingConv()); 771 Vals.push_back(VE.getValueID(I.getOperand(1))); // normal dest 772 Vals.push_back(VE.getValueID(I.getOperand(2))); // unwind dest 773 PushValueAndType(I.getOperand(0), InstID, Vals, VE); // callee 774 775 // Emit value #'s for the fixed parameters. 776 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 777 Vals.push_back(VE.getValueID(I.getOperand(i+3))); // fixed param. 778 779 // Emit type/value pairs for varargs params. 780 if (FTy->isVarArg()) { 781 for (unsigned i = 3+FTy->getNumParams(), e = I.getNumOperands(); 782 i != e; ++i) 783 PushValueAndType(I.getOperand(i), InstID, Vals, VE); // vararg 784 } 785 break; 786 } 787 case Instruction::Unwind: 788 Code = bitc::FUNC_CODE_INST_UNWIND; 789 break; 790 case Instruction::Unreachable: 791 Code = bitc::FUNC_CODE_INST_UNREACHABLE; 792 AbbrevToUse = FUNCTION_INST_UNREACHABLE_ABBREV; 793 break; 794 795 case Instruction::PHI: 796 Code = bitc::FUNC_CODE_INST_PHI; 797 Vals.push_back(VE.getTypeID(I.getType())); 798 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) 799 Vals.push_back(VE.getValueID(I.getOperand(i))); 800 break; 801 802 case Instruction::Malloc: 803 Code = bitc::FUNC_CODE_INST_MALLOC; 804 Vals.push_back(VE.getTypeID(I.getType())); 805 Vals.push_back(VE.getValueID(I.getOperand(0))); // size. 806 Vals.push_back(Log2_32(cast<MallocInst>(I).getAlignment())+1); 807 break; 808 809 case Instruction::Free: 810 Code = bitc::FUNC_CODE_INST_FREE; 811 PushValueAndType(I.getOperand(0), InstID, Vals, VE); 812 break; 813 814 case Instruction::Alloca: 815 Code = bitc::FUNC_CODE_INST_ALLOCA; 816 Vals.push_back(VE.getTypeID(I.getType())); 817 Vals.push_back(VE.getValueID(I.getOperand(0))); // size. 818 Vals.push_back(Log2_32(cast<AllocaInst>(I).getAlignment())+1); 819 break; 820 821 case Instruction::Load: 822 Code = bitc::FUNC_CODE_INST_LOAD; 823 if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE)) // ptr 824 AbbrevToUse = FUNCTION_INST_LOAD_ABBREV; 825 826 Vals.push_back(Log2_32(cast<LoadInst>(I).getAlignment())+1); 827 Vals.push_back(cast<LoadInst>(I).isVolatile()); 828 break; 829 case Instruction::Store: 830 Code = bitc::FUNC_CODE_INST_STORE; 831 PushValueAndType(I.getOperand(0), InstID, Vals, VE); // val. 832 Vals.push_back(VE.getValueID(I.getOperand(1))); // ptr. 833 Vals.push_back(Log2_32(cast<StoreInst>(I).getAlignment())+1); 834 Vals.push_back(cast<StoreInst>(I).isVolatile()); 835 break; 836 case Instruction::Call: { 837 const PointerType *PTy = cast<PointerType>(I.getOperand(0)->getType()); 838 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); 839 840 Code = bitc::FUNC_CODE_INST_CALL; 841 842 // Note: we emit the param attr ID number for the function type of this 843 // function. In the future, we intend for attrs to be properties of 844 // functions, instead of on the type. This is to support this future work. 845 Vals.push_back(VE.getParamAttrID(FTy->getParamAttrs())); 846 847 Vals.push_back((cast<CallInst>(I).getCallingConv() << 1) | 848 unsigned(cast<CallInst>(I).isTailCall())); 849 PushValueAndType(I.getOperand(0), InstID, Vals, VE); // Callee 850 851 // Emit value #'s for the fixed parameters. 852 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 853 Vals.push_back(VE.getValueID(I.getOperand(i+1))); // fixed param. 854 855 // Emit type/value pairs for varargs params. 856 if (FTy->isVarArg()) { 857 unsigned NumVarargs = I.getNumOperands()-1-FTy->getNumParams(); 858 for (unsigned i = I.getNumOperands()-NumVarargs, e = I.getNumOperands(); 859 i != e; ++i) 860 PushValueAndType(I.getOperand(i), InstID, Vals, VE); // varargs 861 } 862 break; 863 } 864 case Instruction::VAArg: 865 Code = bitc::FUNC_CODE_INST_VAARG; 866 Vals.push_back(VE.getTypeID(I.getOperand(0)->getType())); // valistty 867 Vals.push_back(VE.getValueID(I.getOperand(0))); // valist. 868 Vals.push_back(VE.getTypeID(I.getType())); // restype. 869 break; 870 } 871 872 Stream.EmitRecord(Code, Vals, AbbrevToUse); 873 Vals.clear(); 874 } 875 876 // Emit names for globals/functions etc. 877 static void WriteValueSymbolTable(const ValueSymbolTable &VST, 878 const ValueEnumerator &VE, 879 BitstreamWriter &Stream) { 880 if (VST.empty()) return; 881 Stream.EnterSubblock(bitc::VALUE_SYMTAB_BLOCK_ID, 4); 882 883 // FIXME: Set up the abbrev, we know how many values there are! 884 // FIXME: We know if the type names can use 7-bit ascii. 885 SmallVector<unsigned, 64> NameVals; 886 887 for (ValueSymbolTable::const_iterator SI = VST.begin(), SE = VST.end(); 888 SI != SE; ++SI) { 889 890 const ValueName &Name = *SI; 891 892 // Figure out the encoding to use for the name. 893 bool is7Bit = true; 894 bool isChar6 = true; 895 for (const char *C = Name.getKeyData(), *E = C+Name.getKeyLength(); 896 C != E; ++C) { 897 if (isChar6) 898 isChar6 = BitCodeAbbrevOp::isChar6(*C); 899 if ((unsigned char)*C & 128) { 900 is7Bit = false; 901 break; // don't bother scanning the rest. 902 } 903 } 904 905 unsigned AbbrevToUse = VST_ENTRY_8_ABBREV; 906 907 // VST_ENTRY: [valueid, namechar x N] 908 // VST_BBENTRY: [bbid, namechar x N] 909 unsigned Code; 910 if (isa<BasicBlock>(SI->getValue())) { 911 Code = bitc::VST_CODE_BBENTRY; 912 if (isChar6) 913 AbbrevToUse = VST_BBENTRY_6_ABBREV; 914 } else { 915 Code = bitc::VST_CODE_ENTRY; 916 if (isChar6) 917 AbbrevToUse = VST_ENTRY_6_ABBREV; 918 else if (is7Bit) 919 AbbrevToUse = VST_ENTRY_7_ABBREV; 920 } 921 922 NameVals.push_back(VE.getValueID(SI->getValue())); 923 for (const char *P = Name.getKeyData(), 924 *E = Name.getKeyData()+Name.getKeyLength(); P != E; ++P) 925 NameVals.push_back((unsigned char)*P); 926 927 // Emit the finished record. 928 Stream.EmitRecord(Code, NameVals, AbbrevToUse); 929 NameVals.clear(); 930 } 931 Stream.ExitBlock(); 932 } 933 934 /// WriteFunction - Emit a function body to the module stream. 935 static void WriteFunction(const Function &F, ValueEnumerator &VE, 936 BitstreamWriter &Stream) { 937 Stream.EnterSubblock(bitc::FUNCTION_BLOCK_ID, 4); 938 VE.incorporateFunction(F); 939 940 SmallVector<unsigned, 64> Vals; 941 942 // Emit the number of basic blocks, so the reader can create them ahead of 943 // time. 944 Vals.push_back(VE.getBasicBlocks().size()); 945 Stream.EmitRecord(bitc::FUNC_CODE_DECLAREBLOCKS, Vals); 946 Vals.clear(); 947 948 // If there are function-local constants, emit them now. 949 unsigned CstStart, CstEnd; 950 VE.getFunctionConstantRange(CstStart, CstEnd); 951 WriteConstants(CstStart, CstEnd, VE, Stream, false); 952 953 // Keep a running idea of what the instruction ID is. 954 unsigned InstID = CstEnd; 955 956 // Finally, emit all the instructions, in order. 957 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) 958 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); 959 I != E; ++I) { 960 WriteInstruction(*I, InstID, VE, Stream, Vals); 961 if (I->getType() != Type::VoidTy) 962 ++InstID; 963 } 964 965 // Emit names for all the instructions etc. 966 WriteValueSymbolTable(F.getValueSymbolTable(), VE, Stream); 967 968 VE.purgeFunction(); 969 Stream.ExitBlock(); 970 } 971 972 /// WriteTypeSymbolTable - Emit a block for the specified type symtab. 973 static void WriteTypeSymbolTable(const TypeSymbolTable &TST, 974 const ValueEnumerator &VE, 975 BitstreamWriter &Stream) { 976 if (TST.empty()) return; 977 978 Stream.EnterSubblock(bitc::TYPE_SYMTAB_BLOCK_ID, 3); 979 980 // 7-bit fixed width VST_CODE_ENTRY strings. 981 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 982 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY)); 983 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 984 Log2_32_Ceil(VE.getTypes().size()+1))); 985 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 986 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7)); 987 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv); 988 989 SmallVector<unsigned, 64> NameVals; 990 991 for (TypeSymbolTable::const_iterator TI = TST.begin(), TE = TST.end(); 992 TI != TE; ++TI) { 993 // TST_ENTRY: [typeid, namechar x N] 994 NameVals.push_back(VE.getTypeID(TI->second)); 995 996 const std::string &Str = TI->first; 997 bool is7Bit = true; 998 for (unsigned i = 0, e = Str.size(); i != e; ++i) { 999 NameVals.push_back((unsigned char)Str[i]); 1000 if (Str[i] & 128) 1001 is7Bit = false; 1002 } 1003 1004 // Emit the finished record. 1005 Stream.EmitRecord(bitc::VST_CODE_ENTRY, NameVals, is7Bit ? V7Abbrev : 0); 1006 NameVals.clear(); 1007 } 1008 1009 Stream.ExitBlock(); 1010 } 1011 1012 // Emit blockinfo, which defines the standard abbreviations etc. 1013 static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) { 1014 // We only want to emit block info records for blocks that have multiple 1015 // instances: CONSTANTS_BLOCK, FUNCTION_BLOCK and VALUE_SYMTAB_BLOCK. Other 1016 // blocks can defined their abbrevs inline. 1017 Stream.EnterBlockInfoBlock(2); 1018 1019 { // 8-bit fixed-width VST_ENTRY/VST_BBENTRY strings. 1020 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1021 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); 1022 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); 1023 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 1024 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); 1025 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID, 1026 Abbv) != VST_ENTRY_8_ABBREV) 1027 assert(0 && "Unexpected abbrev ordering!"); 1028 } 1029 1030 { // 7-bit fixed width VST_ENTRY strings. 1031 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1032 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY)); 1033 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); 1034 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 1035 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7)); 1036 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID, 1037 Abbv) != VST_ENTRY_7_ABBREV) 1038 assert(0 && "Unexpected abbrev ordering!"); 1039 } 1040 { // 6-bit char6 VST_ENTRY strings. 1041 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1042 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY)); 1043 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); 1044 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 1045 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6)); 1046 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID, 1047 Abbv) != VST_ENTRY_6_ABBREV) 1048 assert(0 && "Unexpected abbrev ordering!"); 1049 } 1050 { // 6-bit char6 VST_BBENTRY strings. 1051 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1052 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_BBENTRY)); 1053 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); 1054 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 1055 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6)); 1056 if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID, 1057 Abbv) != VST_BBENTRY_6_ABBREV) 1058 assert(0 && "Unexpected abbrev ordering!"); 1059 } 1060 1061 1062 1063 { // SETTYPE abbrev for CONSTANTS_BLOCK. 1064 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1065 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_SETTYPE)); 1066 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1067 Log2_32_Ceil(VE.getTypes().size()+1))); 1068 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID, 1069 Abbv) != CONSTANTS_SETTYPE_ABBREV) 1070 assert(0 && "Unexpected abbrev ordering!"); 1071 } 1072 1073 { // INTEGER abbrev for CONSTANTS_BLOCK. 1074 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1075 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_INTEGER)); 1076 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); 1077 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID, 1078 Abbv) != CONSTANTS_INTEGER_ABBREV) 1079 assert(0 && "Unexpected abbrev ordering!"); 1080 } 1081 1082 { // CE_CAST abbrev for CONSTANTS_BLOCK. 1083 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1084 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_CE_CAST)); 1085 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // cast opc 1086 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, // typeid 1087 Log2_32_Ceil(VE.getTypes().size()+1))); 1088 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // value id 1089 1090 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID, 1091 Abbv) != CONSTANTS_CE_CAST_Abbrev) 1092 assert(0 && "Unexpected abbrev ordering!"); 1093 } 1094 { // NULL abbrev for CONSTANTS_BLOCK. 1095 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1096 Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_NULL)); 1097 if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID, 1098 Abbv) != CONSTANTS_NULL_Abbrev) 1099 assert(0 && "Unexpected abbrev ordering!"); 1100 } 1101 1102 // FIXME: This should only use space for first class types! 1103 1104 { // INST_LOAD abbrev for FUNCTION_BLOCK. 1105 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1106 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_LOAD)); 1107 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Ptr 1108 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 4)); // Align 1109 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // volatile 1110 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1111 Abbv) != FUNCTION_INST_LOAD_ABBREV) 1112 assert(0 && "Unexpected abbrev ordering!"); 1113 } 1114 { // INST_BINOP abbrev for FUNCTION_BLOCK. 1115 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1116 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_BINOP)); 1117 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // LHS 1118 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // RHS 1119 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc 1120 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1121 Abbv) != FUNCTION_INST_BINOP_ABBREV) 1122 assert(0 && "Unexpected abbrev ordering!"); 1123 } 1124 { // INST_CAST abbrev for FUNCTION_BLOCK. 1125 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1126 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_CAST)); 1127 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // OpVal 1128 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, // dest ty 1129 Log2_32_Ceil(VE.getTypes().size()+1))); 1130 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc 1131 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1132 Abbv) != FUNCTION_INST_CAST_ABBREV) 1133 assert(0 && "Unexpected abbrev ordering!"); 1134 } 1135 1136 { // INST_RET abbrev for FUNCTION_BLOCK. 1137 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1138 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_RET)); 1139 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1140 Abbv) != FUNCTION_INST_RET_VOID_ABBREV) 1141 assert(0 && "Unexpected abbrev ordering!"); 1142 } 1143 { // INST_RET abbrev for FUNCTION_BLOCK. 1144 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1145 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_RET)); 1146 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ValID 1147 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1148 Abbv) != FUNCTION_INST_RET_VAL_ABBREV) 1149 assert(0 && "Unexpected abbrev ordering!"); 1150 } 1151 { // INST_UNREACHABLE abbrev for FUNCTION_BLOCK. 1152 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); 1153 Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_UNREACHABLE)); 1154 if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, 1155 Abbv) != FUNCTION_INST_UNREACHABLE_ABBREV) 1156 assert(0 && "Unexpected abbrev ordering!"); 1157 } 1158 1159 Stream.ExitBlock(); 1160 } 1161 1162 1163 /// WriteModule - Emit the specified module to the bitstream. 1164 static void WriteModule(const Module *M, BitstreamWriter &Stream) { 1165 Stream.EnterSubblock(bitc::MODULE_BLOCK_ID, 3); 1166 1167 // Emit the version number if it is non-zero. 1168 if (CurVersion) { 1169 SmallVector<unsigned, 1> Vals; 1170 Vals.push_back(CurVersion); 1171 Stream.EmitRecord(bitc::MODULE_CODE_VERSION, Vals); 1172 } 1173 1174 // Analyze the module, enumerating globals, functions, etc. 1175 ValueEnumerator VE(M); 1176 1177 // Emit blockinfo, which defines the standard abbreviations etc. 1178 WriteBlockInfo(VE, Stream); 1179 1180 // Emit information about parameter attributes. 1181 WriteParamAttrTable(VE, Stream); 1182 1183 // Emit information describing all of the types in the module. 1184 WriteTypeTable(VE, Stream); 1185 1186 // Emit top-level description of module, including target triple, inline asm, 1187 // descriptors for global variables, and function prototype info. 1188 WriteModuleInfo(M, VE, Stream); 1189 1190 // Emit constants. 1191 WriteModuleConstants(VE, Stream); 1192 1193 // If we have any aggregate values in the value table, purge them - these can 1194 // only be used to initialize global variables. Doing so makes the value 1195 // namespace smaller for code in functions. 1196 int NumNonAggregates = VE.PurgeAggregateValues(); 1197 if (NumNonAggregates != -1) { 1198 SmallVector<unsigned, 1> Vals; 1199 Vals.push_back(NumNonAggregates); 1200 Stream.EmitRecord(bitc::MODULE_CODE_PURGEVALS, Vals); 1201 } 1202 1203 // Emit function bodies. 1204 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) 1205 if (!I->isDeclaration()) 1206 WriteFunction(*I, VE, Stream); 1207 1208 // Emit the type symbol table information. 1209 WriteTypeSymbolTable(M->getTypeSymbolTable(), VE, Stream); 1210 1211 // Emit names for globals/functions etc. 1212 WriteValueSymbolTable(M->getValueSymbolTable(), VE, Stream); 1213 1214 Stream.ExitBlock(); 1215 } 1216 1217 1218 /// WriteBitcodeToFile - Write the specified module to the specified output 1219 /// stream. 1220 void llvm::WriteBitcodeToFile(const Module *M, std::ostream &Out) { 1221 std::vector<unsigned char> Buffer; 1222 BitstreamWriter Stream(Buffer); 1223 1224 Buffer.reserve(256*1024); 1225 1226 // Emit the file header. 1227 Stream.Emit((unsigned)'B', 8); 1228 Stream.Emit((unsigned)'C', 8); 1229 Stream.Emit(0x0, 4); 1230 Stream.Emit(0xC, 4); 1231 Stream.Emit(0xE, 4); 1232 Stream.Emit(0xD, 4); 1233 1234 // Emit the module. 1235 WriteModule(M, Stream); 1236 1237 // Write the generated bitstream to "Out". 1238 Out.write((char*)&Buffer.front(), Buffer.size()); 1239 1240 // Make sure it hits disk now. 1241 Out.flush(); 1242 } 1243