AsmPrinter.cpp revision c1a887d76d95100e7e05aa76e077710bc4e0b1cf
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/Module.h" 19#include "llvm/CodeGen/GCMetadataPrinter.h" 20#include "llvm/CodeGen/MachineConstantPool.h" 21#include "llvm/CodeGen/MachineFrameInfo.h" 22#include "llvm/CodeGen/MachineFunction.h" 23#include "llvm/CodeGen/MachineJumpTableInfo.h" 24#include "llvm/CodeGen/MachineLoopInfo.h" 25#include "llvm/CodeGen/MachineModuleInfo.h" 26#include "llvm/Analysis/ConstantFolding.h" 27#include "llvm/Analysis/DebugInfo.h" 28#include "llvm/MC/MCAsmInfo.h" 29#include "llvm/MC/MCContext.h" 30#include "llvm/MC/MCExpr.h" 31#include "llvm/MC/MCInst.h" 32#include "llvm/MC/MCSection.h" 33#include "llvm/MC/MCStreamer.h" 34#include "llvm/MC/MCSymbol.h" 35#include "llvm/Target/Mangler.h" 36#include "llvm/Target/TargetData.h" 37#include "llvm/Target/TargetInstrInfo.h" 38#include "llvm/Target/TargetLowering.h" 39#include "llvm/Target/TargetLoweringObjectFile.h" 40#include "llvm/Target/TargetRegisterInfo.h" 41#include "llvm/ADT/SmallString.h" 42#include "llvm/ADT/Statistic.h" 43#include "llvm/Support/ErrorHandling.h" 44#include "llvm/Support/Format.h" 45#include "llvm/Support/Timer.h" 46using namespace llvm; 47 48static const char *DWARFGroupName = "DWARF Emission"; 49static const char *DbgTimerName = "DWARF Debug Writer"; 50static const char *EHTimerName = "DWARF Exception Writer"; 51 52STATISTIC(EmittedInsts, "Number of machine instrs printed"); 53 54char AsmPrinter::ID = 0; 55 56typedef DenseMap<GCStrategy*,GCMetadataPrinter*> gcp_map_type; 57static gcp_map_type &getGCMap(void *&P) { 58 if (P == 0) 59 P = new gcp_map_type(); 60 return *(gcp_map_type*)P; 61} 62 63 64/// getGVAlignmentLog2 - Return the alignment to use for the specified global 65/// value in log2 form. This rounds up to the preferred alignment if possible 66/// and legal. 67static unsigned getGVAlignmentLog2(const GlobalValue *GV, const TargetData &TD, 68 unsigned InBits = 0) { 69 unsigned NumBits = 0; 70 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) 71 NumBits = TD.getPreferredAlignmentLog(GVar); 72 73 // If InBits is specified, round it to it. 74 if (InBits > NumBits) 75 NumBits = InBits; 76 77 // If the GV has a specified alignment, take it into account. 78 if (GV->getAlignment() == 0) 79 return NumBits; 80 81 unsigned GVAlign = Log2_32(GV->getAlignment()); 82 83 // If the GVAlign is larger than NumBits, or if we are required to obey 84 // NumBits because the GV has an assigned section, obey it. 85 if (GVAlign > NumBits || GV->hasSection()) 86 NumBits = GVAlign; 87 return NumBits; 88} 89 90 91 92 93AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer) 94 : MachineFunctionPass(&ID), 95 TM(tm), MAI(tm.getMCAsmInfo()), 96 OutContext(Streamer.getContext()), 97 OutStreamer(Streamer), 98 LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) { 99 DD = 0; DE = 0; MMI = 0; LI = 0; 100 GCMetadataPrinters = 0; 101 VerboseAsm = Streamer.isVerboseAsm(); 102} 103 104AsmPrinter::~AsmPrinter() { 105 assert(DD == 0 && DE == 0 && "Debug/EH info didn't get finalized"); 106 107 if (GCMetadataPrinters != 0) { 108 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 109 110 for (gcp_map_type::iterator I = GCMap.begin(), E = GCMap.end(); I != E; ++I) 111 delete I->second; 112 delete &GCMap; 113 GCMetadataPrinters = 0; 114 } 115 116 delete &OutStreamer; 117} 118 119/// getFunctionNumber - Return a unique ID for the current function. 120/// 121unsigned AsmPrinter::getFunctionNumber() const { 122 return MF->getFunctionNumber(); 123} 124 125const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const { 126 return TM.getTargetLowering()->getObjFileLowering(); 127} 128 129 130/// getTargetData - Return information about data layout. 131const TargetData &AsmPrinter::getTargetData() const { 132 return *TM.getTargetData(); 133} 134 135/// getCurrentSection() - Return the current section we are emitting to. 136const MCSection *AsmPrinter::getCurrentSection() const { 137 return OutStreamer.getCurrentSection(); 138} 139 140 141 142void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { 143 AU.setPreservesAll(); 144 MachineFunctionPass::getAnalysisUsage(AU); 145 AU.addRequired<MachineModuleInfo>(); 146 AU.addRequired<GCModuleInfo>(); 147 if (isVerbose()) 148 AU.addRequired<MachineLoopInfo>(); 149} 150 151bool AsmPrinter::doInitialization(Module &M) { 152 MMI = getAnalysisIfAvailable<MachineModuleInfo>(); 153 MMI->AnalyzeModule(M); 154 155 // Initialize TargetLoweringObjectFile. 156 const_cast<TargetLoweringObjectFile&>(getObjFileLowering()) 157 .Initialize(OutContext, TM); 158 159 Mang = new Mangler(OutContext, *TM.getTargetData()); 160 161 // Allow the target to emit any magic that it wants at the start of the file. 162 EmitStartOfAsmFile(M); 163 164 // Very minimal debug info. It is ignored if we emit actual debug info. If we 165 // don't, this at least helps the user find where a global came from. 166 if (MAI->hasSingleParameterDotFile()) { 167 // .file "foo.c" 168 OutStreamer.EmitFileDirective(M.getModuleIdentifier()); 169 } 170 171 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 172 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 173 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I) 174 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I)) 175 MP->beginAssembly(*this); 176 177 // Emit module-level inline asm if it exists. 178 if (!M.getModuleInlineAsm().empty()) { 179 OutStreamer.AddComment("Start of file scope inline assembly"); 180 OutStreamer.AddBlankLine(); 181 EmitInlineAsm(M.getModuleInlineAsm(), 0/*no loc cookie*/); 182 OutStreamer.AddComment("End of file scope inline assembly"); 183 OutStreamer.AddBlankLine(); 184 } 185 186 if (MAI->doesSupportDebugInformation()) 187 DD = new DwarfDebug(this, &M); 188 189 if (MAI->doesSupportExceptionHandling()) 190 DE = new DwarfException(this); 191 192 return false; 193} 194 195void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const { 196 switch ((GlobalValue::LinkageTypes)Linkage) { 197 case GlobalValue::CommonLinkage: 198 case GlobalValue::LinkOnceAnyLinkage: 199 case GlobalValue::LinkOnceODRLinkage: 200 case GlobalValue::WeakAnyLinkage: 201 case GlobalValue::WeakODRLinkage: 202 case GlobalValue::LinkerPrivateLinkage: 203 if (MAI->getWeakDefDirective() != 0) { 204 // .globl _foo 205 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 206 // .weak_definition _foo 207 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition); 208 } else if (MAI->getLinkOnceDirective() != 0) { 209 // .globl _foo 210 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 211 //NOTE: linkonce is handled by the section the symbol was assigned to. 212 } else { 213 // .weak _foo 214 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak); 215 } 216 break; 217 case GlobalValue::DLLExportLinkage: 218 case GlobalValue::AppendingLinkage: 219 // FIXME: appending linkage variables should go into a section of 220 // their name or something. For now, just emit them as external. 221 case GlobalValue::ExternalLinkage: 222 // If external or appending, declare as a global symbol. 223 // .globl _foo 224 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 225 break; 226 case GlobalValue::PrivateLinkage: 227 case GlobalValue::InternalLinkage: 228 break; 229 default: 230 llvm_unreachable("Unknown linkage type!"); 231 } 232} 233 234 235/// EmitGlobalVariable - Emit the specified global variable to the .s file. 236void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) { 237 if (!GV->hasInitializer()) // External globals require no code. 238 return; 239 240 // Check to see if this is a special global used by LLVM, if so, emit it. 241 if (EmitSpecialLLVMGlobal(GV)) 242 return; 243 244 MCSymbol *GVSym = Mang->getSymbol(GV); 245 EmitVisibility(GVSym, GV->getVisibility()); 246 247 if (MAI->hasDotTypeDotSizeDirective()) 248 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject); 249 250 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM); 251 252 const TargetData *TD = TM.getTargetData(); 253 uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType()); 254 255 // If the alignment is specified, we *must* obey it. Overaligning a global 256 // with a specified alignment is a prompt way to break globals emitted to 257 // sections and expected to be contiguous (e.g. ObjC metadata). 258 unsigned AlignLog = getGVAlignmentLog2(GV, *TD); 259 260 // Handle common and BSS local symbols (.lcomm). 261 if (GVKind.isCommon() || GVKind.isBSSLocal()) { 262 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. 263 264 if (isVerbose()) { 265 WriteAsOperand(OutStreamer.GetCommentOS(), GV, 266 /*PrintType=*/false, GV->getParent()); 267 OutStreamer.GetCommentOS() << '\n'; 268 } 269 270 // Handle common symbols. 271 if (GVKind.isCommon()) { 272 // .comm _foo, 42, 4 273 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog); 274 return; 275 } 276 277 // Handle local BSS symbols. 278 if (MAI->hasMachoZeroFillDirective()) { 279 const MCSection *TheSection = 280 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM); 281 // .zerofill __DATA, __bss, _foo, 400, 5 282 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog); 283 return; 284 } 285 286 if (MAI->hasLCOMMDirective()) { 287 // .lcomm _foo, 42 288 OutStreamer.EmitLocalCommonSymbol(GVSym, Size); 289 return; 290 } 291 292 // .local _foo 293 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local); 294 // .comm _foo, 42, 4 295 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog); 296 return; 297 } 298 299 const MCSection *TheSection = 300 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM); 301 302 // Handle the zerofill directive on darwin, which is a special form of BSS 303 // emission. 304 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) { 305 if (Size == 0) Size = 1; // zerofill of 0 bytes is undefined. 306 307 // .globl _foo 308 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); 309 // .zerofill __DATA, __common, _foo, 400, 5 310 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog); 311 return; 312 } 313 314 // Handle the tbss directive on darwin which is a thread local bss directive 315 // like zerofill. 316 if (GVKind.isThreadBSS() && MAI->hasMachoTBSSDirective()) { 317 OutStreamer.EmitTBSSSymbol(TheSection, GVSym, Size, 1 << AlignLog); 318 return; 319 } 320 321 OutStreamer.SwitchSection(TheSection); 322 323 EmitLinkage(GV->getLinkage(), GVSym); 324 EmitAlignment(AlignLog, GV); 325 326 if (isVerbose()) { 327 WriteAsOperand(OutStreamer.GetCommentOS(), GV, 328 /*PrintType=*/false, GV->getParent()); 329 OutStreamer.GetCommentOS() << '\n'; 330 } 331 OutStreamer.EmitLabel(GVSym); 332 333 EmitGlobalConstant(GV->getInitializer()); 334 335 if (MAI->hasDotTypeDotSizeDirective()) 336 // .size foo, 42 337 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext)); 338 339 OutStreamer.AddBlankLine(); 340} 341 342/// EmitFunctionHeader - This method emits the header for the current 343/// function. 344void AsmPrinter::EmitFunctionHeader() { 345 // Print out constants referenced by the function 346 EmitConstantPool(); 347 348 // Print the 'header' of function. 349 const Function *F = MF->getFunction(); 350 351 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM)); 352 EmitVisibility(CurrentFnSym, F->getVisibility()); 353 354 EmitLinkage(F->getLinkage(), CurrentFnSym); 355 EmitAlignment(MF->getAlignment(), F); 356 357 if (MAI->hasDotTypeDotSizeDirective()) 358 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction); 359 360 if (isVerbose()) { 361 WriteAsOperand(OutStreamer.GetCommentOS(), F, 362 /*PrintType=*/false, F->getParent()); 363 OutStreamer.GetCommentOS() << '\n'; 364 } 365 366 // Emit the CurrentFnSym. This is a virtual function to allow targets to 367 // do their wild and crazy things as required. 368 EmitFunctionEntryLabel(); 369 370 // If the function had address-taken blocks that got deleted, then we have 371 // references to the dangling symbols. Emit them at the start of the function 372 // so that we don't get references to undefined symbols. 373 std::vector<MCSymbol*> DeadBlockSyms; 374 MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms); 375 for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) { 376 OutStreamer.AddComment("Address taken block that was later removed"); 377 OutStreamer.EmitLabel(DeadBlockSyms[i]); 378 } 379 380 // Add some workaround for linkonce linkage on Cygwin\MinGW. 381 if (MAI->getLinkOnceDirective() != 0 && 382 (F->hasLinkOnceLinkage() || F->hasWeakLinkage())) { 383 // FIXME: What is this? 384 MCSymbol *FakeStub = 385 OutContext.GetOrCreateSymbol(Twine("Lllvm$workaround$fake$stub$")+ 386 CurrentFnSym->getName()); 387 OutStreamer.EmitLabel(FakeStub); 388 } 389 390 // Emit pre-function debug and/or EH information. 391 if (DE) { 392 if (TimePassesIsEnabled) { 393 NamedRegionTimer T(EHTimerName, DWARFGroupName); 394 DE->BeginFunction(MF); 395 } else { 396 DE->BeginFunction(MF); 397 } 398 } 399 if (DD) { 400 if (TimePassesIsEnabled) { 401 NamedRegionTimer T(DbgTimerName, DWARFGroupName); 402 DD->beginFunction(MF); 403 } else { 404 DD->beginFunction(MF); 405 } 406 } 407} 408 409/// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the 410/// function. This can be overridden by targets as required to do custom stuff. 411void AsmPrinter::EmitFunctionEntryLabel() { 412 // The function label could have already been emitted if two symbols end up 413 // conflicting due to asm renaming. Detect this and emit an error. 414 if (CurrentFnSym->isUndefined()) 415 return OutStreamer.EmitLabel(CurrentFnSym); 416 417 report_fatal_error("'" + Twine(CurrentFnSym->getName()) + 418 "' label emitted multiple times to assembly file"); 419} 420 421 422/// EmitComments - Pretty-print comments for instructions. 423static void EmitComments(const MachineInstr &MI, raw_ostream &CommentOS) { 424 const MachineFunction *MF = MI.getParent()->getParent(); 425 const TargetMachine &TM = MF->getTarget(); 426 427 DebugLoc DL = MI.getDebugLoc(); 428 if (!DL.isUnknown()) { // Print source line info. 429 DIScope Scope(DL.getScope(MF->getFunction()->getContext())); 430 // Omit the directory, because it's likely to be long and uninteresting. 431 if (Scope.Verify()) 432 CommentOS << Scope.getFilename(); 433 else 434 CommentOS << "<unknown>"; 435 CommentOS << ':' << DL.getLine(); 436 if (DL.getCol() != 0) 437 CommentOS << ':' << DL.getCol(); 438 CommentOS << '\n'; 439 } 440 441 // Check for spills and reloads 442 int FI; 443 444 const MachineFrameInfo *FrameInfo = MF->getFrameInfo(); 445 446 // We assume a single instruction only has a spill or reload, not 447 // both. 448 const MachineMemOperand *MMO; 449 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) { 450 if (FrameInfo->isSpillSlotObjectIndex(FI)) { 451 MMO = *MI.memoperands_begin(); 452 CommentOS << MMO->getSize() << "-byte Reload\n"; 453 } 454 } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) { 455 if (FrameInfo->isSpillSlotObjectIndex(FI)) 456 CommentOS << MMO->getSize() << "-byte Folded Reload\n"; 457 } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) { 458 if (FrameInfo->isSpillSlotObjectIndex(FI)) { 459 MMO = *MI.memoperands_begin(); 460 CommentOS << MMO->getSize() << "-byte Spill\n"; 461 } 462 } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) { 463 if (FrameInfo->isSpillSlotObjectIndex(FI)) 464 CommentOS << MMO->getSize() << "-byte Folded Spill\n"; 465 } 466 467 // Check for spill-induced copies 468 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx; 469 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg, 470 SrcSubIdx, DstSubIdx)) { 471 if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse)) 472 CommentOS << " Reload Reuse\n"; 473 } 474} 475 476/// EmitImplicitDef - This method emits the specified machine instruction 477/// that is an implicit def. 478static void EmitImplicitDef(const MachineInstr *MI, AsmPrinter &AP) { 479 unsigned RegNo = MI->getOperand(0).getReg(); 480 AP.OutStreamer.AddComment(Twine("implicit-def: ") + 481 AP.TM.getRegisterInfo()->getName(RegNo)); 482 AP.OutStreamer.AddBlankLine(); 483} 484 485static void EmitKill(const MachineInstr *MI, AsmPrinter &AP) { 486 std::string Str = "kill:"; 487 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 488 const MachineOperand &Op = MI->getOperand(i); 489 assert(Op.isReg() && "KILL instruction must have only register operands"); 490 Str += ' '; 491 Str += AP.TM.getRegisterInfo()->getName(Op.getReg()); 492 Str += (Op.isDef() ? "<def>" : "<kill>"); 493 } 494 AP.OutStreamer.AddComment(Str); 495 AP.OutStreamer.AddBlankLine(); 496} 497 498/// EmitDebugValueComment - This method handles the target-independent form 499/// of DBG_VALUE, returning true if it was able to do so. A false return 500/// means the target will need to handle MI in EmitInstruction. 501static bool EmitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { 502 // This code handles only the 3-operand target-independent form. 503 if (MI->getNumOperands() != 3) 504 return false; 505 506 SmallString<128> Str; 507 raw_svector_ostream OS(Str); 508 OS << '\t' << AP.MAI->getCommentString() << "DEBUG_VALUE: "; 509 510 // cast away const; DIetc do not take const operands for some reason. 511 DIVariable V(const_cast<MDNode*>(MI->getOperand(2).getMetadata())); 512 if (V.getContext().isSubprogram()) 513 OS << DISubprogram(V.getContext()).getDisplayName() << ":"; 514 OS << V.getName() << " <- "; 515 516 // Register or immediate value. Register 0 means undef. 517 if (MI->getOperand(0).isFPImm()) { 518 APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF()); 519 if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) { 520 OS << (double)APF.convertToFloat(); 521 } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) { 522 OS << APF.convertToDouble(); 523 } else { 524 // There is no good way to print long double. Convert a copy to 525 // double. Ah well, it's only a comment. 526 bool ignored; 527 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, 528 &ignored); 529 OS << "(long double) " << APF.convertToDouble(); 530 } 531 } else if (MI->getOperand(0).isImm()) { 532 OS << MI->getOperand(0).getImm(); 533 } else { 534 assert(MI->getOperand(0).isReg() && "Unknown operand type"); 535 if (MI->getOperand(0).getReg() == 0) { 536 // Suppress offset, it is not meaningful here. 537 OS << "undef"; 538 // NOTE: Want this comment at start of line, don't emit with AddComment. 539 AP.OutStreamer.EmitRawText(OS.str()); 540 return true; 541 } 542 OS << AP.TM.getRegisterInfo()->getName(MI->getOperand(0).getReg()); 543 } 544 545 OS << '+' << MI->getOperand(1).getImm(); 546 // NOTE: Want this comment at start of line, don't emit with AddComment. 547 AP.OutStreamer.EmitRawText(OS.str()); 548 return true; 549} 550 551/// EmitFunctionBody - This method emits the body and trailer for a 552/// function. 553void AsmPrinter::EmitFunctionBody() { 554 // Emit target-specific gunk before the function body. 555 EmitFunctionBodyStart(); 556 557 bool ShouldPrintDebugScopes = DD && MMI->hasDebugInfo(); 558 559 // Print out code for the function. 560 bool HasAnyRealCode = false; 561 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); 562 I != E; ++I) { 563 // Print a label for the basic block. 564 EmitBasicBlockStart(I); 565 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); 566 II != IE; ++II) { 567 // Print the assembly for the instruction. 568 if (!II->isLabel() && !II->isImplicitDef() && !II->isKill() && 569 !II->isDebugValue()) { 570 HasAnyRealCode = true; 571 ++EmittedInsts; 572 } 573 574 if (ShouldPrintDebugScopes) { 575 if (TimePassesIsEnabled) { 576 NamedRegionTimer T(DbgTimerName, DWARFGroupName); 577 DD->beginScope(II); 578 } else { 579 DD->beginScope(II); 580 } 581 } 582 583 if (isVerbose()) 584 EmitComments(*II, OutStreamer.GetCommentOS()); 585 586 switch (II->getOpcode()) { 587 case TargetOpcode::DBG_LABEL: 588 case TargetOpcode::EH_LABEL: 589 case TargetOpcode::GC_LABEL: 590 OutStreamer.EmitLabel(II->getOperand(0).getMCSymbol()); 591 break; 592 case TargetOpcode::INLINEASM: 593 EmitInlineAsm(II); 594 break; 595 case TargetOpcode::DBG_VALUE: 596 if (isVerbose()) { 597 if (!EmitDebugValueComment(II, *this)) 598 EmitInstruction(II); 599 } 600 break; 601 case TargetOpcode::IMPLICIT_DEF: 602 if (isVerbose()) EmitImplicitDef(II, *this); 603 break; 604 case TargetOpcode::KILL: 605 if (isVerbose()) EmitKill(II, *this); 606 break; 607 default: 608 EmitInstruction(II); 609 break; 610 } 611 612 if (ShouldPrintDebugScopes) { 613 if (TimePassesIsEnabled) { 614 NamedRegionTimer T(DbgTimerName, DWARFGroupName); 615 DD->endScope(II); 616 } else { 617 DD->endScope(II); 618 } 619 } 620 } 621 } 622 623 // If the function is empty and the object file uses .subsections_via_symbols, 624 // then we need to emit *something* to the function body to prevent the 625 // labels from collapsing together. Just emit a noop. 626 if (MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) { 627 MCInst Noop; 628 TM.getInstrInfo()->getNoopForMachoTarget(Noop); 629 if (Noop.getOpcode()) { 630 OutStreamer.AddComment("avoids zero-length function"); 631 OutStreamer.EmitInstruction(Noop); 632 } else // Target not mc-ized yet. 633 OutStreamer.EmitRawText(StringRef("\tnop\n")); 634 } 635 636 // Emit target-specific gunk after the function body. 637 EmitFunctionBodyEnd(); 638 639 // If the target wants a .size directive for the size of the function, emit 640 // it. 641 if (MAI->hasDotTypeDotSizeDirective()) { 642 // Create a symbol for the end of function, so we can get the size as 643 // difference between the function label and the temp label. 644 MCSymbol *FnEndLabel = OutContext.CreateTempSymbol(); 645 OutStreamer.EmitLabel(FnEndLabel); 646 647 const MCExpr *SizeExp = 648 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext), 649 MCSymbolRefExpr::Create(CurrentFnSym, OutContext), 650 OutContext); 651 OutStreamer.EmitELFSize(CurrentFnSym, SizeExp); 652 } 653 654 // Emit post-function debug information. 655 if (DD) { 656 if (TimePassesIsEnabled) { 657 NamedRegionTimer T(DbgTimerName, DWARFGroupName); 658 DD->endFunction(MF); 659 } else { 660 DD->endFunction(MF); 661 } 662 } 663 if (DE) { 664 if (TimePassesIsEnabled) { 665 NamedRegionTimer T(EHTimerName, DWARFGroupName); 666 DE->EndFunction(); 667 } else { 668 DE->EndFunction(); 669 } 670 } 671 MMI->EndFunction(); 672 673 // Print out jump tables referenced by the function. 674 EmitJumpTableInfo(); 675 676 OutStreamer.AddBlankLine(); 677} 678 679/// getDebugValueLocation - Get location information encoded by DBG_VALUE 680/// operands. 681MachineLocation AsmPrinter::getDebugValueLocation(const MachineInstr *MI) const { 682 // Target specific DBG_VALUE instructions are handled by each target. 683 return MachineLocation(); 684} 685 686bool AsmPrinter::doFinalization(Module &M) { 687 // Emit global variables. 688 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); 689 I != E; ++I) 690 EmitGlobalVariable(I); 691 692 // Finalize debug and EH information. 693 if (DE) { 694 if (TimePassesIsEnabled) { 695 NamedRegionTimer T(EHTimerName, DWARFGroupName); 696 DE->EndModule(); 697 } else { 698 DE->EndModule(); 699 } 700 delete DE; DE = 0; 701 } 702 if (DD) { 703 if (TimePassesIsEnabled) { 704 NamedRegionTimer T(DbgTimerName, DWARFGroupName); 705 DD->endModule(); 706 } else { 707 DD->endModule(); 708 } 709 delete DD; DD = 0; 710 } 711 712 // If the target wants to know about weak references, print them all. 713 if (MAI->getWeakRefDirective()) { 714 // FIXME: This is not lazy, it would be nice to only print weak references 715 // to stuff that is actually used. Note that doing so would require targets 716 // to notice uses in operands (due to constant exprs etc). This should 717 // happen with the MC stuff eventually. 718 719 // Print out module-level global variables here. 720 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); 721 I != E; ++I) { 722 if (!I->hasExternalWeakLinkage()) continue; 723 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference); 724 } 725 726 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { 727 if (!I->hasExternalWeakLinkage()) continue; 728 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference); 729 } 730 } 731 732 if (MAI->hasSetDirective()) { 733 OutStreamer.AddBlankLine(); 734 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); 735 I != E; ++I) { 736 MCSymbol *Name = Mang->getSymbol(I); 737 738 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal()); 739 MCSymbol *Target = Mang->getSymbol(GV); 740 741 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective()) 742 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global); 743 else if (I->hasWeakLinkage()) 744 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference); 745 else 746 assert(I->hasLocalLinkage() && "Invalid alias linkage"); 747 748 EmitVisibility(Name, I->getVisibility()); 749 750 // Emit the directives as assignments aka .set: 751 OutStreamer.EmitAssignment(Name, 752 MCSymbolRefExpr::Create(Target, OutContext)); 753 } 754 } 755 756 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 757 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 758 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; ) 759 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I)) 760 MP->finishAssembly(*this); 761 762 // If we don't have any trampolines, then we don't require stack memory 763 // to be executable. Some targets have a directive to declare this. 764 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline"); 765 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty()) 766 if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext)) 767 OutStreamer.SwitchSection(S); 768 769 // Allow the target to emit any magic that it wants at the end of the file, 770 // after everything else has gone out. 771 EmitEndOfAsmFile(M); 772 773 delete Mang; Mang = 0; 774 MMI = 0; 775 776 OutStreamer.Finish(); 777 return false; 778} 779 780void AsmPrinter::SetupMachineFunction(MachineFunction &MF) { 781 this->MF = &MF; 782 // Get the function symbol. 783 CurrentFnSym = Mang->getSymbol(MF.getFunction()); 784 785 if (isVerbose()) 786 LI = &getAnalysis<MachineLoopInfo>(); 787} 788 789namespace { 790 // SectionCPs - Keep track the alignment, constpool entries per Section. 791 struct SectionCPs { 792 const MCSection *S; 793 unsigned Alignment; 794 SmallVector<unsigned, 4> CPEs; 795 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {} 796 }; 797} 798 799/// EmitConstantPool - Print to the current output stream assembly 800/// representations of the constants in the constant pool MCP. This is 801/// used to print out constants which have been "spilled to memory" by 802/// the code generator. 803/// 804void AsmPrinter::EmitConstantPool() { 805 const MachineConstantPool *MCP = MF->getConstantPool(); 806 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); 807 if (CP.empty()) return; 808 809 // Calculate sections for constant pool entries. We collect entries to go into 810 // the same section together to reduce amount of section switch statements. 811 SmallVector<SectionCPs, 4> CPSections; 812 for (unsigned i = 0, e = CP.size(); i != e; ++i) { 813 const MachineConstantPoolEntry &CPE = CP[i]; 814 unsigned Align = CPE.getAlignment(); 815 816 SectionKind Kind; 817 switch (CPE.getRelocationInfo()) { 818 default: llvm_unreachable("Unknown section kind"); 819 case 2: Kind = SectionKind::getReadOnlyWithRel(); break; 820 case 1: 821 Kind = SectionKind::getReadOnlyWithRelLocal(); 822 break; 823 case 0: 824 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) { 825 case 4: Kind = SectionKind::getMergeableConst4(); break; 826 case 8: Kind = SectionKind::getMergeableConst8(); break; 827 case 16: Kind = SectionKind::getMergeableConst16();break; 828 default: Kind = SectionKind::getMergeableConst(); break; 829 } 830 } 831 832 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind); 833 834 // The number of sections are small, just do a linear search from the 835 // last section to the first. 836 bool Found = false; 837 unsigned SecIdx = CPSections.size(); 838 while (SecIdx != 0) { 839 if (CPSections[--SecIdx].S == S) { 840 Found = true; 841 break; 842 } 843 } 844 if (!Found) { 845 SecIdx = CPSections.size(); 846 CPSections.push_back(SectionCPs(S, Align)); 847 } 848 849 if (Align > CPSections[SecIdx].Alignment) 850 CPSections[SecIdx].Alignment = Align; 851 CPSections[SecIdx].CPEs.push_back(i); 852 } 853 854 // Now print stuff into the calculated sections. 855 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) { 856 OutStreamer.SwitchSection(CPSections[i].S); 857 EmitAlignment(Log2_32(CPSections[i].Alignment)); 858 859 unsigned Offset = 0; 860 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) { 861 unsigned CPI = CPSections[i].CPEs[j]; 862 MachineConstantPoolEntry CPE = CP[CPI]; 863 864 // Emit inter-object padding for alignment. 865 unsigned AlignMask = CPE.getAlignment() - 1; 866 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; 867 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/); 868 869 const Type *Ty = CPE.getType(); 870 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty); 871 872 // Emit the label with a comment on it. 873 if (isVerbose()) { 874 OutStreamer.GetCommentOS() << "constant pool "; 875 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(), 876 MF->getFunction()->getParent()); 877 OutStreamer.GetCommentOS() << '\n'; 878 } 879 OutStreamer.EmitLabel(GetCPISymbol(CPI)); 880 881 if (CPE.isMachineConstantPoolEntry()) 882 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal); 883 else 884 EmitGlobalConstant(CPE.Val.ConstVal); 885 } 886 } 887} 888 889/// EmitJumpTableInfo - Print assembly representations of the jump tables used 890/// by the current function to the current output stream. 891/// 892void AsmPrinter::EmitJumpTableInfo() { 893 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo(); 894 if (MJTI == 0) return; 895 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return; 896 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); 897 if (JT.empty()) return; 898 899 // Pick the directive to use to print the jump table entries, and switch to 900 // the appropriate section. 901 const Function *F = MF->getFunction(); 902 bool JTInDiffSection = false; 903 if (// In PIC mode, we need to emit the jump table to the same section as the 904 // function body itself, otherwise the label differences won't make sense. 905 // FIXME: Need a better predicate for this: what about custom entries? 906 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 || 907 // We should also do if the section name is NULL or function is declared 908 // in discardable section 909 // FIXME: this isn't the right predicate, should be based on the MCSection 910 // for the function. 911 F->isWeakForLinker()) { 912 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM)); 913 } else { 914 // Otherwise, drop it in the readonly section. 915 const MCSection *ReadOnlySection = 916 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly()); 917 OutStreamer.SwitchSection(ReadOnlySection); 918 JTInDiffSection = true; 919 } 920 921 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData()))); 922 923 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) { 924 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; 925 926 // If this jump table was deleted, ignore it. 927 if (JTBBs.empty()) continue; 928 929 // For the EK_LabelDifference32 entry, if the target supports .set, emit a 930 // .set directive for each unique entry. This reduces the number of 931 // relocations the assembler will generate for the jump table. 932 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 && 933 MAI->hasSetDirective()) { 934 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets; 935 const TargetLowering *TLI = TM.getTargetLowering(); 936 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext); 937 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) { 938 const MachineBasicBlock *MBB = JTBBs[ii]; 939 if (!EmittedSets.insert(MBB)) continue; 940 941 // .set LJTSet, LBB32-base 942 const MCExpr *LHS = 943 MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 944 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()), 945 MCBinaryExpr::CreateSub(LHS, Base, OutContext)); 946 } 947 } 948 949 // On some targets (e.g. Darwin) we want to emit two consequtive labels 950 // before each jump table. The first label is never referenced, but tells 951 // the assembler and linker the extents of the jump table object. The 952 // second label is actually referenced by the code. 953 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0]) 954 // FIXME: This doesn't have to have any specific name, just any randomly 955 // named and numbered 'l' label would work. Simplify GetJTISymbol. 956 OutStreamer.EmitLabel(GetJTISymbol(JTI, true)); 957 958 OutStreamer.EmitLabel(GetJTISymbol(JTI)); 959 960 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) 961 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI); 962 } 963} 964 965/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the 966/// current stream. 967void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI, 968 const MachineBasicBlock *MBB, 969 unsigned UID) const { 970 const MCExpr *Value = 0; 971 switch (MJTI->getEntryKind()) { 972 case MachineJumpTableInfo::EK_Inline: 973 llvm_unreachable("Cannot emit EK_Inline jump table entry"); break; 974 case MachineJumpTableInfo::EK_Custom32: 975 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID, 976 OutContext); 977 break; 978 case MachineJumpTableInfo::EK_BlockAddress: 979 // EK_BlockAddress - Each entry is a plain address of block, e.g.: 980 // .word LBB123 981 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 982 break; 983 case MachineJumpTableInfo::EK_GPRel32BlockAddress: { 984 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded 985 // with a relocation as gp-relative, e.g.: 986 // .gprel32 LBB123 987 MCSymbol *MBBSym = MBB->getSymbol(); 988 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext)); 989 return; 990 } 991 992 case MachineJumpTableInfo::EK_LabelDifference32: { 993 // EK_LabelDifference32 - Each entry is the address of the block minus 994 // the address of the jump table. This is used for PIC jump tables where 995 // gprel32 is not supported. e.g.: 996 // .word LBB123 - LJTI1_2 997 // If the .set directive is supported, this is emitted as: 998 // .set L4_5_set_123, LBB123 - LJTI1_2 999 // .word L4_5_set_123 1000 1001 // If we have emitted set directives for the jump table entries, print 1002 // them rather than the entries themselves. If we're emitting PIC, then 1003 // emit the table entries as differences between two text section labels. 1004 if (MAI->hasSetDirective()) { 1005 // If we used .set, reference the .set's symbol. 1006 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()), 1007 OutContext); 1008 break; 1009 } 1010 // Otherwise, use the difference as the jump table entry. 1011 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); 1012 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext); 1013 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext); 1014 break; 1015 } 1016 } 1017 1018 assert(Value && "Unknown entry kind!"); 1019 1020 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData()); 1021 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0); 1022} 1023 1024 1025/// EmitSpecialLLVMGlobal - Check to see if the specified global is a 1026/// special global used by LLVM. If so, emit it and return true, otherwise 1027/// do nothing and return false. 1028bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { 1029 if (GV->getName() == "llvm.used") { 1030 if (MAI->hasNoDeadStrip()) // No need to emit this at all. 1031 EmitLLVMUsedList(GV->getInitializer()); 1032 return true; 1033 } 1034 1035 // Ignore debug and non-emitted data. This handles llvm.compiler.used. 1036 if (GV->getSection() == "llvm.metadata" || 1037 GV->hasAvailableExternallyLinkage()) 1038 return true; 1039 1040 if (!GV->hasAppendingLinkage()) return false; 1041 1042 assert(GV->hasInitializer() && "Not a special LLVM global!"); 1043 1044 const TargetData *TD = TM.getTargetData(); 1045 unsigned Align = Log2_32(TD->getPointerPrefAlignment()); 1046 if (GV->getName() == "llvm.global_ctors") { 1047 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection()); 1048 EmitAlignment(Align); 1049 EmitXXStructorList(GV->getInitializer()); 1050 1051 if (TM.getRelocationModel() == Reloc::Static && 1052 MAI->hasStaticCtorDtorReferenceInStaticMode()) { 1053 StringRef Sym(".constructors_used"); 1054 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), 1055 MCSA_Reference); 1056 } 1057 return true; 1058 } 1059 1060 if (GV->getName() == "llvm.global_dtors") { 1061 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection()); 1062 EmitAlignment(Align); 1063 EmitXXStructorList(GV->getInitializer()); 1064 1065 if (TM.getRelocationModel() == Reloc::Static && 1066 MAI->hasStaticCtorDtorReferenceInStaticMode()) { 1067 StringRef Sym(".destructors_used"); 1068 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), 1069 MCSA_Reference); 1070 } 1071 return true; 1072 } 1073 1074 return false; 1075} 1076 1077/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each 1078/// global in the specified llvm.used list for which emitUsedDirectiveFor 1079/// is true, as being used with this directive. 1080void AsmPrinter::EmitLLVMUsedList(Constant *List) { 1081 // Should be an array of 'i8*'. 1082 ConstantArray *InitList = dyn_cast<ConstantArray>(List); 1083 if (InitList == 0) return; 1084 1085 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { 1086 const GlobalValue *GV = 1087 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts()); 1088 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang)) 1089 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(GV), MCSA_NoDeadStrip); 1090 } 1091} 1092 1093/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the 1094/// function pointers, ignoring the init priority. 1095void AsmPrinter::EmitXXStructorList(Constant *List) { 1096 // Should be an array of '{ int, void ()* }' structs. The first value is the 1097 // init priority, which we ignore. 1098 if (!isa<ConstantArray>(List)) return; 1099 ConstantArray *InitList = cast<ConstantArray>(List); 1100 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) 1101 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){ 1102 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs. 1103 1104 if (CS->getOperand(1)->isNullValue()) 1105 return; // Found a null terminator, exit printing. 1106 // Emit the function pointer. 1107 EmitGlobalConstant(CS->getOperand(1)); 1108 } 1109} 1110 1111//===--------------------------------------------------------------------===// 1112// Emission and print routines 1113// 1114 1115/// EmitInt8 - Emit a byte directive and value. 1116/// 1117void AsmPrinter::EmitInt8(int Value) const { 1118 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/); 1119} 1120 1121/// EmitInt16 - Emit a short directive and value. 1122/// 1123void AsmPrinter::EmitInt16(int Value) const { 1124 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/); 1125} 1126 1127/// EmitInt32 - Emit a long directive and value. 1128/// 1129void AsmPrinter::EmitInt32(int Value) const { 1130 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/); 1131} 1132 1133/// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size 1134/// in bytes of the directive is specified by Size and Hi/Lo specify the 1135/// labels. This implicitly uses .set if it is available. 1136void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo, 1137 unsigned Size) const { 1138 // Get the Hi-Lo expression. 1139 const MCExpr *Diff = 1140 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext), 1141 MCSymbolRefExpr::Create(Lo, OutContext), 1142 OutContext); 1143 1144 if (!MAI->hasSetDirective()) { 1145 OutStreamer.EmitValue(Diff, Size, 0/*AddrSpace*/); 1146 return; 1147 } 1148 1149 // Otherwise, emit with .set (aka assignment). 1150 MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); 1151 OutStreamer.EmitAssignment(SetLabel, Diff); 1152 OutStreamer.EmitSymbolValue(SetLabel, Size, 0/*AddrSpace*/); 1153} 1154 1155/// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo" 1156/// where the size in bytes of the directive is specified by Size and Hi/Lo 1157/// specify the labels. This implicitly uses .set if it is available. 1158void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset, 1159 const MCSymbol *Lo, unsigned Size) 1160 const { 1161 1162 // Emit Hi+Offset - Lo 1163 // Get the Hi+Offset expression. 1164 const MCExpr *Plus = 1165 MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext), 1166 MCConstantExpr::Create(Offset, OutContext), 1167 OutContext); 1168 1169 // Get the Hi+Offset-Lo expression. 1170 const MCExpr *Diff = 1171 MCBinaryExpr::CreateSub(Plus, 1172 MCSymbolRefExpr::Create(Lo, OutContext), 1173 OutContext); 1174 1175 if (!MAI->hasSetDirective()) 1176 OutStreamer.EmitValue(Diff, 4, 0/*AddrSpace*/); 1177 else { 1178 // Otherwise, emit with .set (aka assignment). 1179 MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); 1180 OutStreamer.EmitAssignment(SetLabel, Diff); 1181 OutStreamer.EmitSymbolValue(SetLabel, 4, 0/*AddrSpace*/); 1182 } 1183} 1184 1185 1186//===----------------------------------------------------------------------===// 1187 1188// EmitAlignment - Emit an alignment directive to the specified power of 1189// two boundary. For example, if you pass in 3 here, you will get an 8 1190// byte alignment. If a global value is specified, and if that global has 1191// an explicit alignment requested, it will override the alignment request 1192// if required for correctness. 1193// 1194void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const { 1195 if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getTargetData(), NumBits); 1196 1197 if (NumBits == 0) return; // 1-byte aligned: no need to emit alignment. 1198 1199 if (getCurrentSection()->getKind().isText()) 1200 OutStreamer.EmitCodeAlignment(1 << NumBits); 1201 else 1202 OutStreamer.EmitValueToAlignment(1 << NumBits, 0, 1, 0); 1203} 1204 1205//===----------------------------------------------------------------------===// 1206// Constant emission. 1207//===----------------------------------------------------------------------===// 1208 1209/// LowerConstant - Lower the specified LLVM Constant to an MCExpr. 1210/// 1211static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) { 1212 MCContext &Ctx = AP.OutContext; 1213 1214 if (CV->isNullValue() || isa<UndefValue>(CV)) 1215 return MCConstantExpr::Create(0, Ctx); 1216 1217 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) 1218 return MCConstantExpr::Create(CI->getZExtValue(), Ctx); 1219 1220 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) 1221 return MCSymbolRefExpr::Create(AP.Mang->getSymbol(GV), Ctx); 1222 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) 1223 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx); 1224 1225 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); 1226 if (CE == 0) { 1227 llvm_unreachable("Unknown constant value to lower!"); 1228 return MCConstantExpr::Create(0, Ctx); 1229 } 1230 1231 switch (CE->getOpcode()) { 1232 default: 1233 // If the code isn't optimized, there may be outstanding folding 1234 // opportunities. Attempt to fold the expression using TargetData as a 1235 // last resort before giving up. 1236 if (Constant *C = 1237 ConstantFoldConstantExpression(CE, AP.TM.getTargetData())) 1238 if (C != CE) 1239 return LowerConstant(C, AP); 1240#ifndef NDEBUG 1241 CE->dump(); 1242#endif 1243 llvm_unreachable("FIXME: Don't support this constant expr"); 1244 case Instruction::GetElementPtr: { 1245 const TargetData &TD = *AP.TM.getTargetData(); 1246 // Generate a symbolic expression for the byte address 1247 const Constant *PtrVal = CE->getOperand(0); 1248 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end()); 1249 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0], 1250 IdxVec.size()); 1251 1252 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP); 1253 if (Offset == 0) 1254 return Base; 1255 1256 // Truncate/sext the offset to the pointer size. 1257 if (TD.getPointerSizeInBits() != 64) { 1258 int SExtAmount = 64-TD.getPointerSizeInBits(); 1259 Offset = (Offset << SExtAmount) >> SExtAmount; 1260 } 1261 1262 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx), 1263 Ctx); 1264 } 1265 1266 case Instruction::Trunc: 1267 // We emit the value and depend on the assembler to truncate the generated 1268 // expression properly. This is important for differences between 1269 // blockaddress labels. Since the two labels are in the same function, it 1270 // is reasonable to treat their delta as a 32-bit value. 1271 // FALL THROUGH. 1272 case Instruction::BitCast: 1273 return LowerConstant(CE->getOperand(0), AP); 1274 1275 case Instruction::IntToPtr: { 1276 const TargetData &TD = *AP.TM.getTargetData(); 1277 // Handle casts to pointers by changing them into casts to the appropriate 1278 // integer type. This promotes constant folding and simplifies this code. 1279 Constant *Op = CE->getOperand(0); 1280 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()), 1281 false/*ZExt*/); 1282 return LowerConstant(Op, AP); 1283 } 1284 1285 case Instruction::PtrToInt: { 1286 const TargetData &TD = *AP.TM.getTargetData(); 1287 // Support only foldable casts to/from pointers that can be eliminated by 1288 // changing the pointer to the appropriately sized integer type. 1289 Constant *Op = CE->getOperand(0); 1290 const Type *Ty = CE->getType(); 1291 1292 const MCExpr *OpExpr = LowerConstant(Op, AP); 1293 1294 // We can emit the pointer value into this slot if the slot is an 1295 // integer slot equal to the size of the pointer. 1296 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType())) 1297 return OpExpr; 1298 1299 // Otherwise the pointer is smaller than the resultant integer, mask off 1300 // the high bits so we are sure to get a proper truncation if the input is 1301 // a constant expr. 1302 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); 1303 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx); 1304 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx); 1305 } 1306 1307 // The MC library also has a right-shift operator, but it isn't consistently 1308 // signed or unsigned between different targets. 1309 case Instruction::Add: 1310 case Instruction::Sub: 1311 case Instruction::Mul: 1312 case Instruction::SDiv: 1313 case Instruction::SRem: 1314 case Instruction::Shl: 1315 case Instruction::And: 1316 case Instruction::Or: 1317 case Instruction::Xor: { 1318 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP); 1319 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP); 1320 switch (CE->getOpcode()) { 1321 default: llvm_unreachable("Unknown binary operator constant cast expr"); 1322 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx); 1323 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx); 1324 case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx); 1325 case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx); 1326 case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx); 1327 case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx); 1328 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx); 1329 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx); 1330 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx); 1331 } 1332 } 1333 } 1334} 1335 1336static void EmitGlobalConstantImpl(const Constant *C, unsigned AddrSpace, 1337 AsmPrinter &AP); 1338 1339static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace, 1340 AsmPrinter &AP) { 1341 if (AddrSpace != 0 || !CA->isString()) { 1342 // Not a string. Print the values in successive locations 1343 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) 1344 EmitGlobalConstantImpl(CA->getOperand(i), AddrSpace, AP); 1345 return; 1346 } 1347 1348 // Otherwise, it can be emitted as .ascii. 1349 SmallVector<char, 128> TmpVec; 1350 TmpVec.reserve(CA->getNumOperands()); 1351 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) 1352 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue()); 1353 1354 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace); 1355} 1356 1357static void EmitGlobalConstantVector(const ConstantVector *CV, 1358 unsigned AddrSpace, AsmPrinter &AP) { 1359 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) 1360 EmitGlobalConstantImpl(CV->getOperand(i), AddrSpace, AP); 1361} 1362 1363static void EmitGlobalConstantStruct(const ConstantStruct *CS, 1364 unsigned AddrSpace, AsmPrinter &AP) { 1365 // Print the fields in successive locations. Pad to align if needed! 1366 const TargetData *TD = AP.TM.getTargetData(); 1367 unsigned Size = TD->getTypeAllocSize(CS->getType()); 1368 const StructLayout *Layout = TD->getStructLayout(CS->getType()); 1369 uint64_t SizeSoFar = 0; 1370 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) { 1371 const Constant *Field = CS->getOperand(i); 1372 1373 // Check if padding is needed and insert one or more 0s. 1374 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType()); 1375 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1)) 1376 - Layout->getElementOffset(i)) - FieldSize; 1377 SizeSoFar += FieldSize + PadSize; 1378 1379 // Now print the actual field value. 1380 EmitGlobalConstantImpl(Field, AddrSpace, AP); 1381 1382 // Insert padding - this may include padding to increase the size of the 1383 // current field up to the ABI size (if the struct is not packed) as well 1384 // as padding to ensure that the next field starts at the right offset. 1385 AP.OutStreamer.EmitZeros(PadSize, AddrSpace); 1386 } 1387 assert(SizeSoFar == Layout->getSizeInBytes() && 1388 "Layout of constant struct may be incorrect!"); 1389} 1390 1391static void EmitGlobalConstantUnion(const ConstantUnion *CU, 1392 unsigned AddrSpace, AsmPrinter &AP) { 1393 const TargetData *TD = AP.TM.getTargetData(); 1394 unsigned Size = TD->getTypeAllocSize(CU->getType()); 1395 1396 const Constant *Contents = CU->getOperand(0); 1397 unsigned FilledSize = TD->getTypeAllocSize(Contents->getType()); 1398 1399 // Print the actually filled part 1400 EmitGlobalConstantImpl(Contents, AddrSpace, AP); 1401 1402 // And pad with enough zeroes 1403 AP.OutStreamer.EmitZeros(Size-FilledSize, AddrSpace); 1404} 1405 1406static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace, 1407 AsmPrinter &AP) { 1408 // FP Constants are printed as integer constants to avoid losing 1409 // precision. 1410 if (CFP->getType()->isDoubleTy()) { 1411 if (AP.isVerbose()) { 1412 double Val = CFP->getValueAPF().convertToDouble(); 1413 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n'; 1414 } 1415 1416 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); 1417 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace); 1418 return; 1419 } 1420 1421 if (CFP->getType()->isFloatTy()) { 1422 if (AP.isVerbose()) { 1423 float Val = CFP->getValueAPF().convertToFloat(); 1424 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n'; 1425 } 1426 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); 1427 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace); 1428 return; 1429 } 1430 1431 if (CFP->getType()->isX86_FP80Ty()) { 1432 // all long double variants are printed as hex 1433 // API needed to prevent premature destruction 1434 APInt API = CFP->getValueAPF().bitcastToAPInt(); 1435 const uint64_t *p = API.getRawData(); 1436 if (AP.isVerbose()) { 1437 // Convert to double so we can print the approximate val as a comment. 1438 APFloat DoubleVal = CFP->getValueAPF(); 1439 bool ignored; 1440 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, 1441 &ignored); 1442 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= " 1443 << DoubleVal.convertToDouble() << '\n'; 1444 } 1445 1446 if (AP.TM.getTargetData()->isBigEndian()) { 1447 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace); 1448 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace); 1449 } else { 1450 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace); 1451 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace); 1452 } 1453 1454 // Emit the tail padding for the long double. 1455 const TargetData &TD = *AP.TM.getTargetData(); 1456 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) - 1457 TD.getTypeStoreSize(CFP->getType()), AddrSpace); 1458 return; 1459 } 1460 1461 assert(CFP->getType()->isPPC_FP128Ty() && 1462 "Floating point constant type not handled"); 1463 // All long double variants are printed as hex 1464 // API needed to prevent premature destruction. 1465 APInt API = CFP->getValueAPF().bitcastToAPInt(); 1466 const uint64_t *p = API.getRawData(); 1467 if (AP.TM.getTargetData()->isBigEndian()) { 1468 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace); 1469 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace); 1470 } else { 1471 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace); 1472 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace); 1473 } 1474} 1475 1476static void EmitGlobalConstantLargeInt(const ConstantInt *CI, 1477 unsigned AddrSpace, AsmPrinter &AP) { 1478 const TargetData *TD = AP.TM.getTargetData(); 1479 unsigned BitWidth = CI->getBitWidth(); 1480 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits"); 1481 1482 // We don't expect assemblers to support integer data directives 1483 // for more than 64 bits, so we emit the data in at most 64-bit 1484 // quantities at a time. 1485 const uint64_t *RawData = CI->getValue().getRawData(); 1486 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) { 1487 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i]; 1488 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace); 1489 } 1490} 1491 1492static void EmitGlobalConstantImpl(const Constant *CV, unsigned AddrSpace, 1493 AsmPrinter &AP) { 1494 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) { 1495 uint64_t Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType()); 1496 return AP.OutStreamer.EmitZeros(Size, AddrSpace); 1497 } 1498 1499 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { 1500 unsigned Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType()); 1501 switch (Size) { 1502 case 1: 1503 case 2: 1504 case 4: 1505 case 8: 1506 if (AP.isVerbose()) 1507 AP.OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue()); 1508 AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace); 1509 return; 1510 default: 1511 EmitGlobalConstantLargeInt(CI, AddrSpace, AP); 1512 return; 1513 } 1514 } 1515 1516 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) 1517 return EmitGlobalConstantArray(CVA, AddrSpace, AP); 1518 1519 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) 1520 return EmitGlobalConstantStruct(CVS, AddrSpace, AP); 1521 1522 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) 1523 return EmitGlobalConstantFP(CFP, AddrSpace, AP); 1524 1525 if (isa<ConstantPointerNull>(CV)) { 1526 unsigned Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType()); 1527 AP.OutStreamer.EmitIntValue(0, Size, AddrSpace); 1528 return; 1529 } 1530 1531 if (const ConstantUnion *CVU = dyn_cast<ConstantUnion>(CV)) 1532 return EmitGlobalConstantUnion(CVU, AddrSpace, AP); 1533 1534 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV)) 1535 return EmitGlobalConstantVector(V, AddrSpace, AP); 1536 1537 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it 1538 // thread the streamer with EmitValue. 1539 AP.OutStreamer.EmitValue(LowerConstant(CV, AP), 1540 AP.TM.getTargetData()->getTypeAllocSize(CV->getType()), 1541 AddrSpace); 1542} 1543 1544/// EmitGlobalConstant - Print a general LLVM constant to the .s file. 1545void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) { 1546 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType()); 1547 if (Size) 1548 EmitGlobalConstantImpl(CV, AddrSpace, *this); 1549 else if (MAI->hasSubsectionsViaSymbols()) { 1550 // If the global has zero size, emit a single byte so that two labels don't 1551 // look like they are at the same location. 1552 OutStreamer.EmitIntValue(0, 1, AddrSpace); 1553 } 1554} 1555 1556void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { 1557 // Target doesn't support this yet! 1558 llvm_unreachable("Target does not support EmitMachineConstantPoolValue"); 1559} 1560 1561void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { 1562 if (Offset > 0) 1563 OS << '+' << Offset; 1564 else if (Offset < 0) 1565 OS << Offset; 1566} 1567 1568//===----------------------------------------------------------------------===// 1569// Symbol Lowering Routines. 1570//===----------------------------------------------------------------------===// 1571 1572/// GetTempSymbol - Return the MCSymbol corresponding to the assembler 1573/// temporary label with the specified stem and unique ID. 1574MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const { 1575 return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + 1576 Name + Twine(ID)); 1577} 1578 1579/// GetTempSymbol - Return an assembler temporary label with the specified 1580/// stem. 1581MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name) const { 1582 return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix())+ 1583 Name); 1584} 1585 1586 1587MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const { 1588 return MMI->getAddrLabelSymbol(BA->getBasicBlock()); 1589} 1590 1591MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const { 1592 return MMI->getAddrLabelSymbol(BB); 1593} 1594 1595/// GetCPISymbol - Return the symbol for the specified constant pool entry. 1596MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const { 1597 return OutContext.GetOrCreateSymbol 1598 (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber()) 1599 + "_" + Twine(CPID)); 1600} 1601 1602/// GetJTISymbol - Return the symbol for the specified jump table entry. 1603MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const { 1604 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate); 1605} 1606 1607/// GetJTSetSymbol - Return the symbol for the specified jump table .set 1608/// FIXME: privatize to AsmPrinter. 1609MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { 1610 return OutContext.GetOrCreateSymbol 1611 (Twine(MAI->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" + 1612 Twine(UID) + "_set_" + Twine(MBBID)); 1613} 1614 1615/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with 1616/// global value name as its base, with the specified suffix, and where the 1617/// symbol is forced to have private linkage if ForcePrivate is true. 1618MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV, 1619 StringRef Suffix, 1620 bool ForcePrivate) const { 1621 SmallString<60> NameStr; 1622 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate); 1623 NameStr.append(Suffix.begin(), Suffix.end()); 1624 return OutContext.GetOrCreateSymbol(NameStr.str()); 1625} 1626 1627/// GetExternalSymbolSymbol - Return the MCSymbol for the specified 1628/// ExternalSymbol. 1629MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const { 1630 SmallString<60> NameStr; 1631 Mang->getNameWithPrefix(NameStr, Sym); 1632 return OutContext.GetOrCreateSymbol(NameStr.str()); 1633} 1634 1635 1636 1637/// PrintParentLoopComment - Print comments about parent loops of this one. 1638static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop, 1639 unsigned FunctionNumber) { 1640 if (Loop == 0) return; 1641 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber); 1642 OS.indent(Loop->getLoopDepth()*2) 1643 << "Parent Loop BB" << FunctionNumber << "_" 1644 << Loop->getHeader()->getNumber() 1645 << " Depth=" << Loop->getLoopDepth() << '\n'; 1646} 1647 1648 1649/// PrintChildLoopComment - Print comments about child loops within 1650/// the loop for this basic block, with nesting. 1651static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop, 1652 unsigned FunctionNumber) { 1653 // Add child loop information 1654 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){ 1655 OS.indent((*CL)->getLoopDepth()*2) 1656 << "Child Loop BB" << FunctionNumber << "_" 1657 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth() 1658 << '\n'; 1659 PrintChildLoopComment(OS, *CL, FunctionNumber); 1660 } 1661} 1662 1663/// EmitBasicBlockLoopComments - Pretty-print comments for basic blocks. 1664static void EmitBasicBlockLoopComments(const MachineBasicBlock &MBB, 1665 const MachineLoopInfo *LI, 1666 const AsmPrinter &AP) { 1667 // Add loop depth information 1668 const MachineLoop *Loop = LI->getLoopFor(&MBB); 1669 if (Loop == 0) return; 1670 1671 MachineBasicBlock *Header = Loop->getHeader(); 1672 assert(Header && "No header for loop"); 1673 1674 // If this block is not a loop header, just print out what is the loop header 1675 // and return. 1676 if (Header != &MBB) { 1677 AP.OutStreamer.AddComment(" in Loop: Header=BB" + 1678 Twine(AP.getFunctionNumber())+"_" + 1679 Twine(Loop->getHeader()->getNumber())+ 1680 " Depth="+Twine(Loop->getLoopDepth())); 1681 return; 1682 } 1683 1684 // Otherwise, it is a loop header. Print out information about child and 1685 // parent loops. 1686 raw_ostream &OS = AP.OutStreamer.GetCommentOS(); 1687 1688 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber()); 1689 1690 OS << "=>"; 1691 OS.indent(Loop->getLoopDepth()*2-2); 1692 1693 OS << "This "; 1694 if (Loop->empty()) 1695 OS << "Inner "; 1696 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; 1697 1698 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber()); 1699} 1700 1701 1702/// EmitBasicBlockStart - This method prints the label for the specified 1703/// MachineBasicBlock, an alignment (if present) and a comment describing 1704/// it if appropriate. 1705void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const { 1706 // Emit an alignment directive for this block, if needed. 1707 if (unsigned Align = MBB->getAlignment()) 1708 EmitAlignment(Log2_32(Align)); 1709 1710 // If the block has its address taken, emit any labels that were used to 1711 // reference the block. It is possible that there is more than one label 1712 // here, because multiple LLVM BB's may have been RAUW'd to this block after 1713 // the references were generated. 1714 if (MBB->hasAddressTaken()) { 1715 const BasicBlock *BB = MBB->getBasicBlock(); 1716 if (isVerbose()) 1717 OutStreamer.AddComment("Block address taken"); 1718 1719 std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB); 1720 1721 for (unsigned i = 0, e = Syms.size(); i != e; ++i) 1722 OutStreamer.EmitLabel(Syms[i]); 1723 } 1724 1725 // Print the main label for the block. 1726 if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) { 1727 if (isVerbose() && OutStreamer.hasRawTextSupport()) { 1728 if (const BasicBlock *BB = MBB->getBasicBlock()) 1729 if (BB->hasName()) 1730 OutStreamer.AddComment("%" + BB->getName()); 1731 1732 EmitBasicBlockLoopComments(*MBB, LI, *this); 1733 1734 // NOTE: Want this comment at start of line, don't emit with AddComment. 1735 OutStreamer.EmitRawText(Twine(MAI->getCommentString()) + " BB#" + 1736 Twine(MBB->getNumber()) + ":"); 1737 } 1738 } else { 1739 if (isVerbose()) { 1740 if (const BasicBlock *BB = MBB->getBasicBlock()) 1741 if (BB->hasName()) 1742 OutStreamer.AddComment("%" + BB->getName()); 1743 EmitBasicBlockLoopComments(*MBB, LI, *this); 1744 } 1745 1746 OutStreamer.EmitLabel(MBB->getSymbol()); 1747 } 1748} 1749 1750void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility) const { 1751 MCSymbolAttr Attr = MCSA_Invalid; 1752 1753 switch (Visibility) { 1754 default: break; 1755 case GlobalValue::HiddenVisibility: 1756 Attr = MAI->getHiddenVisibilityAttr(); 1757 break; 1758 case GlobalValue::ProtectedVisibility: 1759 Attr = MAI->getProtectedVisibilityAttr(); 1760 break; 1761 } 1762 1763 if (Attr != MCSA_Invalid) 1764 OutStreamer.EmitSymbolAttribute(Sym, Attr); 1765} 1766 1767/// isBlockOnlyReachableByFallthough - Return true if the basic block has 1768/// exactly one predecessor and the control transfer mechanism between 1769/// the predecessor and this block is a fall-through. 1770bool AsmPrinter:: 1771isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const { 1772 // If this is a landing pad, it isn't a fall through. If it has no preds, 1773 // then nothing falls through to it. 1774 if (MBB->isLandingPad() || MBB->pred_empty()) 1775 return false; 1776 1777 // If there isn't exactly one predecessor, it can't be a fall through. 1778 MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI; 1779 ++PI2; 1780 if (PI2 != MBB->pred_end()) 1781 return false; 1782 1783 // The predecessor has to be immediately before this block. 1784 const MachineBasicBlock *Pred = *PI; 1785 1786 if (!Pred->isLayoutSuccessor(MBB)) 1787 return false; 1788 1789 // If the block is completely empty, then it definitely does fall through. 1790 if (Pred->empty()) 1791 return true; 1792 1793 // Otherwise, check the last instruction. 1794 const MachineInstr &LastInst = Pred->back(); 1795 return !LastInst.getDesc().isBarrier(); 1796} 1797 1798 1799 1800GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) { 1801 if (!S->usesMetadata()) 1802 return 0; 1803 1804 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 1805 gcp_map_type::iterator GCPI = GCMap.find(S); 1806 if (GCPI != GCMap.end()) 1807 return GCPI->second; 1808 1809 const char *Name = S->getName().c_str(); 1810 1811 for (GCMetadataPrinterRegistry::iterator 1812 I = GCMetadataPrinterRegistry::begin(), 1813 E = GCMetadataPrinterRegistry::end(); I != E; ++I) 1814 if (strcmp(Name, I->getName()) == 0) { 1815 GCMetadataPrinter *GMP = I->instantiate(); 1816 GMP->S = S; 1817 GCMap.insert(std::make_pair(S, GMP)); 1818 return GMP; 1819 } 1820 1821 report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name)); 1822 return 0; 1823} 1824 1825