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 #include "llvm/CodeGen/AsmPrinter.h" 15 #include "AsmPrinterHandler.h" 16 #include "CodeViewDebug.h" 17 #include "DwarfDebug.h" 18 #include "DwarfException.h" 19 #include "WinException.h" 20 #include "llvm/ADT/APFloat.h" 21 #include "llvm/ADT/APInt.h" 22 #include "llvm/ADT/DenseMap.h" 23 #include "llvm/ADT/STLExtras.h" 24 #include "llvm/ADT/SmallPtrSet.h" 25 #include "llvm/ADT/SmallString.h" 26 #include "llvm/ADT/SmallVector.h" 27 #include "llvm/ADT/Statistic.h" 28 #include "llvm/ADT/StringRef.h" 29 #include "llvm/ADT/Triple.h" 30 #include "llvm/ADT/Twine.h" 31 #include "llvm/Analysis/ConstantFolding.h" 32 #include "llvm/Analysis/ObjectUtils.h" 33 #include "llvm/BinaryFormat/Dwarf.h" 34 #include "llvm/BinaryFormat/ELF.h" 35 #include "llvm/CodeGen/Analysis.h" 36 #include "llvm/CodeGen/GCMetadata.h" 37 #include "llvm/CodeGen/GCMetadataPrinter.h" 38 #include "llvm/CodeGen/GCStrategy.h" 39 #include "llvm/CodeGen/MachineBasicBlock.h" 40 #include "llvm/CodeGen/MachineConstantPool.h" 41 #include "llvm/CodeGen/MachineFrameInfo.h" 42 #include "llvm/CodeGen/MachineFunction.h" 43 #include "llvm/CodeGen/MachineFunctionPass.h" 44 #include "llvm/CodeGen/MachineInstr.h" 45 #include "llvm/CodeGen/MachineInstrBundle.h" 46 #include "llvm/CodeGen/MachineJumpTableInfo.h" 47 #include "llvm/CodeGen/MachineLoopInfo.h" 48 #include "llvm/CodeGen/MachineMemOperand.h" 49 #include "llvm/CodeGen/MachineModuleInfoImpls.h" 50 #include "llvm/CodeGen/MachineOperand.h" 51 #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h" 52 #include "llvm/IR/BasicBlock.h" 53 #include "llvm/IR/Constant.h" 54 #include "llvm/IR/Constants.h" 55 #include "llvm/IR/DataLayout.h" 56 #include "llvm/IR/DebugInfoMetadata.h" 57 #include "llvm/IR/DerivedTypes.h" 58 #include "llvm/IR/Function.h" 59 #include "llvm/IR/GlobalAlias.h" 60 #include "llvm/IR/GlobalIFunc.h" 61 #include "llvm/IR/GlobalIndirectSymbol.h" 62 #include "llvm/IR/GlobalObject.h" 63 #include "llvm/IR/GlobalValue.h" 64 #include "llvm/IR/GlobalVariable.h" 65 #include "llvm/IR/Mangler.h" 66 #include "llvm/IR/Metadata.h" 67 #include "llvm/IR/Module.h" 68 #include "llvm/IR/Operator.h" 69 #include "llvm/IR/Value.h" 70 #include "llvm/MC/MCAsmInfo.h" 71 #include "llvm/MC/MCContext.h" 72 #include "llvm/MC/MCDirectives.h" 73 #include "llvm/MC/MCExpr.h" 74 #include "llvm/MC/MCInst.h" 75 #include "llvm/MC/MCSection.h" 76 #include "llvm/MC/MCSectionELF.h" 77 #include "llvm/MC/MCSectionMachO.h" 78 #include "llvm/MC/MCStreamer.h" 79 #include "llvm/MC/MCSubtargetInfo.h" 80 #include "llvm/MC/MCSymbol.h" 81 #include "llvm/MC/MCTargetOptions.h" 82 #include "llvm/MC/MCValue.h" 83 #include "llvm/MC/SectionKind.h" 84 #include "llvm/Pass.h" 85 #include "llvm/Support/Casting.h" 86 #include "llvm/Support/Compiler.h" 87 #include "llvm/Support/ErrorHandling.h" 88 #include "llvm/Support/Format.h" 89 #include "llvm/Support/MathExtras.h" 90 #include "llvm/Support/TargetRegistry.h" 91 #include "llvm/Support/Timer.h" 92 #include "llvm/Support/raw_ostream.h" 93 #include "llvm/Target/TargetFrameLowering.h" 94 #include "llvm/Target/TargetInstrInfo.h" 95 #include "llvm/Target/TargetLowering.h" 96 #include "llvm/Target/TargetLoweringObjectFile.h" 97 #include "llvm/Target/TargetMachine.h" 98 #include "llvm/Target/TargetRegisterInfo.h" 99 #include "llvm/Target/TargetSubtargetInfo.h" 100 #include <algorithm> 101 #include <cassert> 102 #include <cinttypes> 103 #include <cstdint> 104 #include <limits> 105 #include <memory> 106 #include <string> 107 #include <utility> 108 #include <vector> 109 110 using namespace llvm; 111 112 #define DEBUG_TYPE "asm-printer" 113 114 static const char *const DWARFGroupName = "dwarf"; 115 static const char *const DWARFGroupDescription = "DWARF Emission"; 116 static const char *const DbgTimerName = "emit"; 117 static const char *const DbgTimerDescription = "Debug Info Emission"; 118 static const char *const EHTimerName = "write_exception"; 119 static const char *const EHTimerDescription = "DWARF Exception Writer"; 120 static const char *const CodeViewLineTablesGroupName = "linetables"; 121 static const char *const CodeViewLineTablesGroupDescription = 122 "CodeView Line Tables"; 123 124 STATISTIC(EmittedInsts, "Number of machine instrs printed"); 125 126 static cl::opt<bool> 127 PrintSchedule("print-schedule", cl::Hidden, cl::init(false), 128 cl::desc("Print 'sched: [latency:throughput]' in .s output")); 129 130 char AsmPrinter::ID = 0; 131 132 typedef DenseMap<GCStrategy*, std::unique_ptr<GCMetadataPrinter>> gcp_map_type; 133 static gcp_map_type &getGCMap(void *&P) { 134 if (!P) 135 P = new gcp_map_type(); 136 return *(gcp_map_type*)P; 137 } 138 139 /// getGVAlignmentLog2 - Return the alignment to use for the specified global 140 /// value in log2 form. This rounds up to the preferred alignment if possible 141 /// and legal. 142 static unsigned getGVAlignmentLog2(const GlobalValue *GV, const DataLayout &DL, 143 unsigned InBits = 0) { 144 unsigned NumBits = 0; 145 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) 146 NumBits = DL.getPreferredAlignmentLog(GVar); 147 148 // If InBits is specified, round it to it. 149 if (InBits > NumBits) 150 NumBits = InBits; 151 152 // If the GV has a specified alignment, take it into account. 153 if (GV->getAlignment() == 0) 154 return NumBits; 155 156 unsigned GVAlign = Log2_32(GV->getAlignment()); 157 158 // If the GVAlign is larger than NumBits, or if we are required to obey 159 // NumBits because the GV has an assigned section, obey it. 160 if (GVAlign > NumBits || GV->hasSection()) 161 NumBits = GVAlign; 162 return NumBits; 163 } 164 165 AsmPrinter::AsmPrinter(TargetMachine &tm, std::unique_ptr<MCStreamer> Streamer) 166 : MachineFunctionPass(ID), TM(tm), MAI(tm.getMCAsmInfo()), 167 OutContext(Streamer->getContext()), OutStreamer(std::move(Streamer)) { 168 VerboseAsm = OutStreamer->isVerboseAsm(); 169 } 170 171 AsmPrinter::~AsmPrinter() { 172 assert(!DD && Handlers.empty() && "Debug/EH info didn't get finalized"); 173 174 if (GCMetadataPrinters) { 175 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 176 177 delete &GCMap; 178 GCMetadataPrinters = nullptr; 179 } 180 } 181 182 bool AsmPrinter::isPositionIndependent() const { 183 return TM.isPositionIndependent(); 184 } 185 186 /// getFunctionNumber - Return a unique ID for the current function. 187 /// 188 unsigned AsmPrinter::getFunctionNumber() const { 189 return MF->getFunctionNumber(); 190 } 191 192 const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const { 193 return *TM.getObjFileLowering(); 194 } 195 196 const DataLayout &AsmPrinter::getDataLayout() const { 197 return MMI->getModule()->getDataLayout(); 198 } 199 200 // Do not use the cached DataLayout because some client use it without a Module 201 // (llvm-dsymutil, llvm-dwarfdump). 202 unsigned AsmPrinter::getPointerSize() const { return TM.getPointerSize(); } 203 204 const MCSubtargetInfo &AsmPrinter::getSubtargetInfo() const { 205 assert(MF && "getSubtargetInfo requires a valid MachineFunction!"); 206 return MF->getSubtarget<MCSubtargetInfo>(); 207 } 208 209 void AsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst) { 210 S.EmitInstruction(Inst, getSubtargetInfo()); 211 } 212 213 /// getCurrentSection() - Return the current section we are emitting to. 214 const MCSection *AsmPrinter::getCurrentSection() const { 215 return OutStreamer->getCurrentSectionOnly(); 216 } 217 218 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { 219 AU.setPreservesAll(); 220 MachineFunctionPass::getAnalysisUsage(AU); 221 AU.addRequired<MachineModuleInfo>(); 222 AU.addRequired<MachineOptimizationRemarkEmitterPass>(); 223 AU.addRequired<GCModuleInfo>(); 224 if (isVerbose()) 225 AU.addRequired<MachineLoopInfo>(); 226 } 227 228 bool AsmPrinter::doInitialization(Module &M) { 229 MMI = getAnalysisIfAvailable<MachineModuleInfo>(); 230 231 // Initialize TargetLoweringObjectFile. 232 const_cast<TargetLoweringObjectFile&>(getObjFileLowering()) 233 .Initialize(OutContext, TM); 234 235 OutStreamer->InitSections(false); 236 237 // Emit the version-min deplyment target directive if needed. 238 // 239 // FIXME: If we end up with a collection of these sorts of Darwin-specific 240 // or ELF-specific things, it may make sense to have a platform helper class 241 // that will work with the target helper class. For now keep it here, as the 242 // alternative is duplicated code in each of the target asm printers that 243 // use the directive, where it would need the same conditionalization 244 // anyway. 245 const Triple &TT = TM.getTargetTriple(); 246 // If there is a version specified, Major will be non-zero. 247 if (TT.isOSDarwin() && TT.getOSMajorVersion() != 0) { 248 unsigned Major, Minor, Update; 249 MCVersionMinType VersionType; 250 if (TT.isWatchOS()) { 251 VersionType = MCVM_WatchOSVersionMin; 252 TT.getWatchOSVersion(Major, Minor, Update); 253 } else if (TT.isTvOS()) { 254 VersionType = MCVM_TvOSVersionMin; 255 TT.getiOSVersion(Major, Minor, Update); 256 } else if (TT.isMacOSX()) { 257 VersionType = MCVM_OSXVersionMin; 258 if (!TT.getMacOSXVersion(Major, Minor, Update)) 259 Major = 0; 260 } else { 261 VersionType = MCVM_IOSVersionMin; 262 TT.getiOSVersion(Major, Minor, Update); 263 } 264 if (Major != 0) 265 OutStreamer->EmitVersionMin(VersionType, Major, Minor, Update); 266 } 267 268 // Allow the target to emit any magic that it wants at the start of the file. 269 EmitStartOfAsmFile(M); 270 271 // Very minimal debug info. It is ignored if we emit actual debug info. If we 272 // don't, this at least helps the user find where a global came from. 273 if (MAI->hasSingleParameterDotFile()) { 274 // .file "foo.c" 275 OutStreamer->EmitFileDirective(M.getSourceFileName()); 276 } 277 278 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 279 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 280 for (auto &I : *MI) 281 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I)) 282 MP->beginAssembly(M, *MI, *this); 283 284 // Emit module-level inline asm if it exists. 285 if (!M.getModuleInlineAsm().empty()) { 286 // We're at the module level. Construct MCSubtarget from the default CPU 287 // and target triple. 288 std::unique_ptr<MCSubtargetInfo> STI(TM.getTarget().createMCSubtargetInfo( 289 TM.getTargetTriple().str(), TM.getTargetCPU(), 290 TM.getTargetFeatureString())); 291 OutStreamer->AddComment("Start of file scope inline assembly"); 292 OutStreamer->AddBlankLine(); 293 EmitInlineAsm(M.getModuleInlineAsm()+"\n", 294 OutContext.getSubtargetCopy(*STI), TM.Options.MCOptions); 295 OutStreamer->AddComment("End of file scope inline assembly"); 296 OutStreamer->AddBlankLine(); 297 } 298 299 if (MAI->doesSupportDebugInformation()) { 300 bool EmitCodeView = MMI->getModule()->getCodeViewFlag(); 301 if (EmitCodeView && (TM.getTargetTriple().isKnownWindowsMSVCEnvironment() || 302 TM.getTargetTriple().isWindowsItaniumEnvironment())) { 303 Handlers.push_back(HandlerInfo(new CodeViewDebug(this), 304 DbgTimerName, DbgTimerDescription, 305 CodeViewLineTablesGroupName, 306 CodeViewLineTablesGroupDescription)); 307 } 308 if (!EmitCodeView || MMI->getModule()->getDwarfVersion()) { 309 DD = new DwarfDebug(this, &M); 310 DD->beginModule(); 311 Handlers.push_back(HandlerInfo(DD, DbgTimerName, DbgTimerDescription, 312 DWARFGroupName, DWARFGroupDescription)); 313 } 314 } 315 316 switch (MAI->getExceptionHandlingType()) { 317 case ExceptionHandling::SjLj: 318 case ExceptionHandling::DwarfCFI: 319 case ExceptionHandling::ARM: 320 isCFIMoveForDebugging = true; 321 if (MAI->getExceptionHandlingType() != ExceptionHandling::DwarfCFI) 322 break; 323 for (auto &F: M.getFunctionList()) { 324 // If the module contains any function with unwind data, 325 // .eh_frame has to be emitted. 326 // Ignore functions that won't get emitted. 327 if (!F.isDeclarationForLinker() && F.needsUnwindTableEntry()) { 328 isCFIMoveForDebugging = false; 329 break; 330 } 331 } 332 break; 333 default: 334 isCFIMoveForDebugging = false; 335 break; 336 } 337 338 EHStreamer *ES = nullptr; 339 switch (MAI->getExceptionHandlingType()) { 340 case ExceptionHandling::None: 341 break; 342 case ExceptionHandling::SjLj: 343 case ExceptionHandling::DwarfCFI: 344 ES = new DwarfCFIException(this); 345 break; 346 case ExceptionHandling::ARM: 347 ES = new ARMException(this); 348 break; 349 case ExceptionHandling::WinEH: 350 switch (MAI->getWinEHEncodingType()) { 351 default: llvm_unreachable("unsupported unwinding information encoding"); 352 case WinEH::EncodingType::Invalid: 353 break; 354 case WinEH::EncodingType::X86: 355 case WinEH::EncodingType::Itanium: 356 ES = new WinException(this); 357 break; 358 } 359 break; 360 } 361 if (ES) 362 Handlers.push_back(HandlerInfo(ES, EHTimerName, EHTimerDescription, 363 DWARFGroupName, DWARFGroupDescription)); 364 return false; 365 } 366 367 static bool canBeHidden(const GlobalValue *GV, const MCAsmInfo &MAI) { 368 if (!MAI.hasWeakDefCanBeHiddenDirective()) 369 return false; 370 371 return canBeOmittedFromSymbolTable(GV); 372 } 373 374 void AsmPrinter::EmitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const { 375 GlobalValue::LinkageTypes Linkage = GV->getLinkage(); 376 switch (Linkage) { 377 case GlobalValue::CommonLinkage: 378 case GlobalValue::LinkOnceAnyLinkage: 379 case GlobalValue::LinkOnceODRLinkage: 380 case GlobalValue::WeakAnyLinkage: 381 case GlobalValue::WeakODRLinkage: 382 if (MAI->hasWeakDefDirective()) { 383 // .globl _foo 384 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_Global); 385 386 if (!canBeHidden(GV, *MAI)) 387 // .weak_definition _foo 388 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_WeakDefinition); 389 else 390 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate); 391 } else if (MAI->hasLinkOnceDirective()) { 392 // .globl _foo 393 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_Global); 394 //NOTE: linkonce is handled by the section the symbol was assigned to. 395 } else { 396 // .weak _foo 397 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_Weak); 398 } 399 return; 400 case GlobalValue::ExternalLinkage: 401 // If external, declare as a global symbol: .globl _foo 402 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_Global); 403 return; 404 case GlobalValue::PrivateLinkage: 405 case GlobalValue::InternalLinkage: 406 return; 407 case GlobalValue::AppendingLinkage: 408 case GlobalValue::AvailableExternallyLinkage: 409 case GlobalValue::ExternalWeakLinkage: 410 llvm_unreachable("Should never emit this"); 411 } 412 llvm_unreachable("Unknown linkage type!"); 413 } 414 415 void AsmPrinter::getNameWithPrefix(SmallVectorImpl<char> &Name, 416 const GlobalValue *GV) const { 417 TM.getNameWithPrefix(Name, GV, getObjFileLowering().getMangler()); 418 } 419 420 MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const { 421 return TM.getSymbol(GV); 422 } 423 424 /// EmitGlobalVariable - Emit the specified global variable to the .s file. 425 void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) { 426 bool IsEmuTLSVar = TM.Options.EmulatedTLS && GV->isThreadLocal(); 427 assert(!(IsEmuTLSVar && GV->hasCommonLinkage()) && 428 "No emulated TLS variables in the common section"); 429 430 // Never emit TLS variable xyz in emulated TLS model. 431 // The initialization value is in __emutls_t.xyz instead of xyz. 432 if (IsEmuTLSVar) 433 return; 434 435 if (GV->hasInitializer()) { 436 // Check to see if this is a special global used by LLVM, if so, emit it. 437 if (EmitSpecialLLVMGlobal(GV)) 438 return; 439 440 // Skip the emission of global equivalents. The symbol can be emitted later 441 // on by emitGlobalGOTEquivs in case it turns out to be needed. 442 if (GlobalGOTEquivs.count(getSymbol(GV))) 443 return; 444 445 if (isVerbose()) { 446 // When printing the control variable __emutls_v.*, 447 // we don't need to print the original TLS variable name. 448 GV->printAsOperand(OutStreamer->GetCommentOS(), 449 /*PrintType=*/false, GV->getParent()); 450 OutStreamer->GetCommentOS() << '\n'; 451 } 452 } 453 454 MCSymbol *GVSym = getSymbol(GV); 455 MCSymbol *EmittedSym = GVSym; 456 457 // getOrCreateEmuTLSControlSym only creates the symbol with name and default 458 // attributes. 459 // GV's or GVSym's attributes will be used for the EmittedSym. 460 EmitVisibility(EmittedSym, GV->getVisibility(), !GV->isDeclaration()); 461 462 if (!GV->hasInitializer()) // External globals require no extra code. 463 return; 464 465 GVSym->redefineIfPossible(); 466 if (GVSym->isDefined() || GVSym->isVariable()) 467 report_fatal_error("symbol '" + Twine(GVSym->getName()) + 468 "' is already defined"); 469 470 if (MAI->hasDotTypeDotSizeDirective()) 471 OutStreamer->EmitSymbolAttribute(EmittedSym, MCSA_ELF_TypeObject); 472 473 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM); 474 475 const DataLayout &DL = GV->getParent()->getDataLayout(); 476 uint64_t Size = DL.getTypeAllocSize(GV->getType()->getElementType()); 477 478 // If the alignment is specified, we *must* obey it. Overaligning a global 479 // with a specified alignment is a prompt way to break globals emitted to 480 // sections and expected to be contiguous (e.g. ObjC metadata). 481 unsigned AlignLog = getGVAlignmentLog2(GV, DL); 482 483 for (const HandlerInfo &HI : Handlers) { 484 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, 485 HI.TimerGroupName, HI.TimerGroupDescription, 486 TimePassesIsEnabled); 487 HI.Handler->setSymbolSize(GVSym, Size); 488 } 489 490 // Handle common symbols 491 if (GVKind.isCommon()) { 492 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. 493 unsigned Align = 1 << AlignLog; 494 if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) 495 Align = 0; 496 497 // .comm _foo, 42, 4 498 OutStreamer->EmitCommonSymbol(GVSym, Size, Align); 499 return; 500 } 501 502 // Determine to which section this global should be emitted. 503 MCSection *TheSection = getObjFileLowering().SectionForGlobal(GV, GVKind, TM); 504 505 // If we have a bss global going to a section that supports the 506 // zerofill directive, do so here. 507 if (GVKind.isBSS() && MAI->hasMachoZeroFillDirective() && 508 TheSection->isVirtualSection()) { 509 if (Size == 0) 510 Size = 1; // zerofill of 0 bytes is undefined. 511 unsigned Align = 1 << AlignLog; 512 EmitLinkage(GV, GVSym); 513 // .zerofill __DATA, __bss, _foo, 400, 5 514 OutStreamer->EmitZerofill(TheSection, GVSym, Size, Align); 515 return; 516 } 517 518 // If this is a BSS local symbol and we are emitting in the BSS 519 // section use .lcomm/.comm directive. 520 if (GVKind.isBSSLocal() && 521 getObjFileLowering().getBSSSection() == TheSection) { 522 if (Size == 0) 523 Size = 1; // .comm Foo, 0 is undefined, avoid it. 524 unsigned Align = 1 << AlignLog; 525 526 // Use .lcomm only if it supports user-specified alignment. 527 // Otherwise, while it would still be correct to use .lcomm in some 528 // cases (e.g. when Align == 1), the external assembler might enfore 529 // some -unknown- default alignment behavior, which could cause 530 // spurious differences between external and integrated assembler. 531 // Prefer to simply fall back to .local / .comm in this case. 532 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) { 533 // .lcomm _foo, 42 534 OutStreamer->EmitLocalCommonSymbol(GVSym, Size, Align); 535 return; 536 } 537 538 if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) 539 Align = 0; 540 541 // .local _foo 542 OutStreamer->EmitSymbolAttribute(GVSym, MCSA_Local); 543 // .comm _foo, 42, 4 544 OutStreamer->EmitCommonSymbol(GVSym, Size, Align); 545 return; 546 } 547 548 // Handle thread local data for mach-o which requires us to output an 549 // additional structure of data and mangle the original symbol so that we 550 // can reference it later. 551 // 552 // TODO: This should become an "emit thread local global" method on TLOF. 553 // All of this macho specific stuff should be sunk down into TLOFMachO and 554 // stuff like "TLSExtraDataSection" should no longer be part of the parent 555 // TLOF class. This will also make it more obvious that stuff like 556 // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho 557 // specific code. 558 if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) { 559 // Emit the .tbss symbol 560 MCSymbol *MangSym = 561 OutContext.getOrCreateSymbol(GVSym->getName() + Twine("$tlv$init")); 562 563 if (GVKind.isThreadBSS()) { 564 TheSection = getObjFileLowering().getTLSBSSSection(); 565 OutStreamer->EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog); 566 } else if (GVKind.isThreadData()) { 567 OutStreamer->SwitchSection(TheSection); 568 569 EmitAlignment(AlignLog, GV); 570 OutStreamer->EmitLabel(MangSym); 571 572 EmitGlobalConstant(GV->getParent()->getDataLayout(), 573 GV->getInitializer()); 574 } 575 576 OutStreamer->AddBlankLine(); 577 578 // Emit the variable struct for the runtime. 579 MCSection *TLVSect = getObjFileLowering().getTLSExtraDataSection(); 580 581 OutStreamer->SwitchSection(TLVSect); 582 // Emit the linkage here. 583 EmitLinkage(GV, GVSym); 584 OutStreamer->EmitLabel(GVSym); 585 586 // Three pointers in size: 587 // - __tlv_bootstrap - used to make sure support exists 588 // - spare pointer, used when mapped by the runtime 589 // - pointer to mangled symbol above with initializer 590 unsigned PtrSize = DL.getPointerTypeSize(GV->getType()); 591 OutStreamer->EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"), 592 PtrSize); 593 OutStreamer->EmitIntValue(0, PtrSize); 594 OutStreamer->EmitSymbolValue(MangSym, PtrSize); 595 596 OutStreamer->AddBlankLine(); 597 return; 598 } 599 600 MCSymbol *EmittedInitSym = GVSym; 601 602 OutStreamer->SwitchSection(TheSection); 603 604 EmitLinkage(GV, EmittedInitSym); 605 EmitAlignment(AlignLog, GV); 606 607 OutStreamer->EmitLabel(EmittedInitSym); 608 609 EmitGlobalConstant(GV->getParent()->getDataLayout(), GV->getInitializer()); 610 611 if (MAI->hasDotTypeDotSizeDirective()) 612 // .size foo, 42 613 OutStreamer->emitELFSize(EmittedInitSym, 614 MCConstantExpr::create(Size, OutContext)); 615 616 OutStreamer->AddBlankLine(); 617 } 618 619 /// Emit the directive and value for debug thread local expression 620 /// 621 /// \p Value - The value to emit. 622 /// \p Size - The size of the integer (in bytes) to emit. 623 void AsmPrinter::EmitDebugThreadLocal(const MCExpr *Value, 624 unsigned Size) const { 625 OutStreamer->EmitValue(Value, Size); 626 } 627 628 /// EmitFunctionHeader - This method emits the header for the current 629 /// function. 630 void AsmPrinter::EmitFunctionHeader() { 631 const Function *F = MF->getFunction(); 632 633 if (isVerbose()) 634 OutStreamer->GetCommentOS() << "-- Begin function " << F->getName() << '\n'; 635 636 // Print out constants referenced by the function 637 EmitConstantPool(); 638 639 // Print the 'header' of function. 640 OutStreamer->SwitchSection(getObjFileLowering().SectionForGlobal(F, TM)); 641 EmitVisibility(CurrentFnSym, F->getVisibility()); 642 643 EmitLinkage(F, CurrentFnSym); 644 if (MAI->hasFunctionAlignment()) 645 EmitAlignment(MF->getAlignment(), F); 646 647 if (MAI->hasDotTypeDotSizeDirective()) 648 OutStreamer->EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction); 649 650 if (isVerbose()) { 651 F->printAsOperand(OutStreamer->GetCommentOS(), 652 /*PrintType=*/false, F->getParent()); 653 OutStreamer->GetCommentOS() << '\n'; 654 } 655 656 // Emit the prefix data. 657 if (F->hasPrefixData()) { 658 if (MAI->hasSubsectionsViaSymbols()) { 659 // Preserving prefix data on platforms which use subsections-via-symbols 660 // is a bit tricky. Here we introduce a symbol for the prefix data 661 // and use the .alt_entry attribute to mark the function's real entry point 662 // as an alternative entry point to the prefix-data symbol. 663 MCSymbol *PrefixSym = OutContext.createLinkerPrivateTempSymbol(); 664 OutStreamer->EmitLabel(PrefixSym); 665 666 EmitGlobalConstant(F->getParent()->getDataLayout(), F->getPrefixData()); 667 668 // Emit an .alt_entry directive for the actual function symbol. 669 OutStreamer->EmitSymbolAttribute(CurrentFnSym, MCSA_AltEntry); 670 } else { 671 EmitGlobalConstant(F->getParent()->getDataLayout(), F->getPrefixData()); 672 } 673 } 674 675 // Emit the CurrentFnSym. This is a virtual function to allow targets to 676 // do their wild and crazy things as required. 677 EmitFunctionEntryLabel(); 678 679 // If the function had address-taken blocks that got deleted, then we have 680 // references to the dangling symbols. Emit them at the start of the function 681 // so that we don't get references to undefined symbols. 682 std::vector<MCSymbol*> DeadBlockSyms; 683 MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms); 684 for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) { 685 OutStreamer->AddComment("Address taken block that was later removed"); 686 OutStreamer->EmitLabel(DeadBlockSyms[i]); 687 } 688 689 if (CurrentFnBegin) { 690 if (MAI->useAssignmentForEHBegin()) { 691 MCSymbol *CurPos = OutContext.createTempSymbol(); 692 OutStreamer->EmitLabel(CurPos); 693 OutStreamer->EmitAssignment(CurrentFnBegin, 694 MCSymbolRefExpr::create(CurPos, OutContext)); 695 } else { 696 OutStreamer->EmitLabel(CurrentFnBegin); 697 } 698 } 699 700 // Emit pre-function debug and/or EH information. 701 for (const HandlerInfo &HI : Handlers) { 702 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName, 703 HI.TimerGroupDescription, TimePassesIsEnabled); 704 HI.Handler->beginFunction(MF); 705 } 706 707 // Emit the prologue data. 708 if (F->hasPrologueData()) 709 EmitGlobalConstant(F->getParent()->getDataLayout(), F->getPrologueData()); 710 } 711 712 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the 713 /// function. This can be overridden by targets as required to do custom stuff. 714 void AsmPrinter::EmitFunctionEntryLabel() { 715 CurrentFnSym->redefineIfPossible(); 716 717 // The function label could have already been emitted if two symbols end up 718 // conflicting due to asm renaming. Detect this and emit an error. 719 if (CurrentFnSym->isVariable()) 720 report_fatal_error("'" + Twine(CurrentFnSym->getName()) + 721 "' is a protected alias"); 722 if (CurrentFnSym->isDefined()) 723 report_fatal_error("'" + Twine(CurrentFnSym->getName()) + 724 "' label emitted multiple times to assembly file"); 725 726 return OutStreamer->EmitLabel(CurrentFnSym); 727 } 728 729 /// emitComments - Pretty-print comments for instructions. 730 static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS, 731 AsmPrinter *AP) { 732 const MachineFunction *MF = MI.getParent()->getParent(); 733 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); 734 735 // Check for spills and reloads 736 int FI; 737 738 const MachineFrameInfo &MFI = MF->getFrameInfo(); 739 bool Commented = false; 740 741 // We assume a single instruction only has a spill or reload, not 742 // both. 743 const MachineMemOperand *MMO; 744 if (TII->isLoadFromStackSlotPostFE(MI, FI)) { 745 if (MFI.isSpillSlotObjectIndex(FI)) { 746 MMO = *MI.memoperands_begin(); 747 CommentOS << MMO->getSize() << "-byte Reload"; 748 Commented = true; 749 } 750 } else if (TII->hasLoadFromStackSlot(MI, MMO, FI)) { 751 if (MFI.isSpillSlotObjectIndex(FI)) { 752 CommentOS << MMO->getSize() << "-byte Folded Reload"; 753 Commented = true; 754 } 755 } else if (TII->isStoreToStackSlotPostFE(MI, FI)) { 756 if (MFI.isSpillSlotObjectIndex(FI)) { 757 MMO = *MI.memoperands_begin(); 758 CommentOS << MMO->getSize() << "-byte Spill"; 759 Commented = true; 760 } 761 } else if (TII->hasStoreToStackSlot(MI, MMO, FI)) { 762 if (MFI.isSpillSlotObjectIndex(FI)) { 763 CommentOS << MMO->getSize() << "-byte Folded Spill"; 764 Commented = true; 765 } 766 } 767 768 // Check for spill-induced copies 769 if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse)) { 770 Commented = true; 771 CommentOS << " Reload Reuse"; 772 } 773 774 if (Commented && AP->EnablePrintSchedInfo) 775 // If any comment was added above and we need sched info comment then 776 // add this new comment just after the above comment w/o "\n" between them. 777 CommentOS << " " << MF->getSubtarget().getSchedInfoStr(MI) << "\n"; 778 else if (Commented) 779 CommentOS << "\n"; 780 } 781 782 /// emitImplicitDef - This method emits the specified machine instruction 783 /// that is an implicit def. 784 void AsmPrinter::emitImplicitDef(const MachineInstr *MI) const { 785 unsigned RegNo = MI->getOperand(0).getReg(); 786 787 SmallString<128> Str; 788 raw_svector_ostream OS(Str); 789 OS << "implicit-def: " 790 << PrintReg(RegNo, MF->getSubtarget().getRegisterInfo()); 791 792 OutStreamer->AddComment(OS.str()); 793 OutStreamer->AddBlankLine(); 794 } 795 796 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { 797 std::string Str; 798 raw_string_ostream OS(Str); 799 OS << "kill:"; 800 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 801 const MachineOperand &Op = MI->getOperand(i); 802 assert(Op.isReg() && "KILL instruction must have only register operands"); 803 OS << ' ' 804 << PrintReg(Op.getReg(), 805 AP.MF->getSubtarget().getRegisterInfo()) 806 << (Op.isDef() ? "<def>" : "<kill>"); 807 } 808 AP.OutStreamer->AddComment(OS.str()); 809 AP.OutStreamer->AddBlankLine(); 810 } 811 812 /// emitDebugValueComment - This method handles the target-independent form 813 /// of DBG_VALUE, returning true if it was able to do so. A false return 814 /// means the target will need to handle MI in EmitInstruction. 815 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { 816 // This code handles only the 4-operand target-independent form. 817 if (MI->getNumOperands() != 4) 818 return false; 819 820 SmallString<128> Str; 821 raw_svector_ostream OS(Str); 822 OS << "DEBUG_VALUE: "; 823 824 const DILocalVariable *V = MI->getDebugVariable(); 825 if (auto *SP = dyn_cast<DISubprogram>(V->getScope())) { 826 StringRef Name = SP->getName(); 827 if (!Name.empty()) 828 OS << Name << ":"; 829 } 830 OS << V->getName(); 831 OS << " <- "; 832 833 // The second operand is only an offset if it's an immediate. 834 bool MemLoc = MI->getOperand(0).isReg() && MI->getOperand(1).isImm(); 835 int64_t Offset = MemLoc ? MI->getOperand(1).getImm() : 0; 836 const DIExpression *Expr = MI->getDebugExpression(); 837 if (Expr->getNumElements()) { 838 OS << '['; 839 bool NeedSep = false; 840 for (auto Op : Expr->expr_ops()) { 841 if (NeedSep) 842 OS << ", "; 843 else 844 NeedSep = true; 845 OS << dwarf::OperationEncodingString(Op.getOp()); 846 for (unsigned I = 0; I < Op.getNumArgs(); ++I) 847 OS << ' ' << Op.getArg(I); 848 } 849 OS << "] "; 850 } 851 852 // Register or immediate value. Register 0 means undef. 853 if (MI->getOperand(0).isFPImm()) { 854 APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF()); 855 if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) { 856 OS << (double)APF.convertToFloat(); 857 } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) { 858 OS << APF.convertToDouble(); 859 } else { 860 // There is no good way to print long double. Convert a copy to 861 // double. Ah well, it's only a comment. 862 bool ignored; 863 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, 864 &ignored); 865 OS << "(long double) " << APF.convertToDouble(); 866 } 867 } else if (MI->getOperand(0).isImm()) { 868 OS << MI->getOperand(0).getImm(); 869 } else if (MI->getOperand(0).isCImm()) { 870 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/); 871 } else { 872 unsigned Reg; 873 if (MI->getOperand(0).isReg()) { 874 Reg = MI->getOperand(0).getReg(); 875 } else { 876 assert(MI->getOperand(0).isFI() && "Unknown operand type"); 877 const TargetFrameLowering *TFI = AP.MF->getSubtarget().getFrameLowering(); 878 Offset += TFI->getFrameIndexReference(*AP.MF, 879 MI->getOperand(0).getIndex(), Reg); 880 MemLoc = true; 881 } 882 if (Reg == 0) { 883 // Suppress offset, it is not meaningful here. 884 OS << "undef"; 885 // NOTE: Want this comment at start of line, don't emit with AddComment. 886 AP.OutStreamer->emitRawComment(OS.str()); 887 return true; 888 } 889 if (MemLoc) 890 OS << '['; 891 OS << PrintReg(Reg, AP.MF->getSubtarget().getRegisterInfo()); 892 } 893 894 if (MemLoc) 895 OS << '+' << Offset << ']'; 896 897 // NOTE: Want this comment at start of line, don't emit with AddComment. 898 AP.OutStreamer->emitRawComment(OS.str()); 899 return true; 900 } 901 902 AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() { 903 if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI && 904 MF->getFunction()->needsUnwindTableEntry()) 905 return CFI_M_EH; 906 907 if (MMI->hasDebugInfo()) 908 return CFI_M_Debug; 909 910 return CFI_M_None; 911 } 912 913 bool AsmPrinter::needsSEHMoves() { 914 return MAI->usesWindowsCFI() && MF->getFunction()->needsUnwindTableEntry(); 915 } 916 917 void AsmPrinter::emitCFIInstruction(const MachineInstr &MI) { 918 ExceptionHandling ExceptionHandlingType = MAI->getExceptionHandlingType(); 919 if (ExceptionHandlingType != ExceptionHandling::DwarfCFI && 920 ExceptionHandlingType != ExceptionHandling::ARM) 921 return; 922 923 if (needsCFIMoves() == CFI_M_None) 924 return; 925 926 // If there is no "real" instruction following this CFI instruction, skip 927 // emitting it; it would be beyond the end of the function's FDE range. 928 auto *MBB = MI.getParent(); 929 auto I = std::next(MI.getIterator()); 930 while (I != MBB->end() && I->isTransient()) 931 ++I; 932 if (I == MBB->instr_end() && 933 MBB->getReverseIterator() == MBB->getParent()->rbegin()) 934 return; 935 936 const std::vector<MCCFIInstruction> &Instrs = MF->getFrameInstructions(); 937 unsigned CFIIndex = MI.getOperand(0).getCFIIndex(); 938 const MCCFIInstruction &CFI = Instrs[CFIIndex]; 939 emitCFIInstruction(CFI); 940 } 941 942 void AsmPrinter::emitFrameAlloc(const MachineInstr &MI) { 943 // The operands are the MCSymbol and the frame offset of the allocation. 944 MCSymbol *FrameAllocSym = MI.getOperand(0).getMCSymbol(); 945 int FrameOffset = MI.getOperand(1).getImm(); 946 947 // Emit a symbol assignment. 948 OutStreamer->EmitAssignment(FrameAllocSym, 949 MCConstantExpr::create(FrameOffset, OutContext)); 950 } 951 952 static bool needFuncLabelsForEHOrDebugInfo(const MachineFunction &MF, 953 MachineModuleInfo *MMI) { 954 if (!MF.getLandingPads().empty() || MF.hasEHFunclets() || MMI->hasDebugInfo()) 955 return true; 956 957 // We might emit an EH table that uses function begin and end labels even if 958 // we don't have any landingpads. 959 if (!MF.getFunction()->hasPersonalityFn()) 960 return false; 961 return !isNoOpWithoutInvoke( 962 classifyEHPersonality(MF.getFunction()->getPersonalityFn())); 963 } 964 965 /// EmitFunctionBody - This method emits the body and trailer for a 966 /// function. 967 void AsmPrinter::EmitFunctionBody() { 968 EmitFunctionHeader(); 969 970 // Emit target-specific gunk before the function body. 971 EmitFunctionBodyStart(); 972 973 bool ShouldPrintDebugScopes = MMI->hasDebugInfo(); 974 975 // Print out code for the function. 976 bool HasAnyRealCode = false; 977 int NumInstsInFunction = 0; 978 for (auto &MBB : *MF) { 979 // Print a label for the basic block. 980 EmitBasicBlockStart(MBB); 981 for (auto &MI : MBB) { 982 983 // Print the assembly for the instruction. 984 if (!MI.isPosition() && !MI.isImplicitDef() && !MI.isKill() && 985 !MI.isDebugValue()) { 986 HasAnyRealCode = true; 987 ++NumInstsInFunction; 988 } 989 990 if (ShouldPrintDebugScopes) { 991 for (const HandlerInfo &HI : Handlers) { 992 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, 993 HI.TimerGroupName, HI.TimerGroupDescription, 994 TimePassesIsEnabled); 995 HI.Handler->beginInstruction(&MI); 996 } 997 } 998 999 if (isVerbose()) 1000 emitComments(MI, OutStreamer->GetCommentOS(), this); 1001 1002 switch (MI.getOpcode()) { 1003 case TargetOpcode::CFI_INSTRUCTION: 1004 emitCFIInstruction(MI); 1005 break; 1006 1007 case TargetOpcode::LOCAL_ESCAPE: 1008 emitFrameAlloc(MI); 1009 break; 1010 1011 case TargetOpcode::EH_LABEL: 1012 case TargetOpcode::GC_LABEL: 1013 OutStreamer->EmitLabel(MI.getOperand(0).getMCSymbol()); 1014 break; 1015 case TargetOpcode::INLINEASM: 1016 EmitInlineAsm(&MI); 1017 break; 1018 case TargetOpcode::DBG_VALUE: 1019 if (isVerbose()) { 1020 if (!emitDebugValueComment(&MI, *this)) 1021 EmitInstruction(&MI); 1022 } 1023 break; 1024 case TargetOpcode::IMPLICIT_DEF: 1025 if (isVerbose()) emitImplicitDef(&MI); 1026 break; 1027 case TargetOpcode::KILL: 1028 if (isVerbose()) emitKill(&MI, *this); 1029 break; 1030 default: 1031 EmitInstruction(&MI); 1032 break; 1033 } 1034 1035 if (ShouldPrintDebugScopes) { 1036 for (const HandlerInfo &HI : Handlers) { 1037 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, 1038 HI.TimerGroupName, HI.TimerGroupDescription, 1039 TimePassesIsEnabled); 1040 HI.Handler->endInstruction(); 1041 } 1042 } 1043 } 1044 1045 EmitBasicBlockEnd(MBB); 1046 } 1047 1048 EmittedInsts += NumInstsInFunction; 1049 MachineOptimizationRemarkAnalysis R(DEBUG_TYPE, "InstructionCount", 1050 MF->getFunction()->getSubprogram(), 1051 &MF->front()); 1052 R << ore::NV("NumInstructions", NumInstsInFunction) 1053 << " instructions in function"; 1054 ORE->emit(R); 1055 1056 // If the function is empty and the object file uses .subsections_via_symbols, 1057 // then we need to emit *something* to the function body to prevent the 1058 // labels from collapsing together. Just emit a noop. 1059 // Similarly, don't emit empty functions on Windows either. It can lead to 1060 // duplicate entries (two functions with the same RVA) in the Guard CF Table 1061 // after linking, causing the kernel not to load the binary: 1062 // https://developercommunity.visualstudio.com/content/problem/45366/vc-linker-creates-invalid-dll-with-clang-cl.html 1063 // FIXME: Hide this behind some API in e.g. MCAsmInfo or MCTargetStreamer. 1064 const Triple &TT = TM.getTargetTriple(); 1065 if (!HasAnyRealCode && (MAI->hasSubsectionsViaSymbols() || 1066 (TT.isOSWindows() && TT.isOSBinFormatCOFF()))) { 1067 MCInst Noop; 1068 MF->getSubtarget().getInstrInfo()->getNoop(Noop); 1069 1070 // Targets can opt-out of emitting the noop here by leaving the opcode 1071 // unspecified. 1072 if (Noop.getOpcode()) { 1073 OutStreamer->AddComment("avoids zero-length function"); 1074 OutStreamer->EmitInstruction(Noop, getSubtargetInfo()); 1075 } 1076 } 1077 1078 const Function *F = MF->getFunction(); 1079 for (const auto &BB : *F) { 1080 if (!BB.hasAddressTaken()) 1081 continue; 1082 MCSymbol *Sym = GetBlockAddressSymbol(&BB); 1083 if (Sym->isDefined()) 1084 continue; 1085 OutStreamer->AddComment("Address of block that was removed by CodeGen"); 1086 OutStreamer->EmitLabel(Sym); 1087 } 1088 1089 // Emit target-specific gunk after the function body. 1090 EmitFunctionBodyEnd(); 1091 1092 if (needFuncLabelsForEHOrDebugInfo(*MF, MMI) || 1093 MAI->hasDotTypeDotSizeDirective()) { 1094 // Create a symbol for the end of function. 1095 CurrentFnEnd = createTempSymbol("func_end"); 1096 OutStreamer->EmitLabel(CurrentFnEnd); 1097 } 1098 1099 // If the target wants a .size directive for the size of the function, emit 1100 // it. 1101 if (MAI->hasDotTypeDotSizeDirective()) { 1102 // We can get the size as difference between the function label and the 1103 // temp label. 1104 const MCExpr *SizeExp = MCBinaryExpr::createSub( 1105 MCSymbolRefExpr::create(CurrentFnEnd, OutContext), 1106 MCSymbolRefExpr::create(CurrentFnSymForSize, OutContext), OutContext); 1107 OutStreamer->emitELFSize(CurrentFnSym, SizeExp); 1108 } 1109 1110 for (const HandlerInfo &HI : Handlers) { 1111 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName, 1112 HI.TimerGroupDescription, TimePassesIsEnabled); 1113 HI.Handler->markFunctionEnd(); 1114 } 1115 1116 // Print out jump tables referenced by the function. 1117 EmitJumpTableInfo(); 1118 1119 // Emit post-function debug and/or EH information. 1120 for (const HandlerInfo &HI : Handlers) { 1121 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName, 1122 HI.TimerGroupDescription, TimePassesIsEnabled); 1123 HI.Handler->endFunction(MF); 1124 } 1125 1126 if (isVerbose()) 1127 OutStreamer->GetCommentOS() << "-- End function\n"; 1128 1129 OutStreamer->AddBlankLine(); 1130 } 1131 1132 /// \brief Compute the number of Global Variables that uses a Constant. 1133 static unsigned getNumGlobalVariableUses(const Constant *C) { 1134 if (!C) 1135 return 0; 1136 1137 if (isa<GlobalVariable>(C)) 1138 return 1; 1139 1140 unsigned NumUses = 0; 1141 for (auto *CU : C->users()) 1142 NumUses += getNumGlobalVariableUses(dyn_cast<Constant>(CU)); 1143 1144 return NumUses; 1145 } 1146 1147 /// \brief Only consider global GOT equivalents if at least one user is a 1148 /// cstexpr inside an initializer of another global variables. Also, don't 1149 /// handle cstexpr inside instructions. During global variable emission, 1150 /// candidates are skipped and are emitted later in case at least one cstexpr 1151 /// isn't replaced by a PC relative GOT entry access. 1152 static bool isGOTEquivalentCandidate(const GlobalVariable *GV, 1153 unsigned &NumGOTEquivUsers) { 1154 // Global GOT equivalents are unnamed private globals with a constant 1155 // pointer initializer to another global symbol. They must point to a 1156 // GlobalVariable or Function, i.e., as GlobalValue. 1157 if (!GV->hasGlobalUnnamedAddr() || !GV->hasInitializer() || 1158 !GV->isConstant() || !GV->isDiscardableIfUnused() || 1159 !dyn_cast<GlobalValue>(GV->getOperand(0))) 1160 return false; 1161 1162 // To be a got equivalent, at least one of its users need to be a constant 1163 // expression used by another global variable. 1164 for (auto *U : GV->users()) 1165 NumGOTEquivUsers += getNumGlobalVariableUses(dyn_cast<Constant>(U)); 1166 1167 return NumGOTEquivUsers > 0; 1168 } 1169 1170 /// \brief Unnamed constant global variables solely contaning a pointer to 1171 /// another globals variable is equivalent to a GOT table entry; it contains the 1172 /// the address of another symbol. Optimize it and replace accesses to these 1173 /// "GOT equivalents" by using the GOT entry for the final global instead. 1174 /// Compute GOT equivalent candidates among all global variables to avoid 1175 /// emitting them if possible later on, after it use is replaced by a GOT entry 1176 /// access. 1177 void AsmPrinter::computeGlobalGOTEquivs(Module &M) { 1178 if (!getObjFileLowering().supportIndirectSymViaGOTPCRel()) 1179 return; 1180 1181 for (const auto &G : M.globals()) { 1182 unsigned NumGOTEquivUsers = 0; 1183 if (!isGOTEquivalentCandidate(&G, NumGOTEquivUsers)) 1184 continue; 1185 1186 const MCSymbol *GOTEquivSym = getSymbol(&G); 1187 GlobalGOTEquivs[GOTEquivSym] = std::make_pair(&G, NumGOTEquivUsers); 1188 } 1189 } 1190 1191 /// \brief Constant expressions using GOT equivalent globals may not be eligible 1192 /// for PC relative GOT entry conversion, in such cases we need to emit such 1193 /// globals we previously omitted in EmitGlobalVariable. 1194 void AsmPrinter::emitGlobalGOTEquivs() { 1195 if (!getObjFileLowering().supportIndirectSymViaGOTPCRel()) 1196 return; 1197 1198 SmallVector<const GlobalVariable *, 8> FailedCandidates; 1199 for (auto &I : GlobalGOTEquivs) { 1200 const GlobalVariable *GV = I.second.first; 1201 unsigned Cnt = I.second.second; 1202 if (Cnt) 1203 FailedCandidates.push_back(GV); 1204 } 1205 GlobalGOTEquivs.clear(); 1206 1207 for (auto *GV : FailedCandidates) 1208 EmitGlobalVariable(GV); 1209 } 1210 1211 void AsmPrinter::emitGlobalIndirectSymbol(Module &M, 1212 const GlobalIndirectSymbol& GIS) { 1213 MCSymbol *Name = getSymbol(&GIS); 1214 1215 if (GIS.hasExternalLinkage() || !MAI->getWeakRefDirective()) 1216 OutStreamer->EmitSymbolAttribute(Name, MCSA_Global); 1217 else if (GIS.hasWeakLinkage() || GIS.hasLinkOnceLinkage()) 1218 OutStreamer->EmitSymbolAttribute(Name, MCSA_WeakReference); 1219 else 1220 assert(GIS.hasLocalLinkage() && "Invalid alias or ifunc linkage"); 1221 1222 // Set the symbol type to function if the alias has a function type. 1223 // This affects codegen when the aliasee is not a function. 1224 if (GIS.getType()->getPointerElementType()->isFunctionTy()) { 1225 OutStreamer->EmitSymbolAttribute(Name, MCSA_ELF_TypeFunction); 1226 if (isa<GlobalIFunc>(GIS)) 1227 OutStreamer->EmitSymbolAttribute(Name, MCSA_ELF_TypeIndFunction); 1228 } 1229 1230 EmitVisibility(Name, GIS.getVisibility()); 1231 1232 const MCExpr *Expr = lowerConstant(GIS.getIndirectSymbol()); 1233 1234 if (isa<GlobalAlias>(&GIS) && MAI->hasAltEntry() && isa<MCBinaryExpr>(Expr)) 1235 OutStreamer->EmitSymbolAttribute(Name, MCSA_AltEntry); 1236 1237 // Emit the directives as assignments aka .set: 1238 OutStreamer->EmitAssignment(Name, Expr); 1239 1240 if (auto *GA = dyn_cast<GlobalAlias>(&GIS)) { 1241 // If the aliasee does not correspond to a symbol in the output, i.e. the 1242 // alias is not of an object or the aliased object is private, then set the 1243 // size of the alias symbol from the type of the alias. We don't do this in 1244 // other situations as the alias and aliasee having differing types but same 1245 // size may be intentional. 1246 const GlobalObject *BaseObject = GA->getBaseObject(); 1247 if (MAI->hasDotTypeDotSizeDirective() && GA->getValueType()->isSized() && 1248 (!BaseObject || BaseObject->hasPrivateLinkage())) { 1249 const DataLayout &DL = M.getDataLayout(); 1250 uint64_t Size = DL.getTypeAllocSize(GA->getValueType()); 1251 OutStreamer->emitELFSize(Name, MCConstantExpr::create(Size, OutContext)); 1252 } 1253 } 1254 } 1255 1256 bool AsmPrinter::doFinalization(Module &M) { 1257 // Set the MachineFunction to nullptr so that we can catch attempted 1258 // accesses to MF specific features at the module level and so that 1259 // we can conditionalize accesses based on whether or not it is nullptr. 1260 MF = nullptr; 1261 1262 // Gather all GOT equivalent globals in the module. We really need two 1263 // passes over the globals: one to compute and another to avoid its emission 1264 // in EmitGlobalVariable, otherwise we would not be able to handle cases 1265 // where the got equivalent shows up before its use. 1266 computeGlobalGOTEquivs(M); 1267 1268 // Emit global variables. 1269 for (const auto &G : M.globals()) 1270 EmitGlobalVariable(&G); 1271 1272 // Emit remaining GOT equivalent globals. 1273 emitGlobalGOTEquivs(); 1274 1275 // Emit visibility info for declarations 1276 for (const Function &F : M) { 1277 if (!F.isDeclarationForLinker()) 1278 continue; 1279 GlobalValue::VisibilityTypes V = F.getVisibility(); 1280 if (V == GlobalValue::DefaultVisibility) 1281 continue; 1282 1283 MCSymbol *Name = getSymbol(&F); 1284 EmitVisibility(Name, V, false); 1285 } 1286 1287 const TargetLoweringObjectFile &TLOF = getObjFileLowering(); 1288 1289 TLOF.emitModuleMetadata(*OutStreamer, M, TM); 1290 1291 if (TM.getTargetTriple().isOSBinFormatELF()) { 1292 MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>(); 1293 1294 // Output stubs for external and common global variables. 1295 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); 1296 if (!Stubs.empty()) { 1297 OutStreamer->SwitchSection(TLOF.getDataSection()); 1298 const DataLayout &DL = M.getDataLayout(); 1299 1300 for (const auto &Stub : Stubs) { 1301 OutStreamer->EmitLabel(Stub.first); 1302 OutStreamer->EmitSymbolValue(Stub.second.getPointer(), 1303 DL.getPointerSize()); 1304 } 1305 } 1306 } 1307 1308 // Finalize debug and EH information. 1309 for (const HandlerInfo &HI : Handlers) { 1310 NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName, 1311 HI.TimerGroupDescription, TimePassesIsEnabled); 1312 HI.Handler->endModule(); 1313 delete HI.Handler; 1314 } 1315 Handlers.clear(); 1316 DD = nullptr; 1317 1318 // If the target wants to know about weak references, print them all. 1319 if (MAI->getWeakRefDirective()) { 1320 // FIXME: This is not lazy, it would be nice to only print weak references 1321 // to stuff that is actually used. Note that doing so would require targets 1322 // to notice uses in operands (due to constant exprs etc). This should 1323 // happen with the MC stuff eventually. 1324 1325 // Print out module-level global objects here. 1326 for (const auto &GO : M.global_objects()) { 1327 if (!GO.hasExternalWeakLinkage()) 1328 continue; 1329 OutStreamer->EmitSymbolAttribute(getSymbol(&GO), MCSA_WeakReference); 1330 } 1331 } 1332 1333 OutStreamer->AddBlankLine(); 1334 1335 // Print aliases in topological order, that is, for each alias a = b, 1336 // b must be printed before a. 1337 // This is because on some targets (e.g. PowerPC) linker expects aliases in 1338 // such an order to generate correct TOC information. 1339 SmallVector<const GlobalAlias *, 16> AliasStack; 1340 SmallPtrSet<const GlobalAlias *, 16> AliasVisited; 1341 for (const auto &Alias : M.aliases()) { 1342 for (const GlobalAlias *Cur = &Alias; Cur; 1343 Cur = dyn_cast<GlobalAlias>(Cur->getAliasee())) { 1344 if (!AliasVisited.insert(Cur).second) 1345 break; 1346 AliasStack.push_back(Cur); 1347 } 1348 for (const GlobalAlias *AncestorAlias : llvm::reverse(AliasStack)) 1349 emitGlobalIndirectSymbol(M, *AncestorAlias); 1350 AliasStack.clear(); 1351 } 1352 for (const auto &IFunc : M.ifuncs()) 1353 emitGlobalIndirectSymbol(M, IFunc); 1354 1355 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); 1356 assert(MI && "AsmPrinter didn't require GCModuleInfo?"); 1357 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; ) 1358 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(**--I)) 1359 MP->finishAssembly(M, *MI, *this); 1360 1361 // Emit llvm.ident metadata in an '.ident' directive. 1362 EmitModuleIdents(M); 1363 1364 // Emit __morestack address if needed for indirect calls. 1365 if (MMI->usesMorestackAddr()) { 1366 unsigned Align = 1; 1367 MCSection *ReadOnlySection = getObjFileLowering().getSectionForConstant( 1368 getDataLayout(), SectionKind::getReadOnly(), 1369 /*C=*/nullptr, Align); 1370 OutStreamer->SwitchSection(ReadOnlySection); 1371 1372 MCSymbol *AddrSymbol = 1373 OutContext.getOrCreateSymbol(StringRef("__morestack_addr")); 1374 OutStreamer->EmitLabel(AddrSymbol); 1375 1376 unsigned PtrSize = MAI->getCodePointerSize(); 1377 OutStreamer->EmitSymbolValue(GetExternalSymbolSymbol("__morestack"), 1378 PtrSize); 1379 } 1380 1381 // If we don't have any trampolines, then we don't require stack memory 1382 // to be executable. Some targets have a directive to declare this. 1383 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline"); 1384 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty()) 1385 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext)) 1386 OutStreamer->SwitchSection(S); 1387 1388 // Allow the target to emit any magic that it wants at the end of the file, 1389 // after everything else has gone out. 1390 EmitEndOfAsmFile(M); 1391 1392 MMI = nullptr; 1393 1394 OutStreamer->Finish(); 1395 OutStreamer->reset(); 1396 1397 return false; 1398 } 1399 1400 MCSymbol *AsmPrinter::getCurExceptionSym() { 1401 if (!CurExceptionSym) 1402 CurExceptionSym = createTempSymbol("exception"); 1403 return CurExceptionSym; 1404 } 1405 1406 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) { 1407 this->MF = &MF; 1408 // Get the function symbol. 1409 CurrentFnSym = getSymbol(MF.getFunction()); 1410 CurrentFnSymForSize = CurrentFnSym; 1411 CurrentFnBegin = nullptr; 1412 CurExceptionSym = nullptr; 1413 bool NeedsLocalForSize = MAI->needsLocalForSize(); 1414 if (needFuncLabelsForEHOrDebugInfo(MF, MMI) || NeedsLocalForSize) { 1415 CurrentFnBegin = createTempSymbol("func_begin"); 1416 if (NeedsLocalForSize) 1417 CurrentFnSymForSize = CurrentFnBegin; 1418 } 1419 1420 ORE = &getAnalysis<MachineOptimizationRemarkEmitterPass>().getORE(); 1421 if (isVerbose()) 1422 LI = &getAnalysis<MachineLoopInfo>(); 1423 1424 const TargetSubtargetInfo &STI = MF.getSubtarget(); 1425 EnablePrintSchedInfo = PrintSchedule.getNumOccurrences() 1426 ? PrintSchedule 1427 : STI.supportPrintSchedInfo(); 1428 } 1429 1430 namespace { 1431 1432 // Keep track the alignment, constpool entries per Section. 1433 struct SectionCPs { 1434 MCSection *S; 1435 unsigned Alignment; 1436 SmallVector<unsigned, 4> CPEs; 1437 1438 SectionCPs(MCSection *s, unsigned a) : S(s), Alignment(a) {} 1439 }; 1440 1441 } // end anonymous namespace 1442 1443 /// EmitConstantPool - Print to the current output stream assembly 1444 /// representations of the constants in the constant pool MCP. This is 1445 /// used to print out constants which have been "spilled to memory" by 1446 /// the code generator. 1447 /// 1448 void AsmPrinter::EmitConstantPool() { 1449 const MachineConstantPool *MCP = MF->getConstantPool(); 1450 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); 1451 if (CP.empty()) return; 1452 1453 // Calculate sections for constant pool entries. We collect entries to go into 1454 // the same section together to reduce amount of section switch statements. 1455 SmallVector<SectionCPs, 4> CPSections; 1456 for (unsigned i = 0, e = CP.size(); i != e; ++i) { 1457 const MachineConstantPoolEntry &CPE = CP[i]; 1458 unsigned Align = CPE.getAlignment(); 1459 1460 SectionKind Kind = CPE.getSectionKind(&getDataLayout()); 1461 1462 const Constant *C = nullptr; 1463 if (!CPE.isMachineConstantPoolEntry()) 1464 C = CPE.Val.ConstVal; 1465 1466 MCSection *S = getObjFileLowering().getSectionForConstant(getDataLayout(), 1467 Kind, C, Align); 1468 1469 // The number of sections are small, just do a linear search from the 1470 // last section to the first. 1471 bool Found = false; 1472 unsigned SecIdx = CPSections.size(); 1473 while (SecIdx != 0) { 1474 if (CPSections[--SecIdx].S == S) { 1475 Found = true; 1476 break; 1477 } 1478 } 1479 if (!Found) { 1480 SecIdx = CPSections.size(); 1481 CPSections.push_back(SectionCPs(S, Align)); 1482 } 1483 1484 if (Align > CPSections[SecIdx].Alignment) 1485 CPSections[SecIdx].Alignment = Align; 1486 CPSections[SecIdx].CPEs.push_back(i); 1487 } 1488 1489 // Now print stuff into the calculated sections. 1490 const MCSection *CurSection = nullptr; 1491 unsigned Offset = 0; 1492 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) { 1493 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) { 1494 unsigned CPI = CPSections[i].CPEs[j]; 1495 MCSymbol *Sym = GetCPISymbol(CPI); 1496 if (!Sym->isUndefined()) 1497 continue; 1498 1499 if (CurSection != CPSections[i].S) { 1500 OutStreamer->SwitchSection(CPSections[i].S); 1501 EmitAlignment(Log2_32(CPSections[i].Alignment)); 1502 CurSection = CPSections[i].S; 1503 Offset = 0; 1504 } 1505 1506 MachineConstantPoolEntry CPE = CP[CPI]; 1507 1508 // Emit inter-object padding for alignment. 1509 unsigned AlignMask = CPE.getAlignment() - 1; 1510 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; 1511 OutStreamer->EmitZeros(NewOffset - Offset); 1512 1513 Type *Ty = CPE.getType(); 1514 Offset = NewOffset + getDataLayout().getTypeAllocSize(Ty); 1515 1516 OutStreamer->EmitLabel(Sym); 1517 if (CPE.isMachineConstantPoolEntry()) 1518 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal); 1519 else 1520 EmitGlobalConstant(getDataLayout(), CPE.Val.ConstVal); 1521 } 1522 } 1523 } 1524 1525 /// EmitJumpTableInfo - Print assembly representations of the jump tables used 1526 /// by the current function to the current output stream. 1527 /// 1528 void AsmPrinter::EmitJumpTableInfo() { 1529 const DataLayout &DL = MF->getDataLayout(); 1530 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo(); 1531 if (!MJTI) return; 1532 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return; 1533 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); 1534 if (JT.empty()) return; 1535 1536 // Pick the directive to use to print the jump table entries, and switch to 1537 // the appropriate section. 1538 const Function *F = MF->getFunction(); 1539 const TargetLoweringObjectFile &TLOF = getObjFileLowering(); 1540 bool JTInDiffSection = !TLOF.shouldPutJumpTableInFunctionSection( 1541 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32, 1542 *F); 1543 if (JTInDiffSection) { 1544 // Drop it in the readonly section. 1545 MCSection *ReadOnlySection = TLOF.getSectionForJumpTable(*F, TM); 1546 OutStreamer->SwitchSection(ReadOnlySection); 1547 } 1548 1549 EmitAlignment(Log2_32(MJTI->getEntryAlignment(DL))); 1550 1551 // Jump tables in code sections are marked with a data_region directive 1552 // where that's supported. 1553 if (!JTInDiffSection) 1554 OutStreamer->EmitDataRegion(MCDR_DataRegionJT32); 1555 1556 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) { 1557 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; 1558 1559 // If this jump table was deleted, ignore it. 1560 if (JTBBs.empty()) continue; 1561 1562 // For the EK_LabelDifference32 entry, if using .set avoids a relocation, 1563 /// emit a .set directive for each unique entry. 1564 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 && 1565 MAI->doesSetDirectiveSuppressReloc()) { 1566 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets; 1567 const TargetLowering *TLI = MF->getSubtarget().getTargetLowering(); 1568 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext); 1569 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) { 1570 const MachineBasicBlock *MBB = JTBBs[ii]; 1571 if (!EmittedSets.insert(MBB).second) 1572 continue; 1573 1574 // .set LJTSet, LBB32-base 1575 const MCExpr *LHS = 1576 MCSymbolRefExpr::create(MBB->getSymbol(), OutContext); 1577 OutStreamer->EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()), 1578 MCBinaryExpr::createSub(LHS, Base, 1579 OutContext)); 1580 } 1581 } 1582 1583 // On some targets (e.g. Darwin) we want to emit two consecutive labels 1584 // before each jump table. The first label is never referenced, but tells 1585 // the assembler and linker the extents of the jump table object. The 1586 // second label is actually referenced by the code. 1587 if (JTInDiffSection && DL.hasLinkerPrivateGlobalPrefix()) 1588 // FIXME: This doesn't have to have any specific name, just any randomly 1589 // named and numbered 'l' label would work. Simplify GetJTISymbol. 1590 OutStreamer->EmitLabel(GetJTISymbol(JTI, true)); 1591 1592 OutStreamer->EmitLabel(GetJTISymbol(JTI)); 1593 1594 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) 1595 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI); 1596 } 1597 if (!JTInDiffSection) 1598 OutStreamer->EmitDataRegion(MCDR_DataRegionEnd); 1599 } 1600 1601 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the 1602 /// current stream. 1603 void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI, 1604 const MachineBasicBlock *MBB, 1605 unsigned UID) const { 1606 assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block"); 1607 const MCExpr *Value = nullptr; 1608 switch (MJTI->getEntryKind()) { 1609 case MachineJumpTableInfo::EK_Inline: 1610 llvm_unreachable("Cannot emit EK_Inline jump table entry"); 1611 case MachineJumpTableInfo::EK_Custom32: 1612 Value = MF->getSubtarget().getTargetLowering()->LowerCustomJumpTableEntry( 1613 MJTI, MBB, UID, OutContext); 1614 break; 1615 case MachineJumpTableInfo::EK_BlockAddress: 1616 // EK_BlockAddress - Each entry is a plain address of block, e.g.: 1617 // .word LBB123 1618 Value = MCSymbolRefExpr::create(MBB->getSymbol(), OutContext); 1619 break; 1620 case MachineJumpTableInfo::EK_GPRel32BlockAddress: { 1621 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded 1622 // with a relocation as gp-relative, e.g.: 1623 // .gprel32 LBB123 1624 MCSymbol *MBBSym = MBB->getSymbol(); 1625 OutStreamer->EmitGPRel32Value(MCSymbolRefExpr::create(MBBSym, OutContext)); 1626 return; 1627 } 1628 1629 case MachineJumpTableInfo::EK_GPRel64BlockAddress: { 1630 // EK_GPRel64BlockAddress - Each entry is an address of block, encoded 1631 // with a relocation as gp-relative, e.g.: 1632 // .gpdword LBB123 1633 MCSymbol *MBBSym = MBB->getSymbol(); 1634 OutStreamer->EmitGPRel64Value(MCSymbolRefExpr::create(MBBSym, OutContext)); 1635 return; 1636 } 1637 1638 case MachineJumpTableInfo::EK_LabelDifference32: { 1639 // Each entry is the address of the block minus the address of the jump 1640 // table. This is used for PIC jump tables where gprel32 is not supported. 1641 // e.g.: 1642 // .word LBB123 - LJTI1_2 1643 // If the .set directive avoids relocations, this is emitted as: 1644 // .set L4_5_set_123, LBB123 - LJTI1_2 1645 // .word L4_5_set_123 1646 if (MAI->doesSetDirectiveSuppressReloc()) { 1647 Value = MCSymbolRefExpr::create(GetJTSetSymbol(UID, MBB->getNumber()), 1648 OutContext); 1649 break; 1650 } 1651 Value = MCSymbolRefExpr::create(MBB->getSymbol(), OutContext); 1652 const TargetLowering *TLI = MF->getSubtarget().getTargetLowering(); 1653 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF, UID, OutContext); 1654 Value = MCBinaryExpr::createSub(Value, Base, OutContext); 1655 break; 1656 } 1657 } 1658 1659 assert(Value && "Unknown entry kind!"); 1660 1661 unsigned EntrySize = MJTI->getEntrySize(getDataLayout()); 1662 OutStreamer->EmitValue(Value, EntrySize); 1663 } 1664 1665 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a 1666 /// special global used by LLVM. If so, emit it and return true, otherwise 1667 /// do nothing and return false. 1668 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { 1669 if (GV->getName() == "llvm.used") { 1670 if (MAI->hasNoDeadStrip()) // No need to emit this at all. 1671 EmitLLVMUsedList(cast<ConstantArray>(GV->getInitializer())); 1672 return true; 1673 } 1674 1675 // Ignore debug and non-emitted data. This handles llvm.compiler.used. 1676 if (GV->getSection() == "llvm.metadata" || 1677 GV->hasAvailableExternallyLinkage()) 1678 return true; 1679 1680 if (!GV->hasAppendingLinkage()) return false; 1681 1682 assert(GV->hasInitializer() && "Not a special LLVM global!"); 1683 1684 if (GV->getName() == "llvm.global_ctors") { 1685 EmitXXStructorList(GV->getParent()->getDataLayout(), GV->getInitializer(), 1686 /* isCtor */ true); 1687 1688 return true; 1689 } 1690 1691 if (GV->getName() == "llvm.global_dtors") { 1692 EmitXXStructorList(GV->getParent()->getDataLayout(), GV->getInitializer(), 1693 /* isCtor */ false); 1694 1695 return true; 1696 } 1697 1698 report_fatal_error("unknown special variable"); 1699 } 1700 1701 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each 1702 /// global in the specified llvm.used list for which emitUsedDirectiveFor 1703 /// is true, as being used with this directive. 1704 void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) { 1705 // Should be an array of 'i8*'. 1706 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { 1707 const GlobalValue *GV = 1708 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts()); 1709 if (GV) 1710 OutStreamer->EmitSymbolAttribute(getSymbol(GV), MCSA_NoDeadStrip); 1711 } 1712 } 1713 1714 namespace { 1715 1716 struct Structor { 1717 int Priority = 0; 1718 Constant *Func = nullptr; 1719 GlobalValue *ComdatKey = nullptr; 1720 1721 Structor() = default; 1722 }; 1723 1724 } // end anonymous namespace 1725 1726 /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init 1727 /// priority. 1728 void AsmPrinter::EmitXXStructorList(const DataLayout &DL, const Constant *List, 1729 bool isCtor) { 1730 // Should be an array of '{ int, void ()* }' structs. The first value is the 1731 // init priority. 1732 if (!isa<ConstantArray>(List)) return; 1733 1734 // Sanity check the structors list. 1735 const ConstantArray *InitList = dyn_cast<ConstantArray>(List); 1736 if (!InitList) return; // Not an array! 1737 StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType()); 1738 // FIXME: Only allow the 3-field form in LLVM 4.0. 1739 if (!ETy || ETy->getNumElements() < 2 || ETy->getNumElements() > 3) 1740 return; // Not an array of two or three elements! 1741 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) || 1742 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr). 1743 if (ETy->getNumElements() == 3 && !isa<PointerType>(ETy->getTypeAtIndex(2U))) 1744 return; // Not (int, ptr, ptr). 1745 1746 // Gather the structors in a form that's convenient for sorting by priority. 1747 SmallVector<Structor, 8> Structors; 1748 for (Value *O : InitList->operands()) { 1749 ConstantStruct *CS = dyn_cast<ConstantStruct>(O); 1750 if (!CS) continue; // Malformed. 1751 if (CS->getOperand(1)->isNullValue()) 1752 break; // Found a null terminator, skip the rest. 1753 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); 1754 if (!Priority) continue; // Malformed. 1755 Structors.push_back(Structor()); 1756 Structor &S = Structors.back(); 1757 S.Priority = Priority->getLimitedValue(65535); 1758 S.Func = CS->getOperand(1); 1759 if (ETy->getNumElements() == 3 && !CS->getOperand(2)->isNullValue()) 1760 S.ComdatKey = 1761 dyn_cast<GlobalValue>(CS->getOperand(2)->stripPointerCasts()); 1762 } 1763 1764 // Emit the function pointers in the target-specific order 1765 unsigned Align = Log2_32(DL.getPointerPrefAlignment()); 1766 std::stable_sort(Structors.begin(), Structors.end(), 1767 [](const Structor &L, 1768 const Structor &R) { return L.Priority < R.Priority; }); 1769 for (Structor &S : Structors) { 1770 const TargetLoweringObjectFile &Obj = getObjFileLowering(); 1771 const MCSymbol *KeySym = nullptr; 1772 if (GlobalValue *GV = S.ComdatKey) { 1773 if (GV->isDeclarationForLinker()) 1774 // If the associated variable is not defined in this module 1775 // (it might be available_externally, or have been an 1776 // available_externally definition that was dropped by the 1777 // EliminateAvailableExternally pass), some other TU 1778 // will provide its dynamic initializer. 1779 continue; 1780 1781 KeySym = getSymbol(GV); 1782 } 1783 MCSection *OutputSection = 1784 (isCtor ? Obj.getStaticCtorSection(S.Priority, KeySym) 1785 : Obj.getStaticDtorSection(S.Priority, KeySym)); 1786 OutStreamer->SwitchSection(OutputSection); 1787 if (OutStreamer->getCurrentSection() != OutStreamer->getPreviousSection()) 1788 EmitAlignment(Align); 1789 EmitXXStructor(DL, S.Func); 1790 } 1791 } 1792 1793 void AsmPrinter::EmitModuleIdents(Module &M) { 1794 if (!MAI->hasIdentDirective()) 1795 return; 1796 1797 if (const NamedMDNode *NMD = M.getNamedMetadata("llvm.ident")) { 1798 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { 1799 const MDNode *N = NMD->getOperand(i); 1800 assert(N->getNumOperands() == 1 && 1801 "llvm.ident metadata entry can have only one operand"); 1802 const MDString *S = cast<MDString>(N->getOperand(0)); 1803 OutStreamer->EmitIdent(S->getString()); 1804 } 1805 } 1806 } 1807 1808 //===--------------------------------------------------------------------===// 1809 // Emission and print routines 1810 // 1811 1812 /// EmitInt8 - Emit a byte directive and value. 1813 /// 1814 void AsmPrinter::EmitInt8(int Value) const { 1815 OutStreamer->EmitIntValue(Value, 1); 1816 } 1817 1818 /// EmitInt16 - Emit a short directive and value. 1819 /// 1820 void AsmPrinter::EmitInt16(int Value) const { 1821 OutStreamer->EmitIntValue(Value, 2); 1822 } 1823 1824 /// EmitInt32 - Emit a long directive and value. 1825 /// 1826 void AsmPrinter::EmitInt32(int Value) const { 1827 OutStreamer->EmitIntValue(Value, 4); 1828 } 1829 1830 /// Emit something like ".long Hi-Lo" where the size in bytes of the directive 1831 /// is specified by Size and Hi/Lo specify the labels. This implicitly uses 1832 /// .set if it avoids relocations. 1833 void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo, 1834 unsigned Size) const { 1835 OutStreamer->emitAbsoluteSymbolDiff(Hi, Lo, Size); 1836 } 1837 1838 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset" 1839 /// where the size in bytes of the directive is specified by Size and Label 1840 /// specifies the label. This implicitly uses .set if it is available. 1841 void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset, 1842 unsigned Size, 1843 bool IsSectionRelative) const { 1844 if (MAI->needsDwarfSectionOffsetDirective() && IsSectionRelative) { 1845 OutStreamer->EmitCOFFSecRel32(Label, Offset); 1846 if (Size > 4) 1847 OutStreamer->EmitZeros(Size - 4); 1848 return; 1849 } 1850 1851 // Emit Label+Offset (or just Label if Offset is zero) 1852 const MCExpr *Expr = MCSymbolRefExpr::create(Label, OutContext); 1853 if (Offset) 1854 Expr = MCBinaryExpr::createAdd( 1855 Expr, MCConstantExpr::create(Offset, OutContext), OutContext); 1856 1857 OutStreamer->EmitValue(Expr, Size); 1858 } 1859 1860 //===----------------------------------------------------------------------===// 1861 1862 // EmitAlignment - Emit an alignment directive to the specified power of 1863 // two boundary. For example, if you pass in 3 here, you will get an 8 1864 // byte alignment. If a global value is specified, and if that global has 1865 // an explicit alignment requested, it will override the alignment request 1866 // if required for correctness. 1867 // 1868 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalObject *GV) const { 1869 if (GV) 1870 NumBits = getGVAlignmentLog2(GV, GV->getParent()->getDataLayout(), NumBits); 1871 1872 if (NumBits == 0) return; // 1-byte aligned: no need to emit alignment. 1873 1874 assert(NumBits < 1875 static_cast<unsigned>(std::numeric_limits<unsigned>::digits) && 1876 "undefined behavior"); 1877 if (getCurrentSection()->getKind().isText()) 1878 OutStreamer->EmitCodeAlignment(1u << NumBits); 1879 else 1880 OutStreamer->EmitValueToAlignment(1u << NumBits); 1881 } 1882 1883 //===----------------------------------------------------------------------===// 1884 // Constant emission. 1885 //===----------------------------------------------------------------------===// 1886 1887 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { 1888 MCContext &Ctx = OutContext; 1889 1890 if (CV->isNullValue() || isa<UndefValue>(CV)) 1891 return MCConstantExpr::create(0, Ctx); 1892 1893 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) 1894 return MCConstantExpr::create(CI->getZExtValue(), Ctx); 1895 1896 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) 1897 return MCSymbolRefExpr::create(getSymbol(GV), Ctx); 1898 1899 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) 1900 return MCSymbolRefExpr::create(GetBlockAddressSymbol(BA), Ctx); 1901 1902 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); 1903 if (!CE) { 1904 llvm_unreachable("Unknown constant value to lower!"); 1905 } 1906 1907 switch (CE->getOpcode()) { 1908 default: 1909 // If the code isn't optimized, there may be outstanding folding 1910 // opportunities. Attempt to fold the expression using DataLayout as a 1911 // last resort before giving up. 1912 if (Constant *C = ConstantFoldConstant(CE, getDataLayout())) 1913 if (C != CE) 1914 return lowerConstant(C); 1915 1916 // Otherwise report the problem to the user. 1917 { 1918 std::string S; 1919 raw_string_ostream OS(S); 1920 OS << "Unsupported expression in static initializer: "; 1921 CE->printAsOperand(OS, /*PrintType=*/false, 1922 !MF ? nullptr : MF->getFunction()->getParent()); 1923 report_fatal_error(OS.str()); 1924 } 1925 case Instruction::GetElementPtr: { 1926 // Generate a symbolic expression for the byte address 1927 APInt OffsetAI(getDataLayout().getPointerTypeSizeInBits(CE->getType()), 0); 1928 cast<GEPOperator>(CE)->accumulateConstantOffset(getDataLayout(), OffsetAI); 1929 1930 const MCExpr *Base = lowerConstant(CE->getOperand(0)); 1931 if (!OffsetAI) 1932 return Base; 1933 1934 int64_t Offset = OffsetAI.getSExtValue(); 1935 return MCBinaryExpr::createAdd(Base, MCConstantExpr::create(Offset, Ctx), 1936 Ctx); 1937 } 1938 1939 case Instruction::Trunc: 1940 // We emit the value and depend on the assembler to truncate the generated 1941 // expression properly. This is important for differences between 1942 // blockaddress labels. Since the two labels are in the same function, it 1943 // is reasonable to treat their delta as a 32-bit value. 1944 LLVM_FALLTHROUGH; 1945 case Instruction::BitCast: 1946 return lowerConstant(CE->getOperand(0)); 1947 1948 case Instruction::IntToPtr: { 1949 const DataLayout &DL = getDataLayout(); 1950 1951 // Handle casts to pointers by changing them into casts to the appropriate 1952 // integer type. This promotes constant folding and simplifies this code. 1953 Constant *Op = CE->getOperand(0); 1954 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), 1955 false/*ZExt*/); 1956 return lowerConstant(Op); 1957 } 1958 1959 case Instruction::PtrToInt: { 1960 const DataLayout &DL = getDataLayout(); 1961 1962 // Support only foldable casts to/from pointers that can be eliminated by 1963 // changing the pointer to the appropriately sized integer type. 1964 Constant *Op = CE->getOperand(0); 1965 Type *Ty = CE->getType(); 1966 1967 const MCExpr *OpExpr = lowerConstant(Op); 1968 1969 // We can emit the pointer value into this slot if the slot is an 1970 // integer slot equal to the size of the pointer. 1971 if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType())) 1972 return OpExpr; 1973 1974 // Otherwise the pointer is smaller than the resultant integer, mask off 1975 // the high bits so we are sure to get a proper truncation if the input is 1976 // a constant expr. 1977 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); 1978 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); 1979 return MCBinaryExpr::createAnd(OpExpr, MaskExpr, Ctx); 1980 } 1981 1982 case Instruction::Sub: { 1983 GlobalValue *LHSGV; 1984 APInt LHSOffset; 1985 if (IsConstantOffsetFromGlobal(CE->getOperand(0), LHSGV, LHSOffset, 1986 getDataLayout())) { 1987 GlobalValue *RHSGV; 1988 APInt RHSOffset; 1989 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset, 1990 getDataLayout())) { 1991 const MCExpr *RelocExpr = 1992 getObjFileLowering().lowerRelativeReference(LHSGV, RHSGV, TM); 1993 if (!RelocExpr) 1994 RelocExpr = MCBinaryExpr::createSub( 1995 MCSymbolRefExpr::create(getSymbol(LHSGV), Ctx), 1996 MCSymbolRefExpr::create(getSymbol(RHSGV), Ctx), Ctx); 1997 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); 1998 if (Addend != 0) 1999 RelocExpr = MCBinaryExpr::createAdd( 2000 RelocExpr, MCConstantExpr::create(Addend, Ctx), Ctx); 2001 return RelocExpr; 2002 } 2003 } 2004 } 2005 // else fallthrough 2006 2007 // The MC library also has a right-shift operator, but it isn't consistently 2008 // signed or unsigned between different targets. 2009 case Instruction::Add: 2010 case Instruction::Mul: 2011 case Instruction::SDiv: 2012 case Instruction::SRem: 2013 case Instruction::Shl: 2014 case Instruction::And: 2015 case Instruction::Or: 2016 case Instruction::Xor: { 2017 const MCExpr *LHS = lowerConstant(CE->getOperand(0)); 2018 const MCExpr *RHS = lowerConstant(CE->getOperand(1)); 2019 switch (CE->getOpcode()) { 2020 default: llvm_unreachable("Unknown binary operator constant cast expr"); 2021 case Instruction::Add: return MCBinaryExpr::createAdd(LHS, RHS, Ctx); 2022 case Instruction::Sub: return MCBinaryExpr::createSub(LHS, RHS, Ctx); 2023 case Instruction::Mul: return MCBinaryExpr::createMul(LHS, RHS, Ctx); 2024 case Instruction::SDiv: return MCBinaryExpr::createDiv(LHS, RHS, Ctx); 2025 case Instruction::SRem: return MCBinaryExpr::createMod(LHS, RHS, Ctx); 2026 case Instruction::Shl: return MCBinaryExpr::createShl(LHS, RHS, Ctx); 2027 case Instruction::And: return MCBinaryExpr::createAnd(LHS, RHS, Ctx); 2028 case Instruction::Or: return MCBinaryExpr::createOr (LHS, RHS, Ctx); 2029 case Instruction::Xor: return MCBinaryExpr::createXor(LHS, RHS, Ctx); 2030 } 2031 } 2032 } 2033 } 2034 2035 static void emitGlobalConstantImpl(const DataLayout &DL, const Constant *C, 2036 AsmPrinter &AP, 2037 const Constant *BaseCV = nullptr, 2038 uint64_t Offset = 0); 2039 2040 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP); 2041 2042 /// isRepeatedByteSequence - Determine whether the given value is 2043 /// composed of a repeated sequence of identical bytes and return the 2044 /// byte value. If it is not a repeated sequence, return -1. 2045 static int isRepeatedByteSequence(const ConstantDataSequential *V) { 2046 StringRef Data = V->getRawDataValues(); 2047 assert(!Data.empty() && "Empty aggregates should be CAZ node"); 2048 char C = Data[0]; 2049 for (unsigned i = 1, e = Data.size(); i != e; ++i) 2050 if (Data[i] != C) return -1; 2051 return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1. 2052 } 2053 2054 /// isRepeatedByteSequence - Determine whether the given value is 2055 /// composed of a repeated sequence of identical bytes and return the 2056 /// byte value. If it is not a repeated sequence, return -1. 2057 static int isRepeatedByteSequence(const Value *V, const DataLayout &DL) { 2058 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 2059 uint64_t Size = DL.getTypeAllocSizeInBits(V->getType()); 2060 assert(Size % 8 == 0); 2061 2062 // Extend the element to take zero padding into account. 2063 APInt Value = CI->getValue().zextOrSelf(Size); 2064 if (!Value.isSplat(8)) 2065 return -1; 2066 2067 return Value.zextOrTrunc(8).getZExtValue(); 2068 } 2069 if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) { 2070 // Make sure all array elements are sequences of the same repeated 2071 // byte. 2072 assert(CA->getNumOperands() != 0 && "Should be a CAZ"); 2073 Constant *Op0 = CA->getOperand(0); 2074 int Byte = isRepeatedByteSequence(Op0, DL); 2075 if (Byte == -1) 2076 return -1; 2077 2078 // All array elements must be equal. 2079 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) 2080 if (CA->getOperand(i) != Op0) 2081 return -1; 2082 return Byte; 2083 } 2084 2085 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) 2086 return isRepeatedByteSequence(CDS); 2087 2088 return -1; 2089 } 2090 2091 static void emitGlobalConstantDataSequential(const DataLayout &DL, 2092 const ConstantDataSequential *CDS, 2093 AsmPrinter &AP) { 2094 // See if we can aggregate this into a .fill, if so, emit it as such. 2095 int Value = isRepeatedByteSequence(CDS, DL); 2096 if (Value != -1) { 2097 uint64_t Bytes = DL.getTypeAllocSize(CDS->getType()); 2098 // Don't emit a 1-byte object as a .fill. 2099 if (Bytes > 1) 2100 return AP.OutStreamer->emitFill(Bytes, Value); 2101 } 2102 2103 // If this can be emitted with .ascii/.asciz, emit it as such. 2104 if (CDS->isString()) 2105 return AP.OutStreamer->EmitBytes(CDS->getAsString()); 2106 2107 // Otherwise, emit the values in successive locations. 2108 unsigned ElementByteSize = CDS->getElementByteSize(); 2109 if (isa<IntegerType>(CDS->getElementType())) { 2110 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { 2111 if (AP.isVerbose()) 2112 AP.OutStreamer->GetCommentOS() << format("0x%" PRIx64 "\n", 2113 CDS->getElementAsInteger(i)); 2114 AP.OutStreamer->EmitIntValue(CDS->getElementAsInteger(i), 2115 ElementByteSize); 2116 } 2117 } else { 2118 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) 2119 emitGlobalConstantFP(cast<ConstantFP>(CDS->getElementAsConstant(I)), AP); 2120 } 2121 2122 unsigned Size = DL.getTypeAllocSize(CDS->getType()); 2123 unsigned EmittedSize = DL.getTypeAllocSize(CDS->getType()->getElementType()) * 2124 CDS->getNumElements(); 2125 if (unsigned Padding = Size - EmittedSize) 2126 AP.OutStreamer->EmitZeros(Padding); 2127 } 2128 2129 static void emitGlobalConstantArray(const DataLayout &DL, 2130 const ConstantArray *CA, AsmPrinter &AP, 2131 const Constant *BaseCV, uint64_t Offset) { 2132 // See if we can aggregate some values. Make sure it can be 2133 // represented as a series of bytes of the constant value. 2134 int Value = isRepeatedByteSequence(CA, DL); 2135 2136 if (Value != -1) { 2137 uint64_t Bytes = DL.getTypeAllocSize(CA->getType()); 2138 AP.OutStreamer->emitFill(Bytes, Value); 2139 } 2140 else { 2141 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) { 2142 emitGlobalConstantImpl(DL, CA->getOperand(i), AP, BaseCV, Offset); 2143 Offset += DL.getTypeAllocSize(CA->getOperand(i)->getType()); 2144 } 2145 } 2146 } 2147 2148 static void emitGlobalConstantVector(const DataLayout &DL, 2149 const ConstantVector *CV, AsmPrinter &AP) { 2150 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) 2151 emitGlobalConstantImpl(DL, CV->getOperand(i), AP); 2152 2153 unsigned Size = DL.getTypeAllocSize(CV->getType()); 2154 unsigned EmittedSize = DL.getTypeAllocSize(CV->getType()->getElementType()) * 2155 CV->getType()->getNumElements(); 2156 if (unsigned Padding = Size - EmittedSize) 2157 AP.OutStreamer->EmitZeros(Padding); 2158 } 2159 2160 static void emitGlobalConstantStruct(const DataLayout &DL, 2161 const ConstantStruct *CS, AsmPrinter &AP, 2162 const Constant *BaseCV, uint64_t Offset) { 2163 // Print the fields in successive locations. Pad to align if needed! 2164 unsigned Size = DL.getTypeAllocSize(CS->getType()); 2165 const StructLayout *Layout = DL.getStructLayout(CS->getType()); 2166 uint64_t SizeSoFar = 0; 2167 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) { 2168 const Constant *Field = CS->getOperand(i); 2169 2170 // Print the actual field value. 2171 emitGlobalConstantImpl(DL, Field, AP, BaseCV, Offset + SizeSoFar); 2172 2173 // Check if padding is needed and insert one or more 0s. 2174 uint64_t FieldSize = DL.getTypeAllocSize(Field->getType()); 2175 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1)) 2176 - Layout->getElementOffset(i)) - FieldSize; 2177 SizeSoFar += FieldSize + PadSize; 2178 2179 // Insert padding - this may include padding to increase the size of the 2180 // current field up to the ABI size (if the struct is not packed) as well 2181 // as padding to ensure that the next field starts at the right offset. 2182 AP.OutStreamer->EmitZeros(PadSize); 2183 } 2184 assert(SizeSoFar == Layout->getSizeInBytes() && 2185 "Layout of constant struct may be incorrect!"); 2186 } 2187 2188 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP) { 2189 APInt API = CFP->getValueAPF().bitcastToAPInt(); 2190 2191 // First print a comment with what we think the original floating-point value 2192 // should have been. 2193 if (AP.isVerbose()) { 2194 SmallString<8> StrVal; 2195 CFP->getValueAPF().toString(StrVal); 2196 2197 if (CFP->getType()) 2198 CFP->getType()->print(AP.OutStreamer->GetCommentOS()); 2199 else 2200 AP.OutStreamer->GetCommentOS() << "Printing <null> Type"; 2201 AP.OutStreamer->GetCommentOS() << ' ' << StrVal << '\n'; 2202 } 2203 2204 // Now iterate through the APInt chunks, emitting them in endian-correct 2205 // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit 2206 // floats). 2207 unsigned NumBytes = API.getBitWidth() / 8; 2208 unsigned TrailingBytes = NumBytes % sizeof(uint64_t); 2209 const uint64_t *p = API.getRawData(); 2210 2211 // PPC's long double has odd notions of endianness compared to how LLVM 2212 // handles it: p[0] goes first for *big* endian on PPC. 2213 if (AP.getDataLayout().isBigEndian() && !CFP->getType()->isPPC_FP128Ty()) { 2214 int Chunk = API.getNumWords() - 1; 2215 2216 if (TrailingBytes) 2217 AP.OutStreamer->EmitIntValue(p[Chunk--], TrailingBytes); 2218 2219 for (; Chunk >= 0; --Chunk) 2220 AP.OutStreamer->EmitIntValue(p[Chunk], sizeof(uint64_t)); 2221 } else { 2222 unsigned Chunk; 2223 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk) 2224 AP.OutStreamer->EmitIntValue(p[Chunk], sizeof(uint64_t)); 2225 2226 if (TrailingBytes) 2227 AP.OutStreamer->EmitIntValue(p[Chunk], TrailingBytes); 2228 } 2229 2230 // Emit the tail padding for the long double. 2231 const DataLayout &DL = AP.getDataLayout(); 2232 AP.OutStreamer->EmitZeros(DL.getTypeAllocSize(CFP->getType()) - 2233 DL.getTypeStoreSize(CFP->getType())); 2234 } 2235 2236 static void emitGlobalConstantLargeInt(const ConstantInt *CI, AsmPrinter &AP) { 2237 const DataLayout &DL = AP.getDataLayout(); 2238 unsigned BitWidth = CI->getBitWidth(); 2239 2240 // Copy the value as we may massage the layout for constants whose bit width 2241 // is not a multiple of 64-bits. 2242 APInt Realigned(CI->getValue()); 2243 uint64_t ExtraBits = 0; 2244 unsigned ExtraBitsSize = BitWidth & 63; 2245 2246 if (ExtraBitsSize) { 2247 // The bit width of the data is not a multiple of 64-bits. 2248 // The extra bits are expected to be at the end of the chunk of the memory. 2249 // Little endian: 2250 // * Nothing to be done, just record the extra bits to emit. 2251 // Big endian: 2252 // * Record the extra bits to emit. 2253 // * Realign the raw data to emit the chunks of 64-bits. 2254 if (DL.isBigEndian()) { 2255 // Basically the structure of the raw data is a chunk of 64-bits cells: 2256 // 0 1 BitWidth / 64 2257 // [chunk1][chunk2] ... [chunkN]. 2258 // The most significant chunk is chunkN and it should be emitted first. 2259 // However, due to the alignment issue chunkN contains useless bits. 2260 // Realign the chunks so that they contain only useless information: 2261 // ExtraBits 0 1 (BitWidth / 64) - 1 2262 // chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN] 2263 ExtraBits = Realigned.getRawData()[0] & 2264 (((uint64_t)-1) >> (64 - ExtraBitsSize)); 2265 Realigned.lshrInPlace(ExtraBitsSize); 2266 } else 2267 ExtraBits = Realigned.getRawData()[BitWidth / 64]; 2268 } 2269 2270 // We don't expect assemblers to support integer data directives 2271 // for more than 64 bits, so we emit the data in at most 64-bit 2272 // quantities at a time. 2273 const uint64_t *RawData = Realigned.getRawData(); 2274 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) { 2275 uint64_t Val = DL.isBigEndian() ? RawData[e - i - 1] : RawData[i]; 2276 AP.OutStreamer->EmitIntValue(Val, 8); 2277 } 2278 2279 if (ExtraBitsSize) { 2280 // Emit the extra bits after the 64-bits chunks. 2281 2282 // Emit a directive that fills the expected size. 2283 uint64_t Size = AP.getDataLayout().getTypeAllocSize(CI->getType()); 2284 Size -= (BitWidth / 64) * 8; 2285 assert(Size && Size * 8 >= ExtraBitsSize && 2286 (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize))) 2287 == ExtraBits && "Directive too small for extra bits."); 2288 AP.OutStreamer->EmitIntValue(ExtraBits, Size); 2289 } 2290 } 2291 2292 /// \brief Transform a not absolute MCExpr containing a reference to a GOT 2293 /// equivalent global, by a target specific GOT pc relative access to the 2294 /// final symbol. 2295 static void handleIndirectSymViaGOTPCRel(AsmPrinter &AP, const MCExpr **ME, 2296 const Constant *BaseCst, 2297 uint64_t Offset) { 2298 // The global @foo below illustrates a global that uses a got equivalent. 2299 // 2300 // @bar = global i32 42 2301 // @gotequiv = private unnamed_addr constant i32* @bar 2302 // @foo = i32 trunc (i64 sub (i64 ptrtoint (i32** @gotequiv to i64), 2303 // i64 ptrtoint (i32* @foo to i64)) 2304 // to i32) 2305 // 2306 // The cstexpr in @foo is converted into the MCExpr `ME`, where we actually 2307 // check whether @foo is suitable to use a GOTPCREL. `ME` is usually in the 2308 // form: 2309 // 2310 // foo = cstexpr, where 2311 // cstexpr := <gotequiv> - "." + <cst> 2312 // cstexpr := <gotequiv> - (<foo> - <offset from @foo base>) + <cst> 2313 // 2314 // After canonicalization by evaluateAsRelocatable `ME` turns into: 2315 // 2316 // cstexpr := <gotequiv> - <foo> + gotpcrelcst, where 2317 // gotpcrelcst := <offset from @foo base> + <cst> 2318 // 2319 MCValue MV; 2320 if (!(*ME)->evaluateAsRelocatable(MV, nullptr, nullptr) || MV.isAbsolute()) 2321 return; 2322 const MCSymbolRefExpr *SymA = MV.getSymA(); 2323 if (!SymA) 2324 return; 2325 2326 // Check that GOT equivalent symbol is cached. 2327 const MCSymbol *GOTEquivSym = &SymA->getSymbol(); 2328 if (!AP.GlobalGOTEquivs.count(GOTEquivSym)) 2329 return; 2330 2331 const GlobalValue *BaseGV = dyn_cast_or_null<GlobalValue>(BaseCst); 2332 if (!BaseGV) 2333 return; 2334 2335 // Check for a valid base symbol 2336 const MCSymbol *BaseSym = AP.getSymbol(BaseGV); 2337 const MCSymbolRefExpr *SymB = MV.getSymB(); 2338 2339 if (!SymB || BaseSym != &SymB->getSymbol()) 2340 return; 2341 2342 // Make sure to match: 2343 // 2344 // gotpcrelcst := <offset from @foo base> + <cst> 2345 // 2346 // If gotpcrelcst is positive it means that we can safely fold the pc rel 2347 // displacement into the GOTPCREL. We can also can have an extra offset <cst> 2348 // if the target knows how to encode it. 2349 // 2350 int64_t GOTPCRelCst = Offset + MV.getConstant(); 2351 if (GOTPCRelCst < 0) 2352 return; 2353 if (!AP.getObjFileLowering().supportGOTPCRelWithOffset() && GOTPCRelCst != 0) 2354 return; 2355 2356 // Emit the GOT PC relative to replace the got equivalent global, i.e.: 2357 // 2358 // bar: 2359 // .long 42 2360 // gotequiv: 2361 // .quad bar 2362 // foo: 2363 // .long gotequiv - "." + <cst> 2364 // 2365 // is replaced by the target specific equivalent to: 2366 // 2367 // bar: 2368 // .long 42 2369 // foo: 2370 // .long bar@GOTPCREL+<gotpcrelcst> 2371 // 2372 AsmPrinter::GOTEquivUsePair Result = AP.GlobalGOTEquivs[GOTEquivSym]; 2373 const GlobalVariable *GV = Result.first; 2374 int NumUses = (int)Result.second; 2375 const GlobalValue *FinalGV = dyn_cast<GlobalValue>(GV->getOperand(0)); 2376 const MCSymbol *FinalSym = AP.getSymbol(FinalGV); 2377 *ME = AP.getObjFileLowering().getIndirectSymViaGOTPCRel( 2378 FinalSym, MV, Offset, AP.MMI, *AP.OutStreamer); 2379 2380 // Update GOT equivalent usage information 2381 --NumUses; 2382 if (NumUses >= 0) 2383 AP.GlobalGOTEquivs[GOTEquivSym] = std::make_pair(GV, NumUses); 2384 } 2385 2386 static void emitGlobalConstantImpl(const DataLayout &DL, const Constant *CV, 2387 AsmPrinter &AP, const Constant *BaseCV, 2388 uint64_t Offset) { 2389 uint64_t Size = DL.getTypeAllocSize(CV->getType()); 2390 2391 // Globals with sub-elements such as combinations of arrays and structs 2392 // are handled recursively by emitGlobalConstantImpl. Keep track of the 2393 // constant symbol base and the current position with BaseCV and Offset. 2394 if (!BaseCV && CV->hasOneUse()) 2395 BaseCV = dyn_cast<Constant>(CV->user_back()); 2396 2397 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) 2398 return AP.OutStreamer->EmitZeros(Size); 2399 2400 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { 2401 switch (Size) { 2402 case 1: 2403 case 2: 2404 case 4: 2405 case 8: 2406 if (AP.isVerbose()) 2407 AP.OutStreamer->GetCommentOS() << format("0x%" PRIx64 "\n", 2408 CI->getZExtValue()); 2409 AP.OutStreamer->EmitIntValue(CI->getZExtValue(), Size); 2410 return; 2411 default: 2412 emitGlobalConstantLargeInt(CI, AP); 2413 return; 2414 } 2415 } 2416 2417 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) 2418 return emitGlobalConstantFP(CFP, AP); 2419 2420 if (isa<ConstantPointerNull>(CV)) { 2421 AP.OutStreamer->EmitIntValue(0, Size); 2422 return; 2423 } 2424 2425 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV)) 2426 return emitGlobalConstantDataSequential(DL, CDS, AP); 2427 2428 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) 2429 return emitGlobalConstantArray(DL, CVA, AP, BaseCV, Offset); 2430 2431 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) 2432 return emitGlobalConstantStruct(DL, CVS, AP, BaseCV, Offset); 2433 2434 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { 2435 // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of 2436 // vectors). 2437 if (CE->getOpcode() == Instruction::BitCast) 2438 return emitGlobalConstantImpl(DL, CE->getOperand(0), AP); 2439 2440 if (Size > 8) { 2441 // If the constant expression's size is greater than 64-bits, then we have 2442 // to emit the value in chunks. Try to constant fold the value and emit it 2443 // that way. 2444 Constant *New = ConstantFoldConstant(CE, DL); 2445 if (New && New != CE) 2446 return emitGlobalConstantImpl(DL, New, AP); 2447 } 2448 } 2449 2450 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV)) 2451 return emitGlobalConstantVector(DL, V, AP); 2452 2453 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it 2454 // thread the streamer with EmitValue. 2455 const MCExpr *ME = AP.lowerConstant(CV); 2456 2457 // Since lowerConstant already folded and got rid of all IR pointer and 2458 // integer casts, detect GOT equivalent accesses by looking into the MCExpr 2459 // directly. 2460 if (AP.getObjFileLowering().supportIndirectSymViaGOTPCRel()) 2461 handleIndirectSymViaGOTPCRel(AP, &ME, BaseCV, Offset); 2462 2463 AP.OutStreamer->EmitValue(ME, Size); 2464 } 2465 2466 /// EmitGlobalConstant - Print a general LLVM constant to the .s file. 2467 void AsmPrinter::EmitGlobalConstant(const DataLayout &DL, const Constant *CV) { 2468 uint64_t Size = DL.getTypeAllocSize(CV->getType()); 2469 if (Size) 2470 emitGlobalConstantImpl(DL, CV, *this); 2471 else if (MAI->hasSubsectionsViaSymbols()) { 2472 // If the global has zero size, emit a single byte so that two labels don't 2473 // look like they are at the same location. 2474 OutStreamer->EmitIntValue(0, 1); 2475 } 2476 } 2477 2478 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { 2479 // Target doesn't support this yet! 2480 llvm_unreachable("Target does not support EmitMachineConstantPoolValue"); 2481 } 2482 2483 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { 2484 if (Offset > 0) 2485 OS << '+' << Offset; 2486 else if (Offset < 0) 2487 OS << Offset; 2488 } 2489 2490 //===----------------------------------------------------------------------===// 2491 // Symbol Lowering Routines. 2492 //===----------------------------------------------------------------------===// 2493 2494 MCSymbol *AsmPrinter::createTempSymbol(const Twine &Name) const { 2495 return OutContext.createTempSymbol(Name, true); 2496 } 2497 2498 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const { 2499 return MMI->getAddrLabelSymbol(BA->getBasicBlock()); 2500 } 2501 2502 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const { 2503 return MMI->getAddrLabelSymbol(BB); 2504 } 2505 2506 /// GetCPISymbol - Return the symbol for the specified constant pool entry. 2507 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const { 2508 const DataLayout &DL = getDataLayout(); 2509 return OutContext.getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 2510 "CPI" + Twine(getFunctionNumber()) + "_" + 2511 Twine(CPID)); 2512 } 2513 2514 /// GetJTISymbol - Return the symbol for the specified jump table entry. 2515 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const { 2516 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate); 2517 } 2518 2519 /// GetJTSetSymbol - Return the symbol for the specified jump table .set 2520 /// FIXME: privatize to AsmPrinter. 2521 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { 2522 const DataLayout &DL = getDataLayout(); 2523 return OutContext.getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 2524 Twine(getFunctionNumber()) + "_" + 2525 Twine(UID) + "_set_" + Twine(MBBID)); 2526 } 2527 2528 MCSymbol *AsmPrinter::getSymbolWithGlobalValueBase(const GlobalValue *GV, 2529 StringRef Suffix) const { 2530 return getObjFileLowering().getSymbolWithGlobalValueBase(GV, Suffix, TM); 2531 } 2532 2533 /// Return the MCSymbol for the specified ExternalSymbol. 2534 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const { 2535 SmallString<60> NameStr; 2536 Mangler::getNameWithPrefix(NameStr, Sym, getDataLayout()); 2537 return OutContext.getOrCreateSymbol(NameStr); 2538 } 2539 2540 /// PrintParentLoopComment - Print comments about parent loops of this one. 2541 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop, 2542 unsigned FunctionNumber) { 2543 if (!Loop) return; 2544 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber); 2545 OS.indent(Loop->getLoopDepth()*2) 2546 << "Parent Loop BB" << FunctionNumber << "_" 2547 << Loop->getHeader()->getNumber() 2548 << " Depth=" << Loop->getLoopDepth() << '\n'; 2549 } 2550 2551 2552 /// PrintChildLoopComment - Print comments about child loops within 2553 /// the loop for this basic block, with nesting. 2554 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop, 2555 unsigned FunctionNumber) { 2556 // Add child loop information 2557 for (const MachineLoop *CL : *Loop) { 2558 OS.indent(CL->getLoopDepth()*2) 2559 << "Child Loop BB" << FunctionNumber << "_" 2560 << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth() 2561 << '\n'; 2562 PrintChildLoopComment(OS, CL, FunctionNumber); 2563 } 2564 } 2565 2566 /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks. 2567 static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB, 2568 const MachineLoopInfo *LI, 2569 const AsmPrinter &AP) { 2570 // Add loop depth information 2571 const MachineLoop *Loop = LI->getLoopFor(&MBB); 2572 if (!Loop) return; 2573 2574 MachineBasicBlock *Header = Loop->getHeader(); 2575 assert(Header && "No header for loop"); 2576 2577 // If this block is not a loop header, just print out what is the loop header 2578 // and return. 2579 if (Header != &MBB) { 2580 AP.OutStreamer->AddComment(" in Loop: Header=BB" + 2581 Twine(AP.getFunctionNumber())+"_" + 2582 Twine(Loop->getHeader()->getNumber())+ 2583 " Depth="+Twine(Loop->getLoopDepth())); 2584 return; 2585 } 2586 2587 // Otherwise, it is a loop header. Print out information about child and 2588 // parent loops. 2589 raw_ostream &OS = AP.OutStreamer->GetCommentOS(); 2590 2591 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber()); 2592 2593 OS << "=>"; 2594 OS.indent(Loop->getLoopDepth()*2-2); 2595 2596 OS << "This "; 2597 if (Loop->empty()) 2598 OS << "Inner "; 2599 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; 2600 2601 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber()); 2602 } 2603 2604 /// EmitBasicBlockStart - This method prints the label for the specified 2605 /// MachineBasicBlock, an alignment (if present) and a comment describing 2606 /// it if appropriate. 2607 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const { 2608 // End the previous funclet and start a new one. 2609 if (MBB.isEHFuncletEntry()) { 2610 for (const HandlerInfo &HI : Handlers) { 2611 HI.Handler->endFunclet(); 2612 HI.Handler->beginFunclet(MBB); 2613 } 2614 } 2615 2616 // Emit an alignment directive for this block, if needed. 2617 if (unsigned Align = MBB.getAlignment()) 2618 EmitAlignment(Align); 2619 2620 // If the block has its address taken, emit any labels that were used to 2621 // reference the block. It is possible that there is more than one label 2622 // here, because multiple LLVM BB's may have been RAUW'd to this block after 2623 // the references were generated. 2624 if (MBB.hasAddressTaken()) { 2625 const BasicBlock *BB = MBB.getBasicBlock(); 2626 if (isVerbose()) 2627 OutStreamer->AddComment("Block address taken"); 2628 2629 // MBBs can have their address taken as part of CodeGen without having 2630 // their corresponding BB's address taken in IR 2631 if (BB->hasAddressTaken()) 2632 for (MCSymbol *Sym : MMI->getAddrLabelSymbolToEmit(BB)) 2633 OutStreamer->EmitLabel(Sym); 2634 } 2635 2636 // Print some verbose block comments. 2637 if (isVerbose()) { 2638 if (const BasicBlock *BB = MBB.getBasicBlock()) { 2639 if (BB->hasName()) { 2640 BB->printAsOperand(OutStreamer->GetCommentOS(), 2641 /*PrintType=*/false, BB->getModule()); 2642 OutStreamer->GetCommentOS() << '\n'; 2643 } 2644 } 2645 emitBasicBlockLoopComments(MBB, LI, *this); 2646 } 2647 2648 // Print the main label for the block. 2649 if (MBB.pred_empty() || 2650 (isBlockOnlyReachableByFallthrough(&MBB) && !MBB.isEHFuncletEntry())) { 2651 if (isVerbose()) { 2652 // NOTE: Want this comment at start of line, don't emit with AddComment. 2653 OutStreamer->emitRawComment(" BB#" + Twine(MBB.getNumber()) + ":", false); 2654 } 2655 } else { 2656 OutStreamer->EmitLabel(MBB.getSymbol()); 2657 } 2658 } 2659 2660 void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility, 2661 bool IsDefinition) const { 2662 MCSymbolAttr Attr = MCSA_Invalid; 2663 2664 switch (Visibility) { 2665 default: break; 2666 case GlobalValue::HiddenVisibility: 2667 if (IsDefinition) 2668 Attr = MAI->getHiddenVisibilityAttr(); 2669 else 2670 Attr = MAI->getHiddenDeclarationVisibilityAttr(); 2671 break; 2672 case GlobalValue::ProtectedVisibility: 2673 Attr = MAI->getProtectedVisibilityAttr(); 2674 break; 2675 } 2676 2677 if (Attr != MCSA_Invalid) 2678 OutStreamer->EmitSymbolAttribute(Sym, Attr); 2679 } 2680 2681 /// isBlockOnlyReachableByFallthough - Return true if the basic block has 2682 /// exactly one predecessor and the control transfer mechanism between 2683 /// the predecessor and this block is a fall-through. 2684 bool AsmPrinter:: 2685 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const { 2686 // If this is a landing pad, it isn't a fall through. If it has no preds, 2687 // then nothing falls through to it. 2688 if (MBB->isEHPad() || MBB->pred_empty()) 2689 return false; 2690 2691 // If there isn't exactly one predecessor, it can't be a fall through. 2692 if (MBB->pred_size() > 1) 2693 return false; 2694 2695 // The predecessor has to be immediately before this block. 2696 MachineBasicBlock *Pred = *MBB->pred_begin(); 2697 if (!Pred->isLayoutSuccessor(MBB)) 2698 return false; 2699 2700 // If the block is completely empty, then it definitely does fall through. 2701 if (Pred->empty()) 2702 return true; 2703 2704 // Check the terminators in the previous blocks 2705 for (const auto &MI : Pred->terminators()) { 2706 // If it is not a simple branch, we are in a table somewhere. 2707 if (!MI.isBranch() || MI.isIndirectBranch()) 2708 return false; 2709 2710 // If we are the operands of one of the branches, this is not a fall 2711 // through. Note that targets with delay slots will usually bundle 2712 // terminators with the delay slot instruction. 2713 for (ConstMIBundleOperands OP(MI); OP.isValid(); ++OP) { 2714 if (OP->isJTI()) 2715 return false; 2716 if (OP->isMBB() && OP->getMBB() == MBB) 2717 return false; 2718 } 2719 } 2720 2721 return true; 2722 } 2723 2724 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy &S) { 2725 if (!S.usesMetadata()) 2726 return nullptr; 2727 2728 assert(!S.useStatepoints() && "statepoints do not currently support custom" 2729 " stackmap formats, please see the documentation for a description of" 2730 " the default format. If you really need a custom serialized format," 2731 " please file a bug"); 2732 2733 gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); 2734 gcp_map_type::iterator GCPI = GCMap.find(&S); 2735 if (GCPI != GCMap.end()) 2736 return GCPI->second.get(); 2737 2738 auto Name = S.getName(); 2739 2740 for (GCMetadataPrinterRegistry::iterator 2741 I = GCMetadataPrinterRegistry::begin(), 2742 E = GCMetadataPrinterRegistry::end(); I != E; ++I) 2743 if (Name == I->getName()) { 2744 std::unique_ptr<GCMetadataPrinter> GMP = I->instantiate(); 2745 GMP->S = &S; 2746 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); 2747 return IterBool.first->second.get(); 2748 } 2749 2750 report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name)); 2751 } 2752 2753 /// Pin vtable to this file. 2754 AsmPrinterHandler::~AsmPrinterHandler() = default; 2755 2756 void AsmPrinterHandler::markFunctionEnd() {} 2757 2758 // In the binary's "xray_instr_map" section, an array of these function entries 2759 // describes each instrumentation point. When XRay patches your code, the index 2760 // into this table will be given to your handler as a patch point identifier. 2761 void AsmPrinter::XRayFunctionEntry::emit(int Bytes, MCStreamer *Out, 2762 const MCSymbol *CurrentFnSym) const { 2763 Out->EmitSymbolValue(Sled, Bytes); 2764 Out->EmitSymbolValue(CurrentFnSym, Bytes); 2765 auto Kind8 = static_cast<uint8_t>(Kind); 2766 Out->EmitBytes(StringRef(reinterpret_cast<const char *>(&Kind8), 1)); 2767 Out->EmitBytes( 2768 StringRef(reinterpret_cast<const char *>(&AlwaysInstrument), 1)); 2769 Out->EmitZeros(2 * Bytes - 2); // Pad the previous two entries 2770 } 2771 2772 void AsmPrinter::emitXRayTable() { 2773 if (Sleds.empty()) 2774 return; 2775 2776 auto PrevSection = OutStreamer->getCurrentSectionOnly(); 2777 auto Fn = MF->getFunction(); 2778 MCSection *InstMap = nullptr; 2779 MCSection *FnSledIndex = nullptr; 2780 if (MF->getSubtarget().getTargetTriple().isOSBinFormatELF()) { 2781 if (Fn->hasComdat()) { 2782 InstMap = OutContext.getELFSection("xray_instr_map", ELF::SHT_PROGBITS, 2783 ELF::SHF_ALLOC | ELF::SHF_GROUP, 0, 2784 Fn->getComdat()->getName()); 2785 FnSledIndex = OutContext.getELFSection("xray_fn_idx", ELF::SHT_PROGBITS, 2786 ELF::SHF_ALLOC | ELF::SHF_GROUP, 0, 2787 Fn->getComdat()->getName()); 2788 } else { 2789 InstMap = OutContext.getELFSection("xray_instr_map", ELF::SHT_PROGBITS, 2790 ELF::SHF_ALLOC); 2791 FnSledIndex = OutContext.getELFSection("xray_fn_idx", ELF::SHT_PROGBITS, 2792 ELF::SHF_ALLOC); 2793 } 2794 } else if (MF->getSubtarget().getTargetTriple().isOSBinFormatMachO()) { 2795 InstMap = OutContext.getMachOSection("__DATA", "xray_instr_map", 0, 2796 SectionKind::getReadOnlyWithRel()); 2797 FnSledIndex = OutContext.getMachOSection("__DATA", "xray_fn_idx", 0, 2798 SectionKind::getReadOnlyWithRel()); 2799 } else { 2800 llvm_unreachable("Unsupported target"); 2801 } 2802 2803 // Before we switch over, we force a reference to a label inside the 2804 // xray_fn_idx sections. This makes sure that the xray_fn_idx section is kept 2805 // live by the linker if the function is not garbage-collected. Since this 2806 // function is always called just before the function's end, we assume that 2807 // this is happening after the last return instruction. 2808 auto WordSizeBytes = MAI->getCodePointerSize(); 2809 MCSymbol *IdxRef = OutContext.createTempSymbol("xray_fn_idx_synth_", true); 2810 OutStreamer->EmitCodeAlignment(16); 2811 OutStreamer->EmitSymbolValue(IdxRef, WordSizeBytes, false); 2812 2813 // Now we switch to the instrumentation map section. Because this is done 2814 // per-function, we are able to create an index entry that will represent the 2815 // range of sleds associated with a function. 2816 MCSymbol *SledsStart = OutContext.createTempSymbol("xray_sleds_start", true); 2817 OutStreamer->SwitchSection(InstMap); 2818 OutStreamer->EmitLabel(SledsStart); 2819 for (const auto &Sled : Sleds) 2820 Sled.emit(WordSizeBytes, OutStreamer.get(), CurrentFnSym); 2821 MCSymbol *SledsEnd = OutContext.createTempSymbol("xray_sleds_end", true); 2822 OutStreamer->EmitLabel(SledsEnd); 2823 2824 // We then emit a single entry in the index per function. We use the symbols 2825 // that bound the instrumentation map as the range for a specific function. 2826 // Each entry here will be 2 * word size aligned, as we're writing down two 2827 // pointers. This should work for both 32-bit and 64-bit platforms. 2828 OutStreamer->SwitchSection(FnSledIndex); 2829 OutStreamer->EmitCodeAlignment(2 * WordSizeBytes); 2830 OutStreamer->EmitLabel(IdxRef); 2831 OutStreamer->EmitSymbolValue(SledsStart, WordSizeBytes); 2832 OutStreamer->EmitSymbolValue(SledsEnd, WordSizeBytes); 2833 OutStreamer->SwitchSection(PrevSection); 2834 Sleds.clear(); 2835 } 2836 2837 void AsmPrinter::recordSled(MCSymbol *Sled, const MachineInstr &MI, 2838 SledKind Kind) { 2839 auto Fn = MI.getParent()->getParent()->getFunction(); 2840 auto Attr = Fn->getFnAttribute("function-instrument"); 2841 bool LogArgs = Fn->hasFnAttribute("xray-log-args"); 2842 bool AlwaysInstrument = 2843 Attr.isStringAttribute() && Attr.getValueAsString() == "xray-always"; 2844 if (Kind == SledKind::FUNCTION_ENTER && LogArgs) 2845 Kind = SledKind::LOG_ARGS_ENTER; 2846 Sleds.emplace_back( 2847 XRayFunctionEntry{ Sled, CurrentFnSym, Kind, AlwaysInstrument, Fn }); 2848 } 2849 2850 uint16_t AsmPrinter::getDwarfVersion() const { 2851 return OutStreamer->getContext().getDwarfVersion(); 2852 } 2853 2854 void AsmPrinter::setDwarfVersion(uint16_t Version) { 2855 OutStreamer->getContext().setDwarfVersion(Version); 2856 } 2857