diff --git a/llvm/include/llvm/MC/MCExpr.h b/llvm/include/llvm/MC/MCExpr.h --- a/llvm/include/llvm/MC/MCExpr.h +++ b/llvm/include/llvm/MC/MCExpr.h @@ -296,6 +296,8 @@ VK_PPC_GOT_TLSGD_HI, // symbol@got@tlsgd@h VK_PPC_GOT_TLSGD_HA, // symbol@got@tlsgd@ha VK_PPC_TLSGD, // symbol@tlsgd + VK_PPC_AIX_TLSGD, // symbol@gd + VK_PPC_AIX_TLSGDM, // symbol@m VK_PPC_GOT_TLSLD, // symbol@got@tlsld VK_PPC_GOT_TLSLD_LO, // symbol@got@tlsld@l VK_PPC_GOT_TLSLD_HI, // symbol@got@tlsld@h diff --git a/llvm/lib/MC/MCELFStreamer.cpp b/llvm/lib/MC/MCELFStreamer.cpp --- a/llvm/lib/MC/MCELFStreamer.cpp +++ b/llvm/lib/MC/MCELFStreamer.cpp @@ -459,6 +459,8 @@ case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_HA: case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_PCREL: case MCSymbolRefExpr::VK_PPC_TLSGD: + case MCSymbolRefExpr::VK_PPC_AIX_TLSGD: + case MCSymbolRefExpr::VK_PPC_AIX_TLSGDM: case MCSymbolRefExpr::VK_PPC_GOT_TLSLD: case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_LO: case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_HI: diff --git a/llvm/lib/MC/MCExpr.cpp b/llvm/lib/MC/MCExpr.cpp --- a/llvm/lib/MC/MCExpr.cpp +++ b/llvm/lib/MC/MCExpr.cpp @@ -322,6 +322,10 @@ case VK_PPC_GOT_TLSGD_HI: return "got@tlsgd@h"; case VK_PPC_GOT_TLSGD_HA: return "got@tlsgd@ha"; case VK_PPC_TLSGD: return "tlsgd"; + case VK_PPC_AIX_TLSGD: + return "gd"; + case VK_PPC_AIX_TLSGDM: + return "m"; case VK_PPC_GOT_TLSLD: return "got@tlsld"; case VK_PPC_GOT_TLSLD_LO: return "got@tlsld@l"; case VK_PPC_GOT_TLSLD_HI: return "got@tlsld@h"; diff --git a/llvm/lib/MC/XCOFFObjectWriter.cpp b/llvm/lib/MC/XCOFFObjectWriter.cpp --- a/llvm/lib/MC/XCOFFObjectWriter.cpp +++ b/llvm/lib/MC/XCOFFObjectWriter.cpp @@ -443,10 +443,15 @@ "Expected containing csect to exist in map."); const uint32_t Index = getIndex(SymA, SymASec); - if (Type == XCOFF::RelocationType::R_POS) + if (Type == XCOFF::RelocationType::R_POS || + Type == XCOFF::RelocationType::R_TLS) // The FixedValue should be symbol's virtual address in this object file // plus any constant value that we might get. FixedValue = getVirtualAddress(SymA, SymASec) + Target.getConstant(); + else if (Type == XCOFF::RelocationType::R_TLSM) + // The FixedValue should always be zero since the region handle is only + // known at load time. + FixedValue = 0; else if (Type == XCOFF::RelocationType::R_TOC || Type == XCOFF::RelocationType::R_TOCL) { // The FixedValue should be the TOC entry offset from the TOC-base plus any diff --git a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp --- a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp +++ b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp @@ -136,11 +136,13 @@ MCSymbolXCOFF *TCSym = cast(Streamer.getCurrentSectionOnly()) ->getQualNameSymbol(); - // If the variant kind is TLSGD the entry represents the region handle for - // the symbol, we prefix the name with a dot and we add the @m - // relocation specifier. - if (Kind == MCSymbolRefExpr::VariantKind::VK_PPC_TLSGD) - OS << "\t.tc ." << TCSym->getName() << "," << XSym->getName() << "@m\n"; + // If the variant kind is VK_PPC_AIX_TLSGDM/VK_PPC_AIX_TLSGD the entry + // represents the region handle/variable offset for the symbol, we add + // the relocation specifier @m/@gd. + if (Kind == MCSymbolRefExpr::VariantKind::VK_PPC_AIX_TLSGDM || + Kind == MCSymbolRefExpr::VariantKind::VK_PPC_AIX_TLSGD) + OS << "\t.tc " << TCSym->getName() << "," << XSym->getName() << "@" + << MCSymbolRefExpr::getVariantKindName(Kind) << '\n'; else OS << "\t.tc " << TCSym->getName() << "," << XSym->getName() << '\n'; @@ -312,7 +314,8 @@ const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo(); const unsigned PointerSize = MAI->getCodePointerSize(); Streamer.emitValueToAlignment(PointerSize); - Streamer.emitSymbolValue(&S, PointerSize); + Streamer.emitValue(MCSymbolRefExpr::create(&S, Kind, Streamer.getContext()), + PointerSize); } void emitMachine(StringRef CPU) override { diff --git a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp --- a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp +++ b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp @@ -75,7 +75,18 @@ // Branches are 4 byte aligned, so the 24 bits we encode in // the instruction actually represents a 26 bit offset. return {XCOFF::RelocationType::R_RBR, EncodedSignednessIndicator | 25}; + case PPC::fixup_ppc_br24abs: + return {XCOFF::RelocationType::R_RBA, EncodedSignednessIndicator | 25}; case FK_Data_4: - return {XCOFF::RelocationType::R_POS, EncodedSignednessIndicator | 31}; + switch (Modifier) { + default: + report_fatal_error("Unsupported modifier"); + case MCSymbolRefExpr::VK_PPC_AIX_TLSGD: + return {XCOFF::RelocationType::R_TLS, EncodedSignednessIndicator | 31}; + case MCSymbolRefExpr::VK_PPC_AIX_TLSGDM: + return {XCOFF::RelocationType::R_TLSM, EncodedSignednessIndicator | 31}; + case MCSymbolRefExpr::VK_None: + return {XCOFF::RelocationType::R_POS, EncodedSignednessIndicator | 31}; + } } } diff --git a/llvm/lib/Target/PowerPC/PPC.h b/llvm/lib/Target/PowerPC/PPC.h --- a/llvm/lib/Target/PowerPC/PPC.h +++ b/llvm/lib/Target/PowerPC/PPC.h @@ -127,6 +127,14 @@ /// TLS Local Dynamic model. MO_TLSLD_FLAG = 128, + /// MO_AIX_TLSGD_FLAG - If this bit is set the symbol reference is relative + /// to the variable offset of AIX TLS General Dynamic model. + MO_AIX_TLSGD_FLAG = 256, + + /// MO_AIX_TLSGDM_FLAG - If this bit is set the symbol reference is relative + /// to the region handle of AIX TLS General Dynamic model. + MO_AIX_TLSGDM_FLAG = 512, + /// MO_GOT_TLSGD_PCREL_FLAG - A combintaion of flags, if these bits are set /// they should produce the relocation @got@tlsgd@pcrel. /// Fix up is VK_PPC_GOT_TLSGD_PCREL diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -558,7 +558,12 @@ assert(MI->getOperand(2).isReg() && MI->getOperand(2).getReg() == VarOffsetReg && "GETtls[ld]ADDR[32] must read GPR4"); - MCSymbol *TlsGetAddrA = OutContext.getOrCreateSymbol(Name); + MCSymbol *TlsGetAddrA = + OutContext + .getXCOFFSection( + Name, SectionKind::getText(), + XCOFF::CsectProperties(XCOFF::XMC_PR, XCOFF::XTY_ER)) + ->getQualNameSymbol(); const MCExpr *TlsRef = MCSymbolRefExpr::create( TlsGetAddrA, MCSymbolRefExpr::VK_None, OutContext); EmitToStreamer(*OutStreamer, MCInstBuilder(PPC::BLA).addExpr(TlsRef)); @@ -673,10 +678,12 @@ }; auto GetVKForMO = [&](const MachineOperand &MO) { // For GD TLS access on AIX, we have two TOC entries for the symbol (one for - // the offset and the other for the region handle). They are differentiated - // by the presence of the PPCII::MO_TLSGD_FLAG. - if (IsAIX && (MO.getTargetFlags() & PPCII::MO_TLSGD_FLAG)) - return MCSymbolRefExpr::VariantKind::VK_PPC_TLSGD; + // the variable offset and the other for the region handle). They are + // differentiated by MO_AIX_TLSGD_FLAG and MO_AIX_TLSGDM_FLAG. + if (MO.getTargetFlags() & PPCII::MO_AIX_TLSGDM_FLAG) + return MCSymbolRefExpr::VariantKind::VK_PPC_AIX_TLSGDM; + if (MO.getTargetFlags() & PPCII::MO_AIX_TLSGD_FLAG) + return MCSymbolRefExpr::VariantKind::VK_PPC_AIX_TLSGD; return MCSymbolRefExpr::VariantKind::VK_None; }; @@ -2232,9 +2239,22 @@ static_cast(OutStreamer->getTargetStreamer()); for (auto &I : TOC) { - // Setup the csect for the current TC entry. - MCSectionXCOFF *TCEntry = cast( - getObjFileLowering().getSectionForTOCEntry(I.first.first, TM)); + MCSectionXCOFF *TCEntry; + // Setup the csect for the current TC entry. If the variant kind is + // VK_PPC_AIX_TLSGDM the entry represents the region handle, we create a + // new symbol to prefix the name with a dot. + if (I.first.second == MCSymbolRefExpr::VariantKind::VK_PPC_AIX_TLSGDM) { + SmallString<128> Name; + StringRef Prefix = "."; + Name += Prefix; + Name += I.first.first->getName(); + MCSymbol *S = OutContext.getOrCreateSymbol(Name); + TCEntry = cast( + getObjFileLowering().getSectionForTOCEntry(S, TM)); + } else { + TCEntry = cast( + getObjFileLowering().getSectionForTOCEntry(I.first.first, TM)); + } OutStreamer->SwitchSection(TCEntry); OutStreamer->emitLabel(I.second); @@ -2317,7 +2337,12 @@ case PPC::GETtlsADDR32AIX: { // The reference to .__tls_get_addr is unknown to the assembler // so we need to emit an external symbol reference. - MCSymbol *TlsGetAddr = OutContext.getOrCreateSymbol(".__tls_get_addr"); + MCSymbol *TlsGetAddr = + OutContext + .getXCOFFSection( + ".__tls_get_addr", SectionKind::getText(), + XCOFF::CsectProperties(XCOFF::XMC_PR, XCOFF::XTY_ER)) + ->getQualNameSymbol(); ExtSymSDNodeSymbols.insert(TlsGetAddr); break; } diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -3139,11 +3139,12 @@ // all the GlobalTLSAddress nodes are lowered with this model. // We need to generate two TOC entries, one for the variable offset, one for // the region handle. The global address for the TOC entry of the region - // handle is created with the MO_TLSGD_FLAG flag so we can easily identify - // this entry and add the right relocation. - SDValue VariableOffsetTGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0); + // handle is created with the MO_AIX_TLSGDM_FLAG flag and the global address + // for the TOC entry of the variable offset is created with MO_AIX_TLSGD_FLAG. + SDValue VariableOffsetTGA = + DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, PPCII::MO_AIX_TLSGD_FLAG); SDValue RegionHandleTGA = - DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, PPCII::MO_TLSGD_FLAG); + DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, PPCII::MO_AIX_TLSGDM_FLAG); SDValue VariableOffset = getTOCEntry(DAG, dl, VariableOffsetTGA); SDValue RegionHandle = getTOCEntry(DAG, dl, RegionHandleTGA); return DAG.getNode(PPCISD::TLSGD_AIX, dl, PtrVT, VariableOffset, diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp --- a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp @@ -2893,6 +2893,8 @@ {MO_TLSGD_FLAG, "ppc-tlsgd"}, {MO_TLSLD_FLAG, "ppc-tlsld"}, {MO_TPREL_FLAG, "ppc-tprel"}, + {MO_AIX_TLSGD_FLAG, "ppc-aix-gd"}, + {MO_AIX_TLSGDM_FLAG, "ppc-aix-m"}, {MO_GOT_TLSGD_PCREL_FLAG, "ppc-got-tlsgd-pcrel"}, {MO_GOT_TLSLD_PCREL_FLAG, "ppc-got-tlsld-pcrel"}, {MO_GOT_TPREL_PCREL_FLAG, "ppc-got-tprel-pcrel"}}; diff --git a/llvm/test/CodeGen/PowerPC/aix-tls-gd-double.ll b/llvm/test/CodeGen/PowerPC/aix-tls-gd-double.ll --- a/llvm/test/CodeGen/PowerPC/aix-tls-gd-double.ll +++ b/llvm/test/CodeGen/PowerPC/aix-tls-gd-double.ll @@ -615,19 +615,19 @@ ; SMALL32-LABEL: L..C0: ; SMALL32-NEXT: .tc .TGUninit[TC],TGUninit[TL]@m ; SMALL32-LABEL: L..C1: -; SMALL32-NEXT: .tc TGUninit[TC],TGUninit[TL] +; SMALL32-NEXT: .tc TGUninit[TC],TGUninit[TL]@gd ; SMALL32-LABEL: L..C2: ; SMALL32-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL32-LABEL: L..C3: -; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL32-LABEL: L..C4: ; SMALL32-NEXT: .tc .TIInit[TC],TIInit[TL]@m ; SMALL32-LABEL: L..C5: -; SMALL32-NEXT: .tc TIInit[TC],TIInit[TL] +; SMALL32-NEXT: .tc TIInit[TC],TIInit[TL]@gd ; SMALL32-LABEL: L..C6: ; SMALL32-NEXT: .tc .TWInit[TC],TWInit[TL]@m ; SMALL32-LABEL: L..C7: -; SMALL32-NEXT: .tc TWInit[TC],TWInit[TL] +; SMALL32-NEXT: .tc TWInit[TC],TWInit[TL]@gd ; SMALL32-LABEL: L..C8: ; SMALL32-NEXT: .tc GInit[TC],GInit[RW] @@ -635,19 +635,19 @@ ; LARGE32-LABEL: L..C0: ; LARGE32-NEXT: .tc .TGUninit[TE],TGUninit[TL]@m ; LARGE32-LABEL: L..C1: -; LARGE32-NEXT: .tc TGUninit[TE],TGUninit[TL] +; LARGE32-NEXT: .tc TGUninit[TE],TGUninit[TL]@gd ; LARGE32-LABEL: L..C2: ; LARGE32-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE32-LABEL: L..C3: -; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE32-LABEL: L..C4: ; LARGE32-NEXT: .tc .TIInit[TE],TIInit[TL]@m ; LARGE32-LABEL: L..C5: -; LARGE32-NEXT: .tc TIInit[TE],TIInit[TL] +; LARGE32-NEXT: .tc TIInit[TE],TIInit[TL]@gd ; LARGE32-LABEL: L..C6: ; LARGE32-NEXT: .tc .TWInit[TE],TWInit[TL]@m ; LARGE32-LABEL: L..C7: -; LARGE32-NEXT: .tc TWInit[TE],TWInit[TL] +; LARGE32-NEXT: .tc TWInit[TE],TWInit[TL]@gd ; LARGE32-LABEL: L..C8: ; LARGE32-NEXT: .tc GInit[TE],GInit[RW] @@ -655,19 +655,19 @@ ; SMALL64-LABEL: L..C0: ; SMALL64-NEXT: .tc .TGUninit[TC],TGUninit[TL]@m ; SMALL64-LABEL: L..C1: -; SMALL64-NEXT: .tc TGUninit[TC],TGUninit[TL] +; SMALL64-NEXT: .tc TGUninit[TC],TGUninit[TL]@gd ; SMALL64-LABEL: L..C2: ; SMALL64-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL64-LABEL: L..C3: -; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL64-LABEL: L..C4: ; SMALL64-NEXT: .tc .TIInit[TC],TIInit[TL]@m ; SMALL64-LABEL: L..C5: -; SMALL64-NEXT: .tc TIInit[TC],TIInit[TL] +; SMALL64-NEXT: .tc TIInit[TC],TIInit[TL]@gd ; SMALL64-LABEL: L..C6: ; SMALL64-NEXT: .tc .TWInit[TC],TWInit[TL]@m ; SMALL64-LABEL: L..C7: -; SMALL64-NEXT: .tc TWInit[TC],TWInit[TL] +; SMALL64-NEXT: .tc TWInit[TC],TWInit[TL]@gd ; SMALL64-LABEL: L..C8: ; SMALL64-NEXT: .tc GInit[TC],GInit[RW] @@ -675,19 +675,19 @@ ; LARGE64-LABEL: L..C0: ; LARGE64-NEXT: .tc .TGUninit[TE],TGUninit[TL]@m ; LARGE64-LABEL: L..C1: -; LARGE64-NEXT: .tc TGUninit[TE],TGUninit[TL] +; LARGE64-NEXT: .tc TGUninit[TE],TGUninit[TL]@gd ; LARGE64-LABEL: L..C2: ; LARGE64-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE64-LABEL: L..C3: -; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE64-LABEL: L..C4: ; LARGE64-NEXT: .tc .TIInit[TE],TIInit[TL]@m ; LARGE64-LABEL: L..C5: -; LARGE64-NEXT: .tc TIInit[TE],TIInit[TL] +; LARGE64-NEXT: .tc TIInit[TE],TIInit[TL]@gd ; LARGE64-LABEL: L..C6: ; LARGE64-NEXT: .tc .TWInit[TE],TWInit[TL]@m ; LARGE64-LABEL: L..C7: -; LARGE64-NEXT: .tc TWInit[TE],TWInit[TL] +; LARGE64-NEXT: .tc TWInit[TE],TWInit[TL]@gd ; LARGE64-LABEL: L..C8: ; LARGE64-NEXT: .tc GInit[TE],GInit[RW] diff --git a/llvm/test/CodeGen/PowerPC/aix-tls-gd-int.ll b/llvm/test/CodeGen/PowerPC/aix-tls-gd-int.ll --- a/llvm/test/CodeGen/PowerPC/aix-tls-gd-int.ll +++ b/llvm/test/CodeGen/PowerPC/aix-tls-gd-int.ll @@ -631,19 +631,19 @@ ; SMALL32-LABEL: L..C0: ; SMALL32-NEXT: .tc .TGUninit[TC],TGUninit[TL]@m ; SMALL32-LABEL: L..C1: -; SMALL32-NEXT: .tc TGUninit[TC],TGUninit[TL] +; SMALL32-NEXT: .tc TGUninit[TC],TGUninit[TL]@gd ; SMALL32-LABEL: L..C2: ; SMALL32-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL32-LABEL: L..C3: -; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL32-LABEL: L..C4: ; SMALL32-NEXT: .tc .TIUninit[TC],TIUninit[UL]@m ; SMALL32-LABEL: L..C5: -; SMALL32-NEXT: .tc TIUninit[TC],TIUninit[UL] +; SMALL32-NEXT: .tc TIUninit[TC],TIUninit[UL]@gd ; SMALL32-LABEL: L..C6: ; SMALL32-NEXT: .tc .TWUninit[TC],TWUninit[TL]@m ; SMALL32-LABEL: L..C7: -; SMALL32-NEXT: .tc TWUninit[TC],TWUninit[TL] +; SMALL32-NEXT: .tc TWUninit[TC],TWUninit[TL]@gd ; SMALL32-LABEL: L..C8: ; SMALL32-NEXT: .tc GInit[TC],GInit[RW] @@ -651,19 +651,19 @@ ; LARGE32-LABEL: L..C0: ; LARGE32-NEXT: .tc .TGUninit[TE],TGUninit[TL]@m ; LARGE32-LABEL: L..C1: -; LARGE32-NEXT: .tc TGUninit[TE],TGUninit[TL] +; LARGE32-NEXT: .tc TGUninit[TE],TGUninit[TL]@gd ; LARGE32-LABEL: L..C2: ; LARGE32-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE32-LABEL: L..C3: -; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE32-LABEL: L..C4: ; LARGE32-NEXT: .tc .TIUninit[TE],TIUninit[UL]@m ; LARGE32-LABEL: L..C5: -; LARGE32-NEXT: .tc TIUninit[TE],TIUninit[UL] +; LARGE32-NEXT: .tc TIUninit[TE],TIUninit[UL]@gd ; LARGE32-LABEL: L..C6: ; LARGE32-NEXT: .tc .TWUninit[TE],TWUninit[TL]@m ; LARGE32-LABEL: L..C7: -; LARGE32-NEXT: .tc TWUninit[TE],TWUninit[TL] +; LARGE32-NEXT: .tc TWUninit[TE],TWUninit[TL]@gd ; LARGE32-LABEL: L..C8: ; LARGE32-NEXT: .tc GInit[TE],GInit[RW] @@ -671,19 +671,19 @@ ; SMALL64-LABEL: L..C0: ; SMALL64-NEXT: .tc .TGUninit[TC],TGUninit[TL]@m ; SMALL64-LABEL: L..C1: -; SMALL64-NEXT: .tc TGUninit[TC],TGUninit[TL] +; SMALL64-NEXT: .tc TGUninit[TC],TGUninit[TL]@gd ; SMALL64-LABEL: L..C2: ; SMALL64-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL64-LABEL: L..C3: -; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL64-LABEL: L..C4: ; SMALL64-NEXT: .tc .TIUninit[TC],TIUninit[UL]@m ; SMALL64-LABEL: L..C5: -; SMALL64-NEXT: .tc TIUninit[TC],TIUninit[UL] +; SMALL64-NEXT: .tc TIUninit[TC],TIUninit[UL]@gd ; SMALL64-LABEL: L..C6: ; SMALL64-NEXT: .tc .TWUninit[TC],TWUninit[TL]@m ; SMALL64-LABEL: L..C7: -; SMALL64-NEXT: .tc TWUninit[TC],TWUninit[TL] +; SMALL64-NEXT: .tc TWUninit[TC],TWUninit[TL]@gd ; SMALL64-LABEL: L..C8: ; SMALL64-NEXT: .tc GInit[TC],GInit[RW] @@ -691,19 +691,19 @@ ; LARGE64-LABEL: L..C0: ; LARGE64-NEXT: .tc .TGUninit[TE],TGUninit[TL]@m ; LARGE64-LABEL: L..C1: -; LARGE64-NEXT: .tc TGUninit[TE],TGUninit[TL] +; LARGE64-NEXT: .tc TGUninit[TE],TGUninit[TL]@gd ; LARGE64-LABEL: L..C2: ; LARGE64-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE64-LABEL: L..C3: -; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE64-LABEL: L..C4: ; LARGE64-NEXT: .tc .TIUninit[TE],TIUninit[UL]@m ; LARGE64-LABEL: L..C5: -; LARGE64-NEXT: .tc TIUninit[TE],TIUninit[UL] +; LARGE64-NEXT: .tc TIUninit[TE],TIUninit[UL]@gd ; LARGE64-LABEL: L..C6: ; LARGE64-NEXT: .tc .TWUninit[TE],TWUninit[TL]@m ; LARGE64-LABEL: L..C7: -; LARGE64-NEXT: .tc TWUninit[TE],TWUninit[TL] +; LARGE64-NEXT: .tc TWUninit[TE],TWUninit[TL]@gd ; LARGE64-LABEL: L..C8: ; LARGE64-NEXT: .tc GInit[TE],GInit[RW] diff --git a/llvm/test/CodeGen/PowerPC/aix-tls-gd-longlong.ll b/llvm/test/CodeGen/PowerPC/aix-tls-gd-longlong.ll --- a/llvm/test/CodeGen/PowerPC/aix-tls-gd-longlong.ll +++ b/llvm/test/CodeGen/PowerPC/aix-tls-gd-longlong.ll @@ -671,19 +671,19 @@ ; SMALL32-LABEL: L..C0: ; SMALL32-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL32-LABEL: L..C1: -; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL32-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL32-LABEL: L..C2: ; SMALL32-NEXT: .tc .TIUninit[TC],TIUninit[UL]@m ; SMALL32-LABEL: L..C3: -; SMALL32-NEXT: .tc TIUninit[TC],TIUninit[UL] +; SMALL32-NEXT: .tc TIUninit[TC],TIUninit[UL]@gd ; SMALL32-LABEL: L..C4: ; SMALL32-NEXT: .tc .TIInit[TC],TIInit[TL]@m ; SMALL32-LABEL: L..C5: -; SMALL32-NEXT: .tc TIInit[TC],TIInit[TL] +; SMALL32-NEXT: .tc TIInit[TC],TIInit[TL]@gd ; SMALL32-LABEL: L..C6: ; SMALL32-NEXT: .tc .TWInit[TC],TWInit[TL]@m ; SMALL32-LABEL: L..C7: -; SMALL32-NEXT: .tc TWInit[TC],TWInit[TL] +; SMALL32-NEXT: .tc TWInit[TC],TWInit[TL]@gd ; SMALL32-LABEL: L..C8: ; SMALL32-NEXT: .tc GInit[TC],GInit[RW] @@ -691,19 +691,19 @@ ; LARGE32-LABEL: L..C0: ; LARGE32-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE32-LABEL: L..C1: -; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE32-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE32-LABEL: L..C2: ; LARGE32-NEXT: .tc .TIUninit[TE],TIUninit[UL]@m ; LARGE32-LABEL: L..C3: -; LARGE32-NEXT: .tc TIUninit[TE],TIUninit[UL] +; LARGE32-NEXT: .tc TIUninit[TE],TIUninit[UL]@gd ; LARGE32-LABEL: L..C4: ; LARGE32-NEXT: .tc .TIInit[TE],TIInit[TL]@m ; LARGE32-LABEL: L..C5: -; LARGE32-NEXT: .tc TIInit[TE],TIInit[TL] +; LARGE32-NEXT: .tc TIInit[TE],TIInit[TL]@gd ; LARGE32-LABEL: L..C6: ; LARGE32-NEXT: .tc .TWInit[TE],TWInit[TL]@m ; LARGE32-LABEL: L..C7: -; LARGE32-NEXT: .tc TWInit[TE],TWInit[TL] +; LARGE32-NEXT: .tc TWInit[TE],TWInit[TL]@gd ; LARGE32-LABEL: L..C8: ; LARGE32-NEXT: .tc GInit[TE],GInit[RW] @@ -711,19 +711,19 @@ ; SMALL64-LABEL: L..C0: ; SMALL64-NEXT: .tc .TGInit[TC],TGInit[TL]@m ; SMALL64-LABEL: L..C1: -; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL] +; SMALL64-NEXT: .tc TGInit[TC],TGInit[TL]@gd ; SMALL64-LABEL: L..C2: ; SMALL64-NEXT: .tc .TIUninit[TC],TIUninit[UL]@m ; SMALL64-LABEL: L..C3: -; SMALL64-NEXT: .tc TIUninit[TC],TIUninit[UL] +; SMALL64-NEXT: .tc TIUninit[TC],TIUninit[UL]@gd ; SMALL64-LABEL: L..C4: ; SMALL64-NEXT: .tc .TIInit[TC],TIInit[TL]@m ; SMALL64-LABEL: L..C5: -; SMALL64-NEXT: .tc TIInit[TC],TIInit[TL] +; SMALL64-NEXT: .tc TIInit[TC],TIInit[TL]@gd ; SMALL64-LABEL: L..C6: ; SMALL64-NEXT: .tc .TWInit[TC],TWInit[TL]@m ; SMALL64-LABEL: L..C7: -; SMALL64-NEXT: .tc TWInit[TC],TWInit[TL] +; SMALL64-NEXT: .tc TWInit[TC],TWInit[TL]@gd ; SMALL64-LABEL: L..C8: ; SMALL64-NEXT: .tc GInit[TC],GInit[RW] @@ -731,19 +731,19 @@ ; LARGE64-LABEL: L..C0: ; LARGE64-NEXT: .tc .TGInit[TE],TGInit[TL]@m ; LARGE64-LABEL: L..C1: -; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL] +; LARGE64-NEXT: .tc TGInit[TE],TGInit[TL]@gd ; LARGE64-LABEL: L..C2: ; LARGE64-NEXT: .tc .TIUninit[TE],TIUninit[UL]@m ; LARGE64-LABEL: L..C3: -; LARGE64-NEXT: .tc TIUninit[TE],TIUninit[UL] +; LARGE64-NEXT: .tc TIUninit[TE],TIUninit[UL]@gd ; LARGE64-LABEL: L..C4: ; LARGE64-NEXT: .tc .TIInit[TE],TIInit[TL]@m ; LARGE64-LABEL: L..C5: -; LARGE64-NEXT: .tc TIInit[TE],TIInit[TL] +; LARGE64-NEXT: .tc TIInit[TE],TIInit[TL]@gd ; LARGE64-LABEL: L..C6: ; LARGE64-NEXT: .tc .TWInit[TE],TWInit[TL]@m ; LARGE64-LABEL: L..C7: -; LARGE64-NEXT: .tc TWInit[TE],TWInit[TL] +; LARGE64-NEXT: .tc TWInit[TE],TWInit[TL]@gd ; LARGE64-LABEL: L..C8: ; LARGE64-NEXT: .tc GInit[TE],GInit[RW] diff --git a/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc-large.ll b/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc-large.ll new file mode 100644 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc-large.ll @@ -0,0 +1,614 @@ +; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \ +; RUN: -xcoff-traceback-table=false --code-model=large -filetype=obj -o %t.o < %s +; RUN: llvm-readobj --relocs --expand-relocs %t.o | FileCheck --check-prefix=RELOC %s +; RUN: llvm-readobj -t %t.o | FileCheck --check-prefix=SYM %s +; RUN: llvm-objdump -D -r --symbol-description %t.o | FileCheck --check-prefix=DIS %s + +@GInit = global double 1.000000e+00, align 8 +@TIInit = internal thread_local global i64 1, align 8 +@TWInit = weak thread_local global double 1.000000e+00, align 8 + +; Function Attrs: nofree norecurse nounwind willreturn writeonly +define void @storesTIInit(i64 %Val) #0 { +entry: + store i64 %Val, i64* @TIInit, align 8 + ret void +} + +; Function Attrs: norecurse nounwind readonly willreturn +define double @loadsTWInit() #1 { +entry: + %0 = load double, double* @TWInit, align 8 + %1 = load double, double* @GInit, align 8 + %add = fadd double %0, %1 + ret double %add +} + +; RELOC: File: {{.*}}aix-tls-xcoff-reloc-large.ll.tmp.o +; RELOC-NEXT: Format: aixcoff-rs6000 +; RELOC-NEXT: Arch: powerpc +; RELOC-NEXT: AddressSize: 32bit +; RELOC-NEXT: Relocations [ +; RELOC-NEXT: Section (index: 1) .text { +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x16 +; RELOC-NEXT: Symbol: .TIInit (17) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCU (0x30) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x1A +; RELOC-NEXT: Symbol: TIInit (19) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCU (0x30) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x1E +; RELOC-NEXT: Symbol: .TIInit (17) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCL (0x31) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x22 +; RELOC-NEXT: Symbol: TIInit (19) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCL (0x31) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x24 +; RELOC-NEXT: Symbol: .__tls_get_addr (1) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 26 +; RELOC-NEXT: Type: R_RBA (0x18) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x4E +; RELOC-NEXT: Symbol: .TWInit (21) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCU (0x30) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x52 +; RELOC-NEXT: Symbol: TWInit (23) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCU (0x30) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x56 +; RELOC-NEXT: Symbol: .TWInit (21) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCL (0x31) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x5A +; RELOC-NEXT: Symbol: TWInit (23) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCL (0x31) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x5C +; RELOC-NEXT: Symbol: .__tls_get_addr (1) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 26 +; RELOC-NEXT: Type: R_RBA (0x18) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x66 +; RELOC-NEXT: Symbol: GInit (25) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCU (0x30) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x6A +; RELOC-NEXT: Symbol: GInit (25) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOCL (0x31) +; RELOC-NEXT: } +; RELOC-NEXT: } +; RELOC-NEXT: Section (index: 2) .data { +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x90 +; RELOC-NEXT: Symbol: .storesTIInit (5) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x94 +; RELOC-NEXT: Symbol: TOC (15) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x9C +; RELOC-NEXT: Symbol: .loadsTWInit (7) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xA0 +; RELOC-NEXT: Symbol: TOC (15) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xA8 +; RELOC-NEXT: Symbol: TIInit (27) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLSM (0x24) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xAC +; RELOC-NEXT: Symbol: TIInit (27) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLS (0x20) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xB0 +; RELOC-NEXT: Symbol: TWInit (29) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLSM (0x24) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xB4 +; RELOC-NEXT: Symbol: TWInit (29) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLS (0x20) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0xB8 +; RELOC-NEXT: Symbol: GInit (9) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: } +; RELOC-NEXT: ] + +; SYM: File: {{.*}}aix-tls-xcoff-reloc-large.ll.tmp.o +; SYM-NEXT: Format: aixcoff-rs6000 +; SYM-NEXT: Arch: powerpc +; SYM-NEXT: AddressSize: 32bit +; SYM-NEXT: Symbols [ +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 0 +; SYM-NEXT: Name: .file +; SYM-NEXT: Value (SymbolTableIndex): 0x0 +; SYM-NEXT: Section: N_DEBUG +; SYM-NEXT: Source Language ID: TB_C (0x0) +; SYM-NEXT: CPU Version ID: 0x0 +; SYM-NEXT: StorageClass: C_FILE (0x67) +; SYM-NEXT: NumberOfAuxEntries: 0 +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 1 +; SYM-NEXT: Name: .__tls_get_addr +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: N_UNDEF +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 2 +; SYM-NEXT: SectionLen: 0 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_ER (0x0) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 3 +; SYM-NEXT: Name: .text +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 4 +; SYM-NEXT: SectionLen: 132 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 4 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 5 +; SYM-NEXT: Name: .storesTIInit +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 6 +; SYM-NEXT: ContainingCsectSymbolIndex: 3 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 7 +; SYM-NEXT: Name: .loadsTWInit +; SYM-NEXT: Value (RelocatableAddress): 0x40 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 8 +; SYM-NEXT: ContainingCsectSymbolIndex: 3 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 9 +; SYM-NEXT: Name: GInit +; SYM-NEXT: Value (RelocatableAddress): 0x88 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 10 +; SYM-NEXT: SectionLen: 8 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 3 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_RW (0x5) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 11 +; SYM-NEXT: Name: storesTIInit +; SYM-NEXT: Value (RelocatableAddress): 0x90 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 12 +; SYM-NEXT: SectionLen: 12 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_DS (0xA) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 13 +; SYM-NEXT: Name: loadsTWInit +; SYM-NEXT: Value (RelocatableAddress): 0x9C +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 14 +; SYM-NEXT: SectionLen: 12 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_DS (0xA) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 15 +; SYM-NEXT: Name: TOC +; SYM-NEXT: Value (RelocatableAddress): 0xA8 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 16 +; SYM-NEXT: SectionLen: 0 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC0 (0xF) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 17 +; SYM-NEXT: Name: .TIInit +; SYM-NEXT: Value (RelocatableAddress): 0xA8 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 18 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TE (0x16) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 19 +; SYM-NEXT: Name: TIInit +; SYM-NEXT: Value (RelocatableAddress): 0xAC +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 20 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TE (0x16) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 21 +; SYM-NEXT: Name: .TWInit +; SYM-NEXT: Value (RelocatableAddress): 0xB0 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 22 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TE (0x16) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 23 +; SYM-NEXT: Name: TWInit +; SYM-NEXT: Value (RelocatableAddress): 0xB4 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 24 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TE (0x16) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 25 +; SYM-NEXT: Name: GInit +; SYM-NEXT: Value (RelocatableAddress): 0xB8 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 26 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TE (0x16) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 27 +; SYM-NEXT: Name: TIInit +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .tdata +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 28 +; SYM-NEXT: SectionLen: 8 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 3 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TL (0x14) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 29 +; SYM-NEXT: Name: TWInit +; SYM-NEXT: Value (RelocatableAddress): 0x8 +; SYM-NEXT: Section: .tdata +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_WEAKEXT (0x6F) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 30 +; SYM-NEXT: SectionLen: 8 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 3 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TL (0x14) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: ] + +; DIS: {{.*}}aix-tls-xcoff-reloc-large.ll.tmp.o: file format aixcoff-rs6000 +; DIS: Disassembly of section .text: +; DIS: 00000000 (idx: 5) .storesTIInit: +; DIS-NEXT: 0: 7c 08 02 a6 mflr 0 +; DIS-NEXT: 4: 90 01 00 08 stw 0, 8(1) +; DIS-NEXT: 8: 94 21 ff e0 stwu 1, -32(1) +; DIS-NEXT: c: 7c 86 23 78 mr 6, 4 +; DIS-NEXT: 10: 7c 67 1b 78 mr 7, 3 +; DIS-NEXT: 14: 3c 62 00 00 addis 3, 2, 0 +; DIS-NEXT: 00000016: R_TOCU (idx: 17) .TIInit[TE] +; DIS-NEXT: 18: 3c 82 00 00 addis 4, 2, 0 +; DIS-NEXT: 0000001a: R_TOCU (idx: 19) TIInit[TE] +; DIS-NEXT: 1c: 80 63 00 00 lwz 3, 0(3) +; DIS-NEXT: 0000001e: R_TOCL (idx: 17) .TIInit[TE] +; DIS-NEXT: 20: 80 84 00 04 lwz 4, 4(4) +; DIS-NEXT: 00000022: R_TOCL (idx: 19) TIInit[TE] +; DIS-NEXT: 24: 48 00 00 03 bla 0 +; DIS-NEXT: 00000024: R_RBA (idx: 1) .__tls_get_addr[PR] +; DIS-NEXT: 28: 90 c3 00 04 stw 6, 4(3) +; DIS-NEXT: 2c: 90 e3 00 00 stw 7, 0(3) +; DIS-NEXT: 30: 38 21 00 20 addi 1, 1, 32 +; DIS-NEXT: 34: 80 01 00 08 lwz 0, 8(1) +; DIS-NEXT: 38: 7c 08 03 a6 mtlr 0 +; DIS-NEXT: 3c: 4e 80 00 20 blr +; DIS: 00000040 (idx: 7) .loadsTWInit: +; DIS-NEXT: 40: 7c 08 02 a6 mflr 0 +; DIS-NEXT: 44: 90 01 00 08 stw 0, 8(1) +; DIS-NEXT: 48: 94 21 ff e0 stwu 1, -32(1) +; DIS-NEXT: 4c: 3c 62 00 00 addis 3, 2, 0 +; DIS-NEXT: 0000004e: R_TOCU (idx: 21) .TWInit[TE] +; DIS-NEXT: 50: 3c 82 00 00 addis 4, 2, 0 +; DIS-NEXT: 00000052: R_TOCU (idx: 23) TWInit[TE] +; DIS-NEXT: 54: 80 63 00 08 lwz 3, 8(3) +; DIS-NEXT: 00000056: R_TOCL (idx: 21) .TWInit[TE] +; DIS-NEXT: 58: 80 84 00 0c lwz 4, 12(4) +; DIS-NEXT: 0000005a: R_TOCL (idx: 23) TWInit[TE] +; DIS-NEXT: 5c: 48 00 00 03 bla 0 +; DIS-NEXT: 0000005c: R_RBA (idx: 1) .__tls_get_addr[PR] +; DIS-NEXT: 60: c8 03 00 00 lfd 0, 0(3) +; DIS-NEXT: 64: 3c 62 00 00 addis 3, 2, 0 +; DIS-NEXT: 00000066: R_TOCU (idx: 25) GInit[TE] +; DIS-NEXT: 68: 80 63 00 10 lwz 3, 16(3) +; DIS-NEXT: 0000006a: R_TOCL (idx: 25) GInit[TE] +; DIS-NEXT: 6c: c8 23 00 00 lfd 1, 0(3) +; DIS-NEXT: 70: fc 20 08 2a fadd 1, 0, 1 +; DIS-NEXT: 74: 38 21 00 20 addi 1, 1, 32 +; DIS-NEXT: 78: 80 01 00 08 lwz 0, 8(1) +; DIS-NEXT: 7c: 7c 08 03 a6 mtlr 0 +; DIS-NEXT: 80: 4e 80 00 20 blr + +; DIS: Disassembly of section .data: +; DIS: 00000088 (idx: 9) GInit[RW]: +; DIS-NEXT: 88: 3f f0 00 00 addis 31, 16, 0 +; DIS-NEXT: 8c: 00 00 00 00 +; DIS: 00000090 (idx: 11) storesTIInit[DS]: +; DIS-NEXT: 90: 00 00 00 00 +; DIS-NEXT: 00000090: R_POS (idx: 5) .storesTIInit +; DIS-NEXT: 94: 00 00 00 a8 +; DIS-NEXT: 00000094: R_POS (idx: 15) TOC[TC0] +; DIS-NEXT: 98: 00 00 00 00 +; DIS: 0000009c (idx: 13) loadsTWInit[DS]: +; DIS-NEXT: 9c: 00 00 00 40 +; DIS-NEXT: 0000009c: R_POS (idx: 7) .loadsTWInit +; DIS-NEXT: a0: 00 00 00 a8 +; DIS-NEXT: 000000a0: R_POS (idx: 15) TOC[TC0] +; DIS-NEXT: a4: 00 00 00 00 +; DIS: 000000a8 (idx: 17) .TIInit[TE]: +; DIS-NEXT: a8: 00 00 00 00 +; DIS-NEXT: 000000a8: R_TLSM (idx: 27) TIInit[TL] +; DIS: 000000ac (idx: 19) TIInit[TE]: +; DIS-NEXT: ac: 00 00 00 00 +; DIS-NEXT: 000000ac: R_TLS (idx: 27) TIInit[TL] +; DIS: 000000b0 (idx: 21) .TWInit[TE]: +; DIS-NEXT: b0: 00 00 00 00 +; DIS-NEXT: 000000b0: R_TLSM (idx: 29) TWInit[TL] +; DIS: 000000b4 (idx: 23) TWInit[TE]: +; DIS-NEXT: b4: 00 00 00 08 +; DIS-NEXT: 000000b4: R_TLS (idx: 29) TWInit[TL] +; DIS: 000000b8 (idx: 25) GInit[TE]: +; DIS-NEXT: b8: 00 00 00 88 +; DIS-NEXT: 000000b8: R_POS (idx: 9) GInit[RW] + +; DIS: Disassembly of section .tdata: +; DIS: 00000000 (idx: 27) TIInit[TL]: +; DIS-NEXT: 0: 00 00 00 00 +; DIS-NEXT: 4: 00 00 00 01 +; DIS: 00000008 (idx: 29) TWInit[TL]: +; DIS-NEXT: 8: 3f f0 00 00 addis 31, 16, 0 +; DIS-NEXT: c: 00 00 00 00 + +attributes #0 = { nofree norecurse nounwind willreturn writeonly "frame-pointer"="none" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="pwr4" "target-features"="-altivec,-bpermd,-crypto,-direct-move,-extdiv,-float128,-htm,-mma,-paired-vector-memops,-power10-vector,-power8-vector,-power9-vector,-rop-protection,-spe,-vsx" } +attributes #1 = { norecurse nounwind readonly willreturn "frame-pointer"="none" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="pwr4" "target-features"="-altivec,-bpermd,-crypto,-direct-move,-extdiv,-float128,-htm,-mma,-paired-vector-memops,-power10-vector,-power8-vector,-power9-vector,-rop-protection,-spe,-vsx" } diff --git a/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc.ll b/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc.ll new file mode 100644 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/aix-tls-xcoff-reloc.ll @@ -0,0 +1,644 @@ +; RUN: llc -verify-machineinstrs -mcpu=pwr4 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \ +; RUN: -xcoff-traceback-table=false -data-sections=false -filetype=obj -o %t.o < %s +; RUN: llvm-readobj --relocs --expand-relocs %t.o | FileCheck --check-prefix=RELOC %s +; RUN: llvm-readobj -t %t.o | FileCheck --check-prefix=SYM %s +; RUN: llvm-objdump -D -r --symbol-description %t.o | FileCheck --check-prefix=DIS %s + +@const_ivar = constant i32 6, align 4 +@GInit = global i32 1, align 4 +@TGInit = thread_local global i32 1, align 4 +@TIUninit = internal thread_local global i32 0, align 4 + +; Function Attrs: nofree norecurse nounwind willreturn writeonly +define void @storesTIUninit(i32 %Val) #0 { +entry: + store i32 %Val, i32* @TIUninit, align 4 + ret void +} + +; Function Attrs: norecurse nounwind readonly willreturn +define i32 @loadsTGInit() #1 { +entry: + %0 = load i32, i32* @TGInit, align 4 + %1 = load i32, i32* @GInit, align 4 + %add = add nsw i32 %1, %0 + ret i32 %add +} + +; RELOC: File: {{.*}}aix-tls-xcoff-reloc.ll.tmp.o +; RELOC-NEXT: Format: aixcoff-rs6000 +; RELOC-NEXT: Arch: powerpc +; RELOC-NEXT: AddressSize: 32bit +; RELOC-NEXT: Relocations [ +; RELOC-NEXT: Section (index: 1) .text { +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x12 +; RELOC-NEXT: Symbol: .TIUninit (23) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOC (0x3) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x16 +; RELOC-NEXT: Symbol: TIUninit (25) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOC (0x3) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x18 +; RELOC-NEXT: Symbol: .__tls_get_addr (1) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 26 +; RELOC-NEXT: Type: R_RBA (0x18) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x3E +; RELOC-NEXT: Symbol: .TGInit (27) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOC (0x3) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x42 +; RELOC-NEXT: Symbol: TGInit (29) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOC (0x3) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x44 +; RELOC-NEXT: Symbol: .__tls_get_addr (1) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 26 +; RELOC-NEXT: Type: R_RBA (0x18) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x4A +; RELOC-NEXT: Symbol: GInit (31) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 16 +; RELOC-NEXT: Type: R_TOC (0x3) +; RELOC-NEXT: } +; RELOC-NEXT: } +; RELOC-NEXT: Section (index: 2) .data { +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x70 +; RELOC-NEXT: Symbol: .storesTIUninit (5) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x74 +; RELOC-NEXT: Symbol: TOC (21) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x7C +; RELOC-NEXT: Symbol: .loadsTGInit (7) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x80 +; RELOC-NEXT: Symbol: TOC (21) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x88 +; RELOC-NEXT: Symbol: TIUninit (37) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLSM (0x24) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x8C +; RELOC-NEXT: Symbol: TIUninit (37) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLS (0x20) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x90 +; RELOC-NEXT: Symbol: TGInit (35) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLSM (0x24) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x94 +; RELOC-NEXT: Symbol: TGInit (35) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_TLS (0x20) +; RELOC-NEXT: } +; RELOC-NEXT: Relocation { +; RELOC-NEXT: Virtual Address: 0x98 +; RELOC-NEXT: Symbol: GInit (15) +; RELOC-NEXT: IsSigned: No +; RELOC-NEXT: FixupBitValue: 0 +; RELOC-NEXT: Length: 32 +; RELOC-NEXT: Type: R_POS (0x0) +; RELOC-NEXT: } +; RELOC-NEXT: } +; RELOC-NEXT: ] + +; SYM: File: {{.*}}aix-tls-xcoff-reloc.ll.tmp.o +; SYM-NEXT: Format: aixcoff-rs6000 +; SYM-NEXT: Arch: powerpc +; SYM-NEXT: AddressSize: 32bit +; SYM-NEXT: Symbols [ +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 0 +; SYM-NEXT: Name: .file +; SYM-NEXT: Value (SymbolTableIndex): 0x0 +; SYM-NEXT: Section: N_DEBUG +; SYM-NEXT: Source Language ID: TB_C (0x0) +; SYM-NEXT: CPU Version ID: 0x0 +; SYM-NEXT: StorageClass: C_FILE (0x67) +; SYM-NEXT: NumberOfAuxEntries: 0 +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 1 +; SYM-NEXT: Name: .__tls_get_addr +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: N_UNDEF +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 2 +; SYM-NEXT: SectionLen: 0 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_ER (0x0) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 3 +; SYM-NEXT: Name: .text +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 4 +; SYM-NEXT: SectionLen: 104 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 4 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 5 +; SYM-NEXT: Name: .storesTIUninit +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 6 +; SYM-NEXT: ContainingCsectSymbolIndex: 3 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 7 +; SYM-NEXT: Name: .loadsTGInit +; SYM-NEXT: Value (RelocatableAddress): 0x30 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 8 +; SYM-NEXT: ContainingCsectSymbolIndex: 3 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_PR (0x0) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 9 +; SYM-NEXT: Name: .rodata +; SYM-NEXT: Value (RelocatableAddress): 0x68 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 10 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_RO (0x1) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 11 +; SYM-NEXT: Name: const_ivar +; SYM-NEXT: Value (RelocatableAddress): 0x68 +; SYM-NEXT: Section: .text +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 12 +; SYM-NEXT: ContainingCsectSymbolIndex: 9 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_RO (0x1) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 13 +; SYM-NEXT: Name: .data +; SYM-NEXT: Value (RelocatableAddress): 0x6C +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 14 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_RW (0x5) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 15 +; SYM-NEXT: Name: GInit +; SYM-NEXT: Value (RelocatableAddress): 0x6C +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 16 +; SYM-NEXT: ContainingCsectSymbolIndex: 13 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_RW (0x5) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 17 +; SYM-NEXT: Name: storesTIUninit +; SYM-NEXT: Value (RelocatableAddress): 0x70 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 18 +; SYM-NEXT: SectionLen: 12 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_DS (0xA) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 19 +; SYM-NEXT: Name: loadsTGInit +; SYM-NEXT: Value (RelocatableAddress): 0x7C +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 20 +; SYM-NEXT: SectionLen: 12 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_DS (0xA) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 21 +; SYM-NEXT: Name: TOC +; SYM-NEXT: Value (RelocatableAddress): 0x88 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 22 +; SYM-NEXT: SectionLen: 0 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC0 (0xF) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 23 +; SYM-NEXT: Name: .TIUninit +; SYM-NEXT: Value (RelocatableAddress): 0x88 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 24 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC (0x3) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 25 +; SYM-NEXT: Name: TIUninit +; SYM-NEXT: Value (RelocatableAddress): 0x8C +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 26 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC (0x3) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 27 +; SYM-NEXT: Name: .TGInit +; SYM-NEXT: Value (RelocatableAddress): 0x90 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 28 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC (0x3) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 29 +; SYM-NEXT: Name: TGInit +; SYM-NEXT: Value (RelocatableAddress): 0x94 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 30 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC (0x3) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 31 +; SYM-NEXT: Name: GInit +; SYM-NEXT: Value (RelocatableAddress): 0x98 +; SYM-NEXT: Section: .data +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 32 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TC (0x3) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 33 +; SYM-NEXT: Name: .tdata +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .tdata +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 34 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_SD (0x1) +; SYM-NEXT: StorageMappingClass: XMC_TL (0x14) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 35 +; SYM-NEXT: Name: TGInit +; SYM-NEXT: Value (RelocatableAddress): 0x0 +; SYM-NEXT: Section: .tdata +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_EXT (0x2) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 36 +; SYM-NEXT: ContainingCsectSymbolIndex: 33 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 0 +; SYM-NEXT: SymbolType: XTY_LD (0x2) +; SYM-NEXT: StorageMappingClass: XMC_TL (0x14) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: Symbol { +; SYM-NEXT: Index: 37 +; SYM-NEXT: Name: TIUninit +; SYM-NEXT: Value (RelocatableAddress): 0x4 +; SYM-NEXT: Section: .tbss +; SYM-NEXT: Type: 0x0 +; SYM-NEXT: StorageClass: C_HIDEXT (0x6B) +; SYM-NEXT: NumberOfAuxEntries: 1 +; SYM-NEXT: CSECT Auxiliary Entry { +; SYM-NEXT: Index: 38 +; SYM-NEXT: SectionLen: 4 +; SYM-NEXT: ParameterHashIndex: 0x0 +; SYM-NEXT: TypeChkSectNum: 0x0 +; SYM-NEXT: SymbolAlignmentLog2: 2 +; SYM-NEXT: SymbolType: XTY_CM (0x3) +; SYM-NEXT: StorageMappingClass: XMC_UL (0x15) +; SYM-NEXT: StabInfoIndex: 0x0 +; SYM-NEXT: StabSectNum: 0x0 +; SYM-NEXT: } +; SYM-NEXT: } +; SYM-NEXT: ] + +; DIS: {{.*}}aix-tls-xcoff-reloc.ll.tmp.o: file format aixcoff-rs6000 +; DIS: Disassembly of section .text: +; DIS: 00000000 (idx: 5) .storesTIUninit: +; DIS-NEXT: 0: 7c 08 02 a6 mflr 0 +; DIS-NEXT: 4: 90 01 00 08 stw 0, 8(1) +; DIS-NEXT: 8: 94 21 ff e0 stwu 1, -32(1) +; DIS-NEXT: c: 7c 66 1b 78 mr 6, 3 +; DIS-NEXT: 10: 80 62 00 00 lwz 3, 0(2) +; DIS-NEXT: 00000012: R_TOC (idx: 23) .TIUninit[TC] +; DIS-NEXT: 14: 80 82 00 04 lwz 4, 4(2) +; DIS-NEXT: 00000016: R_TOC (idx: 25) TIUninit[TC] +; DIS-NEXT: 18: 48 00 00 03 bla 0 +; DIS-NEXT: 00000018: R_RBA (idx: 1) .__tls_get_addr[PR] +; DIS-NEXT: 1c: 90 c3 00 00 stw 6, 0(3) +; DIS-NEXT: 20: 38 21 00 20 addi 1, 1, 32 +; DIS-NEXT: 24: 80 01 00 08 lwz 0, 8(1) +; DIS-NEXT: 28: 7c 08 03 a6 mtlr 0 +; DIS-NEXT: 2c: 4e 80 00 20 blr +; DIS: 00000030 (idx: 7) .loadsTGInit: +; DIS-NEXT: 30: 7c 08 02 a6 mflr 0 +; DIS-NEXT: 34: 90 01 00 08 stw 0, 8(1) +; DIS-NEXT: 38: 94 21 ff e0 stwu 1, -32(1) +; DIS-NEXT: 3c: 80 62 00 08 lwz 3, 8(2) +; DIS-NEXT: 0000003e: R_TOC (idx: 27) .TGInit[TC] +; DIS-NEXT: 40: 80 82 00 0c lwz 4, 12(2) +; DIS-NEXT: 00000042: R_TOC (idx: 29) TGInit[TC] +; DIS-NEXT: 44: 48 00 00 03 bla 0 +; DIS-NEXT: 00000044: R_RBA (idx: 1) .__tls_get_addr[PR] +; DIS-NEXT: 48: 80 82 00 10 lwz 4, 16(2) +; DIS-NEXT: 0000004a: R_TOC (idx: 31) GInit[TC] +; DIS-NEXT: 4c: 80 63 00 00 lwz 3, 0(3) +; DIS-NEXT: 50: 80 84 00 00 lwz 4, 0(4) +; DIS-NEXT: 54: 7c 64 1a 14 add 3, 4, 3 +; DIS-NEXT: 58: 38 21 00 20 addi 1, 1, 32 +; DIS-NEXT: 5c: 80 01 00 08 lwz 0, 8(1) +; DIS-NEXT: 60: 7c 08 03 a6 mtlr 0 +; DIS-NEXT: 64: 4e 80 00 20 blr +; DIS: 00000068 (idx: 11) const_ivar: +; DIS-NEXT: 68: 00 00 00 06 + +; DIS: Disassembly of section .data: +; DIS: 0000006c (idx: 15) GInit: +; DIS-NEXT: 6c: 00 00 00 01 +; DIS: 00000070 (idx: 17) storesTIUninit[DS]: +; DIS-NEXT: 70: 00 00 00 00 +; DIS-NEXT: 00000070: R_POS (idx: 5) .storesTIUninit +; DIS-NEXT: 74: 00 00 00 88 +; DIS-NEXT: 00000074: R_POS (idx: 21) TOC[TC0] +; DIS-NEXT: 78: 00 00 00 00 +; DIS: 0000007c (idx: 19) loadsTGInit[DS]: +; DIS-NEXT: 7c: 00 00 00 30 +; DIS-NEXT: 0000007c: R_POS (idx: 7) .loadsTGInit +; DIS-NEXT: 80: 00 00 00 88 +; DIS-NEXT: 00000080: R_POS (idx: 21) TOC[TC0] +; DIS-NEXT: 84: 00 00 00 00 +; DIS: 00000088 (idx: 23) .TIUninit[TC]: +; DIS-NEXT: 88: 00 00 00 00 +; DIS-NEXT: 00000088: R_TLSM (idx: 37) TIUninit[UL] +; DIS: 0000008c (idx: 25) TIUninit[TC]: +; DIS-NEXT: 8c: 00 00 00 04 +; DIS-NEXT: 0000008c: R_TLS (idx: 37) TIUninit[UL] +; DIS: 00000090 (idx: 27) .TGInit[TC]: +; DIS-NEXT: 90: 00 00 00 00 +; DIS-NEXT: 00000090: R_TLSM (idx: 35) TGInit +; DIS: 00000094 (idx: 29) TGInit[TC]: +; DIS-NEXT: 94: 00 00 00 00 +; DIS-NEXT: 00000094: R_TLS (idx: 35) TGInit +; DIS: 00000098 (idx: 31) GInit[TC]: +; DIS-NEXT: 98: 00 00 00 6c +; DIS-NEXT: 00000098: R_POS (idx: 15) GInit + +; DIS: Disassembly of section .tdata: +; DIS: 00000000 (idx: 35) TGInit: +; DIS-NEXT: 0: 00 00 00 01 + +; DIS: Disassembly of section .tbss: +; DIS: 00000004 (idx: 37) TIUninit[UL]: +; DIS-NEXT: ... + +attributes #0 = { nofree norecurse nounwind willreturn writeonly "frame-pointer"="none" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="pwr4" "target-features"="-altivec,-bpermd,-crypto,-direct-move,-extdiv,-float128,-htm,-mma,-paired-vector-memops,-power10-vector,-power8-vector,-power9-vector,-rop-protection,-spe,-vsx" } +attributes #1 = { norecurse nounwind readonly willreturn "frame-pointer"="none" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="pwr4" "target-features"="-altivec,-bpermd,-crypto,-direct-move,-extdiv,-float128,-htm,-mma,-paired-vector-memops,-power10-vector,-power8-vector,-power9-vector,-rop-protection,-spe,-vsx" }