
The .syntax unified directive and .codeX/.code X directives are, other than some simple common printing code, exclusively implemented in the targets themselves. Thus, remove the corresponding MCAF_* flags and reimplement the directives solely within the targets. This avoids exposing all targets to all other targets' flags. Since MCAF_SubsectionsViaSymbols is all that remains, convert it to its own function like other directives, simplifying its implementation. Note that, on X86, we now always need a target streamer when parsing assembly, as it's now used for directives that aren't COFF-specific. It still does not however need to do anything when producing a non-COFF object file, so this commit does not introduce any new target streamers. There is some churn in test output, and corresponding UTC regex changes, due to comments no longer being flushed by these various directives (and EmitEOL is not exposed outside MCAsmStreamer.cpp so we couldn't do so even if we wanted to), but that was a bit odd to be doing anyway. This is motivated by Morello LLVM, which adds yet another assembler flag to distinguish A64 and C64 instruction sets, but did not update every switch and so emits warnings during the build. Rather than fix those warnings it seems better to instead make the problem not exist in the first place via this change.
196 lines
5.9 KiB
C++
196 lines
5.9 KiB
C++
//===- lib/MC/MCWasmStreamer.cpp - Wasm Object Output ---------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file assembles .s files and emits Wasm .o object files.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/MC/MCWasmStreamer.h"
|
|
#include "llvm/ADT/SmallString.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/MC/MCAsmBackend.h"
|
|
#include "llvm/MC/MCAssembler.h"
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/MC/MCFixup.h"
|
|
#include "llvm/MC/MCFragment.h"
|
|
#include "llvm/MC/MCObjectStreamer.h"
|
|
#include "llvm/MC/MCSection.h"
|
|
#include "llvm/MC/MCSectionWasm.h"
|
|
#include "llvm/MC/MCSymbol.h"
|
|
#include "llvm/MC/MCSymbolWasm.h"
|
|
#include "llvm/MC/TargetRegistry.h"
|
|
#include "llvm/Support/Casting.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
namespace llvm {
|
|
class MCContext;
|
|
class MCStreamer;
|
|
class MCSubtargetInfo;
|
|
} // namespace llvm
|
|
|
|
using namespace llvm;
|
|
|
|
MCWasmStreamer::~MCWasmStreamer() = default; // anchor.
|
|
|
|
void MCWasmStreamer::emitLabel(MCSymbol *S, SMLoc Loc) {
|
|
auto *Symbol = cast<MCSymbolWasm>(S);
|
|
MCObjectStreamer::emitLabel(Symbol, Loc);
|
|
|
|
const MCSectionWasm &Section =
|
|
static_cast<const MCSectionWasm &>(*getCurrentSectionOnly());
|
|
if (Section.getSegmentFlags() & wasm::WASM_SEG_FLAG_TLS)
|
|
Symbol->setTLS();
|
|
}
|
|
|
|
void MCWasmStreamer::emitLabelAtPos(MCSymbol *S, SMLoc Loc, MCDataFragment &F,
|
|
uint64_t Offset) {
|
|
auto *Symbol = cast<MCSymbolWasm>(S);
|
|
MCObjectStreamer::emitLabelAtPos(Symbol, Loc, F, Offset);
|
|
|
|
const MCSectionWasm &Section =
|
|
static_cast<const MCSectionWasm &>(*getCurrentSectionOnly());
|
|
if (Section.getSegmentFlags() & wasm::WASM_SEG_FLAG_TLS)
|
|
Symbol->setTLS();
|
|
}
|
|
|
|
void MCWasmStreamer::changeSection(MCSection *Section, uint32_t Subsection) {
|
|
MCAssembler &Asm = getAssembler();
|
|
auto *SectionWasm = cast<MCSectionWasm>(Section);
|
|
const MCSymbol *Grp = SectionWasm->getGroup();
|
|
if (Grp)
|
|
Asm.registerSymbol(*Grp);
|
|
|
|
this->MCObjectStreamer::changeSection(Section, Subsection);
|
|
Asm.registerSymbol(*Section->getBeginSymbol());
|
|
}
|
|
|
|
void MCWasmStreamer::emitWeakReference(MCSymbol *Alias,
|
|
const MCSymbol *Symbol) {
|
|
getAssembler().registerSymbol(*Symbol);
|
|
const MCExpr *Value = MCSymbolRefExpr::create(
|
|
Symbol, MCSymbolRefExpr::VK_WEAKREF, getContext());
|
|
Alias->setVariableValue(Value);
|
|
}
|
|
|
|
bool MCWasmStreamer::emitSymbolAttribute(MCSymbol *S, MCSymbolAttr Attribute) {
|
|
assert(Attribute != MCSA_IndirectSymbol && "indirect symbols not supported");
|
|
|
|
auto *Symbol = cast<MCSymbolWasm>(S);
|
|
|
|
// Adding a symbol attribute always introduces the symbol; note that an
|
|
// important side effect of calling registerSymbol here is to register the
|
|
// symbol with the assembler.
|
|
getAssembler().registerSymbol(*Symbol);
|
|
|
|
switch (Attribute) {
|
|
case MCSA_LazyReference:
|
|
case MCSA_Reference:
|
|
case MCSA_SymbolResolver:
|
|
case MCSA_PrivateExtern:
|
|
case MCSA_WeakDefinition:
|
|
case MCSA_WeakDefAutoPrivate:
|
|
case MCSA_Invalid:
|
|
case MCSA_IndirectSymbol:
|
|
case MCSA_Protected:
|
|
case MCSA_Exported:
|
|
return false;
|
|
|
|
case MCSA_Hidden:
|
|
Symbol->setHidden(true);
|
|
break;
|
|
|
|
case MCSA_Weak:
|
|
case MCSA_WeakReference:
|
|
Symbol->setWeak(true);
|
|
Symbol->setExternal(true);
|
|
break;
|
|
|
|
case MCSA_Global:
|
|
Symbol->setExternal(true);
|
|
break;
|
|
|
|
case MCSA_ELF_TypeFunction:
|
|
Symbol->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
|
|
break;
|
|
|
|
case MCSA_ELF_TypeTLS:
|
|
Symbol->setTLS();
|
|
break;
|
|
|
|
case MCSA_ELF_TypeObject:
|
|
case MCSA_Cold:
|
|
break;
|
|
|
|
case MCSA_NoDeadStrip:
|
|
Symbol->setNoStrip();
|
|
break;
|
|
|
|
default:
|
|
// unrecognized directive
|
|
llvm_unreachable("unexpected MCSymbolAttr");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void MCWasmStreamer::emitCommonSymbol(MCSymbol *S, uint64_t Size,
|
|
Align ByteAlignment) {
|
|
llvm_unreachable("Common symbols are not yet implemented for Wasm");
|
|
}
|
|
|
|
void MCWasmStreamer::emitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
|
|
cast<MCSymbolWasm>(Symbol)->setSize(Value);
|
|
}
|
|
|
|
void MCWasmStreamer::emitLocalCommonSymbol(MCSymbol *S, uint64_t Size,
|
|
Align ByteAlignment) {
|
|
llvm_unreachable("Local common symbols are not yet implemented for Wasm");
|
|
}
|
|
|
|
void MCWasmStreamer::emitIdent(StringRef IdentString) {
|
|
// TODO(sbc): Add the ident section once we support mergable strings
|
|
// sections in the object format
|
|
}
|
|
|
|
void MCWasmStreamer::emitInstToData(const MCInst &Inst,
|
|
const MCSubtargetInfo &STI) {
|
|
MCAssembler &Assembler = getAssembler();
|
|
SmallVector<MCFixup, 4> Fixups;
|
|
SmallString<256> Code;
|
|
Assembler.getEmitter().encodeInstruction(Inst, Code, Fixups, STI);
|
|
|
|
// Append the encoded instruction to the current data fragment (or create a
|
|
// new such fragment if the current fragment is not a data fragment).
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
// Add the fixups and data.
|
|
for (MCFixup &Fixup : Fixups) {
|
|
Fixup.setOffset(Fixup.getOffset() + DF->getContents().size());
|
|
DF->getFixups().push_back(Fixup);
|
|
}
|
|
DF->setHasInstructions(STI);
|
|
DF->appendContents(Code);
|
|
}
|
|
|
|
void MCWasmStreamer::finishImpl() {
|
|
emitFrames(nullptr);
|
|
|
|
this->MCObjectStreamer::finishImpl();
|
|
}
|
|
|
|
MCStreamer *llvm::createWasmStreamer(MCContext &Context,
|
|
std::unique_ptr<MCAsmBackend> &&MAB,
|
|
std::unique_ptr<MCObjectWriter> &&OW,
|
|
std::unique_ptr<MCCodeEmitter> &&CE) {
|
|
MCWasmStreamer *S =
|
|
new MCWasmStreamer(Context, std::move(MAB), std::move(OW), std::move(CE));
|
|
return S;
|
|
}
|