Beispiel #1
0
// Emit addresses into the section given.
void AddressPool::emit(AsmPrinter &Asm, MCSection *AddrSection) {
    if (Pool.empty())
        return;

    // Start the dwarf addr section.
    Asm.OutStreamer->SwitchSection(AddrSection);

    // Order the address pool entries by ID
    SmallVector<const MCExpr *, 64> Entries(Pool.size());

    for (const auto &I : Pool)
        Entries[I.second.Number] =
            I.second.TLS
            ? Asm.getObjFileLowering().getDebugThreadLocalSymbol(I.first)
            : MCSymbolRefExpr::Create(I.first, Asm.OutContext);

    for (const MCExpr *Entry : Entries)
        Asm.OutStreamer->EmitValue(Entry, Asm.getDataLayout().getPointerSize());
}
StoreInitializer::StoreInitializer(Type *EltTy, AsmPrinter &AP)
    : DL(AP.getDataLayout()), AP(AP), InitEltSize(DL.getTypeAllocSize(EltTy)),
      IsFPElt(EltTy->isFloatingPointTy()), m_data(), OS(m_data), LE(OS) {}