1 //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the AsmPrinter class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #define DEBUG_TYPE "asm-printer" 15 #include "llvm/CodeGen/AsmPrinter.h" 16 #include "DwarfDebug.h" 17 #include "DwarfException.h" 18 #include "llvm/ADT/SmallString.h" 19 #include "llvm/ADT/Statistic.h" 20 #include "llvm/Analysis/ConstantFolding.h" 21 #include "llvm/CodeGen/GCMetadataPrinter.h" 22 #include "llvm/CodeGen/MachineConstantPool.h" 23 #include "llvm/CodeGen/MachineFrameInfo.h" 24 #include "llvm/CodeGen/MachineFunction.h" 25 #include "llvm/CodeGen/MachineInstrBundle.h" 26 #include "llvm/CodeGen/MachineJumpTableInfo.h" 27 #include "llvm/CodeGen/MachineLoopInfo.h" 28 #include "llvm/CodeGen/MachineModuleInfo.h" 29 #include "llvm/DebugInfo.h" 30 #include "llvm/IR/DataLayout.h" 31 #include "llvm/IR/Mangler.h" 32 #include "llvm/IR/Module.h" 33 #include "llvm/IR/Operator.h" 34 #include "llvm/MC/MCAsmInfo.h" 35 #include "llvm/MC/MCContext.h" 36 #include "llvm/MC/MCExpr.h" 37 #include "llvm/MC/MCInst.h" 38 #include "llvm/MC/MCSection.h" 39 #include "llvm/MC/MCStreamer.h" 40 #include "llvm/MC/MCSymbol.h" 41 #include "llvm/Support/ErrorHandling.h" 42 #include "llvm/Support/Format.h" 43 #include "llvm/Support/MathExtras.h" 44 #include "llvm/Support/Timer.h" 45 #include "llvm/Target/TargetFrameLowering.h" 46 #include "llvm/Target/TargetInstrInfo.h" 47 #include "llvm/Target/TargetLowering.h" 48 #include "llvm/Target/TargetLoweringObjectFile.h" 49 #include "llvm/Target/TargetOptions.h" 50 #include "llvm/Target/TargetRegisterInfo.h" 51 #include "llvm/Target/TargetSubtargetInfo.h" 52 #include "llvm/Transforms/Utils/GlobalStatus.h" 53 #include "WinCodeViewLineTables.h" 54 using namespace llvm; 55 56 static const char *const DWARFGroupName = "DWARF Emission"; 57 static const char *const DbgTimerName = "Debug Info Emission"; 58 static const char *const EHTimerName = "DWARF Exception Writer"; 59 static const char *const CodeViewLineTablesGroupName = "CodeView Line Tables"; 60 61 STATISTIC(EmittedInsts, "Number of machine instrs printed"); 62 63 char AsmPrinter::ID = 0; 64 65 typedef DenseMap<GCStrategy*,GCMetadataPrinter*> gcp_map_type; 66 static gcp_map_type &getGCMap(void *&P) { 67 if (P == 0) 68 P = new gcp_map_type(); 69 return *(gcp_map_type*)P; 70 } 71 72 73 /// getGVAlignmentLog2 - Return the alignment to use for the specified global 74 /// value in log2 form. This rounds up to the preferred alignment if possible 75 /// and legal. 76 static unsigned getGVAlignmentLog2(const GlobalValue *GV, const DataLayout &TD, 77 unsigned InBits = 0) { 78 unsigned NumBits = 0; 79 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) 80 NumBits = TD.getPreferredAlignmentLog(GVar); 81 82 // If InBits is specified, round it to it. 83 if (InBits > NumBits) 84 NumBits = InBits; 85 86 // If the GV has a specified alignment, take it into account. 87 if (GV->getAlignment() == 0) 88 return NumBits; 89 90 unsigned GVAlign = Log2_32(GV->getAlignment()); 91 92 // If the GVAlign is larger than NumBits, or if we are required to obey 93 // NumBits because the GV has an assigned section, obey it. 94 if (GVAlign > NumBits || GV->hasSection()) 95 NumBits = GVAlign; 96 return NumBits; 97 } 98 99 AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer) 100 : MachineFunctionPass(ID), 101 TM(tm), MAI(tm.getMCAsmInfo()), MII(tm.getInstrInfo()), 102 OutContext(Streamer.getContext()), 103 OutStreamer(Streamer), 104 LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) { 105 DD = 0; MMI = 0; LI = 0; MF = 0; 106 CurrentFnSym = CurrentFnSymForSize = 0; 107 GCMetadataPrinters = 0; 108 VerboseAsm = Streamer.isVerboseAsm(); 109 } 110 111 AsmPrinter::~AsmPrinter() { 112 assert(DD == 0 && Handlers.empty() && "Debug/EH info didn't get finalized"); 113 114 if (GCMetadataPrinters != 0) { 115 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 116 117 for (gcp_map_type::iterator I = GCMap.begin(), E = GCMap.end(); I != E; ++I) 118 delete I->second; 119 delete &GCMap; 120 GCMetadataPrinters = 0; 121 } 122 123 delete &OutStreamer; 124 } 125 126 /// getFunctionNumber - Return a unique ID for the current function. 127 /// 128 unsigned AsmPrinter::getFunctionNumber() const { 129 return MF->getFunctionNumber(); 130 } 131 132 const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const { 133 return TM.getTargetLowering()->getObjFileLowering(); 134 } 135 136 /// getDataLayout - Return information about data layout. 137 const DataLayout &AsmPrinter::getDataLayout() const { 138 return *TM.getDataLayout(); 139 } 140 141 const MCSubtargetInfo &AsmPrinter::getSubtargetInfo() const { 142 return TM.getSubtarget<MCSubtargetInfo>(); 143 } 144 145 void AsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst) { 146 S.EmitInstruction(Inst, getSubtargetInfo()); 147 } 148 149 StringRef AsmPrinter::getTargetTriple() const { 150 return TM.getTargetTriple(); 151 } 152 153 /// getCurrentSection() - Return the current section we are emitting to. 154 const MCSection *AsmPrinter::getCurrentSection() const { 155 return OutStreamer.getCurrentSection().first; 156 } 157 158 159 160 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { 161 AU.setPreservesAll(); 162 MachineFunctionPass::getAnalysisUsage(AU); 163 AU.addRequired<MachineModuleInfo>(); 164 AU.addRequired<GCModuleInfo>(); 165 if (isVerbose()) 166 AU.addRequired<MachineLoopInfo>(); 167 } 168 169 bool AsmPrinter::doInitialization(Module &M) { 170 MMI = getAnalysisIfAvailable<MachineModuleInfo>(); 171 MMI->AnalyzeModule(M); 172 173 // Initialize TargetLoweringObjectFile. 174 const_cast<TargetLoweringObjectFile&>(getObjFileLowering()) 175 .Initialize(OutContext, TM); 176 177 OutStreamer.InitSections(false); 178 179 Mang = new Mangler(TM.getDataLayout()); 180 181 // Allow the target to emit any magic that it wants at the start of the file. 182 EmitStartOfAsmFile(M); 183 184 // Very minimal debug info. It is ignored if we emit actual debug info. If we 185 // don't, this at least helps the user find where a global came from. 186 if (MAI->hasSingleParameterDotFile()) { 187 // .file "foo.c" 188 OutStreamer.EmitFileDirective(M.getModuleIdentifier()); 189 } 190 191 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 192 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 193 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I) 194 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I)) 195 MP->beginAssembly(*this); 196 197 // Emit module-level inline asm if it exists. 198 if (!M.getModuleInlineAsm().empty()) { 199 OutStreamer.AddComment("Start of file scope inline assembly"); 200 OutStreamer.AddBlankLine(); 201 EmitInlineAsm(M.getModuleInlineAsm()+"\n"); 202 OutStreamer.AddComment("End of file scope inline assembly"); 203 OutStreamer.AddBlankLine(); 204 } 205 206 if (MAI->doesSupportDebugInformation()) { 207 if (Triple(TM.getTargetTriple()).getOS() == Triple::Win32) { 208 Handlers.push_back(HandlerInfo(new WinCodeViewLineTables(this), 209 DbgTimerName, 210 CodeViewLineTablesGroupName)); 211 } else { 212 DD = new DwarfDebug(this, &M); 213 Handlers.push_back(HandlerInfo(DD, DbgTimerName, DWARFGroupName)); 214 } 215 } 216 217 DwarfException *DE = 0; 218 switch (MAI->getExceptionHandlingType()) { 219 case ExceptionHandling::None: 220 break; 221 case ExceptionHandling::SjLj: 222 case ExceptionHandling::DwarfCFI: 223 DE = new DwarfCFIException(this); 224 break; 225 case ExceptionHandling::ARM: 226 DE = new ARMException(this); 227 break; 228 case ExceptionHandling::Win64: 229 DE = new Win64Exception(this); 230 break; 231 } 232 if (DE) 233 Handlers.push_back(HandlerInfo(DE, EHTimerName, DWARFGroupName)); 234 return false; 235 } 236 237 static bool canBeHidden(const GlobalValue *GV, const MCAsmInfo &MAI) { 238 GlobalValue::LinkageTypes Linkage = GV->getLinkage(); 239 if (Linkage != GlobalValue::LinkOnceODRLinkage) 240 return false; 241 242 if (!MAI.hasWeakDefCanBeHiddenDirective()) 243 return false; 244 245 if (GV->hasUnnamedAddr()) 246 return true; 247 248 // This is only used for MachO, so right now it doesn't really matter how 249 // we handle alias. Revisit this once the MachO linker implements aliases. 250 if (isa<GlobalAlias>(GV)) 251 return false; 252 253 // If it is a non constant variable, it needs to be uniqued across shared 254 // objects. 255 if (const GlobalVariable *Var = dyn_cast<GlobalVariable>(GV)) { 256 if (!Var->isConstant()) 257 return false; 258 } 259 260 GlobalStatus GS; 261 if (!GlobalStatus::analyzeGlobal(GV, GS) && !GS.IsCompared) 262 return true; 263 264 return false; 265 } 266 267 void AsmPrinter::EmitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const { 268 GlobalValue::LinkageTypes Linkage = GV->getLinkage(); 269 switch (Linkage) { 270 case GlobalValue::CommonLinkage: 271 case GlobalValue::LinkOnceAnyLinkage: 272 case GlobalValue::LinkOnceODRLinkage: 273 case GlobalValue::WeakAnyLinkage: 274 case GlobalValue::WeakODRLinkage: 275 case GlobalValue::LinkerPrivateWeakLinkage: 276 if (MAI->hasWeakDefDirective()) { 277 // .globl _foo 278 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 279 280 if (!canBeHidden(GV, *MAI)) 281 // .weak_definition _foo 282 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition); 283 else 284 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate); 285 } else if (MAI->hasLinkOnceDirective()) { 286 // .globl _foo 287 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 288 //NOTE: linkonce is handled by the section the symbol was assigned to. 289 } else { 290 // .weak _foo 291 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak); 292 } 293 return; 294 case GlobalValue::AppendingLinkage: 295 // FIXME: appending linkage variables should go into a section of 296 // their name or something. For now, just emit them as external. 297 case GlobalValue::ExternalLinkage: 298 // If external or appending, declare as a global symbol. 299 // .globl _foo 300 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 301 return; 302 case GlobalValue::PrivateLinkage: 303 case GlobalValue::InternalLinkage: 304 case GlobalValue::LinkerPrivateLinkage: 305 return; 306 case GlobalValue::AvailableExternallyLinkage: 307 llvm_unreachable("Should never emit this"); 308 case GlobalValue::ExternalWeakLinkage: 309 llvm_unreachable("Don't know how to emit these"); 310 } 311 llvm_unreachable("Unknown linkage type!"); 312 } 313 314 MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const { 315 return getObjFileLowering().getSymbol(GV, *Mang); 316 } 317 318 /// EmitGlobalVariable - Emit the specified global variable to the .s file. 319 void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) { 320 if (GV->hasInitializer()) { 321 // Check to see if this is a special global used by LLVM, if so, emit it. 322 if (EmitSpecialLLVMGlobal(GV)) 323 return; 324 325 if (isVerbose()) { 326 GV->printAsOperand(OutStreamer.GetCommentOS(), 327 /*PrintType=*/false, GV->getParent()); 328 OutStreamer.GetCommentOS() << '\n'; 329 } 330 } 331 332 MCSymbol *GVSym = getSymbol(GV); 333 EmitVisibility(GVSym, GV->getVisibility(), !GV->isDeclaration()); 334 335 if (!GV->hasInitializer()) // External globals require no extra code. 336 return; 337 338 if (MAI->hasDotTypeDotSizeDirective()) 339 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject); 340 341 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM); 342 343 const DataLayout *DL = TM.getDataLayout(); 344 uint64_t Size = DL->getTypeAllocSize(GV->getType()->getElementType()); 345 346 // If the alignment is specified, we *must* obey it. Overaligning a global 347 // with a specified alignment is a prompt way to break globals emitted to 348 // sections and expected to be contiguous (e.g. ObjC metadata). 349 unsigned AlignLog = getGVAlignmentLog2(GV, *DL); 350 351 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { 352 const HandlerInfo &OI = Handlers[I]; 353 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled); 354 OI.Handler->setSymbolSize(GVSym, Size); 355 } 356 357 // Handle common and BSS local symbols (.lcomm). 358 if (GVKind.isCommon() || GVKind.isBSSLocal()) { 359 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. 360 unsigned Align = 1 << AlignLog; 361 362 // Handle common symbols. 363 if (GVKind.isCommon()) { 364 if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) 365 Align = 0; 366 367 // .comm _foo, 42, 4 368 OutStreamer.EmitCommonSymbol(GVSym, Size, Align); 369 return; 370 } 371 372 // Handle local BSS symbols. 373 if (MAI->hasMachoZeroFillDirective()) { 374 const MCSection *TheSection = 375 getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM); 376 // .zerofill __DATA, __bss, _foo, 400, 5 377 OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align); 378 return; 379 } 380 381 // Use .lcomm only if it supports user-specified alignment. 382 // Otherwise, while it would still be correct to use .lcomm in some 383 // cases (e.g. when Align == 1), the external assembler might enfore 384 // some -unknown- default alignment behavior, which could cause 385 // spurious differences between external and integrated assembler. 386 // Prefer to simply fall back to .local / .comm in this case. 387 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) { 388 // .lcomm _foo, 42 389 OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align); 390 return; 391 } 392 393 if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) 394 Align = 0; 395 396 // .local _foo 397 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local); 398 // .comm _foo, 42, 4 399 OutStreamer.EmitCommonSymbol(GVSym, Size, Align); 400 return; 401 } 402 403 const MCSection *TheSection = 404 getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM); 405 406 // Handle the zerofill directive on darwin, which is a special form of BSS 407 // emission. 408 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) { 409 if (Size == 0) Size = 1; // zerofill of 0 bytes is undefined. 410 411 // .globl _foo 412 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 413 // .zerofill __DATA, __common, _foo, 400, 5 414 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog); 415 return; 416 } 417 418 // Handle thread local data for mach-o which requires us to output an 419 // additional structure of data and mangle the original symbol so that we 420 // can reference it later. 421 // 422 // TODO: This should become an "emit thread local global" method on TLOF. 423 // All of this macho specific stuff should be sunk down into TLOFMachO and 424 // stuff like "TLSExtraDataSection" should no longer be part of the parent 425 // TLOF class. This will also make it more obvious that stuff like 426 // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho 427 // specific code. 428 if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) { 429 // Emit the .tbss symbol 430 MCSymbol *MangSym = 431 OutContext.GetOrCreateSymbol(GVSym->getName() + Twine("$tlv$init")); 432 433 if (GVKind.isThreadBSS()) { 434 TheSection = getObjFileLowering().getTLSBSSSection(); 435 OutStreamer.EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog); 436 } else if (GVKind.isThreadData()) { 437 OutStreamer.SwitchSection(TheSection); 438 439 EmitAlignment(AlignLog, GV); 440 OutStreamer.EmitLabel(MangSym); 441 442 EmitGlobalConstant(GV->getInitializer()); 443 } 444 445 OutStreamer.AddBlankLine(); 446 447 // Emit the variable struct for the runtime. 448 const MCSection *TLVSect 449 = getObjFileLowering().getTLSExtraDataSection(); 450 451 OutStreamer.SwitchSection(TLVSect); 452 // Emit the linkage here. 453 EmitLinkage(GV, GVSym); 454 OutStreamer.EmitLabel(GVSym); 455 456 // Three pointers in size: 457 // - __tlv_bootstrap - used to make sure support exists 458 // - spare pointer, used when mapped by the runtime 459 // - pointer to mangled symbol above with initializer 460 unsigned PtrSize = DL->getPointerTypeSize(GV->getType()); 461 OutStreamer.EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"), 462 PtrSize); 463 OutStreamer.EmitIntValue(0, PtrSize); 464 OutStreamer.EmitSymbolValue(MangSym, PtrSize); 465 466 OutStreamer.AddBlankLine(); 467 return; 468 } 469 470 OutStreamer.SwitchSection(TheSection); 471 472 EmitLinkage(GV, GVSym); 473 EmitAlignment(AlignLog, GV); 474 475 OutStreamer.EmitLabel(GVSym); 476 477 EmitGlobalConstant(GV->getInitializer()); 478 479 if (MAI->hasDotTypeDotSizeDirective()) 480 // .size foo, 42 481 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext)); 482 483 OutStreamer.AddBlankLine(); 484 } 485 486 /// EmitFunctionHeader - This method emits the header for the current 487 /// function. 488 void AsmPrinter::EmitFunctionHeader() { 489 // Print out constants referenced by the function 490 EmitConstantPool(); 491 492 // Print the 'header' of function. 493 const Function *F = MF->getFunction(); 494 495 OutStreamer.SwitchSection( 496 getObjFileLowering().SectionForGlobal(F, *Mang, TM)); 497 EmitVisibility(CurrentFnSym, F->getVisibility()); 498 499 EmitLinkage(F, CurrentFnSym); 500 EmitAlignment(MF->getAlignment(), F); 501 502 if (MAI->hasDotTypeDotSizeDirective()) 503 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction); 504 505 if (isVerbose()) { 506 F->printAsOperand(OutStreamer.GetCommentOS(), 507 /*PrintType=*/false, F->getParent()); 508 OutStreamer.GetCommentOS() << '\n'; 509 } 510 511 // Emit the CurrentFnSym. This is a virtual function to allow targets to 512 // do their wild and crazy things as required. 513 EmitFunctionEntryLabel(); 514 515 // If the function had address-taken blocks that got deleted, then we have 516 // references to the dangling symbols. Emit them at the start of the function 517 // so that we don't get references to undefined symbols. 518 std::vector<MCSymbol*> DeadBlockSyms; 519 MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms); 520 for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) { 521 OutStreamer.AddComment("Address taken block that was later removed"); 522 OutStreamer.EmitLabel(DeadBlockSyms[i]); 523 } 524 525 // Emit pre-function debug and/or EH information. 526 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { 527 const HandlerInfo &OI = Handlers[I]; 528 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled); 529 OI.Handler->beginFunction(MF); 530 } 531 532 // Emit the prefix data. 533 if (F->hasPrefixData()) 534 EmitGlobalConstant(F->getPrefixData()); 535 } 536 537 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the 538 /// function. This can be overridden by targets as required to do custom stuff. 539 void AsmPrinter::EmitFunctionEntryLabel() { 540 // The function label could have already been emitted if two symbols end up 541 // conflicting due to asm renaming. Detect this and emit an error. 542 if (CurrentFnSym->isUndefined()) 543 return OutStreamer.EmitLabel(CurrentFnSym); 544 545 report_fatal_error("'" + Twine(CurrentFnSym->getName()) + 546 "' label emitted multiple times to assembly file"); 547 } 548 549 /// emitComments - Pretty-print comments for instructions. 550 static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS) { 551 const MachineFunction *MF = MI.getParent()->getParent(); 552 const TargetMachine &TM = MF->getTarget(); 553 554 // Check for spills and reloads 555 int FI; 556 557 const MachineFrameInfo *FrameInfo = MF->getFrameInfo(); 558 559 // We assume a single instruction only has a spill or reload, not 560 // both. 561 const MachineMemOperand *MMO; 562 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) { 563 if (FrameInfo->isSpillSlotObjectIndex(FI)) { 564 MMO = *MI.memoperands_begin(); 565 CommentOS << MMO->getSize() << "-byte Reload\n"; 566 } 567 } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) { 568 if (FrameInfo->isSpillSlotObjectIndex(FI)) 569 CommentOS << MMO->getSize() << "-byte Folded Reload\n"; 570 } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) { 571 if (FrameInfo->isSpillSlotObjectIndex(FI)) { 572 MMO = *MI.memoperands_begin(); 573 CommentOS << MMO->getSize() << "-byte Spill\n"; 574 } 575 } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) { 576 if (FrameInfo->isSpillSlotObjectIndex(FI)) 577 CommentOS << MMO->getSize() << "-byte Folded Spill\n"; 578 } 579 580 // Check for spill-induced copies 581 if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse)) 582 CommentOS << " Reload Reuse\n"; 583 } 584 585 /// emitImplicitDef - This method emits the specified machine instruction 586 /// that is an implicit def. 587 void AsmPrinter::emitImplicitDef(const MachineInstr *MI) const { 588 unsigned RegNo = MI->getOperand(0).getReg(); 589 OutStreamer.AddComment(Twine("implicit-def: ") + 590 TM.getRegisterInfo()->getName(RegNo)); 591 OutStreamer.AddBlankLine(); 592 } 593 594 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { 595 std::string Str = "kill:"; 596 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 597 const MachineOperand &Op = MI->getOperand(i); 598 assert(Op.isReg() && "KILL instruction must have only register operands"); 599 Str += ' '; 600 Str += AP.TM.getRegisterInfo()->getName(Op.getReg()); 601 Str += (Op.isDef() ? "<def>" : "<kill>"); 602 } 603 AP.OutStreamer.AddComment(Str); 604 AP.OutStreamer.AddBlankLine(); 605 } 606 607 /// emitDebugValueComment - This method handles the target-independent form 608 /// of DBG_VALUE, returning true if it was able to do so. A false return 609 /// means the target will need to handle MI in EmitInstruction. 610 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { 611 // This code handles only the 3-operand target-independent form. 612 if (MI->getNumOperands() != 3) 613 return false; 614 615 SmallString<128> Str; 616 raw_svector_ostream OS(Str); 617 OS << "DEBUG_VALUE: "; 618 619 DIVariable V(MI->getOperand(2).getMetadata()); 620 if (V.getContext().isSubprogram()) { 621 StringRef Name = DISubprogram(V.getContext()).getDisplayName(); 622 if (!Name.empty()) 623 OS << Name << ":"; 624 } 625 OS << V.getName() << " <- "; 626 627 // The second operand is only an offset if it's an immediate. 628 bool Deref = MI->getOperand(0).isReg() && MI->getOperand(1).isImm(); 629 int64_t Offset = Deref ? MI->getOperand(1).getImm() : 0; 630 631 // Register or immediate value. Register 0 means undef. 632 if (MI->getOperand(0).isFPImm()) { 633 APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF()); 634 if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) { 635 OS << (double)APF.convertToFloat(); 636 } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) { 637 OS << APF.convertToDouble(); 638 } else { 639 // There is no good way to print long double. Convert a copy to 640 // double. Ah well, it's only a comment. 641 bool ignored; 642 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, 643 &ignored); 644 OS << "(long double) " << APF.convertToDouble(); 645 } 646 } else if (MI->getOperand(0).isImm()) { 647 OS << MI->getOperand(0).getImm(); 648 } else if (MI->getOperand(0).isCImm()) { 649 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/); 650 } else { 651 unsigned Reg; 652 if (MI->getOperand(0).isReg()) { 653 Reg = MI->getOperand(0).getReg(); 654 } else { 655 assert(MI->getOperand(0).isFI() && "Unknown operand type"); 656 const TargetFrameLowering *TFI = AP.TM.getFrameLowering(); 657 Offset += TFI->getFrameIndexReference(*AP.MF, 658 MI->getOperand(0).getIndex(), Reg); 659 Deref = true; 660 } 661 if (Reg == 0) { 662 // Suppress offset, it is not meaningful here. 663 OS << "undef"; 664 // NOTE: Want this comment at start of line, don't emit with AddComment. 665 AP.OutStreamer.emitRawComment(OS.str()); 666 return true; 667 } 668 if (Deref) 669 OS << '['; 670 OS << AP.TM.getRegisterInfo()->getName(Reg); 671 } 672 673 if (Deref) 674 OS << '+' << Offset << ']'; 675 676 // NOTE: Want this comment at start of line, don't emit with AddComment. 677 AP.OutStreamer.emitRawComment(OS.str()); 678 return true; 679 } 680 681 AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() { 682 if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI && 683 MF->getFunction()->needsUnwindTableEntry()) 684 return CFI_M_EH; 685 686 if (MMI->hasDebugInfo()) 687 return CFI_M_Debug; 688 689 return CFI_M_None; 690 } 691 692 bool AsmPrinter::needsSEHMoves() { 693 return MAI->getExceptionHandlingType() == ExceptionHandling::Win64 && 694 MF->getFunction()->needsUnwindTableEntry(); 695 } 696 697 void AsmPrinter::emitPrologLabel(const MachineInstr &MI) { 698 const MCSymbol *Label = MI.getOperand(0).getMCSymbol(); 699 700 if (MAI->getExceptionHandlingType() != ExceptionHandling::DwarfCFI) 701 return; 702 703 if (needsCFIMoves() == CFI_M_None) 704 return; 705 706 if (MMI->getCompactUnwindEncoding() != 0) 707 OutStreamer.EmitCompactUnwindEncoding(MMI->getCompactUnwindEncoding()); 708 709 const MachineModuleInfo &MMI = MF->getMMI(); 710 const std::vector<MCCFIInstruction> &Instrs = MMI.getFrameInstructions(); 711 bool FoundOne = false; 712 (void)FoundOne; 713 for (std::vector<MCCFIInstruction>::const_iterator I = Instrs.begin(), 714 E = Instrs.end(); I != E; ++I) { 715 if (I->getLabel() == Label) { 716 emitCFIInstruction(*I); 717 FoundOne = true; 718 } 719 } 720 assert(FoundOne); 721 } 722 723 /// EmitFunctionBody - This method emits the body and trailer for a 724 /// function. 725 void AsmPrinter::EmitFunctionBody() { 726 // Emit target-specific gunk before the function body. 727 EmitFunctionBodyStart(); 728 729 bool ShouldPrintDebugScopes = MMI->hasDebugInfo(); 730 731 // Print out code for the function. 732 bool HasAnyRealCode = false; 733 const MachineInstr *LastMI = 0; 734 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); 735 I != E; ++I) { 736 // Print a label for the basic block. 737 EmitBasicBlockStart(I); 738 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); 739 II != IE; ++II) { 740 LastMI = II; 741 742 // Print the assembly for the instruction. 743 if (!II->isLabel() && !II->isImplicitDef() && !II->isKill() && 744 !II->isDebugValue()) { 745 HasAnyRealCode = true; 746 ++EmittedInsts; 747 } 748 749 if (ShouldPrintDebugScopes) { 750 for (unsigned III = 0, EEE = Handlers.size(); III != EEE; ++III) { 751 const HandlerInfo &OI = Handlers[III]; 752 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, 753 TimePassesIsEnabled); 754 OI.Handler->beginInstruction(II); 755 } 756 } 757 758 if (isVerbose()) 759 emitComments(*II, OutStreamer.GetCommentOS()); 760 761 switch (II->getOpcode()) { 762 case TargetOpcode::PROLOG_LABEL: 763 emitPrologLabel(*II); 764 break; 765 766 case TargetOpcode::EH_LABEL: 767 case TargetOpcode::GC_LABEL: 768 OutStreamer.EmitLabel(II->getOperand(0).getMCSymbol()); 769 break; 770 case TargetOpcode::INLINEASM: 771 EmitInlineAsm(II); 772 break; 773 case TargetOpcode::DBG_VALUE: 774 if (isVerbose()) { 775 if (!emitDebugValueComment(II, *this)) 776 EmitInstruction(II); 777 } 778 break; 779 case TargetOpcode::IMPLICIT_DEF: 780 if (isVerbose()) emitImplicitDef(II); 781 break; 782 case TargetOpcode::KILL: 783 if (isVerbose()) emitKill(II, *this); 784 break; 785 default: 786 EmitInstruction(II); 787 break; 788 } 789 790 if (ShouldPrintDebugScopes) { 791 for (unsigned III = 0, EEE = Handlers.size(); III != EEE; ++III) { 792 const HandlerInfo &OI = Handlers[III]; 793 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, 794 TimePassesIsEnabled); 795 OI.Handler->endInstruction(); 796 } 797 } 798 } 799 } 800 801 // If the last instruction was a prolog label, then we have a situation where 802 // we emitted a prolog but no function body. This results in the ending prolog 803 // label equaling the end of function label and an invalid "row" in the 804 // FDE. We need to emit a noop in this situation so that the FDE's rows are 805 // valid. 806 bool RequiresNoop = LastMI && LastMI->isPrologLabel(); 807 808 // If the function is empty and the object file uses .subsections_via_symbols, 809 // then we need to emit *something* to the function body to prevent the 810 // labels from collapsing together. Just emit a noop. 811 if ((MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) || RequiresNoop) { 812 MCInst Noop; 813 TM.getInstrInfo()->getNoopForMachoTarget(Noop); 814 if (Noop.getOpcode()) { 815 OutStreamer.AddComment("avoids zero-length function"); 816 OutStreamer.EmitInstruction(Noop, getSubtargetInfo()); 817 } else // Target not mc-ized yet. 818 OutStreamer.EmitRawText(StringRef("\tnop\n")); 819 } 820 821 const Function *F = MF->getFunction(); 822 for (Function::const_iterator i = F->begin(), e = F->end(); i != e; ++i) { 823 const BasicBlock *BB = i; 824 if (!BB->hasAddressTaken()) 825 continue; 826 MCSymbol *Sym = GetBlockAddressSymbol(BB); 827 if (Sym->isDefined()) 828 continue; 829 OutStreamer.AddComment("Address of block that was removed by CodeGen"); 830 OutStreamer.EmitLabel(Sym); 831 } 832 833 // Emit target-specific gunk after the function body. 834 EmitFunctionBodyEnd(); 835 836 // If the target wants a .size directive for the size of the function, emit 837 // it. 838 if (MAI->hasDotTypeDotSizeDirective()) { 839 // Create a symbol for the end of function, so we can get the size as 840 // difference between the function label and the temp label. 841 MCSymbol *FnEndLabel = OutContext.CreateTempSymbol(); 842 OutStreamer.EmitLabel(FnEndLabel); 843 844 const MCExpr *SizeExp = 845 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext), 846 MCSymbolRefExpr::Create(CurrentFnSymForSize, 847 OutContext), 848 OutContext); 849 OutStreamer.EmitELFSize(CurrentFnSym, SizeExp); 850 } 851 852 // Emit post-function debug and/or EH information. 853 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { 854 const HandlerInfo &OI = Handlers[I]; 855 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled); 856 OI.Handler->endFunction(MF); 857 } 858 MMI->EndFunction(); 859 860 // Print out jump tables referenced by the function. 861 EmitJumpTableInfo(); 862 863 OutStreamer.AddBlankLine(); 864 } 865 866 /// EmitDwarfRegOp - Emit dwarf register operation. 867 void AsmPrinter::EmitDwarfRegOp(const MachineLocation &MLoc, 868 bool Indirect) const { 869 const TargetRegisterInfo *TRI = TM.getRegisterInfo(); 870 int Reg = TRI->getDwarfRegNum(MLoc.getReg(), false); 871 bool isSubRegister = Reg < 0; 872 unsigned Idx = 0; 873 874 for (MCSuperRegIterator SR(MLoc.getReg(), TRI); SR.isValid() && Reg < 0; 875 ++SR) { 876 Reg = TRI->getDwarfRegNum(*SR, false); 877 if (Reg >= 0) 878 Idx = TRI->getSubRegIndex(*SR, MLoc.getReg()); 879 } 880 881 // FIXME: Handle cases like a super register being encoded as 882 // DW_OP_reg 32 DW_OP_piece 4 DW_OP_reg 33 883 884 // FIXME: We have no reasonable way of handling errors in here. The 885 // caller might be in the middle of an dwarf expression. We should 886 // probably assert that Reg >= 0 once debug info generation is more mature. 887 if (Reg < 0) { 888 OutStreamer.AddComment("nop (invalid dwarf register number)"); 889 EmitInt8(dwarf::DW_OP_nop); 890 return; 891 } 892 893 if (MLoc.isIndirect() || Indirect) { 894 if (Reg < 32) { 895 OutStreamer.AddComment( 896 dwarf::OperationEncodingString(dwarf::DW_OP_breg0 + Reg)); 897 EmitInt8(dwarf::DW_OP_breg0 + Reg); 898 } else { 899 OutStreamer.AddComment("DW_OP_bregx"); 900 EmitInt8(dwarf::DW_OP_bregx); 901 OutStreamer.AddComment(Twine(Reg)); 902 EmitULEB128(Reg); 903 } 904 EmitSLEB128(!MLoc.isIndirect() ? 0 : MLoc.getOffset()); 905 if (MLoc.isIndirect() && Indirect) 906 EmitInt8(dwarf::DW_OP_deref); 907 } else { 908 if (Reg < 32) { 909 OutStreamer.AddComment( 910 dwarf::OperationEncodingString(dwarf::DW_OP_reg0 + Reg)); 911 EmitInt8(dwarf::DW_OP_reg0 + Reg); 912 } else { 913 OutStreamer.AddComment("DW_OP_regx"); 914 EmitInt8(dwarf::DW_OP_regx); 915 OutStreamer.AddComment(Twine(Reg)); 916 EmitULEB128(Reg); 917 } 918 } 919 920 // Emit Mask 921 if (isSubRegister) { 922 unsigned Size = TRI->getSubRegIdxSize(Idx); 923 unsigned Offset = TRI->getSubRegIdxOffset(Idx); 924 if (Offset > 0) { 925 OutStreamer.AddComment("DW_OP_bit_piece"); 926 EmitInt8(dwarf::DW_OP_bit_piece); 927 OutStreamer.AddComment(Twine(Size)); 928 EmitULEB128(Size); 929 OutStreamer.AddComment(Twine(Offset)); 930 EmitULEB128(Offset); 931 } else { 932 OutStreamer.AddComment("DW_OP_piece"); 933 EmitInt8(dwarf::DW_OP_piece); 934 unsigned ByteSize = Size / 8; // Assuming 8 bits per byte. 935 OutStreamer.AddComment(Twine(ByteSize)); 936 EmitULEB128(ByteSize); 937 } 938 } 939 } 940 941 bool AsmPrinter::doFinalization(Module &M) { 942 // Emit global variables. 943 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); 944 I != E; ++I) 945 EmitGlobalVariable(I); 946 947 // Emit visibility info for declarations 948 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { 949 const Function &F = *I; 950 if (!F.isDeclaration()) 951 continue; 952 GlobalValue::VisibilityTypes V = F.getVisibility(); 953 if (V == GlobalValue::DefaultVisibility) 954 continue; 955 956 MCSymbol *Name = getSymbol(&F); 957 EmitVisibility(Name, V, false); 958 } 959 960 // Emit module flags. 961 SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags; 962 M.getModuleFlagsMetadata(ModuleFlags); 963 if (!ModuleFlags.empty()) 964 getObjFileLowering().emitModuleFlags(OutStreamer, ModuleFlags, *Mang, TM); 965 966 // Make sure we wrote out everything we need. 967 OutStreamer.Flush(); 968 969 // Finalize debug and EH information. 970 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { 971 const HandlerInfo &OI = Handlers[I]; 972 NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, 973 TimePassesIsEnabled); 974 OI.Handler->endModule(); 975 delete OI.Handler; 976 } 977 Handlers.clear(); 978 DD = 0; 979 980 // If the target wants to know about weak references, print them all. 981 if (MAI->getWeakRefDirective()) { 982 // FIXME: This is not lazy, it would be nice to only print weak references 983 // to stuff that is actually used. Note that doing so would require targets 984 // to notice uses in operands (due to constant exprs etc). This should 985 // happen with the MC stuff eventually. 986 987 // Print out module-level global variables here. 988 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); 989 I != E; ++I) { 990 if (!I->hasExternalWeakLinkage()) continue; 991 OutStreamer.EmitSymbolAttribute(getSymbol(I), MCSA_WeakReference); 992 } 993 994 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { 995 if (!I->hasExternalWeakLinkage()) continue; 996 OutStreamer.EmitSymbolAttribute(getSymbol(I), MCSA_WeakReference); 997 } 998 } 999 1000 if (MAI->hasSetDirective()) { 1001 OutStreamer.AddBlankLine(); 1002 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); 1003 I != E; ++I) { 1004 MCSymbol *Name = getSymbol(I); 1005 1006 const GlobalValue *GV = I->getAliasedGlobal(); 1007 if (GV->isDeclaration()) { 1008 report_fatal_error(Name->getName() + 1009 ": Target doesn't support aliases to declarations"); 1010 } 1011 1012 MCSymbol *Target = getSymbol(GV); 1013 1014 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective()) 1015 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global); 1016 else if (I->hasWeakLinkage() || I->hasLinkOnceLinkage()) 1017 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference); 1018 else 1019 assert(I->hasLocalLinkage() && "Invalid alias linkage"); 1020 1021 EmitVisibility(Name, I->getVisibility()); 1022 1023 // Emit the directives as assignments aka .set: 1024 OutStreamer.EmitAssignment(Name, 1025 MCSymbolRefExpr::Create(Target, OutContext)); 1026 } 1027 } 1028 1029 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 1030 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 1031 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; ) 1032 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I)) 1033 MP->finishAssembly(*this); 1034 1035 // Emit llvm.ident metadata in an '.ident' directive. 1036 EmitModuleIdents(M); 1037 1038 // If we don't have any trampolines, then we don't require stack memory 1039 // to be executable. Some targets have a directive to declare this. 1040 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline"); 1041 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty()) 1042 if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext)) 1043 OutStreamer.SwitchSection(S); 1044 1045 // Allow the target to emit any magic that it wants at the end of the file, 1046 // after everything else has gone out. 1047 EmitEndOfAsmFile(M); 1048 1049 delete Mang; Mang = 0; 1050 MMI = 0; 1051 1052 OutStreamer.Finish(); 1053 OutStreamer.reset(); 1054 1055 return false; 1056 } 1057 1058 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) { 1059 this->MF = &MF; 1060 // Get the function symbol. 1061 CurrentFnSym = getSymbol(MF.getFunction()); 1062 CurrentFnSymForSize = CurrentFnSym; 1063 1064 if (isVerbose()) 1065 LI = &getAnalysis<MachineLoopInfo>(); 1066 } 1067 1068 namespace { 1069 // SectionCPs - Keep track the alignment, constpool entries per Section. 1070 struct SectionCPs { 1071 const MCSection *S; 1072 unsigned Alignment; 1073 SmallVector<unsigned, 4> CPEs; 1074 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {} 1075 }; 1076 } 1077 1078 /// EmitConstantPool - Print to the current output stream assembly 1079 /// representations of the constants in the constant pool MCP. This is 1080 /// used to print out constants which have been "spilled to memory" by 1081 /// the code generator. 1082 /// 1083 void AsmPrinter::EmitConstantPool() { 1084 const MachineConstantPool *MCP = MF->getConstantPool(); 1085 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); 1086 if (CP.empty()) return; 1087 1088 // Calculate sections for constant pool entries. We collect entries to go into 1089 // the same section together to reduce amount of section switch statements. 1090 SmallVector<SectionCPs, 4> CPSections; 1091 for (unsigned i = 0, e = CP.size(); i != e; ++i) { 1092 const MachineConstantPoolEntry &CPE = CP[i]; 1093 unsigned Align = CPE.getAlignment(); 1094 1095 SectionKind Kind; 1096 switch (CPE.getRelocationInfo()) { 1097 default: llvm_unreachable("Unknown section kind"); 1098 case 2: Kind = SectionKind::getReadOnlyWithRel(); break; 1099 case 1: 1100 Kind = SectionKind::getReadOnlyWithRelLocal(); 1101 break; 1102 case 0: 1103 switch (TM.getDataLayout()->getTypeAllocSize(CPE.getType())) { 1104 case 4: Kind = SectionKind::getMergeableConst4(); break; 1105 case 8: Kind = SectionKind::getMergeableConst8(); break; 1106 case 16: Kind = SectionKind::getMergeableConst16();break; 1107 default: Kind = SectionKind::getMergeableConst(); break; 1108 } 1109 } 1110 1111 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind); 1112 1113 // The number of sections are small, just do a linear search from the 1114 // last section to the first. 1115 bool Found = false; 1116 unsigned SecIdx = CPSections.size(); 1117 while (SecIdx != 0) { 1118 if (CPSections[--SecIdx].S == S) { 1119 Found = true; 1120 break; 1121 } 1122 } 1123 if (!Found) { 1124 SecIdx = CPSections.size(); 1125 CPSections.push_back(SectionCPs(S, Align)); 1126 } 1127 1128 if (Align > CPSections[SecIdx].Alignment) 1129 CPSections[SecIdx].Alignment = Align; 1130 CPSections[SecIdx].CPEs.push_back(i); 1131 } 1132 1133 // Now print stuff into the calculated sections. 1134 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) { 1135 OutStreamer.SwitchSection(CPSections[i].S); 1136 EmitAlignment(Log2_32(CPSections[i].Alignment)); 1137 1138 unsigned Offset = 0; 1139 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) { 1140 unsigned CPI = CPSections[i].CPEs[j]; 1141 MachineConstantPoolEntry CPE = CP[CPI]; 1142 1143 // Emit inter-object padding for alignment. 1144 unsigned AlignMask = CPE.getAlignment() - 1; 1145 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; 1146 OutStreamer.EmitZeros(NewOffset - Offset); 1147 1148 Type *Ty = CPE.getType(); 1149 Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty); 1150 OutStreamer.EmitLabel(GetCPISymbol(CPI)); 1151 1152 if (CPE.isMachineConstantPoolEntry()) 1153 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal); 1154 else 1155 EmitGlobalConstant(CPE.Val.ConstVal); 1156 } 1157 } 1158 } 1159 1160 /// EmitJumpTableInfo - Print assembly representations of the jump tables used 1161 /// by the current function to the current output stream. 1162 /// 1163 void AsmPrinter::EmitJumpTableInfo() { 1164 const DataLayout *DL = MF->getTarget().getDataLayout(); 1165 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo(); 1166 if (MJTI == 0) return; 1167 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return; 1168 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); 1169 if (JT.empty()) return; 1170 1171 // Pick the directive to use to print the jump table entries, and switch to 1172 // the appropriate section. 1173 const Function *F = MF->getFunction(); 1174 bool JTInDiffSection = false; 1175 if (// In PIC mode, we need to emit the jump table to the same section as the 1176 // function body itself, otherwise the label differences won't make sense. 1177 // FIXME: Need a better predicate for this: what about custom entries? 1178 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 || 1179 // We should also do if the section name is NULL or function is declared 1180 // in discardable section 1181 // FIXME: this isn't the right predicate, should be based on the MCSection 1182 // for the function. 1183 F->isWeakForLinker()) { 1184 OutStreamer.SwitchSection( 1185 getObjFileLowering().SectionForGlobal(F, *Mang, TM)); 1186 } else { 1187 // Otherwise, drop it in the readonly section. 1188 const MCSection *ReadOnlySection = 1189 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly()); 1190 OutStreamer.SwitchSection(ReadOnlySection); 1191 JTInDiffSection = true; 1192 } 1193 1194 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getDataLayout()))); 1195 1196 // Jump tables in code sections are marked with a data_region directive 1197 // where that's supported. 1198 if (!JTInDiffSection) 1199 OutStreamer.EmitDataRegion(MCDR_DataRegionJT32); 1200 1201 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) { 1202 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; 1203 1204 // If this jump table was deleted, ignore it. 1205 if (JTBBs.empty()) continue; 1206 1207 // For the EK_LabelDifference32 entry, if the target supports .set, emit a 1208 // .set directive for each unique entry. This reduces the number of 1209 // relocations the assembler will generate for the jump table. 1210 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 && 1211 MAI->hasSetDirective()) { 1212 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets; 1213 const TargetLowering *TLI = TM.getTargetLowering(); 1214 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext); 1215 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) { 1216 const MachineBasicBlock *MBB = JTBBs[ii]; 1217 if (!EmittedSets.insert(MBB)) continue; 1218 1219 // .set LJTSet, LBB32-base 1220 const MCExpr *LHS = 1221 MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 1222 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()), 1223 MCBinaryExpr::CreateSub(LHS, Base, OutContext)); 1224 } 1225 } 1226 1227 // On some targets (e.g. Darwin) we want to emit two consecutive labels 1228 // before each jump table. The first label is never referenced, but tells 1229 // the assembler and linker the extents of the jump table object. The 1230 // second label is actually referenced by the code. 1231 if (JTInDiffSection && DL->hasLinkerPrivateGlobalPrefix()) 1232 // FIXME: This doesn't have to have any specific name, just any randomly 1233 // named and numbered 'l' label would work. Simplify GetJTISymbol. 1234 OutStreamer.EmitLabel(GetJTISymbol(JTI, true)); 1235 1236 OutStreamer.EmitLabel(GetJTISymbol(JTI)); 1237 1238 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) 1239 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI); 1240 } 1241 if (!JTInDiffSection) 1242 OutStreamer.EmitDataRegion(MCDR_DataRegionEnd); 1243 } 1244 1245 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the 1246 /// current stream. 1247 void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI, 1248 const MachineBasicBlock *MBB, 1249 unsigned UID) const { 1250 assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block"); 1251 const MCExpr *Value = 0; 1252 switch (MJTI->getEntryKind()) { 1253 case MachineJumpTableInfo::EK_Inline: 1254 llvm_unreachable("Cannot emit EK_Inline jump table entry"); 1255 case MachineJumpTableInfo::EK_Custom32: 1256 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID, 1257 OutContext); 1258 break; 1259 case MachineJumpTableInfo::EK_BlockAddress: 1260 // EK_BlockAddress - Each entry is a plain address of block, e.g.: 1261 // .word LBB123 1262 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 1263 break; 1264 case MachineJumpTableInfo::EK_GPRel32BlockAddress: { 1265 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded 1266 // with a relocation as gp-relative, e.g.: 1267 // .gprel32 LBB123 1268 MCSymbol *MBBSym = MBB->getSymbol(); 1269 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext)); 1270 return; 1271 } 1272 1273 case MachineJumpTableInfo::EK_GPRel64BlockAddress: { 1274 // EK_GPRel64BlockAddress - Each entry is an address of block, encoded 1275 // with a relocation as gp-relative, e.g.: 1276 // .gpdword LBB123 1277 MCSymbol *MBBSym = MBB->getSymbol(); 1278 OutStreamer.EmitGPRel64Value(MCSymbolRefExpr::Create(MBBSym, OutContext)); 1279 return; 1280 } 1281 1282 case MachineJumpTableInfo::EK_LabelDifference32: { 1283 // EK_LabelDifference32 - Each entry is the address of the block minus 1284 // the address of the jump table. This is used for PIC jump tables where 1285 // gprel32 is not supported. e.g.: 1286 // .word LBB123 - LJTI1_2 1287 // If the .set directive is supported, this is emitted as: 1288 // .set L4_5_set_123, LBB123 - LJTI1_2 1289 // .word L4_5_set_123 1290 1291 // If we have emitted set directives for the jump table entries, print 1292 // them rather than the entries themselves. If we're emitting PIC, then 1293 // emit the table entries as differences between two text section labels. 1294 if (MAI->hasSetDirective()) { 1295 // If we used .set, reference the .set's symbol. 1296 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()), 1297 OutContext); 1298 break; 1299 } 1300 // Otherwise, use the difference as the jump table entry. 1301 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 1302 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext); 1303 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext); 1304 break; 1305 } 1306 } 1307 1308 assert(Value && "Unknown entry kind!"); 1309 1310 unsigned EntrySize = MJTI->getEntrySize(*TM.getDataLayout()); 1311 OutStreamer.EmitValue(Value, EntrySize); 1312 } 1313 1314 1315 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a 1316 /// special global used by LLVM. If so, emit it and return true, otherwise 1317 /// do nothing and return false. 1318 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { 1319 if (GV->getName() == "llvm.used") { 1320 if (MAI->hasNoDeadStrip()) // No need to emit this at all. 1321 EmitLLVMUsedList(cast<ConstantArray>(GV->getInitializer())); 1322 return true; 1323 } 1324 1325 // Ignore debug and non-emitted data. This handles llvm.compiler.used. 1326 if (GV->getSection() == "llvm.metadata" || 1327 GV->hasAvailableExternallyLinkage()) 1328 return true; 1329 1330 if (!GV->hasAppendingLinkage()) return false; 1331 1332 assert(GV->hasInitializer() && "Not a special LLVM global!"); 1333 1334 if (GV->getName() == "llvm.global_ctors") { 1335 EmitXXStructorList(GV->getInitializer(), /* isCtor */ true); 1336 1337 if (TM.getRelocationModel() == Reloc::Static && 1338 MAI->hasStaticCtorDtorReferenceInStaticMode()) { 1339 StringRef Sym(".constructors_used"); 1340 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), 1341 MCSA_Reference); 1342 } 1343 return true; 1344 } 1345 1346 if (GV->getName() == "llvm.global_dtors") { 1347 EmitXXStructorList(GV->getInitializer(), /* isCtor */ false); 1348 1349 if (TM.getRelocationModel() == Reloc::Static && 1350 MAI->hasStaticCtorDtorReferenceInStaticMode()) { 1351 StringRef Sym(".destructors_used"); 1352 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), 1353 MCSA_Reference); 1354 } 1355 return true; 1356 } 1357 1358 return false; 1359 } 1360 1361 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each 1362 /// global in the specified llvm.used list for which emitUsedDirectiveFor 1363 /// is true, as being used with this directive. 1364 void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) { 1365 // Should be an array of 'i8*'. 1366 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { 1367 const GlobalValue *GV = 1368 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts()); 1369 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, *Mang)) 1370 OutStreamer.EmitSymbolAttribute(getSymbol(GV), MCSA_NoDeadStrip); 1371 } 1372 } 1373 1374 /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init 1375 /// priority. 1376 void AsmPrinter::EmitXXStructorList(const Constant *List, bool isCtor) { 1377 // Should be an array of '{ int, void ()* }' structs. The first value is the 1378 // init priority. 1379 if (!isa<ConstantArray>(List)) return; 1380 1381 // Sanity check the structors list. 1382 const ConstantArray *InitList = dyn_cast<ConstantArray>(List); 1383 if (!InitList) return; // Not an array! 1384 StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType()); 1385 if (!ETy || ETy->getNumElements() != 2) return; // Not an array of pairs! 1386 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) || 1387 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr). 1388 1389 // Gather the structors in a form that's convenient for sorting by priority. 1390 typedef std::pair<unsigned, Constant *> Structor; 1391 SmallVector<Structor, 8> Structors; 1392 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { 1393 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i)); 1394 if (!CS) continue; // Malformed. 1395 if (CS->getOperand(1)->isNullValue()) 1396 break; // Found a null terminator, skip the rest. 1397 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); 1398 if (!Priority) continue; // Malformed. 1399 Structors.push_back(std::make_pair(Priority->getLimitedValue(65535), 1400 CS->getOperand(1))); 1401 } 1402 1403 // Emit the function pointers in the target-specific order 1404 const DataLayout *DL = TM.getDataLayout(); 1405 unsigned Align = Log2_32(DL->getPointerPrefAlignment()); 1406 std::stable_sort(Structors.begin(), Structors.end(), less_first()); 1407 for (unsigned i = 0, e = Structors.size(); i != e; ++i) { 1408 const MCSection *OutputSection = 1409 (isCtor ? 1410 getObjFileLowering().getStaticCtorSection(Structors[i].first) : 1411 getObjFileLowering().getStaticDtorSection(Structors[i].first)); 1412 OutStreamer.SwitchSection(OutputSection); 1413 if (OutStreamer.getCurrentSection() != OutStreamer.getPreviousSection()) 1414 EmitAlignment(Align); 1415 EmitXXStructor(Structors[i].second); 1416 } 1417 } 1418 1419 void AsmPrinter::EmitModuleIdents(Module &M) { 1420 if (!MAI->hasIdentDirective()) 1421 return; 1422 1423 if (const NamedMDNode *NMD = M.getNamedMetadata("llvm.ident")) { 1424 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { 1425 const MDNode *N = NMD->getOperand(i); 1426 assert(N->getNumOperands() == 1 && 1427 "llvm.ident metadata entry can have only one operand"); 1428 const MDString *S = cast<MDString>(N->getOperand(0)); 1429 OutStreamer.EmitIdent(S->getString()); 1430 } 1431 } 1432 } 1433 1434 //===--------------------------------------------------------------------===// 1435 // Emission and print routines 1436 // 1437 1438 /// EmitInt8 - Emit a byte directive and value. 1439 /// 1440 void AsmPrinter::EmitInt8(int Value) const { 1441 OutStreamer.EmitIntValue(Value, 1); 1442 } 1443 1444 /// EmitInt16 - Emit a short directive and value. 1445 /// 1446 void AsmPrinter::EmitInt16(int Value) const { 1447 OutStreamer.EmitIntValue(Value, 2); 1448 } 1449 1450 /// EmitInt32 - Emit a long directive and value. 1451 /// 1452 void AsmPrinter::EmitInt32(int Value) const { 1453 OutStreamer.EmitIntValue(Value, 4); 1454 } 1455 1456 /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size 1457 /// in bytes of the directive is specified by Size and Hi/Lo specify the 1458 /// labels. This implicitly uses .set if it is available. 1459 void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo, 1460 unsigned Size) const { 1461 // Get the Hi-Lo expression. 1462 const MCExpr *Diff = 1463 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext), 1464 MCSymbolRefExpr::Create(Lo, OutContext), 1465 OutContext); 1466 1467 if (!MAI->hasSetDirective()) { 1468 OutStreamer.EmitValue(Diff, Size); 1469 return; 1470 } 1471 1472 // Otherwise, emit with .set (aka assignment). 1473 MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); 1474 OutStreamer.EmitAssignment(SetLabel, Diff); 1475 OutStreamer.EmitSymbolValue(SetLabel, Size); 1476 } 1477 1478 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo" 1479 /// where the size in bytes of the directive is specified by Size and Hi/Lo 1480 /// specify the labels. This implicitly uses .set if it is available. 1481 void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset, 1482 const MCSymbol *Lo, 1483 unsigned Size) const { 1484 1485 // Emit Hi+Offset - Lo 1486 // Get the Hi+Offset expression. 1487 const MCExpr *Plus = 1488 MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext), 1489 MCConstantExpr::Create(Offset, OutContext), 1490 OutContext); 1491 1492 // Get the Hi+Offset-Lo expression. 1493 const MCExpr *Diff = 1494 MCBinaryExpr::CreateSub(Plus, 1495 MCSymbolRefExpr::Create(Lo, OutContext), 1496 OutContext); 1497 1498 if (!MAI->hasSetDirective()) 1499 OutStreamer.EmitValue(Diff, Size); 1500 else { 1501 // Otherwise, emit with .set (aka assignment). 1502 MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); 1503 OutStreamer.EmitAssignment(SetLabel, Diff); 1504 OutStreamer.EmitSymbolValue(SetLabel, Size); 1505 } 1506 } 1507 1508 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset" 1509 /// where the size in bytes of the directive is specified by Size and Label 1510 /// specifies the label. This implicitly uses .set if it is available. 1511 void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset, 1512 unsigned Size, 1513 bool IsSectionRelative) const { 1514 if (MAI->needsDwarfSectionOffsetDirective() && IsSectionRelative) { 1515 OutStreamer.EmitCOFFSecRel32(Label); 1516 return; 1517 } 1518 1519 // Emit Label+Offset (or just Label if Offset is zero) 1520 const MCExpr *Expr = MCSymbolRefExpr::Create(Label, OutContext); 1521 if (Offset) 1522 Expr = MCBinaryExpr::CreateAdd( 1523 Expr, MCConstantExpr::Create(Offset, OutContext), OutContext); 1524 1525 OutStreamer.EmitValue(Expr, Size); 1526 } 1527 1528 //===----------------------------------------------------------------------===// 1529 1530 // EmitAlignment - Emit an alignment directive to the specified power of 1531 // two boundary. For example, if you pass in 3 here, you will get an 8 1532 // byte alignment. If a global value is specified, and if that global has 1533 // an explicit alignment requested, it will override the alignment request 1534 // if required for correctness. 1535 // 1536 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const { 1537 if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getDataLayout(), NumBits); 1538 1539 if (NumBits == 0) return; // 1-byte aligned: no need to emit alignment. 1540 1541 if (getCurrentSection()->getKind().isText()) 1542 OutStreamer.EmitCodeAlignment(1 << NumBits); 1543 else 1544 OutStreamer.EmitValueToAlignment(1 << NumBits); 1545 } 1546 1547 //===----------------------------------------------------------------------===// 1548 // Constant emission. 1549 //===----------------------------------------------------------------------===// 1550 1551 /// lowerConstant - Lower the specified LLVM Constant to an MCExpr. 1552 /// 1553 static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP) { 1554 MCContext &Ctx = AP.OutContext; 1555 1556 if (CV->isNullValue() || isa<UndefValue>(CV)) 1557 return MCConstantExpr::Create(0, Ctx); 1558 1559 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) 1560 return MCConstantExpr::Create(CI->getZExtValue(), Ctx); 1561 1562 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) 1563 return MCSymbolRefExpr::Create(AP.getSymbol(GV), Ctx); 1564 1565 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) 1566 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx); 1567 1568 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); 1569 if (CE == 0) { 1570 llvm_unreachable("Unknown constant value to lower!"); 1571 } 1572 1573 if (const MCExpr *RelocExpr = 1574 AP.getObjFileLowering().getExecutableRelativeSymbol(CE, *AP.Mang)) 1575 return RelocExpr; 1576 1577 switch (CE->getOpcode()) { 1578 default: 1579 // If the code isn't optimized, there may be outstanding folding 1580 // opportunities. Attempt to fold the expression using DataLayout as a 1581 // last resort before giving up. 1582 if (Constant *C = 1583 ConstantFoldConstantExpression(CE, AP.TM.getDataLayout())) 1584 if (C != CE) 1585 return lowerConstant(C, AP); 1586 1587 // Otherwise report the problem to the user. 1588 { 1589 std::string S; 1590 raw_string_ostream OS(S); 1591 OS << "Unsupported expression in static initializer: "; 1592 CE->printAsOperand(OS, /*PrintType=*/false, 1593 !AP.MF ? 0 : AP.MF->getFunction()->getParent()); 1594 report_fatal_error(OS.str()); 1595 } 1596 case Instruction::GetElementPtr: { 1597 const DataLayout &DL = *AP.TM.getDataLayout(); 1598 // Generate a symbolic expression for the byte address 1599 APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0); 1600 cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI); 1601 1602 const MCExpr *Base = lowerConstant(CE->getOperand(0), AP); 1603 if (!OffsetAI) 1604 return Base; 1605 1606 int64_t Offset = OffsetAI.getSExtValue(); 1607 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx), 1608 Ctx); 1609 } 1610 1611 case Instruction::Trunc: 1612 // We emit the value and depend on the assembler to truncate the generated 1613 // expression properly. This is important for differences between 1614 // blockaddress labels. Since the two labels are in the same function, it 1615 // is reasonable to treat their delta as a 32-bit value. 1616 // FALL THROUGH. 1617 case Instruction::BitCast: 1618 return lowerConstant(CE->getOperand(0), AP); 1619 1620 case Instruction::IntToPtr: { 1621 const DataLayout &DL = *AP.TM.getDataLayout(); 1622 // Handle casts to pointers by changing them into casts to the appropriate 1623 // integer type. This promotes constant folding and simplifies this code. 1624 Constant *Op = CE->getOperand(0); 1625 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), 1626 false/*ZExt*/); 1627 return lowerConstant(Op, AP); 1628 } 1629 1630 case Instruction::PtrToInt: { 1631 const DataLayout &DL = *AP.TM.getDataLayout(); 1632 // Support only foldable casts to/from pointers that can be eliminated by 1633 // changing the pointer to the appropriately sized integer type. 1634 Constant *Op = CE->getOperand(0); 1635 Type *Ty = CE->getType(); 1636 1637 const MCExpr *OpExpr = lowerConstant(Op, AP); 1638 1639 // We can emit the pointer value into this slot if the slot is an 1640 // integer slot equal to the size of the pointer. 1641 if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType())) 1642 return OpExpr; 1643 1644 // Otherwise the pointer is smaller than the resultant integer, mask off 1645 // the high bits so we are sure to get a proper truncation if the input is 1646 // a constant expr. 1647 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); 1648 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx); 1649 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx); 1650 } 1651 1652 // The MC library also has a right-shift operator, but it isn't consistently 1653 // signed or unsigned between different targets. 1654 case Instruction::Add: 1655 case Instruction::Sub: 1656 case Instruction::Mul: 1657 case Instruction::SDiv: 1658 case Instruction::SRem: 1659 case Instruction::Shl: 1660 case Instruction::And: 1661 case Instruction::Or: 1662 case Instruction::Xor: { 1663 const MCExpr *LHS = lowerConstant(CE->getOperand(0), AP); 1664 const MCExpr *RHS = lowerConstant(CE->getOperand(1), AP); 1665 switch (CE->getOpcode()) { 1666 default: llvm_unreachable("Unknown binary operator constant cast expr"); 1667 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx); 1668 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx); 1669 case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx); 1670 case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx); 1671 case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx); 1672 case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx); 1673 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx); 1674 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx); 1675 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx); 1676 } 1677 } 1678 } 1679 } 1680 1681 static void emitGlobalConstantImpl(const Constant *C, AsmPrinter &AP); 1682 1683 /// isRepeatedByteSequence - Determine whether the given value is 1684 /// composed of a repeated sequence of identical bytes and return the 1685 /// byte value. If it is not a repeated sequence, return -1. 1686 static int isRepeatedByteSequence(const ConstantDataSequential *V) { 1687 StringRef Data = V->getRawDataValues(); 1688 assert(!Data.empty() && "Empty aggregates should be CAZ node"); 1689 char C = Data[0]; 1690 for (unsigned i = 1, e = Data.size(); i != e; ++i) 1691 if (Data[i] != C) return -1; 1692 return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1. 1693 } 1694 1695 1696 /// isRepeatedByteSequence - Determine whether the given value is 1697 /// composed of a repeated sequence of identical bytes and return the 1698 /// byte value. If it is not a repeated sequence, return -1. 1699 static int isRepeatedByteSequence(const Value *V, TargetMachine &TM) { 1700 1701 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 1702 if (CI->getBitWidth() > 64) return -1; 1703 1704 uint64_t Size = TM.getDataLayout()->getTypeAllocSize(V->getType()); 1705 uint64_t Value = CI->getZExtValue(); 1706 1707 // Make sure the constant is at least 8 bits long and has a power 1708 // of 2 bit width. This guarantees the constant bit width is 1709 // always a multiple of 8 bits, avoiding issues with padding out 1710 // to Size and other such corner cases. 1711 if (CI->getBitWidth() < 8 || !isPowerOf2_64(CI->getBitWidth())) return -1; 1712 1713 uint8_t Byte = static_cast<uint8_t>(Value); 1714 1715 for (unsigned i = 1; i < Size; ++i) { 1716 Value >>= 8; 1717 if (static_cast<uint8_t>(Value) != Byte) return -1; 1718 } 1719 return Byte; 1720 } 1721 if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) { 1722 // Make sure all array elements are sequences of the same repeated 1723 // byte. 1724 assert(CA->getNumOperands() != 0 && "Should be a CAZ"); 1725 int Byte = isRepeatedByteSequence(CA->getOperand(0), TM); 1726 if (Byte == -1) return -1; 1727 1728 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) { 1729 int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM); 1730 if (ThisByte == -1) return -1; 1731 if (Byte != ThisByte) return -1; 1732 } 1733 return Byte; 1734 } 1735 1736 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) 1737 return isRepeatedByteSequence(CDS); 1738 1739 return -1; 1740 } 1741 1742 static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS, 1743 AsmPrinter &AP){ 1744 1745 // See if we can aggregate this into a .fill, if so, emit it as such. 1746 int Value = isRepeatedByteSequence(CDS, AP.TM); 1747 if (Value != -1) { 1748 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType()); 1749 // Don't emit a 1-byte object as a .fill. 1750 if (Bytes > 1) 1751 return AP.OutStreamer.EmitFill(Bytes, Value); 1752 } 1753 1754 // If this can be emitted with .ascii/.asciz, emit it as such. 1755 if (CDS->isString()) 1756 return AP.OutStreamer.EmitBytes(CDS->getAsString()); 1757 1758 // Otherwise, emit the values in successive locations. 1759 unsigned ElementByteSize = CDS->getElementByteSize(); 1760 if (isa<IntegerType>(CDS->getElementType())) { 1761 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { 1762 if (AP.isVerbose()) 1763 AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n", 1764 CDS->getElementAsInteger(i)); 1765 AP.OutStreamer.EmitIntValue(CDS->getElementAsInteger(i), 1766 ElementByteSize); 1767 } 1768 } else if (ElementByteSize == 4) { 1769 // FP Constants are printed as integer constants to avoid losing 1770 // precision. 1771 assert(CDS->getElementType()->isFloatTy()); 1772 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { 1773 union { 1774 float F; 1775 uint32_t I; 1776 }; 1777 1778 F = CDS->getElementAsFloat(i); 1779 if (AP.isVerbose()) 1780 AP.OutStreamer.GetCommentOS() << "float " << F << '\n'; 1781 AP.OutStreamer.EmitIntValue(I, 4); 1782 } 1783 } else { 1784 assert(CDS->getElementType()->isDoubleTy()); 1785 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { 1786 union { 1787 double F; 1788 uint64_t I; 1789 }; 1790 1791 F = CDS->getElementAsDouble(i); 1792 if (AP.isVerbose()) 1793 AP.OutStreamer.GetCommentOS() << "double " << F << '\n'; 1794 AP.OutStreamer.EmitIntValue(I, 8); 1795 } 1796 } 1797 1798 const DataLayout &DL = *AP.TM.getDataLayout(); 1799 unsigned Size = DL.getTypeAllocSize(CDS->getType()); 1800 unsigned EmittedSize = DL.getTypeAllocSize(CDS->getType()->getElementType()) * 1801 CDS->getNumElements(); 1802 if (unsigned Padding = Size - EmittedSize) 1803 AP.OutStreamer.EmitZeros(Padding); 1804 1805 } 1806 1807 static void emitGlobalConstantArray(const ConstantArray *CA, AsmPrinter &AP) { 1808 // See if we can aggregate some values. Make sure it can be 1809 // represented as a series of bytes of the constant value. 1810 int Value = isRepeatedByteSequence(CA, AP.TM); 1811 1812 if (Value != -1) { 1813 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType()); 1814 AP.OutStreamer.EmitFill(Bytes, Value); 1815 } 1816 else { 1817 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) 1818 emitGlobalConstantImpl(CA->getOperand(i), AP); 1819 } 1820 } 1821 1822 static void emitGlobalConstantVector(const ConstantVector *CV, AsmPrinter &AP) { 1823 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) 1824 emitGlobalConstantImpl(CV->getOperand(i), AP); 1825 1826 const DataLayout &DL = *AP.TM.getDataLayout(); 1827 unsigned Size = DL.getTypeAllocSize(CV->getType()); 1828 unsigned EmittedSize = DL.getTypeAllocSize(CV->getType()->getElementType()) * 1829 CV->getType()->getNumElements(); 1830 if (unsigned Padding = Size - EmittedSize) 1831 AP.OutStreamer.EmitZeros(Padding); 1832 } 1833 1834 static void emitGlobalConstantStruct(const ConstantStruct *CS, AsmPrinter &AP) { 1835 // Print the fields in successive locations. Pad to align if needed! 1836 const DataLayout *DL = AP.TM.getDataLayout(); 1837 unsigned Size = DL->getTypeAllocSize(CS->getType()); 1838 const StructLayout *Layout = DL->getStructLayout(CS->getType()); 1839 uint64_t SizeSoFar = 0; 1840 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) { 1841 const Constant *Field = CS->getOperand(i); 1842 1843 // Check if padding is needed and insert one or more 0s. 1844 uint64_t FieldSize = DL->getTypeAllocSize(Field->getType()); 1845 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1)) 1846 - Layout->getElementOffset(i)) - FieldSize; 1847 SizeSoFar += FieldSize + PadSize; 1848 1849 // Now print the actual field value. 1850 emitGlobalConstantImpl(Field, AP); 1851 1852 // Insert padding - this may include padding to increase the size of the 1853 // current field up to the ABI size (if the struct is not packed) as well 1854 // as padding to ensure that the next field starts at the right offset. 1855 AP.OutStreamer.EmitZeros(PadSize); 1856 } 1857 assert(SizeSoFar == Layout->getSizeInBytes() && 1858 "Layout of constant struct may be incorrect!"); 1859 } 1860 1861 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP) { 1862 APInt API = CFP->getValueAPF().bitcastToAPInt(); 1863 1864 // First print a comment with what we think the original floating-point value 1865 // should have been. 1866 if (AP.isVerbose()) { 1867 SmallString<8> StrVal; 1868 CFP->getValueAPF().toString(StrVal); 1869 1870 CFP->getType()->print(AP.OutStreamer.GetCommentOS()); 1871 AP.OutStreamer.GetCommentOS() << ' ' << StrVal << '\n'; 1872 } 1873 1874 // Now iterate through the APInt chunks, emitting them in endian-correct 1875 // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit 1876 // floats). 1877 unsigned NumBytes = API.getBitWidth() / 8; 1878 unsigned TrailingBytes = NumBytes % sizeof(uint64_t); 1879 const uint64_t *p = API.getRawData(); 1880 1881 // PPC's long double has odd notions of endianness compared to how LLVM 1882 // handles it: p[0] goes first for *big* endian on PPC. 1883 if (AP.TM.getDataLayout()->isBigEndian() != CFP->getType()->isPPC_FP128Ty()) { 1884 int Chunk = API.getNumWords() - 1; 1885 1886 if (TrailingBytes) 1887 AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes); 1888 1889 for (; Chunk >= 0; --Chunk) 1890 AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t)); 1891 } else { 1892 unsigned Chunk; 1893 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk) 1894 AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t)); 1895 1896 if (TrailingBytes) 1897 AP.OutStreamer.EmitIntValue(p[Chunk], TrailingBytes); 1898 } 1899 1900 // Emit the tail padding for the long double. 1901 const DataLayout &DL = *AP.TM.getDataLayout(); 1902 AP.OutStreamer.EmitZeros(DL.getTypeAllocSize(CFP->getType()) - 1903 DL.getTypeStoreSize(CFP->getType())); 1904 } 1905 1906 static void emitGlobalConstantLargeInt(const ConstantInt *CI, AsmPrinter &AP) { 1907 const DataLayout *DL = AP.TM.getDataLayout(); 1908 unsigned BitWidth = CI->getBitWidth(); 1909 1910 // Copy the value as we may massage the layout for constants whose bit width 1911 // is not a multiple of 64-bits. 1912 APInt Realigned(CI->getValue()); 1913 uint64_t ExtraBits = 0; 1914 unsigned ExtraBitsSize = BitWidth & 63; 1915 1916 if (ExtraBitsSize) { 1917 // The bit width of the data is not a multiple of 64-bits. 1918 // The extra bits are expected to be at the end of the chunk of the memory. 1919 // Little endian: 1920 // * Nothing to be done, just record the extra bits to emit. 1921 // Big endian: 1922 // * Record the extra bits to emit. 1923 // * Realign the raw data to emit the chunks of 64-bits. 1924 if (DL->isBigEndian()) { 1925 // Basically the structure of the raw data is a chunk of 64-bits cells: 1926 // 0 1 BitWidth / 64 1927 // [chunk1][chunk2] ... [chunkN]. 1928 // The most significant chunk is chunkN and it should be emitted first. 1929 // However, due to the alignment issue chunkN contains useless bits. 1930 // Realign the chunks so that they contain only useless information: 1931 // ExtraBits 0 1 (BitWidth / 64) - 1 1932 // chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN] 1933 ExtraBits = Realigned.getRawData()[0] & 1934 (((uint64_t)-1) >> (64 - ExtraBitsSize)); 1935 Realigned = Realigned.lshr(ExtraBitsSize); 1936 } else 1937 ExtraBits = Realigned.getRawData()[BitWidth / 64]; 1938 } 1939 1940 // We don't expect assemblers to support integer data directives 1941 // for more than 64 bits, so we emit the data in at most 64-bit 1942 // quantities at a time. 1943 const uint64_t *RawData = Realigned.getRawData(); 1944 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) { 1945 uint64_t Val = DL->isBigEndian() ? RawData[e - i - 1] : RawData[i]; 1946 AP.OutStreamer.EmitIntValue(Val, 8); 1947 } 1948 1949 if (ExtraBitsSize) { 1950 // Emit the extra bits after the 64-bits chunks. 1951 1952 // Emit a directive that fills the expected size. 1953 uint64_t Size = AP.TM.getDataLayout()->getTypeAllocSize(CI->getType()); 1954 Size -= (BitWidth / 64) * 8; 1955 assert(Size && Size * 8 >= ExtraBitsSize && 1956 (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize))) 1957 == ExtraBits && "Directive too small for extra bits."); 1958 AP.OutStreamer.EmitIntValue(ExtraBits, Size); 1959 } 1960 } 1961 1962 static void emitGlobalConstantImpl(const Constant *CV, AsmPrinter &AP) { 1963 const DataLayout *DL = AP.TM.getDataLayout(); 1964 uint64_t Size = DL->getTypeAllocSize(CV->getType()); 1965 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) 1966 return AP.OutStreamer.EmitZeros(Size); 1967 1968 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { 1969 switch (Size) { 1970 case 1: 1971 case 2: 1972 case 4: 1973 case 8: 1974 if (AP.isVerbose()) 1975 AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n", 1976 CI->getZExtValue()); 1977 AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size); 1978 return; 1979 default: 1980 emitGlobalConstantLargeInt(CI, AP); 1981 return; 1982 } 1983 } 1984 1985 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) 1986 return emitGlobalConstantFP(CFP, AP); 1987 1988 if (isa<ConstantPointerNull>(CV)) { 1989 AP.OutStreamer.EmitIntValue(0, Size); 1990 return; 1991 } 1992 1993 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV)) 1994 return emitGlobalConstantDataSequential(CDS, AP); 1995 1996 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) 1997 return emitGlobalConstantArray(CVA, AP); 1998 1999 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) 2000 return emitGlobalConstantStruct(CVS, AP); 2001 2002 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { 2003 // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of 2004 // vectors). 2005 if (CE->getOpcode() == Instruction::BitCast) 2006 return emitGlobalConstantImpl(CE->getOperand(0), AP); 2007 2008 if (Size > 8) { 2009 // If the constant expression's size is greater than 64-bits, then we have 2010 // to emit the value in chunks. Try to constant fold the value and emit it 2011 // that way. 2012 Constant *New = ConstantFoldConstantExpression(CE, DL); 2013 if (New && New != CE) 2014 return emitGlobalConstantImpl(New, AP); 2015 } 2016 } 2017 2018 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV)) 2019 return emitGlobalConstantVector(V, AP); 2020 2021 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it 2022 // thread the streamer with EmitValue. 2023 AP.OutStreamer.EmitValue(lowerConstant(CV, AP), Size); 2024 } 2025 2026 /// EmitGlobalConstant - Print a general LLVM constant to the .s file. 2027 void AsmPrinter::EmitGlobalConstant(const Constant *CV) { 2028 uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType()); 2029 if (Size) 2030 emitGlobalConstantImpl(CV, *this); 2031 else if (MAI->hasSubsectionsViaSymbols()) { 2032 // If the global has zero size, emit a single byte so that two labels don't 2033 // look like they are at the same location. 2034 OutStreamer.EmitIntValue(0, 1); 2035 } 2036 } 2037 2038 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { 2039 // Target doesn't support this yet! 2040 llvm_unreachable("Target does not support EmitMachineConstantPoolValue"); 2041 } 2042 2043 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { 2044 if (Offset > 0) 2045 OS << '+' << Offset; 2046 else if (Offset < 0) 2047 OS << Offset; 2048 } 2049 2050 //===----------------------------------------------------------------------===// 2051 // Symbol Lowering Routines. 2052 //===----------------------------------------------------------------------===// 2053 2054 /// GetTempSymbol - Return the MCSymbol corresponding to the assembler 2055 /// temporary label with the specified stem and unique ID. 2056 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const { 2057 const DataLayout *DL = TM.getDataLayout(); 2058 return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix()) + 2059 Name + Twine(ID)); 2060 } 2061 2062 /// GetTempSymbol - Return an assembler temporary label with the specified 2063 /// stem. 2064 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name) const { 2065 const DataLayout *DL = TM.getDataLayout(); 2066 return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix())+ 2067 Name); 2068 } 2069 2070 2071 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const { 2072 return MMI->getAddrLabelSymbol(BA->getBasicBlock()); 2073 } 2074 2075 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const { 2076 return MMI->getAddrLabelSymbol(BB); 2077 } 2078 2079 /// GetCPISymbol - Return the symbol for the specified constant pool entry. 2080 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const { 2081 const DataLayout *DL = TM.getDataLayout(); 2082 return OutContext.GetOrCreateSymbol 2083 (Twine(DL->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber()) 2084 + "_" + Twine(CPID)); 2085 } 2086 2087 /// GetJTISymbol - Return the symbol for the specified jump table entry. 2088 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const { 2089 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate); 2090 } 2091 2092 /// GetJTSetSymbol - Return the symbol for the specified jump table .set 2093 /// FIXME: privatize to AsmPrinter. 2094 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { 2095 const DataLayout *DL = TM.getDataLayout(); 2096 return OutContext.GetOrCreateSymbol 2097 (Twine(DL->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" + 2098 Twine(UID) + "_set_" + Twine(MBBID)); 2099 } 2100 2101 MCSymbol *AsmPrinter::getSymbolWithGlobalValueBase(const GlobalValue *GV, 2102 StringRef Suffix) const { 2103 return getObjFileLowering().getSymbolWithGlobalValueBase(GV, Suffix, *Mang); 2104 } 2105 2106 /// GetExternalSymbolSymbol - Return the MCSymbol for the specified 2107 /// ExternalSymbol. 2108 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const { 2109 SmallString<60> NameStr; 2110 Mang->getNameWithPrefix(NameStr, Sym); 2111 return OutContext.GetOrCreateSymbol(NameStr.str()); 2112 } 2113 2114 2115 2116 /// PrintParentLoopComment - Print comments about parent loops of this one. 2117 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop, 2118 unsigned FunctionNumber) { 2119 if (Loop == 0) return; 2120 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber); 2121 OS.indent(Loop->getLoopDepth()*2) 2122 << "Parent Loop BB" << FunctionNumber << "_" 2123 << Loop->getHeader()->getNumber() 2124 << " Depth=" << Loop->getLoopDepth() << '\n'; 2125 } 2126 2127 2128 /// PrintChildLoopComment - Print comments about child loops within 2129 /// the loop for this basic block, with nesting. 2130 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop, 2131 unsigned FunctionNumber) { 2132 // Add child loop information 2133 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){ 2134 OS.indent((*CL)->getLoopDepth()*2) 2135 << "Child Loop BB" << FunctionNumber << "_" 2136 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth() 2137 << '\n'; 2138 PrintChildLoopComment(OS, *CL, FunctionNumber); 2139 } 2140 } 2141 2142 /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks. 2143 static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB, 2144 const MachineLoopInfo *LI, 2145 const AsmPrinter &AP) { 2146 // Add loop depth information 2147 const MachineLoop *Loop = LI->getLoopFor(&MBB); 2148 if (Loop == 0) return; 2149 2150 MachineBasicBlock *Header = Loop->getHeader(); 2151 assert(Header && "No header for loop"); 2152 2153 // If this block is not a loop header, just print out what is the loop header 2154 // and return. 2155 if (Header != &MBB) { 2156 AP.OutStreamer.AddComment(" in Loop: Header=BB" + 2157 Twine(AP.getFunctionNumber())+"_" + 2158 Twine(Loop->getHeader()->getNumber())+ 2159 " Depth="+Twine(Loop->getLoopDepth())); 2160 return; 2161 } 2162 2163 // Otherwise, it is a loop header. Print out information about child and 2164 // parent loops. 2165 raw_ostream &OS = AP.OutStreamer.GetCommentOS(); 2166 2167 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber()); 2168 2169 OS << "=>"; 2170 OS.indent(Loop->getLoopDepth()*2-2); 2171 2172 OS << "This "; 2173 if (Loop->empty()) 2174 OS << "Inner "; 2175 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; 2176 2177 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber()); 2178 } 2179 2180 2181 /// EmitBasicBlockStart - This method prints the label for the specified 2182 /// MachineBasicBlock, an alignment (if present) and a comment describing 2183 /// it if appropriate. 2184 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const { 2185 // Emit an alignment directive for this block, if needed. 2186 if (unsigned Align = MBB->getAlignment()) 2187 EmitAlignment(Align); 2188 2189 // If the block has its address taken, emit any labels that were used to 2190 // reference the block. It is possible that there is more than one label 2191 // here, because multiple LLVM BB's may have been RAUW'd to this block after 2192 // the references were generated. 2193 if (MBB->hasAddressTaken()) { 2194 const BasicBlock *BB = MBB->getBasicBlock(); 2195 if (isVerbose()) 2196 OutStreamer.AddComment("Block address taken"); 2197 2198 std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB); 2199 2200 for (unsigned i = 0, e = Syms.size(); i != e; ++i) 2201 OutStreamer.EmitLabel(Syms[i]); 2202 } 2203 2204 // Print some verbose block comments. 2205 if (isVerbose()) { 2206 if (const BasicBlock *BB = MBB->getBasicBlock()) 2207 if (BB->hasName()) 2208 OutStreamer.AddComment("%" + BB->getName()); 2209 emitBasicBlockLoopComments(*MBB, LI, *this); 2210 } 2211 2212 // Print the main label for the block. 2213 if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) { 2214 if (isVerbose()) { 2215 // NOTE: Want this comment at start of line, don't emit with AddComment. 2216 OutStreamer.emitRawComment(" BB#" + Twine(MBB->getNumber()) + ":", false); 2217 } 2218 } else { 2219 OutStreamer.EmitLabel(MBB->getSymbol()); 2220 } 2221 } 2222 2223 void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility, 2224 bool IsDefinition) const { 2225 MCSymbolAttr Attr = MCSA_Invalid; 2226 2227 switch (Visibility) { 2228 default: break; 2229 case GlobalValue::HiddenVisibility: 2230 if (IsDefinition) 2231 Attr = MAI->getHiddenVisibilityAttr(); 2232 else 2233 Attr = MAI->getHiddenDeclarationVisibilityAttr(); 2234 break; 2235 case GlobalValue::ProtectedVisibility: 2236 Attr = MAI->getProtectedVisibilityAttr(); 2237 break; 2238 } 2239 2240 if (Attr != MCSA_Invalid) 2241 OutStreamer.EmitSymbolAttribute(Sym, Attr); 2242 } 2243 2244 /// isBlockOnlyReachableByFallthough - Return true if the basic block has 2245 /// exactly one predecessor and the control transfer mechanism between 2246 /// the predecessor and this block is a fall-through. 2247 bool AsmPrinter:: 2248 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const { 2249 // If this is a landing pad, it isn't a fall through. If it has no preds, 2250 // then nothing falls through to it. 2251 if (MBB->isLandingPad() || MBB->pred_empty()) 2252 return false; 2253 2254 // If there isn't exactly one predecessor, it can't be a fall through. 2255 MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI; 2256 ++PI2; 2257 if (PI2 != MBB->pred_end()) 2258 return false; 2259 2260 // The predecessor has to be immediately before this block. 2261 MachineBasicBlock *Pred = *PI; 2262 2263 if (!Pred->isLayoutSuccessor(MBB)) 2264 return false; 2265 2266 // If the block is completely empty, then it definitely does fall through. 2267 if (Pred->empty()) 2268 return true; 2269 2270 // Check the terminators in the previous blocks 2271 for (MachineBasicBlock::iterator II = Pred->getFirstTerminator(), 2272 IE = Pred->end(); II != IE; ++II) { 2273 MachineInstr &MI = *II; 2274 2275 // If it is not a simple branch, we are in a table somewhere. 2276 if (!MI.isBranch() || MI.isIndirectBranch()) 2277 return false; 2278 2279 // If we are the operands of one of the branches, this is not a fall 2280 // through. Note that targets with delay slots will usually bundle 2281 // terminators with the delay slot instruction. 2282 for (ConstMIBundleOperands OP(&MI); OP.isValid(); ++OP) { 2283 if (OP->isJTI()) 2284 return false; 2285 if (OP->isMBB() && OP->getMBB() == MBB) 2286 return false; 2287 } 2288 } 2289 2290 return true; 2291 } 2292 2293 2294 2295 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) { 2296 if (!S->usesMetadata()) 2297 return 0; 2298 2299 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 2300 gcp_map_type::iterator GCPI = GCMap.find(S); 2301 if (GCPI != GCMap.end()) 2302 return GCPI->second; 2303 2304 const char *Name = S->getName().c_str(); 2305 2306 for (GCMetadataPrinterRegistry::iterator 2307 I = GCMetadataPrinterRegistry::begin(), 2308 E = GCMetadataPrinterRegistry::end(); I != E; ++I) 2309 if (strcmp(Name, I->getName()) == 0) { 2310 GCMetadataPrinter *GMP = I->instantiate(); 2311 GMP->S = S; 2312 GCMap.insert(std::make_pair(S, GMP)); 2313 return GMP; 2314 } 2315 2316 report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name)); 2317 } 2318 2319 /// Pin vtable to this file. 2320 AsmPrinterHandler::~AsmPrinterHandler() {} 2321