2010-03-16 16:51:38 +00:00
|
|
|
//===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-09-17 15:48:55 +00:00
|
|
|
//
|
2009-06-02 17:52:33 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-09-17 15:48:55 +00:00
|
|
|
// This file implements the Link Time Optimization library. This library is
|
2009-06-02 17:52:33 +00:00
|
|
|
// intended to be used by linker to optimize code at link time.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
#include "llvm/LTO/legacy/LTOModule.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2017-04-16 16:01:22 +00:00
|
|
|
#include "llvm/Analysis/ObjectUtils.h"
|
2017-01-02 19:17:04 +00:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/IR/Constants.h"
|
2015-01-18 16:17:27 +00:00
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2017-04-16 16:01:22 +00:00
|
|
|
#include "llvm/IR/Mangler.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/IR/Metadata.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-05-02 19:34:44 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2013-12-22 00:04:03 +00:00
|
|
|
#include "llvm/MC/MCInstrInfo.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
2016-07-23 20:41:05 +00:00
|
|
|
#include "llvm/MC/MCParser/MCTargetAsmParser.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/MC/MCSection.h"
|
2011-07-17 15:36:56 +00:00
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2011-05-02 19:34:44 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2012-04-14 13:54:10 +00:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2015-01-18 16:17:27 +00:00
|
|
|
#include "llvm/Object/IRObjectFile.h"
|
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2013-12-22 00:04:03 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
2012-04-14 13:54:10 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/SourceMgr.h"
|
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2015-01-18 16:17:27 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2013-12-22 00:04:03 +00:00
|
|
|
#include "llvm/Transforms/Utils/GlobalStatus.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include <system_error>
|
2009-06-02 17:52:33 +00:00
|
|
|
using namespace llvm;
|
2015-01-18 16:17:27 +00:00
|
|
|
using namespace llvm::object;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
LTOModule::LTOModule(std::unique_ptr<Module> M, MemoryBufferRef MBRef,
|
2014-11-24 09:08:18 +00:00
|
|
|
llvm::TargetMachine *TM)
|
2017-01-02 19:17:04 +00:00
|
|
|
: Mod(std::move(M)), MBRef(MBRef), _target(TM) {
|
|
|
|
SymTab.addModule(Mod.get());
|
|
|
|
}
|
2012-04-14 13:54:10 +00:00
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
LTOModule::~LTOModule() {}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// isBitcodeFile - Returns 'true' if the file (or memory contents) is LLVM
|
|
|
|
/// bitcode.
|
2015-01-18 16:17:27 +00:00
|
|
|
bool LTOModule::isBitcodeFile(const void *Mem, size_t Length) {
|
|
|
|
ErrorOr<MemoryBufferRef> BCData = IRObjectFile::findBitcodeInMemBuffer(
|
|
|
|
MemoryBufferRef(StringRef((const char *)Mem, Length), "<mem>"));
|
|
|
|
return bool(BCData);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
bool LTOModule::isBitcodeFile(StringRef Path) {
|
2015-01-18 16:17:27 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFile(Path);
|
|
|
|
if (!BufferOrErr)
|
2013-12-22 00:04:03 +00:00
|
|
|
return false;
|
2015-01-18 16:17:27 +00:00
|
|
|
|
|
|
|
ErrorOr<MemoryBufferRef> BCData = IRObjectFile::findBitcodeInMemBuffer(
|
|
|
|
BufferOrErr.get()->getMemBufferRef());
|
|
|
|
return bool(BCData);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
bool LTOModule::isThinLTO() {
|
|
|
|
// Right now the detection is only based on the summary presence. We may want
|
|
|
|
// to add a dedicated flag at some point.
|
2017-01-02 19:17:04 +00:00
|
|
|
Expected<bool> Result = hasGlobalValueSummary(MBRef);
|
|
|
|
if (!Result) {
|
|
|
|
logAllUnhandledErrors(Result.takeError(), errs(), "");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return *Result;
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
bool LTOModule::isBitcodeForTarget(MemoryBuffer *Buffer,
|
|
|
|
StringRef TriplePrefix) {
|
|
|
|
ErrorOr<MemoryBufferRef> BCOrErr =
|
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer->getMemBufferRef());
|
|
|
|
if (!BCOrErr)
|
|
|
|
return false;
|
|
|
|
LLVMContext Context;
|
2017-01-02 19:17:04 +00:00
|
|
|
ErrorOr<std::string> TripleOrErr =
|
|
|
|
expectedToErrorOrAndEmitErrors(Context, getBitcodeTargetTriple(*BCOrErr));
|
|
|
|
if (!TripleOrErr)
|
|
|
|
return false;
|
|
|
|
return StringRef(*TripleOrErr).startswith(TriplePrefix);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
std::string LTOModule::getProducerString(MemoryBuffer *Buffer) {
|
|
|
|
ErrorOr<MemoryBufferRef> BCOrErr =
|
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer->getMemBufferRef());
|
|
|
|
if (!BCOrErr)
|
|
|
|
return "";
|
|
|
|
LLVMContext Context;
|
2017-01-02 19:17:04 +00:00
|
|
|
ErrorOr<std::string> ProducerOrErr = expectedToErrorOrAndEmitErrors(
|
|
|
|
Context, getBitcodeProducerString(*BCOrErr));
|
|
|
|
if (!ProducerOrErr)
|
|
|
|
return "";
|
|
|
|
return *ProducerOrErr;
|
2015-12-30 11:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2017-01-02 19:17:04 +00:00
|
|
|
LTOModule::createFromFile(LLVMContext &Context, StringRef path,
|
2016-07-23 20:41:05 +00:00
|
|
|
const TargetOptions &options) {
|
2014-11-24 09:08:18 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFile(path);
|
2016-07-23 20:41:05 +00:00
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
|
|
|
Context.emitError(EC.message());
|
2015-12-30 11:46:15 +00:00
|
|
|
return EC;
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
2015-01-18 16:17:27 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(BufferOrErr.get());
|
2016-07-23 20:41:05 +00:00
|
|
|
return makeLTOModule(Buffer->getMemBufferRef(), options, Context,
|
|
|
|
/* ShouldBeLazy*/ false);
|
2011-02-20 12:57:14 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2017-01-02 19:17:04 +00:00
|
|
|
LTOModule::createFromOpenFile(LLVMContext &Context, int fd, StringRef path,
|
2016-07-23 20:41:05 +00:00
|
|
|
size_t size, const TargetOptions &options) {
|
2015-12-30 11:46:15 +00:00
|
|
|
return createFromOpenFileSlice(Context, fd, path, size, 0, options);
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2017-01-02 19:17:04 +00:00
|
|
|
LTOModule::createFromOpenFileSlice(LLVMContext &Context, int fd, StringRef path,
|
|
|
|
size_t map_size, off_t offset,
|
|
|
|
const TargetOptions &options) {
|
2014-11-24 09:08:18 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getOpenFileSlice(fd, path, map_size, offset);
|
2016-07-23 20:41:05 +00:00
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
|
|
|
Context.emitError(EC.message());
|
2015-12-30 11:46:15 +00:00
|
|
|
return EC;
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
2015-01-18 16:17:27 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(BufferOrErr.get());
|
2016-07-23 20:41:05 +00:00
|
|
|
return makeLTOModule(Buffer->getMemBufferRef(), options, Context,
|
|
|
|
/* ShouldBeLazy */ false);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
|
|
|
LTOModule::createFromBuffer(LLVMContext &Context, const void *mem,
|
2016-07-23 20:41:05 +00:00
|
|
|
size_t length, const TargetOptions &options,
|
2015-12-30 11:46:15 +00:00
|
|
|
StringRef path) {
|
2016-07-23 20:41:05 +00:00
|
|
|
StringRef Data((const char *)mem, length);
|
|
|
|
MemoryBufferRef Buffer(Data, path);
|
|
|
|
return makeLTOModule(Buffer, options, Context, /* ShouldBeLazy */ false);
|
2015-01-18 16:17:27 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-07-23 20:41:05 +00:00
|
|
|
LTOModule::createInLocalContext(std::unique_ptr<LLVMContext> Context,
|
|
|
|
const void *mem, size_t length,
|
|
|
|
const TargetOptions &options, StringRef path) {
|
2015-01-18 16:17:27 +00:00
|
|
|
StringRef Data((const char *)mem, length);
|
|
|
|
MemoryBufferRef Buffer(Data, path);
|
2016-07-23 20:41:05 +00:00
|
|
|
// If we own a context, we know this is being used only for symbol extraction,
|
|
|
|
// not linking. Be lazy in that case.
|
|
|
|
ErrorOr<std::unique_ptr<LTOModule>> Ret =
|
|
|
|
makeLTOModule(Buffer, options, *Context, /* ShouldBeLazy */ true);
|
|
|
|
if (Ret)
|
|
|
|
(*Ret)->OwnedContext = std::move(Context);
|
|
|
|
return Ret;
|
2015-01-18 16:17:27 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
static ErrorOr<std::unique_ptr<Module>>
|
|
|
|
parseBitcodeFileImpl(MemoryBufferRef Buffer, LLVMContext &Context,
|
|
|
|
bool ShouldBeLazy) {
|
2015-01-18 16:17:27 +00:00
|
|
|
|
|
|
|
// Find the buffer.
|
|
|
|
ErrorOr<MemoryBufferRef> MBOrErr =
|
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer);
|
2016-07-23 20:41:05 +00:00
|
|
|
if (std::error_code EC = MBOrErr.getError()) {
|
|
|
|
Context.emitError(EC.message());
|
2015-12-30 11:46:15 +00:00
|
|
|
return EC;
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
2015-01-18 16:17:27 +00:00
|
|
|
|
|
|
|
if (!ShouldBeLazy) {
|
|
|
|
// Parse the full file.
|
2017-01-02 19:17:04 +00:00
|
|
|
return expectedToErrorOrAndEmitErrors(Context,
|
|
|
|
parseBitcodeFile(*MBOrErr, Context));
|
2015-01-18 16:17:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse lazily.
|
2017-01-02 19:17:04 +00:00
|
|
|
return expectedToErrorOrAndEmitErrors(
|
|
|
|
Context,
|
|
|
|
getLazyBitcodeModule(*MBOrErr, Context, true /*ShouldLazyLoadMetadata*/));
|
2015-01-18 16:17:27 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-07-23 20:41:05 +00:00
|
|
|
LTOModule::makeLTOModule(MemoryBufferRef Buffer, const TargetOptions &options,
|
|
|
|
LLVMContext &Context, bool ShouldBeLazy) {
|
2015-12-30 11:46:15 +00:00
|
|
|
ErrorOr<std::unique_ptr<Module>> MOrErr =
|
2016-07-23 20:41:05 +00:00
|
|
|
parseBitcodeFileImpl(Buffer, Context, ShouldBeLazy);
|
2015-12-30 11:46:15 +00:00
|
|
|
if (std::error_code EC = MOrErr.getError())
|
|
|
|
return EC;
|
|
|
|
std::unique_ptr<Module> &M = *MOrErr;
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
std::string TripleStr = M->getTargetTriple();
|
2012-12-02 13:10:19 +00:00
|
|
|
if (TripleStr.empty())
|
|
|
|
TripleStr = sys::getDefaultTargetTriple();
|
|
|
|
llvm::Triple Triple(TripleStr);
|
2010-09-17 15:48:55 +00:00
|
|
|
|
|
|
|
// find machine architecture for this module
|
2015-12-30 11:46:15 +00:00
|
|
|
std::string errMsg;
|
2012-12-02 13:10:19 +00:00
|
|
|
const Target *march = TargetRegistry::lookupTarget(TripleStr, errMsg);
|
2010-09-17 15:48:55 +00:00
|
|
|
if (!march)
|
2015-12-30 11:46:15 +00:00
|
|
|
return std::unique_ptr<LTOModule>(nullptr);
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2011-05-02 19:34:44 +00:00
|
|
|
// construct LTOModule, hand over ownership of module and target
|
2010-09-17 15:48:55 +00:00
|
|
|
SubtargetFeatures Features;
|
2012-12-02 13:10:19 +00:00
|
|
|
Features.getDefaultSubtargetFeatures(Triple);
|
2010-09-17 15:48:55 +00:00
|
|
|
std::string FeatureStr = Features.getString();
|
2012-12-02 13:10:19 +00:00
|
|
|
// Set a default CPU for Darwin triples.
|
2011-07-17 15:36:56 +00:00
|
|
|
std::string CPU;
|
2012-12-02 13:10:19 +00:00
|
|
|
if (Triple.isOSDarwin()) {
|
|
|
|
if (Triple.getArch() == llvm::Triple::x86_64)
|
|
|
|
CPU = "core2";
|
|
|
|
else if (Triple.getArch() == llvm::Triple::x86)
|
|
|
|
CPU = "yonah";
|
2015-01-18 16:17:27 +00:00
|
|
|
else if (Triple.getArch() == llvm::Triple::aarch64)
|
2014-11-24 09:08:18 +00:00
|
|
|
CPU = "cyclone";
|
2012-12-02 13:10:19 +00:00
|
|
|
}
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
TargetMachine *target =
|
|
|
|
march->createTargetMachine(TripleStr, CPU, FeatureStr, options, None);
|
2014-11-24 09:08:18 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
std::unique_ptr<LTOModule> Ret(new LTOModule(std::move(M), Buffer, target));
|
2015-12-30 11:46:15 +00:00
|
|
|
Ret->parseSymbols();
|
2014-11-24 09:08:18 +00:00
|
|
|
Ret->parseMetadata();
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
return std::move(Ret);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
/// Create a MemoryBuffer from a memory range with an optional name.
|
2015-01-18 16:17:27 +00:00
|
|
|
std::unique_ptr<MemoryBuffer>
|
|
|
|
LTOModule::makeBuffer(const void *mem, size_t length, StringRef name) {
|
2012-12-02 13:10:19 +00:00
|
|
|
const char *startPtr = (const char*)mem;
|
2014-11-24 09:08:18 +00:00
|
|
|
return MemoryBuffer::getMemBuffer(StringRef(startPtr, length), name, false);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// objcClassNameFromExpression - Get string that the data pointer points to.
|
2013-04-08 18:41:23 +00:00
|
|
|
bool
|
|
|
|
LTOModule::objcClassNameFromExpression(const Constant *c, std::string &name) {
|
|
|
|
if (const ConstantExpr *ce = dyn_cast<ConstantExpr>(c)) {
|
2010-09-17 15:48:55 +00:00
|
|
|
Constant *op = ce->getOperand(0);
|
|
|
|
if (GlobalVariable *gvn = dyn_cast<GlobalVariable>(op)) {
|
|
|
|
Constant *cn = gvn->getInitializer();
|
2012-04-14 13:54:10 +00:00
|
|
|
if (ConstantDataArray *ca = dyn_cast<ConstantDataArray>(cn)) {
|
2010-09-17 15:48:55 +00:00
|
|
|
if (ca->isCString()) {
|
2015-05-27 18:44:32 +00:00
|
|
|
name = (".objc_class_name_" + ca->getAsCString()).str();
|
2010-09-17 15:48:55 +00:00
|
|
|
return true;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
|
|
|
return false;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// addObjCClass - Parse i386/ppc ObjC class data structure.
|
2013-04-08 18:41:23 +00:00
|
|
|
void LTOModule::addObjCClass(const GlobalVariable *clgv) {
|
|
|
|
const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
|
2012-04-14 13:54:10 +00:00
|
|
|
if (!c) return;
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
// second slot in __OBJC,__class is pointer to superclass name
|
|
|
|
std::string superclassName;
|
|
|
|
if (objcClassNameFromExpression(c->getOperand(1), superclassName)) {
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(superclassName, NameAndAttributes()));
|
|
|
|
if (IterBool.second) {
|
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2011-02-26 22:03:50 +00:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2012-04-14 13:54:10 +00:00
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
2012-04-14 13:54:10 +00:00
|
|
|
|
|
|
|
// third slot in __OBJC,__class is pointer to class name
|
|
|
|
std::string className;
|
|
|
|
if (objcClassNameFromExpression(c->getOperand(2), className)) {
|
2015-01-18 16:17:27 +00:00
|
|
|
auto Iter = _defines.insert(className).first;
|
2012-04-14 13:54:10 +00:00
|
|
|
|
|
|
|
NameAndAttributes info;
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = Iter->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes = LTO_SYMBOL_PERMISSIONS_DATA |
|
|
|
|
LTO_SYMBOL_DEFINITION_REGULAR | LTO_SYMBOL_SCOPE_DEFAULT;
|
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
|
|
|
_symbols.push_back(info);
|
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// addObjCCategory - Parse i386/ppc ObjC category data structure.
|
2013-04-08 18:41:23 +00:00
|
|
|
void LTOModule::addObjCCategory(const GlobalVariable *clgv) {
|
|
|
|
const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
|
2012-04-14 13:54:10 +00:00
|
|
|
if (!c) return;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
// second slot in __OBJC,__category is pointer to target class name
|
2010-09-17 15:48:55 +00:00
|
|
|
std::string targetclassName;
|
2012-04-14 13:54:10 +00:00
|
|
|
if (!objcClassNameFromExpression(c->getOperand(1), targetclassName))
|
|
|
|
return;
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(targetclassName, NameAndAttributes()));
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
if (!IterBool.second)
|
2012-04-14 13:54:10 +00:00
|
|
|
return;
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// addObjCClassRef - Parse i386/ppc ObjC class list data structure.
|
2013-04-08 18:41:23 +00:00
|
|
|
void LTOModule::addObjCClassRef(const GlobalVariable *clgv) {
|
2012-04-14 13:54:10 +00:00
|
|
|
std::string targetclassName;
|
|
|
|
if (!objcClassNameFromExpression(clgv->getInitializer(), targetclassName))
|
|
|
|
return;
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(targetclassName, NameAndAttributes()));
|
|
|
|
|
|
|
|
if (!IterBool.second)
|
2012-04-14 13:54:10 +00:00
|
|
|
return;
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addDefinedDataSymbol(ModuleSymbolTable::Symbol Sym) {
|
2014-11-24 09:08:18 +00:00
|
|
|
SmallString<64> Buffer;
|
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2017-01-02 19:17:04 +00:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
|
|
|
Buffer.c_str();
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
const GlobalValue *V = Sym.get<GlobalValue *>();
|
|
|
|
addDefinedDataSymbol(Buffer, V);
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addDefinedDataSymbol(StringRef Name, const GlobalValue *v) {
|
2010-09-17 15:48:55 +00:00
|
|
|
// Add to list of defined symbols.
|
2014-11-24 09:08:18 +00:00
|
|
|
addDefinedSymbol(Name, v, false);
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2012-08-15 19:34:23 +00:00
|
|
|
if (!v->hasSection() /* || !isTargetDarwin */)
|
|
|
|
return;
|
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
// Special case i386/ppc ObjC data structures in magic sections:
|
|
|
|
// The issue is that the old ObjC object format did some strange
|
|
|
|
// contortions to avoid real linker symbols. For instance, the
|
|
|
|
// ObjC class data structure is allocated statically in the executable
|
|
|
|
// that defines that class. That data structures contains a pointer to
|
|
|
|
// its superclass. But instead of just initializing that part of the
|
|
|
|
// struct to the address of its superclass, and letting the static and
|
|
|
|
// dynamic linkers do the rest, the runtime works by having that field
|
|
|
|
// instead point to a C-string that is the name of the superclass.
|
|
|
|
// At runtime the objc initialization updates that pointer and sets
|
|
|
|
// it to point to the actual super class. As far as the linker
|
|
|
|
// knows it is just a pointer to a string. But then someone wanted the
|
|
|
|
// linker to issue errors at build time if the superclass was not found.
|
|
|
|
// So they figured out a way in mach-o object format to use an absolute
|
|
|
|
// symbols (.objc_class_name_Foo = 0) and a floating reference
|
|
|
|
// (.reference .objc_class_name_Bar) to cause the linker into erroring when
|
|
|
|
// a class was missing.
|
|
|
|
// The following synthesizes the implicit .objc_* symbols for the linker
|
|
|
|
// from the ObjC data structures generated by the front end.
|
2012-08-15 19:34:23 +00:00
|
|
|
|
|
|
|
// special case if this data blob is an ObjC class definition
|
2014-11-24 09:08:18 +00:00
|
|
|
std::string Section = v->getSection();
|
|
|
|
if (Section.compare(0, 15, "__OBJC,__class,") == 0) {
|
2013-04-08 18:41:23 +00:00
|
|
|
if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
|
2012-08-15 19:34:23 +00:00
|
|
|
addObjCClass(gv);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2012-08-15 19:34:23 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2012-08-15 19:34:23 +00:00
|
|
|
// special case if this data blob is an ObjC category definition
|
2014-11-24 09:08:18 +00:00
|
|
|
else if (Section.compare(0, 18, "__OBJC,__category,") == 0) {
|
2013-04-08 18:41:23 +00:00
|
|
|
if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
|
2012-08-15 19:34:23 +00:00
|
|
|
addObjCCategory(gv);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2012-08-15 19:34:23 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2012-08-15 19:34:23 +00:00
|
|
|
// special case if this data blob is the list of referenced classes
|
2014-11-24 09:08:18 +00:00
|
|
|
else if (Section.compare(0, 18, "__OBJC,__cls_refs,") == 0) {
|
2013-04-08 18:41:23 +00:00
|
|
|
if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
|
2012-08-15 19:34:23 +00:00
|
|
|
addObjCClassRef(gv);
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addDefinedFunctionSymbol(ModuleSymbolTable::Symbol Sym) {
|
2014-11-24 09:08:18 +00:00
|
|
|
SmallString<64> Buffer;
|
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2017-01-02 19:17:04 +00:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
|
|
|
Buffer.c_str();
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
const Function *F = cast<Function>(Sym.get<GlobalValue *>());
|
|
|
|
addDefinedFunctionSymbol(Buffer, F);
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addDefinedFunctionSymbol(StringRef Name, const Function *F) {
|
2012-04-14 13:54:10 +00:00
|
|
|
// add to list of defined symbols
|
2014-11-24 09:08:18 +00:00
|
|
|
addDefinedSymbol(Name, F, true);
|
2012-04-14 13:54:10 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addDefinedSymbol(StringRef Name, const GlobalValue *def,
|
2014-11-24 09:08:18 +00:00
|
|
|
bool isFunction) {
|
2010-09-17 15:48:55 +00:00
|
|
|
// set alignment part log2() can have rounding errors
|
|
|
|
uint32_t align = def->getAlignment();
|
2014-11-24 09:08:18 +00:00
|
|
|
uint32_t attr = align ? countTrailingZeros(align) : 0;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
// set permissions part
|
2012-04-14 13:54:10 +00:00
|
|
|
if (isFunction) {
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_CODE;
|
2012-04-14 13:54:10 +00:00
|
|
|
} else {
|
2013-04-08 18:41:23 +00:00
|
|
|
const GlobalVariable *gv = dyn_cast<GlobalVariable>(def);
|
2010-09-17 15:48:55 +00:00
|
|
|
if (gv && gv->isConstant())
|
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_RODATA;
|
2009-06-02 17:52:33 +00:00
|
|
|
else
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set definition part
|
2014-11-24 09:08:18 +00:00
|
|
|
if (def->hasWeakLinkage() || def->hasLinkOnceLinkage())
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_WEAK;
|
2011-02-20 12:57:14 +00:00
|
|
|
else if (def->hasCommonLinkage())
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_TENTATIVE;
|
2011-02-20 12:57:14 +00:00
|
|
|
else
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_REGULAR;
|
|
|
|
|
|
|
|
// set scope part
|
2014-11-24 09:08:18 +00:00
|
|
|
if (def->hasLocalLinkage())
|
|
|
|
// Ignore visibility if linkage is local.
|
|
|
|
attr |= LTO_SYMBOL_SCOPE_INTERNAL;
|
|
|
|
else if (def->hasHiddenVisibility())
|
2010-09-17 15:48:55 +00:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_HIDDEN;
|
|
|
|
else if (def->hasProtectedVisibility())
|
|
|
|
attr |= LTO_SYMBOL_SCOPE_PROTECTED;
|
2015-01-18 16:17:27 +00:00
|
|
|
else if (canBeOmittedFromSymbolTable(def))
|
2013-12-22 00:04:03 +00:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
|
2010-09-17 15:48:55 +00:00
|
|
|
else
|
2014-11-24 09:08:18 +00:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT;
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2015-06-21 13:59:01 +00:00
|
|
|
if (def->hasComdat())
|
|
|
|
attr |= LTO_SYMBOL_COMDAT;
|
|
|
|
|
2015-08-07 23:01:33 +00:00
|
|
|
if (isa<GlobalAlias>(def))
|
|
|
|
attr |= LTO_SYMBOL_ALIAS;
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
auto Iter = _defines.insert(Name).first;
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
// fill information structure
|
|
|
|
NameAndAttributes info;
|
2015-01-18 16:17:27 +00:00
|
|
|
StringRef NameRef = Iter->first();
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = NameRef;
|
|
|
|
assert(NameRef.data()[NameRef.size()] == '\0');
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes = attr;
|
|
|
|
info.isFunction = isFunction;
|
|
|
|
info.symbol = def;
|
|
|
|
|
|
|
|
// add to table of symbols
|
2010-09-17 15:48:55 +00:00
|
|
|
_symbols.push_back(info);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the
|
|
|
|
/// defined list.
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addAsmGlobalSymbol(StringRef name,
|
2011-05-02 19:34:44 +00:00
|
|
|
lto_symbol_attributes scope) {
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool = _defines.insert(name);
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
// only add new define if not already defined
|
2015-01-18 16:17:27 +00:00
|
|
|
if (!IterBool.second)
|
2010-09-17 15:48:55 +00:00
|
|
|
return;
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
NameAndAttributes &info = _undefines[IterBool.first->first()];
|
2012-04-14 13:54:10 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
if (info.symbol == nullptr) {
|
2012-04-14 13:54:10 +00:00
|
|
|
// FIXME: This is trying to take care of module ASM like this:
|
|
|
|
//
|
|
|
|
// module asm ".zerofill __FOO, __foo, _bar_baz_qux, 0"
|
|
|
|
//
|
|
|
|
// but is gross and its mother dresses it funny. Have the ASM parser give us
|
|
|
|
// more details for this type of situation so that we're not guessing so
|
|
|
|
// much.
|
|
|
|
|
|
|
|
// fill information structure
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes =
|
|
|
|
LTO_SYMBOL_PERMISSIONS_DATA | LTO_SYMBOL_DEFINITION_REGULAR | scope;
|
|
|
|
info.isFunction = false;
|
2014-11-24 09:08:18 +00:00
|
|
|
info.symbol = nullptr;
|
2012-04-14 13:54:10 +00:00
|
|
|
|
|
|
|
// add to table of symbols
|
|
|
|
_symbols.push_back(info);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.isFunction)
|
2014-11-24 09:08:18 +00:00
|
|
|
addDefinedFunctionSymbol(info.name, cast<Function>(info.symbol));
|
2012-04-14 13:54:10 +00:00
|
|
|
else
|
2014-11-24 09:08:18 +00:00
|
|
|
addDefinedDataSymbol(info.name, info.symbol);
|
2012-04-14 13:54:10 +00:00
|
|
|
|
|
|
|
_symbols.back().attributes &= ~LTO_SYMBOL_SCOPE_MASK;
|
|
|
|
_symbols.back().attributes |= scope;
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
/// addAsmGlobalSymbolUndef - Add a global symbol from module-level ASM to the
|
|
|
|
/// undefined list.
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addAsmGlobalSymbolUndef(StringRef name) {
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes()));
|
2011-05-02 19:34:44 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
_asm_undefines.push_back(IterBool.first->first());
|
2011-05-02 19:34:44 +00:00
|
|
|
|
|
|
|
// we already have the symbol
|
2015-01-18 16:17:27 +00:00
|
|
|
if (!IterBool.second)
|
2011-05-02 19:34:44 +00:00
|
|
|
return;
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
uint32_t attr = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2011-05-02 19:34:44 +00:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT;
|
2015-01-18 16:17:27 +00:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
info.attributes = attr;
|
|
|
|
info.isFunction = false;
|
2014-11-24 09:08:18 +00:00
|
|
|
info.symbol = nullptr;
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
/// Add a symbol which isn't defined just yet to a list to be resolved later.
|
2017-01-02 19:17:04 +00:00
|
|
|
void LTOModule::addPotentialUndefinedSymbol(ModuleSymbolTable::Symbol Sym,
|
2014-11-24 09:08:18 +00:00
|
|
|
bool isFunc) {
|
2011-02-20 12:57:14 +00:00
|
|
|
SmallString<64> name;
|
2014-11-24 09:08:18 +00:00
|
|
|
{
|
|
|
|
raw_svector_ostream OS(name);
|
2017-01-02 19:17:04 +00:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
|
|
|
name.c_str();
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes()));
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
// we already have the symbol
|
2015-01-18 16:17:27 +00:00
|
|
|
if (!IterBool.second)
|
2010-09-17 15:48:55 +00:00
|
|
|
return;
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-14 13:54:10 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
const GlobalValue *decl = Sym.dyn_cast<GlobalValue *>();
|
2014-11-24 09:08:18 +00:00
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
if (decl->hasExternalWeakLinkage())
|
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_WEAKUNDEF;
|
|
|
|
else
|
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2011-02-26 22:03:50 +00:00
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
info.isFunction = isFunc;
|
|
|
|
info.symbol = decl;
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
void LTOModule::parseSymbols() {
|
2017-01-02 19:17:04 +00:00
|
|
|
for (auto Sym : SymTab.symbols()) {
|
|
|
|
auto *GV = Sym.dyn_cast<GlobalValue *>();
|
|
|
|
uint32_t Flags = SymTab.getSymbolFlags(Sym);
|
2014-11-24 09:08:18 +00:00
|
|
|
if (Flags & object::BasicSymbolRef::SF_FormatSpecific)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bool IsUndefined = Flags & object::BasicSymbolRef::SF_Undefined;
|
|
|
|
|
|
|
|
if (!GV) {
|
|
|
|
SmallString<64> Buffer;
|
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2017-01-02 19:17:04 +00:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
|
|
|
Buffer.c_str();
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
2017-01-02 19:17:04 +00:00
|
|
|
StringRef Name(Buffer);
|
2014-11-24 09:08:18 +00:00
|
|
|
|
|
|
|
if (IsUndefined)
|
|
|
|
addAsmGlobalSymbolUndef(Name);
|
|
|
|
else if (Flags & object::BasicSymbolRef::SF_Global)
|
|
|
|
addAsmGlobalSymbol(Name, LTO_SYMBOL_SCOPE_DEFAULT);
|
|
|
|
else
|
|
|
|
addAsmGlobalSymbol(Name, LTO_SYMBOL_SCOPE_INTERNAL);
|
|
|
|
continue;
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
auto *F = dyn_cast<Function>(GV);
|
|
|
|
if (IsUndefined) {
|
|
|
|
addPotentialUndefinedSymbol(Sym, F != nullptr);
|
|
|
|
continue;
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
2010-09-17 15:48:55 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
if (F) {
|
|
|
|
addDefinedFunctionSymbol(Sym);
|
|
|
|
continue;
|
2011-05-02 19:34:44 +00:00
|
|
|
}
|
2012-04-14 13:54:10 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
if (isa<GlobalVariable>(GV)) {
|
|
|
|
addDefinedDataSymbol(Sym);
|
|
|
|
continue;
|
2013-04-08 18:41:23 +00:00
|
|
|
}
|
2011-05-02 19:34:44 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
assert(isa<GlobalAlias>(GV));
|
|
|
|
addDefinedDataSymbol(Sym);
|
2011-02-20 12:57:14 +00:00
|
|
|
}
|
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
// make symbols for all undefines
|
2012-04-14 13:54:10 +00:00
|
|
|
for (StringMap<NameAndAttributes>::iterator u =_undefines.begin(),
|
|
|
|
e = _undefines.end(); u != e; ++u) {
|
|
|
|
// If this symbol also has a definition, then don't make an undefine because
|
|
|
|
// it is a tentative definition.
|
|
|
|
if (_defines.count(u->getKey())) continue;
|
|
|
|
NameAndAttributes info = u->getValue();
|
|
|
|
_symbols.push_back(info);
|
2010-09-17 15:48:55 +00:00
|
|
|
}
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2014-11-24 09:08:18 +00:00
|
|
|
|
|
|
|
/// parseMetadata - Parse metadata from the module
|
|
|
|
void LTOModule::parseMetadata() {
|
2015-07-05 14:21:36 +00:00
|
|
|
raw_string_ostream OS(LinkerOpts);
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
// Linker Options
|
2015-01-18 16:17:27 +00:00
|
|
|
if (Metadata *Val = getModule().getModuleFlag("Linker Options")) {
|
2014-11-24 09:08:18 +00:00
|
|
|
MDNode *LinkerOptions = cast<MDNode>(Val);
|
|
|
|
for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
|
|
|
|
MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
|
|
|
|
for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
|
|
|
|
MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
|
2015-07-05 14:21:36 +00:00
|
|
|
OS << " " << MDOption->getString();
|
2014-11-24 09:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
// Globals - we only need to do this for COFF.
|
|
|
|
const Triple TT(_target->getTargetTriple());
|
|
|
|
if (!TT.isOSBinFormatCOFF())
|
|
|
|
return;
|
|
|
|
Mangler M;
|
2015-07-05 14:21:36 +00:00
|
|
|
for (const NameAndAttributes &Sym : _symbols) {
|
|
|
|
if (!Sym.symbol)
|
|
|
|
continue;
|
2017-04-16 16:01:22 +00:00
|
|
|
emitLinkerFlagsForGlobalCOFF(OS, Sym.symbol, TT, M);
|
2015-07-05 14:21:36 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
// Add other interesting metadata here.
|
|
|
|
}
|