2010-03-12 19:44:54 +01:00
|
|
|
//===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
|
2008-02-26 21:26:43 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-08-11 01:46:39 +02:00
|
|
|
//
|
2008-02-26 21:26:43 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-08-11 01:46:39 +02:00
|
|
|
// This file implements the Link Time Optimization library. This library is
|
2008-02-26 21:26:43 +01:00
|
|
|
// intended to be used by linker to optimize code at link time.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-07-14 23:21:16 +02:00
|
|
|
#include "llvm/LTO/legacy/LTOModule.h"
|
2012-12-04 11:44:52 +01:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2017-03-31 06:46:31 +02:00
|
|
|
#include "llvm/Analysis/ObjectUtils.h"
|
2016-11-11 06:34:58 +01:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
2017-11-17 02:07:10 +01:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFile.h"
|
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2017-03-31 06:46:50 +02:00
|
|
|
#include "llvm/IR/Mangler.h"
|
2014-01-21 19:31:27 +01:00
|
|
|
#include "llvm/IR/Metadata.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-03-02 05:14:42 +01:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2012-12-04 11:44:52 +01:00
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
2014-01-22 23:11:14 +01:00
|
|
|
#include "llvm/MC/MCSection.h"
|
2011-07-09 07:47:46 +02:00
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2011-03-02 05:14:42 +01:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2012-03-31 01:26:06 +02:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2014-09-18 23:28:49 +02:00
|
|
|
#include "llvm/Object/IRObjectFile.h"
|
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2013-06-11 20:05:26 +02:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2014-01-07 12:48:04 +01:00
|
|
|
#include "llvm/Support/Host.h"
|
2012-03-31 01:26:06 +02: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"
|
2013-10-31 21:51:58 +01:00
|
|
|
#include "llvm/Transforms/Utils/GlobalStatus.h"
|
2014-06-12 19:38:55 +02:00
|
|
|
#include <system_error>
|
2008-02-26 21:26:43 +01:00
|
|
|
using namespace llvm;
|
2014-09-18 23:28:49 +02:00
|
|
|
using namespace llvm::object;
|
2008-02-26 21:26:43 +01:00
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
LTOModule::LTOModule(std::unique_ptr<Module> M, MemoryBufferRef MBRef,
|
2014-07-04 20:40:36 +02:00
|
|
|
llvm::TargetMachine *TM)
|
2016-12-13 21:01:58 +01:00
|
|
|
: Mod(std::move(M)), MBRef(MBRef), _target(TM) {
|
|
|
|
SymTab.addModule(Mod.get());
|
|
|
|
}
|
2012-03-28 22:46:54 +02:00
|
|
|
|
2014-11-12 00:08:05 +01:00
|
|
|
LTOModule::~LTOModule() {}
|
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// isBitcodeFile - Returns 'true' if the file (or memory contents) is LLVM
|
|
|
|
/// bitcode.
|
2014-09-18 23:28:49 +02:00
|
|
|
bool LTOModule::isBitcodeFile(const void *Mem, size_t Length) {
|
2017-10-11 20:07:18 +02:00
|
|
|
Expected<MemoryBufferRef> BCData = IRObjectFile::findBitcodeInMemBuffer(
|
2014-09-18 23:28:49 +02:00
|
|
|
MemoryBufferRef(StringRef((const char *)Mem, Length), "<mem>"));
|
2018-01-23 20:03:13 +01:00
|
|
|
return !errorToBool(BCData.takeError());
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
bool LTOModule::isBitcodeFile(StringRef Path) {
|
2014-09-18 23:28:49 +02:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFile(Path);
|
|
|
|
if (!BufferOrErr)
|
2013-06-12 17:13:57 +02:00
|
|
|
return false;
|
2014-09-18 23:28:49 +02:00
|
|
|
|
2017-10-11 20:07:18 +02:00
|
|
|
Expected<MemoryBufferRef> BCData = IRObjectFile::findBitcodeInMemBuffer(
|
2014-09-18 23:28:49 +02:00
|
|
|
BufferOrErr.get()->getMemBufferRef());
|
2018-01-23 20:03:13 +01:00
|
|
|
return !errorToBool(BCData.takeError());
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 02:37:22 +01:00
|
|
|
bool LTOModule::isThinLTO() {
|
2017-06-15 19:26:13 +02:00
|
|
|
Expected<BitcodeLTOInfo> Result = getBitcodeLTOInfo(MBRef);
|
2016-11-11 20:50:24 +01:00
|
|
|
if (!Result) {
|
|
|
|
logAllUnhandledErrors(Result.takeError(), errs(), "");
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-15 19:26:13 +02:00
|
|
|
return Result->IsThinLTO;
|
2016-03-09 02:37:22 +01:00
|
|
|
}
|
|
|
|
|
2014-09-18 23:28:49 +02:00
|
|
|
bool LTOModule::isBitcodeForTarget(MemoryBuffer *Buffer,
|
|
|
|
StringRef TriplePrefix) {
|
2017-10-11 20:07:18 +02:00
|
|
|
Expected<MemoryBufferRef> BCOrErr =
|
2014-09-18 23:28:49 +02:00
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer->getMemBufferRef());
|
2018-01-23 20:03:13 +01:00
|
|
|
if (errorToBool(BCOrErr.takeError()))
|
2014-09-18 23:28:49 +02:00
|
|
|
return false;
|
2014-11-12 00:08:05 +01:00
|
|
|
LLVMContext Context;
|
2016-11-11 20:50:24 +01:00
|
|
|
ErrorOr<std::string> TripleOrErr =
|
|
|
|
expectedToErrorOrAndEmitErrors(Context, getBitcodeTargetTriple(*BCOrErr));
|
|
|
|
if (!TripleOrErr)
|
|
|
|
return false;
|
|
|
|
return StringRef(*TripleOrErr).startswith(TriplePrefix);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2015-11-09 03:46:41 +01:00
|
|
|
std::string LTOModule::getProducerString(MemoryBuffer *Buffer) {
|
2017-10-11 20:07:18 +02:00
|
|
|
Expected<MemoryBufferRef> BCOrErr =
|
2015-11-09 03:46:41 +01:00
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer->getMemBufferRef());
|
2018-01-23 20:03:13 +01:00
|
|
|
if (errorToBool(BCOrErr.takeError()))
|
2015-11-09 03:46:41 +01:00
|
|
|
return "";
|
|
|
|
LLVMContext Context;
|
2016-11-11 20:50:24 +01:00
|
|
|
ErrorOr<std::string> ProducerOrErr = expectedToErrorOrAndEmitErrors(
|
|
|
|
Context, getBitcodeProducerString(*BCOrErr));
|
|
|
|
if (!ProducerOrErr)
|
|
|
|
return "";
|
|
|
|
return *ProducerOrErr;
|
2015-11-09 03:46:41 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-10-07 21:05:14 +02:00
|
|
|
LTOModule::createFromFile(LLVMContext &Context, StringRef path,
|
2016-06-08 21:09:22 +02:00
|
|
|
const TargetOptions &options) {
|
2014-07-06 19:43:13 +02:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFile(path);
|
2016-01-20 10:03:42 +01:00
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
|
|
|
Context.emitError(EC.message());
|
2015-12-04 17:14:31 +01:00
|
|
|
return EC;
|
2016-01-20 10:03:42 +01:00
|
|
|
}
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(BufferOrErr.get());
|
2016-03-01 14:13:49 +01:00
|
|
|
return makeLTOModule(Buffer->getMemBufferRef(), options, Context,
|
|
|
|
/* ShouldBeLazy*/ false);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-10-07 21:05:14 +02:00
|
|
|
LTOModule::createFromOpenFile(LLVMContext &Context, int fd, StringRef path,
|
2016-06-08 21:09:22 +02:00
|
|
|
size_t size, const TargetOptions &options) {
|
2015-12-04 17:14:31 +01:00
|
|
|
return createFromOpenFileSlice(Context, fd, path, size, 0, options);
|
2011-03-17 01:36:11 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-10-07 21:05:14 +02:00
|
|
|
LTOModule::createFromOpenFileSlice(LLVMContext &Context, int fd, StringRef path,
|
|
|
|
size_t map_size, off_t offset,
|
|
|
|
const TargetOptions &options) {
|
2014-07-06 19:43:13 +02:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getOpenFileSlice(fd, path, map_size, offset);
|
2016-01-20 10:03:42 +01:00
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
|
|
|
Context.emitError(EC.message());
|
2015-12-04 17:14:31 +01:00
|
|
|
return EC;
|
2016-01-20 10:03:42 +01:00
|
|
|
}
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(BufferOrErr.get());
|
2016-03-01 14:13:49 +01:00
|
|
|
return makeLTOModule(Buffer->getMemBufferRef(), options, Context,
|
|
|
|
/* ShouldBeLazy */ false);
|
2011-02-08 23:40:47 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
|
|
|
LTOModule::createFromBuffer(LLVMContext &Context, const void *mem,
|
2016-06-08 21:09:22 +02:00
|
|
|
size_t length, const TargetOptions &options,
|
2015-12-04 17:14:31 +01:00
|
|
|
StringRef path) {
|
2016-03-01 14:13:49 +01:00
|
|
|
StringRef Data((const char *)mem, length);
|
|
|
|
MemoryBufferRef Buffer(Data, path);
|
|
|
|
return makeLTOModule(Buffer, options, Context, /* ShouldBeLazy */ false);
|
2014-11-12 00:08:05 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-03-01 14:13:49 +01:00
|
|
|
LTOModule::createInLocalContext(std::unique_ptr<LLVMContext> Context,
|
|
|
|
const void *mem, size_t length,
|
2016-06-08 21:09:22 +02:00
|
|
|
const TargetOptions &options, StringRef path) {
|
2014-08-20 14:54:13 +02:00
|
|
|
StringRef Data((const char *)mem, length);
|
2014-08-19 20:44:46 +02:00
|
|
|
MemoryBufferRef Buffer(Data, path);
|
2016-03-01 14:13:49 +01: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);
|
2016-03-01 21:41:17 +01:00
|
|
|
return Ret;
|
2012-08-06 23:34:54 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
static ErrorOr<std::unique_ptr<Module>>
|
|
|
|
parseBitcodeFileImpl(MemoryBufferRef Buffer, LLVMContext &Context,
|
|
|
|
bool ShouldBeLazy) {
|
2014-12-17 23:05:42 +01:00
|
|
|
// Find the buffer.
|
2017-10-11 20:07:18 +02:00
|
|
|
Expected<MemoryBufferRef> MBOrErr =
|
2014-12-17 23:05:42 +01:00
|
|
|
IRObjectFile::findBitcodeInMemBuffer(Buffer);
|
2017-10-11 20:07:18 +02:00
|
|
|
if (Error E = MBOrErr.takeError()) {
|
|
|
|
std::error_code EC = errorToErrorCode(std::move(E));
|
2016-01-20 10:03:42 +01:00
|
|
|
Context.emitError(EC.message());
|
2015-12-04 17:14:31 +01:00
|
|
|
return EC;
|
2016-01-20 10:03:42 +01:00
|
|
|
}
|
2014-12-17 23:05:42 +01:00
|
|
|
|
2015-01-10 01:07:30 +01:00
|
|
|
if (!ShouldBeLazy) {
|
2014-12-17 23:05:42 +01:00
|
|
|
// Parse the full file.
|
2016-11-13 08:00:17 +01:00
|
|
|
return expectedToErrorOrAndEmitErrors(Context,
|
|
|
|
parseBitcodeFile(*MBOrErr, Context));
|
2015-01-10 01:07:30 +01:00
|
|
|
}
|
2014-12-17 23:05:42 +01:00
|
|
|
|
|
|
|
// Parse lazily.
|
2016-11-13 08:00:17 +01:00
|
|
|
return expectedToErrorOrAndEmitErrors(
|
|
|
|
Context,
|
|
|
|
getLazyBitcodeModule(*MBOrErr, Context, true /*ShouldLazyLoadMetadata*/));
|
2014-12-17 23:05:42 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<LTOModule>>
|
2016-06-08 21:09:22 +02:00
|
|
|
LTOModule::makeLTOModule(MemoryBufferRef Buffer, const TargetOptions &options,
|
2016-03-01 14:13:49 +01:00
|
|
|
LLVMContext &Context, bool ShouldBeLazy) {
|
2015-12-04 17:14:31 +01:00
|
|
|
ErrorOr<std::unique_ptr<Module>> MOrErr =
|
2016-03-01 14:13:49 +01:00
|
|
|
parseBitcodeFileImpl(Buffer, Context, ShouldBeLazy);
|
2015-12-04 17:14:31 +01:00
|
|
|
if (std::error_code EC = MOrErr.getError())
|
|
|
|
return EC;
|
|
|
|
std::unique_ptr<Module> &M = *MOrErr;
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
std::string TripleStr = M->getTargetTriple();
|
2012-10-12 19:39:25 +02:00
|
|
|
if (TripleStr.empty())
|
|
|
|
TripleStr = sys::getDefaultTargetTriple();
|
|
|
|
llvm::Triple Triple(TripleStr);
|
2010-08-11 01:46:39 +02:00
|
|
|
|
|
|
|
// find machine architecture for this module
|
2015-12-04 17:14:31 +01:00
|
|
|
std::string errMsg;
|
2012-10-12 19:39:25 +02:00
|
|
|
const Target *march = TargetRegistry::lookupTarget(TripleStr, errMsg);
|
2010-08-11 01:46:39 +02:00
|
|
|
if (!march)
|
2018-03-13 05:37:01 +01:00
|
|
|
return make_error_code(object::object_error::arch_not_found);
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2011-04-21 03:54:08 +02:00
|
|
|
// construct LTOModule, hand over ownership of module and target
|
2010-08-11 01:46:39 +02:00
|
|
|
SubtargetFeatures Features;
|
2012-10-12 19:39:25 +02:00
|
|
|
Features.getDefaultSubtargetFeatures(Triple);
|
2010-08-11 01:46:39 +02:00
|
|
|
std::string FeatureStr = Features.getString();
|
2012-10-12 19:39:25 +02:00
|
|
|
// Set a default CPU for Darwin triples.
|
2011-06-30 03:53:36 +02:00
|
|
|
std::string CPU;
|
2012-10-12 19:39:25 +02:00
|
|
|
if (Triple.isOSDarwin()) {
|
|
|
|
if (Triple.getArch() == llvm::Triple::x86_64)
|
|
|
|
CPU = "core2";
|
|
|
|
else if (Triple.getArch() == llvm::Triple::x86)
|
|
|
|
CPU = "yonah";
|
2014-07-23 14:32:47 +02:00
|
|
|
else if (Triple.getArch() == llvm::Triple::aarch64)
|
2014-03-29 11:18:08 +01:00
|
|
|
CPU = "cyclone";
|
2012-10-12 19:39:25 +02:00
|
|
|
}
|
2013-09-30 18:39:19 +02:00
|
|
|
|
2016-05-19 00:04:49 +02:00
|
|
|
TargetMachine *target =
|
|
|
|
march->createTargetMachine(TripleStr, CPU, FeatureStr, options, None);
|
2013-10-31 21:51:58 +01:00
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
std::unique_ptr<LTOModule> Ret(new LTOModule(std::move(M), Buffer, target));
|
2015-12-04 00:56:42 +01:00
|
|
|
Ret->parseSymbols();
|
2014-01-21 19:31:27 +01:00
|
|
|
Ret->parseMetadata();
|
|
|
|
|
2015-12-04 17:14:31 +01:00
|
|
|
return std::move(Ret);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2014-02-11 00:26:14 +01:00
|
|
|
/// Create a MemoryBuffer from a memory range with an optional name.
|
2014-08-18 00:37:39 +02:00
|
|
|
std::unique_ptr<MemoryBuffer>
|
|
|
|
LTOModule::makeBuffer(const void *mem, size_t length, StringRef name) {
|
2012-09-06 00:26:57 +02:00
|
|
|
const char *startPtr = (const char*)mem;
|
2014-08-27 22:03:13 +02:00
|
|
|
return MemoryBuffer::getMemBuffer(StringRef(startPtr, length), name, false);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// objcClassNameFromExpression - Get string that the data pointer points to.
|
2012-12-11 04:10:43 +01:00
|
|
|
bool
|
|
|
|
LTOModule::objcClassNameFromExpression(const Constant *c, std::string &name) {
|
|
|
|
if (const ConstantExpr *ce = dyn_cast<ConstantExpr>(c)) {
|
2010-08-11 01:46:39 +02:00
|
|
|
Constant *op = ce->getOperand(0);
|
|
|
|
if (GlobalVariable *gvn = dyn_cast<GlobalVariable>(op)) {
|
|
|
|
Constant *cn = gvn->getInitializer();
|
2012-02-05 03:29:43 +01:00
|
|
|
if (ConstantDataArray *ca = dyn_cast<ConstantDataArray>(cn)) {
|
2010-08-11 01:46:39 +02:00
|
|
|
if (ca->isCString()) {
|
2015-03-30 17:42:36 +02:00
|
|
|
name = (".objc_class_name_" + ca->getAsCString()).str();
|
2010-08-11 01:46:39 +02:00
|
|
|
return true;
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
|
|
|
return false;
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// addObjCClass - Parse i386/ppc ObjC class data structure.
|
2012-12-11 04:10:43 +01:00
|
|
|
void LTOModule::addObjCClass(const GlobalVariable *clgv) {
|
|
|
|
const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
|
2011-11-04 19:48:00 +01:00
|
|
|
if (!c) return;
|
|
|
|
|
|
|
|
// second slot in __OBJC,__class is pointer to superclass name
|
|
|
|
std::string superclassName;
|
|
|
|
if (objcClassNameFromExpression(c->getOperand(1), superclassName)) {
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(superclassName, NameAndAttributes()));
|
|
|
|
if (IterBool.second) {
|
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2011-11-04 19:48:00 +01:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2012-03-29 10:27:32 +02:00
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
2011-11-04 19:48:00 +01:00
|
|
|
|
|
|
|
// third slot in __OBJC,__class is pointer to class name
|
|
|
|
std::string className;
|
|
|
|
if (objcClassNameFromExpression(c->getOperand(2), className)) {
|
2014-11-19 06:49:42 +01:00
|
|
|
auto Iter = _defines.insert(className).first;
|
2012-03-29 10:27:32 +02:00
|
|
|
|
2011-11-04 19:48:00 +01:00
|
|
|
NameAndAttributes info;
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = Iter->first();
|
2012-03-29 10:27:32 +02:00
|
|
|
info.attributes = LTO_SYMBOL_PERMISSIONS_DATA |
|
|
|
|
LTO_SYMBOL_DEFINITION_REGULAR | LTO_SYMBOL_SCOPE_DEFAULT;
|
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2011-11-04 19:48:00 +01:00
|
|
|
_symbols.push_back(info);
|
|
|
|
}
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// addObjCCategory - Parse i386/ppc ObjC category data structure.
|
2012-12-11 04:10:43 +01:00
|
|
|
void LTOModule::addObjCCategory(const GlobalVariable *clgv) {
|
|
|
|
const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
|
2011-11-04 19:48:00 +01:00
|
|
|
if (!c) return;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2011-11-04 19:48:00 +01:00
|
|
|
// second slot in __OBJC,__category is pointer to target class name
|
|
|
|
std::string targetclassName;
|
|
|
|
if (!objcClassNameFromExpression(c->getOperand(1), targetclassName))
|
|
|
|
return;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(targetclassName, NameAndAttributes()));
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
if (!IterBool.second)
|
2011-11-04 19:48:00 +01:00
|
|
|
return;
|
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2011-11-04 19:48:00 +01:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2012-03-29 10:27:32 +02:00
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2009-06-01 22:33:09 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// addObjCClassRef - Parse i386/ppc ObjC class list data structure.
|
2012-12-11 04:10:43 +01:00
|
|
|
void LTOModule::addObjCClassRef(const GlobalVariable *clgv) {
|
2010-08-11 01:46:39 +02:00
|
|
|
std::string targetclassName;
|
2011-11-04 19:48:00 +01:00
|
|
|
if (!objcClassNameFromExpression(clgv->getInitializer(), targetclassName))
|
|
|
|
return;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool =
|
|
|
|
_undefines.insert(std::make_pair(targetclassName, NameAndAttributes()));
|
|
|
|
|
|
|
|
if (!IterBool.second)
|
2011-11-04 19:48:00 +01:00
|
|
|
return;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2011-11-04 19:48:00 +01:00
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2012-03-29 10:27:32 +02:00
|
|
|
info.isFunction = false;
|
|
|
|
info.symbol = clgv;
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
void LTOModule::addDefinedDataSymbol(ModuleSymbolTable::Symbol Sym) {
|
2014-07-04 18:37:02 +02:00
|
|
|
SmallString<64> Buffer;
|
2014-07-04 20:40:36 +02:00
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2016-12-13 21:01:58 +01:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
2016-10-07 21:05:14 +02:00
|
|
|
Buffer.c_str();
|
2014-07-04 20:40:36 +02:00
|
|
|
}
|
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
const GlobalValue *V = Sym.get<GlobalValue *>();
|
2016-10-07 21:05:14 +02:00
|
|
|
addDefinedDataSymbol(Buffer, V);
|
2014-07-04 18:37:02 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
void LTOModule::addDefinedDataSymbol(StringRef Name, const GlobalValue *v) {
|
2010-08-11 01:46:39 +02:00
|
|
|
// Add to list of defined symbols.
|
2014-07-04 18:37:02 +02:00
|
|
|
addDefinedSymbol(Name, v, false);
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2012-08-07 00:52:45 +02:00
|
|
|
if (!v->hasSection() /* || !isTargetDarwin */)
|
|
|
|
return;
|
|
|
|
|
2010-08-11 01:46:39 +02: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-07 00:52:45 +02:00
|
|
|
|
|
|
|
// special case if this data blob is an ObjC class definition
|
2017-12-28 19:31:19 +01:00
|
|
|
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(v)) {
|
|
|
|
StringRef Section = GV->getSection();
|
|
|
|
if (Section.startswith("__OBJC,__class,")) {
|
|
|
|
addObjCClass(GV);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2017-12-28 19:31:19 +01:00
|
|
|
// special case if this data blob is an ObjC category definition
|
|
|
|
else if (Section.startswith("__OBJC,__category,")) {
|
|
|
|
addObjCCategory(GV);
|
2008-05-17 00:46:40 +02:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2017-12-28 19:31:19 +01:00
|
|
|
// special case if this data blob is the list of referenced classes
|
|
|
|
else if (Section.startswith("__OBJC,__cls_refs,")) {
|
|
|
|
addObjCClassRef(GV);
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
2008-02-26 21:26:43 +01:00
|
|
|
}
|
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
void LTOModule::addDefinedFunctionSymbol(ModuleSymbolTable::Symbol Sym) {
|
2014-07-04 18:37:02 +02:00
|
|
|
SmallString<64> Buffer;
|
2014-07-04 20:40:36 +02:00
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2016-12-13 21:01:58 +01:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
2016-10-07 21:05:14 +02:00
|
|
|
Buffer.c_str();
|
2014-07-04 20:40:36 +02:00
|
|
|
}
|
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
const Function *F = cast<Function>(Sym.get<GlobalValue *>());
|
2016-10-07 21:05:14 +02:00
|
|
|
addDefinedFunctionSymbol(Buffer, F);
|
2014-07-04 18:37:02 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
void LTOModule::addDefinedFunctionSymbol(StringRef Name, const Function *F) {
|
2012-03-28 22:46:54 +02:00
|
|
|
// add to list of defined symbols
|
2014-07-04 18:37:02 +02:00
|
|
|
addDefinedSymbol(Name, F, true);
|
2012-03-28 22:46:54 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
void LTOModule::addDefinedSymbol(StringRef Name, const GlobalValue *def,
|
2014-07-04 18:37:02 +02:00
|
|
|
bool isFunction) {
|
2010-08-11 01:46:39 +02:00
|
|
|
// set alignment part log2() can have rounding errors
|
|
|
|
uint32_t align = def->getAlignment();
|
2014-05-05 16:18:16 +02:00
|
|
|
uint32_t attr = align ? countTrailingZeros(align) : 0;
|
2010-08-11 01:46:39 +02:00
|
|
|
|
|
|
|
// set permissions part
|
2012-03-29 10:27:32 +02:00
|
|
|
if (isFunction) {
|
2010-08-11 01:46:39 +02:00
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_CODE;
|
2012-03-29 10:27:32 +02:00
|
|
|
} else {
|
2012-12-11 04:10:43 +01:00
|
|
|
const GlobalVariable *gv = dyn_cast<GlobalVariable>(def);
|
2010-08-11 01:46:39 +02:00
|
|
|
if (gv && gv->isConstant())
|
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_RODATA;
|
|
|
|
else
|
|
|
|
attr |= LTO_SYMBOL_PERMISSIONS_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set definition part
|
Remove the linker_private and linker_private_weak linkages.
These linkages were introduced some time ago, but it was never very
clear what exactly their semantics were or what they should be used
for. Some investigation found these uses:
* utf-16 strings in clang.
* non-unnamed_addr strings produced by the sanitizers.
It turns out they were just working around a more fundamental problem.
For some sections a MachO linker needs a symbol in order to split the
section into atoms, and llvm had no idea that was the case. I fixed
that in r201700 and it is now safe to use the private linkage. When
the object ends up in a section that requires symbols, llvm will use a
'l' prefix instead of a 'L' prefix and things just work.
With that, these linkages were already dead, but there was a potential
future user in the objc metadata information. I am still looking at
CGObjcMac.cpp, but at this point I am convinced that linker_private
and linker_private_weak are not what they need.
The objc uses are currently split in
* Regular symbols (no '\01' prefix). LLVM already directly provides
whatever semantics they need.
* Uses of a private name (start with "\01L" or "\01l") and private
linkage. We can drop the "\01L" and "\01l" prefixes as soon as llvm
agrees with clang on L being ok or not for a given section. I have two
patches in code review for this.
* Uses of private name and weak linkage.
The last case is the one that one could think would fit one of these
linkages. That is not the case. The semantics are
* the linker will merge these symbol by *name*.
* the linker will hide them in the final DSO.
Given that the merging is done by name, any of the private (or
internal) linkages would be a bad match. They allow llvm to rename the
symbols, and that is really not what we want. From the llvm point of
view, these objects should really be (linkonce|weak)(_odr)?.
For now, just keeping the "\01l" prefix is probably the best for these
symbols. If we one day want to have a more direct support in llvm,
IMHO what we should add is not a linkage, it is just a hidden_symbol
attribute. It would be applicable to multiple linkages. For example,
on weak it would produce the current behavior we have for objc
metadata. On internal, it would be equivalent to private (and we
should then remove private).
llvm-svn: 203866
2014-03-14 00:18:37 +01:00
|
|
|
if (def->hasWeakLinkage() || def->hasLinkOnceLinkage())
|
2010-08-11 01:46:39 +02:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_WEAK;
|
2010-09-27 22:17:45 +02:00
|
|
|
else if (def->hasCommonLinkage())
|
2010-08-11 01:46:39 +02:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_TENTATIVE;
|
2010-09-27 22:17:45 +02:00
|
|
|
else
|
2010-08-11 01:46:39 +02:00
|
|
|
attr |= LTO_SYMBOL_DEFINITION_REGULAR;
|
|
|
|
|
|
|
|
// set scope part
|
2014-05-08 00:53:14 +02:00
|
|
|
if (def->hasLocalLinkage())
|
|
|
|
// Ignore visibility if linkage is local.
|
|
|
|
attr |= LTO_SYMBOL_SCOPE_INTERNAL;
|
|
|
|
else if (def->hasHiddenVisibility())
|
2010-08-11 01:46:39 +02:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_HIDDEN;
|
|
|
|
else if (def->hasProtectedVisibility())
|
|
|
|
attr |= LTO_SYMBOL_SCOPE_PROTECTED;
|
2014-07-30 21:42:16 +02:00
|
|
|
else if (canBeOmittedFromSymbolTable(def))
|
2013-10-31 21:51:58 +01:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
|
2010-08-11 01:46:39 +02:00
|
|
|
else
|
2014-05-08 00:53:14 +02:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT;
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2015-06-11 23:41:27 +02:00
|
|
|
if (def->hasComdat())
|
|
|
|
attr |= LTO_SYMBOL_COMDAT;
|
|
|
|
|
2015-07-04 05:42:35 +02:00
|
|
|
if (isa<GlobalAlias>(def))
|
|
|
|
attr |= LTO_SYMBOL_ALIAS;
|
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
auto Iter = _defines.insert(Name).first;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2012-03-29 10:27:32 +02:00
|
|
|
// fill information structure
|
|
|
|
NameAndAttributes info;
|
2014-11-19 06:49:42 +01:00
|
|
|
StringRef NameRef = Iter->first();
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = NameRef;
|
|
|
|
assert(NameRef.data()[NameRef.size()] == '\0');
|
2012-03-29 10:27:32 +02:00
|
|
|
info.attributes = attr;
|
|
|
|
info.isFunction = isFunction;
|
|
|
|
info.symbol = def;
|
|
|
|
|
|
|
|
// add to table of symbols
|
2010-08-11 01:46:39 +02:00
|
|
|
_symbols.push_back(info);
|
2008-07-16 20:06:52 +02:00
|
|
|
}
|
2008-02-26 21:26:43 +01:00
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the
|
|
|
|
/// defined list.
|
2016-10-07 21:05:14 +02:00
|
|
|
void LTOModule::addAsmGlobalSymbol(StringRef name,
|
2011-03-02 05:14:42 +01:00
|
|
|
lto_symbol_attributes scope) {
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool = _defines.insert(name);
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2010-08-11 01:46:39 +02:00
|
|
|
// only add new define if not already defined
|
2014-11-19 06:49:42 +01:00
|
|
|
if (!IterBool.second)
|
2010-08-11 01:46:39 +02:00
|
|
|
return;
|
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
NameAndAttributes &info = _undefines[IterBool.first->first()];
|
2012-03-29 10:27:32 +02:00
|
|
|
|
2014-04-15 08:32:26 +02:00
|
|
|
if (info.symbol == nullptr) {
|
2012-04-02 12:01:21 +02: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
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2012-04-02 12:01:21 +02:00
|
|
|
info.attributes =
|
|
|
|
LTO_SYMBOL_PERMISSIONS_DATA | LTO_SYMBOL_DEFINITION_REGULAR | scope;
|
|
|
|
info.isFunction = false;
|
2014-04-15 08:32:26 +02:00
|
|
|
info.symbol = nullptr;
|
2012-04-02 12:01:21 +02:00
|
|
|
|
|
|
|
// add to table of symbols
|
|
|
|
_symbols.push_back(info);
|
2012-04-02 05:33:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-29 10:27:32 +02:00
|
|
|
if (info.isFunction)
|
2014-07-04 18:37:02 +02:00
|
|
|
addDefinedFunctionSymbol(info.name, cast<Function>(info.symbol));
|
2012-03-29 10:27:32 +02:00
|
|
|
else
|
2014-07-04 18:37:02 +02:00
|
|
|
addDefinedDataSymbol(info.name, info.symbol);
|
2012-03-31 01:26:06 +02:00
|
|
|
|
|
|
|
_symbols.back().attributes &= ~LTO_SYMBOL_SCOPE_MASK;
|
|
|
|
_symbols.back().attributes |= scope;
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
2009-06-01 22:33:09 +02:00
|
|
|
|
2012-03-28 22:46:54 +02:00
|
|
|
/// addAsmGlobalSymbolUndef - Add a global symbol from module-level ASM to the
|
|
|
|
/// undefined list.
|
2016-10-07 21:05:14 +02:00
|
|
|
void LTOModule::addAsmGlobalSymbolUndef(StringRef name) {
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes()));
|
2011-03-02 05:14:42 +01:00
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
_asm_undefines.push_back(IterBool.first->first());
|
2011-03-02 05:14:42 +01:00
|
|
|
|
|
|
|
// we already have the symbol
|
2014-11-19 06:49:42 +01:00
|
|
|
if (!IterBool.second)
|
2011-03-02 05:14:42 +01:00
|
|
|
return;
|
|
|
|
|
2014-04-20 01:56:35 +02:00
|
|
|
uint32_t attr = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2011-03-02 05:14:42 +01:00
|
|
|
attr |= LTO_SYMBOL_SCOPE_DEFAULT;
|
2014-11-19 06:49:42 +01:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2012-03-29 10:27:32 +02:00
|
|
|
info.attributes = attr;
|
|
|
|
info.isFunction = false;
|
2014-04-15 08:32:26 +02:00
|
|
|
info.symbol = nullptr;
|
2011-03-02 05:14:42 +01:00
|
|
|
}
|
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
/// Add a symbol which isn't defined just yet to a list to be resolved later.
|
2016-12-13 21:01:58 +01:00
|
|
|
void LTOModule::addPotentialUndefinedSymbol(ModuleSymbolTable::Symbol Sym,
|
2014-07-04 20:40:36 +02:00
|
|
|
bool isFunc) {
|
2011-02-11 06:23:09 +01:00
|
|
|
SmallString<64> name;
|
2014-07-04 20:40:36 +02:00
|
|
|
{
|
|
|
|
raw_svector_ostream OS(name);
|
2016-12-13 21:01:58 +01:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
2016-10-07 21:05:14 +02:00
|
|
|
name.c_str();
|
2014-07-04 20:40:36 +02:00
|
|
|
}
|
2010-08-11 01:46:39 +02:00
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes()));
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2010-08-11 01:46:39 +02:00
|
|
|
// we already have the symbol
|
2014-11-19 06:49:42 +01:00
|
|
|
if (!IterBool.second)
|
2010-08-11 01:46:39 +02:00
|
|
|
return;
|
|
|
|
|
2014-11-19 06:49:42 +01:00
|
|
|
NameAndAttributes &info = IterBool.first->second;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2016-10-07 21:05:14 +02:00
|
|
|
info.name = IterBool.first->first();
|
2012-03-28 22:46:54 +02:00
|
|
|
|
2016-12-13 21:01:58 +01:00
|
|
|
const GlobalValue *decl = Sym.dyn_cast<GlobalValue *>();
|
2014-07-04 20:40:36 +02:00
|
|
|
|
2010-08-11 01:46:39 +02:00
|
|
|
if (decl->hasExternalWeakLinkage())
|
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_WEAKUNDEF;
|
|
|
|
else
|
|
|
|
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
|
2011-02-20 17:27:25 +01:00
|
|
|
|
2012-03-29 10:27:32 +02:00
|
|
|
info.isFunction = isFunc;
|
|
|
|
info.symbol = decl;
|
2010-08-11 01:46:39 +02:00
|
|
|
}
|
2009-07-09 08:03:04 +02:00
|
|
|
|
2015-12-04 00:56:42 +01:00
|
|
|
void LTOModule::parseSymbols() {
|
2016-12-13 21:01:58 +01:00
|
|
|
for (auto Sym : SymTab.symbols()) {
|
|
|
|
auto *GV = Sym.dyn_cast<GlobalValue *>();
|
|
|
|
uint32_t Flags = SymTab.getSymbolFlags(Sym);
|
2014-07-04 21:31:27 +02:00
|
|
|
if (Flags & object::BasicSymbolRef::SF_FormatSpecific)
|
|
|
|
continue;
|
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
bool IsUndefined = Flags & object::BasicSymbolRef::SF_Undefined;
|
|
|
|
|
|
|
|
if (!GV) {
|
|
|
|
SmallString<64> Buffer;
|
|
|
|
{
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2016-12-13 21:01:58 +01:00
|
|
|
SymTab.printSymbolName(OS, Sym);
|
2016-10-07 21:05:14 +02:00
|
|
|
Buffer.c_str();
|
2014-07-04 20:40:36 +02:00
|
|
|
}
|
2016-10-07 21:05:14 +02:00
|
|
|
StringRef Name(Buffer);
|
2014-07-04 20:40:36 +02: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;
|
|
|
|
}
|
2010-08-11 01:46:46 +02:00
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
auto *F = dyn_cast<Function>(GV);
|
|
|
|
if (IsUndefined) {
|
|
|
|
addPotentialUndefinedSymbol(Sym, F != nullptr);
|
|
|
|
continue;
|
|
|
|
}
|
2010-08-11 01:46:46 +02:00
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
if (F) {
|
|
|
|
addDefinedFunctionSymbol(Sym);
|
|
|
|
continue;
|
|
|
|
}
|
2010-08-11 01:46:46 +02:00
|
|
|
|
2014-07-04 20:40:36 +02:00
|
|
|
if (isa<GlobalVariable>(GV)) {
|
|
|
|
addDefinedDataSymbol(Sym);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(isa<GlobalAlias>(GV));
|
|
|
|
addDefinedDataSymbol(Sym);
|
|
|
|
}
|
2010-10-20 06:57:22 +02:00
|
|
|
|
2010-08-11 01:46:46 +02:00
|
|
|
// make symbols for all undefines
|
2012-03-29 10:27:32 +02: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-08-11 01:46:39 +02:00
|
|
|
}
|
2008-02-27 23:25:36 +01:00
|
|
|
}
|
2014-01-21 19:31:27 +01:00
|
|
|
|
|
|
|
/// parseMetadata - Parse metadata from the module
|
|
|
|
void LTOModule::parseMetadata() {
|
2015-06-30 00:04:09 +02:00
|
|
|
raw_string_ostream OS(LinkerOpts);
|
|
|
|
|
2014-01-21 19:31:27 +01:00
|
|
|
// Linker Options
|
2017-06-12 22:10:48 +02:00
|
|
|
if (NamedMDNode *LinkerOptions =
|
|
|
|
getModule().getNamedMetadata("llvm.linker.options")) {
|
2014-01-21 19:31:27 +01:00
|
|
|
for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
|
2017-06-12 22:10:48 +02:00
|
|
|
MDNode *MDOptions = LinkerOptions->getOperand(i);
|
2014-01-21 19:31:27 +01:00
|
|
|
for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
|
|
|
|
MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
|
2015-06-30 00:04:09 +02:00
|
|
|
OS << " " << MDOption->getString();
|
2014-01-21 19:31:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 02:28:44 +01:00
|
|
|
// Globals - we only need to do this for COFF.
|
|
|
|
const Triple TT(_target->getTargetTriple());
|
|
|
|
if (!TT.isOSBinFormatCOFF())
|
|
|
|
return;
|
|
|
|
Mangler M;
|
2015-06-30 00:04:09 +02:00
|
|
|
for (const NameAndAttributes &Sym : _symbols) {
|
|
|
|
if (!Sym.symbol)
|
|
|
|
continue;
|
2017-02-04 02:28:44 +01:00
|
|
|
emitLinkerFlagsForGlobalCOFF(OS, Sym.symbol, TT, M);
|
2015-06-30 00:04:09 +02:00
|
|
|
}
|
|
|
|
|
2014-01-21 19:31:27 +01:00
|
|
|
// Add other interesting metadata here.
|
|
|
|
}
|