2017-06-22 04:58:17 +08:00
|
|
|
//===- llvm/MC/MCWinCOFFStreamer.cpp --------------------------------------===//
|
2010-07-12 06:05:00 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2014-04-27 11:48:05 +08:00
|
|
|
// This file contains an implementation of a Windows COFF object file streamer.
|
2010-07-12 06:05:00 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-02-08 07:02:00 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/Triple.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2017-06-07 11:48:56 +08:00
|
|
|
#include "llvm/BinaryFormat/COFF.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
|
|
|
#include "llvm/MC/MCAssembler.h"
|
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
2010-07-12 06:05:00 +08:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2017-02-08 07:02:00 +08:00
|
|
|
#include "llvm/MC/MCFixup.h"
|
|
|
|
#include "llvm/MC/MCFragment.h"
|
2014-01-24 06:49:25 +08:00
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/MC/MCObjectStreamer.h"
|
2010-07-12 06:05:00 +08:00
|
|
|
#include "llvm/MC/MCSection.h"
|
2015-06-09 01:17:12 +08:00
|
|
|
#include "llvm/MC/MCSymbolCOFF.h"
|
2014-04-27 11:48:05 +08:00
|
|
|
#include "llvm/MC/MCWinCOFFStreamer.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Support/Casting.h"
|
2010-07-12 06:05:00 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2014-10-08 03:37:57 +08:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2017-02-08 07:02:00 +08:00
|
|
|
#include "llvm/Support/SMLoc.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2017-02-08 07:02:00 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdint>
|
2011-12-17 09:14:52 +08:00
|
|
|
|
2010-07-12 06:05:00 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 11:04:17 +08:00
|
|
|
#define DEBUG_TYPE "WinCOFFStreamer"
|
|
|
|
|
2017-10-11 09:57:21 +08:00
|
|
|
MCWinCOFFStreamer::MCWinCOFFStreamer(MCContext &Context,
|
|
|
|
std::unique_ptr<MCAsmBackend> MAB,
|
2017-10-12 07:34:47 +08:00
|
|
|
std::unique_ptr<MCCodeEmitter> CE,
|
|
|
|
raw_pwrite_stream &OS)
|
|
|
|
: MCObjectStreamer(Context, std::move(MAB), OS, std::move(CE)),
|
|
|
|
CurSymbol(nullptr) {}
|
2010-07-19 14:13:10 +08:00
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitInstToData(const MCInst &Inst,
|
|
|
|
const MCSubtargetInfo &STI) {
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
|
|
|
|
SmallVector<MCFixup, 4> Fixups;
|
|
|
|
SmallString<256> Code;
|
|
|
|
raw_svector_ostream VecOS(Code);
|
2015-05-16 03:13:16 +08:00
|
|
|
getAssembler().getEmitter().encodeInstruction(Inst, VecOS, Fixups, STI);
|
2014-04-27 11:48:05 +08:00
|
|
|
|
|
|
|
// Add the fixups and data.
|
|
|
|
for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
|
|
|
|
Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
|
|
|
|
DF->getFixups().push_back(Fixups[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
DF->getContents().append(Code.begin(), Code.end());
|
|
|
|
}
|
2010-07-12 06:05:00 +08:00
|
|
|
|
2014-10-16 00:12:52 +08:00
|
|
|
void MCWinCOFFStreamer::InitSections(bool NoExecStack) {
|
2014-01-24 10:28:11 +08:00
|
|
|
// FIXME: this is identical to the ELF one.
|
|
|
|
// This emulates the same behavior of GNU as. This makes it easier
|
|
|
|
// to compare the output as the major sections are in the same order.
|
|
|
|
SwitchSection(getContext().getObjectFileInfo()->getTextSection());
|
2014-02-05 02:34:04 +08:00
|
|
|
EmitCodeAlignment(4);
|
2014-01-24 10:28:11 +08:00
|
|
|
|
|
|
|
SwitchSection(getContext().getObjectFileInfo()->getDataSection());
|
2014-02-05 02:34:04 +08:00
|
|
|
EmitCodeAlignment(4);
|
2014-01-24 10:28:11 +08:00
|
|
|
|
|
|
|
SwitchSection(getContext().getObjectFileInfo()->getBSSSection());
|
2014-02-05 02:34:04 +08:00
|
|
|
EmitCodeAlignment(4);
|
2014-01-24 10:28:11 +08:00
|
|
|
|
|
|
|
SwitchSection(getContext().getObjectFileInfo()->getTextSection());
|
2010-09-16 05:48:40 +08:00
|
|
|
}
|
|
|
|
|
2017-02-10 23:13:12 +08:00
|
|
|
void MCWinCOFFStreamer::EmitLabel(MCSymbol *S, SMLoc Loc) {
|
2016-07-09 05:54:16 +08:00
|
|
|
auto *Symbol = cast<MCSymbolCOFF>(S);
|
2017-02-10 23:13:12 +08:00
|
|
|
MCObjectStreamer::EmitLabel(Symbol, Loc);
|
2010-11-29 00:22:59 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
|
2010-07-19 14:13:10 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitThumbFunc(MCSymbol *Func) {
|
2010-11-06 06:08:08 +08:00
|
|
|
llvm_unreachable("not implemented");
|
|
|
|
}
|
|
|
|
|
2016-07-09 05:54:16 +08:00
|
|
|
bool MCWinCOFFStreamer::EmitSymbolAttribute(MCSymbol *S,
|
2014-04-27 11:48:05 +08:00
|
|
|
MCSymbolAttr Attribute) {
|
2016-07-09 05:54:16 +08:00
|
|
|
auto *Symbol = cast<MCSymbolCOFF>(S);
|
2015-05-30 04:21:02 +08:00
|
|
|
getAssembler().registerSymbol(*Symbol);
|
2014-04-27 11:48:01 +08:00
|
|
|
|
2010-07-19 14:13:10 +08:00
|
|
|
switch (Attribute) {
|
2014-04-27 11:48:01 +08:00
|
|
|
default: return false;
|
2010-07-19 14:13:10 +08:00
|
|
|
case MCSA_WeakReference:
|
2014-04-27 11:48:01 +08:00
|
|
|
case MCSA_Weak:
|
2016-07-09 05:54:16 +08:00
|
|
|
Symbol->setIsWeakExternal();
|
2015-05-30 05:45:01 +08:00
|
|
|
Symbol->setExternal(true);
|
2010-07-19 14:13:10 +08:00
|
|
|
break;
|
|
|
|
case MCSA_Global:
|
2015-05-30 05:45:01 +08:00
|
|
|
Symbol->setExternal(true);
|
2010-07-19 14:13:10 +08:00
|
|
|
break;
|
2016-04-09 01:38:51 +08:00
|
|
|
case MCSA_AltEntry:
|
2016-04-12 02:33:45 +08:00
|
|
|
llvm_unreachable("COFF doesn't support the .alt_entry attribute");
|
2010-07-19 14:13:10 +08:00
|
|
|
}
|
2013-08-09 09:52:03 +08:00
|
|
|
|
|
|
|
return true;
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
|
2010-07-19 14:13:10 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2016-07-09 05:54:16 +08:00
|
|
|
void MCWinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *S) {
|
|
|
|
auto *Symbol = cast<MCSymbolCOFF>(S);
|
2014-05-22 10:18:10 +08:00
|
|
|
if (CurSymbol)
|
2015-11-17 18:00:43 +08:00
|
|
|
Error("starting a new symbol definition without completing the "
|
|
|
|
"previous one");
|
2010-07-19 14:13:10 +08:00
|
|
|
CurSymbol = Symbol;
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {
|
2015-11-17 18:00:43 +08:00
|
|
|
if (!CurSymbol) {
|
|
|
|
Error("storage class specified outside of symbol definition");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-22 10:18:10 +08:00
|
|
|
|
2015-11-17 18:00:43 +08:00
|
|
|
if (StorageClass & ~COFF::SSC_Invalid) {
|
|
|
|
Error("storage class value '" + Twine(StorageClass) +
|
2014-05-22 10:18:10 +08:00
|
|
|
"' out of range");
|
2015-11-17 18:00:43 +08:00
|
|
|
return;
|
|
|
|
}
|
2010-07-19 14:13:10 +08:00
|
|
|
|
2015-05-30 04:21:02 +08:00
|
|
|
getAssembler().registerSymbol(*CurSymbol);
|
2015-06-09 01:17:19 +08:00
|
|
|
cast<MCSymbolCOFF>(CurSymbol)->setClass((uint16_t)StorageClass);
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSymbolType(int Type) {
|
2015-11-17 18:00:43 +08:00
|
|
|
if (!CurSymbol) {
|
|
|
|
Error("symbol type specified outside of a symbol definition");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-22 10:18:10 +08:00
|
|
|
|
2015-11-17 18:00:43 +08:00
|
|
|
if (Type & ~0xffff) {
|
|
|
|
Error("type value '" + Twine(Type) + "' out of range");
|
|
|
|
return;
|
|
|
|
}
|
2010-07-19 14:13:10 +08:00
|
|
|
|
2015-05-30 04:21:02 +08:00
|
|
|
getAssembler().registerSymbol(*CurSymbol);
|
2015-06-09 01:17:12 +08:00
|
|
|
cast<MCSymbolCOFF>(CurSymbol)->setType((uint16_t)Type);
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EndCOFFSymbolDef() {
|
2014-05-22 10:18:10 +08:00
|
|
|
if (!CurSymbol)
|
2015-11-17 18:00:43 +08:00
|
|
|
Error("ending symbol definition without starting one");
|
2014-04-13 12:57:38 +08:00
|
|
|
CurSymbol = nullptr;
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2015-05-30 12:56:02 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSafeSEH(MCSymbol const *Symbol) {
|
2015-06-01 15:34:26 +08:00
|
|
|
// SafeSEH is a feature specific to 32-bit x86. It does not exist (and is
|
|
|
|
// unnecessary) on all platforms which use table-based exception dispatch.
|
|
|
|
if (getContext().getObjectFileInfo()->getTargetTriple().getArch() !=
|
|
|
|
Triple::x86)
|
|
|
|
return;
|
|
|
|
|
2015-06-10 09:02:30 +08:00
|
|
|
const MCSymbolCOFF *CSymbol = cast<MCSymbolCOFF>(Symbol);
|
|
|
|
if (CSymbol->isSafeSEH())
|
2015-05-30 12:56:02 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
MCSection *SXData = getContext().getObjectFileInfo()->getSXDataSection();
|
|
|
|
getAssembler().registerSection(*SXData);
|
|
|
|
if (SXData->getAlignment() < 4)
|
|
|
|
SXData->setAlignment(4);
|
|
|
|
|
2017-11-09 02:57:02 +08:00
|
|
|
new MCSymbolIdFragment(Symbol, SXData);
|
2015-05-30 12:56:02 +08:00
|
|
|
|
|
|
|
getAssembler().registerSymbol(*Symbol);
|
2015-06-10 09:02:30 +08:00
|
|
|
CSymbol->setIsSafeSEH();
|
|
|
|
|
|
|
|
// The Microsoft linker requires that the symbol type of a handler be
|
|
|
|
// function. Go ahead and oblige it here.
|
|
|
|
CSymbol->setType(COFF::IMAGE_SYM_DTYPE_FUNCTION
|
|
|
|
<< COFF::SCT_COMPLEX_TYPE_SHIFT);
|
2015-05-30 12:56:02 +08:00
|
|
|
}
|
|
|
|
|
2018-01-10 07:49:30 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSymbolIndex(MCSymbol const *Symbol) {
|
|
|
|
MCSection *Sec = getCurrentSectionOnly();
|
|
|
|
getAssembler().registerSection(*Sec);
|
|
|
|
if (Sec->getAlignment() < 4)
|
|
|
|
Sec->setAlignment(4);
|
|
|
|
|
|
|
|
new MCSymbolIdFragment(Symbol, getCurrentSectionOnly());
|
|
|
|
|
|
|
|
getAssembler().registerSymbol(*Symbol);
|
|
|
|
}
|
|
|
|
|
2017-06-23 05:02:14 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSectionIndex(const MCSymbol *Symbol) {
|
|
|
|
visitUsedSymbol(*Symbol);
|
2013-12-21 02:15:00 +08:00
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
2015-05-30 09:25:56 +08:00
|
|
|
const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Symbol, getContext());
|
2015-05-16 03:13:05 +08:00
|
|
|
MCFixup Fixup = MCFixup::create(DF->getContents().size(), SRE, FK_SecRel_2);
|
2014-04-27 11:48:01 +08:00
|
|
|
DF->getFixups().push_back(Fixup);
|
2014-10-09 02:01:49 +08:00
|
|
|
DF->getContents().resize(DF->getContents().size() + 2, 0);
|
2013-12-21 02:15:00 +08:00
|
|
|
}
|
|
|
|
|
2017-06-23 05:02:14 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCOFFSecRel32(const MCSymbol *Symbol,
|
2017-01-02 11:00:19 +08:00
|
|
|
uint64_t Offset) {
|
2017-06-23 05:02:14 +08:00
|
|
|
visitUsedSymbol(*Symbol);
|
2011-12-17 09:14:52 +08:00
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
2017-01-02 11:00:19 +08:00
|
|
|
// Create Symbol A for the relocation relative reference.
|
|
|
|
const MCExpr *MCE = MCSymbolRefExpr::create(Symbol, getContext());
|
|
|
|
// Add the constant offset, if given.
|
|
|
|
if (Offset)
|
|
|
|
MCE = MCBinaryExpr::createAdd(
|
|
|
|
MCE, MCConstantExpr::create(Offset, getContext()), getContext());
|
|
|
|
// Build the secrel32 relocation.
|
|
|
|
MCFixup Fixup = MCFixup::create(DF->getContents().size(), MCE, FK_SecRel_4);
|
|
|
|
// Record the relocation.
|
2014-04-27 11:48:01 +08:00
|
|
|
DF->getFixups().push_back(Fixup);
|
2017-01-02 11:00:19 +08:00
|
|
|
// Emit 4 bytes (zeros) to the object file.
|
2011-12-17 09:14:52 +08:00
|
|
|
DF->getContents().resize(DF->getContents().size() + 4, 0);
|
|
|
|
}
|
|
|
|
|
2016-07-09 05:54:16 +08:00
|
|
|
void MCWinCOFFStreamer::EmitCommonSymbol(MCSymbol *S, uint64_t Size,
|
2014-04-27 11:48:05 +08:00
|
|
|
unsigned ByteAlignment) {
|
2016-07-09 05:54:16 +08:00
|
|
|
auto *Symbol = cast<MCSymbolCOFF>(S);
|
2014-04-09 06:33:40 +08:00
|
|
|
|
2014-09-21 17:18:07 +08:00
|
|
|
const Triple &T = getContext().getObjectFileInfo()->getTargetTriple();
|
2014-10-08 14:38:53 +08:00
|
|
|
if (T.isKnownWindowsMSVCEnvironment()) {
|
2014-09-21 17:18:07 +08:00
|
|
|
if (ByteAlignment > 32)
|
|
|
|
report_fatal_error("alignment is limited to 32-bytes");
|
2014-10-08 03:37:57 +08:00
|
|
|
|
2014-10-08 14:38:53 +08:00
|
|
|
// Round size up to alignment so that we will honor the alignment request.
|
|
|
|
Size = std::max(Size, static_cast<uint64_t>(ByteAlignment));
|
|
|
|
}
|
2014-04-09 06:33:40 +08:00
|
|
|
|
2015-05-30 04:21:02 +08:00
|
|
|
getAssembler().registerSymbol(*Symbol);
|
2015-05-30 05:45:01 +08:00
|
|
|
Symbol->setExternal(true);
|
2015-05-30 01:48:04 +08:00
|
|
|
Symbol->setCommon(Size, ByteAlignment);
|
2014-10-08 03:37:57 +08:00
|
|
|
|
|
|
|
if (!T.isKnownWindowsMSVCEnvironment() && ByteAlignment > 1) {
|
|
|
|
SmallString<128> Directive;
|
|
|
|
raw_svector_ostream OS(Directive);
|
|
|
|
const MCObjectFileInfo *MFI = getContext().getObjectFileInfo();
|
|
|
|
|
|
|
|
OS << " -aligncomm:\"" << Symbol->getName() << "\","
|
|
|
|
<< Log2_32_Ceil(ByteAlignment);
|
|
|
|
|
|
|
|
PushSection();
|
|
|
|
SwitchSection(MFI->getDrectveSection());
|
|
|
|
EmitBytes(Directive);
|
|
|
|
PopSection();
|
|
|
|
}
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2016-07-09 05:54:16 +08:00
|
|
|
void MCWinCOFFStreamer::EmitLocalCommonSymbol(MCSymbol *S, uint64_t Size,
|
2014-04-27 11:48:05 +08:00
|
|
|
unsigned ByteAlignment) {
|
2016-07-09 05:54:16 +08:00
|
|
|
auto *Symbol = cast<MCSymbolCOFF>(S);
|
2014-04-09 06:33:40 +08:00
|
|
|
|
2015-05-22 03:20:38 +08:00
|
|
|
MCSection *Section = getContext().getObjectFileInfo()->getBSSSection();
|
2018-01-10 05:55:10 +08:00
|
|
|
PushSection();
|
|
|
|
SwitchSection(Section);
|
|
|
|
EmitValueToAlignment(ByteAlignment, 0, 1, 0);
|
|
|
|
EmitLabel(Symbol);
|
2015-05-30 05:45:01 +08:00
|
|
|
Symbol->setExternal(false);
|
2018-01-10 05:55:10 +08:00
|
|
|
EmitZeros(Size);
|
|
|
|
PopSection();
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 03:20:38 +08:00
|
|
|
void MCWinCOFFStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol,
|
|
|
|
uint64_t Size, unsigned ByteAlignment) {
|
2010-07-19 14:13:10 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 03:20:38 +08:00
|
|
|
void MCWinCOFFStreamer::EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol,
|
|
|
|
uint64_t Size, unsigned ByteAlignment) {
|
2010-07-19 14:13:10 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
|
|
|
|
2013-10-16 09:05:45 +08:00
|
|
|
// TODO: Implement this if you want to emit .comment section in COFF obj files.
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::EmitIdent(StringRef IdentString) {
|
2014-04-27 11:48:01 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2013-10-16 09:05:45 +08:00
|
|
|
}
|
|
|
|
|
2017-10-10 09:26:25 +08:00
|
|
|
void MCWinCOFFStreamer::EmitWinEHHandlerData(SMLoc Loc) {
|
2014-04-27 11:48:12 +08:00
|
|
|
llvm_unreachable("not implemented");
|
2011-05-22 11:01:05 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 11:48:05 +08:00
|
|
|
void MCWinCOFFStreamer::FinishImpl() {
|
2012-01-07 11:13:18 +08:00
|
|
|
MCObjectStreamer::FinishImpl();
|
2010-07-12 06:05:00 +08:00
|
|
|
}
|
2014-05-22 10:18:10 +08:00
|
|
|
|
2015-11-17 18:00:43 +08:00
|
|
|
void MCWinCOFFStreamer::Error(const Twine &Msg) const {
|
|
|
|
getContext().reportError(SMLoc(), Msg);
|
2014-05-22 10:18:10 +08:00
|
|
|
}
|