mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 09:31:03 +03:00

Turns out that since the change to use DMD's symbol emission logic a few releases back we didn't actually ever emit code for the extra modules. Thus, all the effort for the extra semantic passes went to waste. If we want to implement DMD-style cross-module inlining, we need to add the extra semantic3s back in, and then iterate over all the non-root modules with a codegen visitor that only emits symbols as available_externally. We probably won't need the availableExternally members if we start with a clean design in the new symbol emission framework. Thus, remove everything in the meantime. This will make some release builds a bit faster, and should not negatively affect generated code.
494 lines
16 KiB
C++
494 lines
16 KiB
C++
//===-- declarations.cpp --------------------------------------------------===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#include "aggregate.h"
|
||
#include "declaration.h"
|
||
#include "enum.h"
|
||
#include "id.h"
|
||
#include "init.h"
|
||
#include "rmem.h"
|
||
#include "template.h"
|
||
#include "gen/classes.h"
|
||
#include "gen/functions.h"
|
||
#include "gen/irstate.h"
|
||
#include "gen/llvm.h"
|
||
#include "gen/llvmhelpers.h"
|
||
#include "gen/logger.h"
|
||
#include "gen/tollvm.h"
|
||
#include "ir/irtype.h"
|
||
#include "ir/irvar.h"
|
||
#include "llvm/ADT/SmallString.h"
|
||
|
||
//////////////////////////////////////////////////////////////////////////////
|
||
// FIXME: Integrate these functions
|
||
void TypeInfoDeclaration_codegen(TypeInfoDeclaration *decl, IRState* p);
|
||
void TypeInfoClassDeclaration_codegen(TypeInfoDeclaration *decl, IRState* p);
|
||
|
||
//////////////////////////////////////////////////////////////////////////////
|
||
|
||
|
||
|
||
//////////////////////////////////////////////////////////////////////////////
|
||
|
||
class CodegenVisitor : public Visitor {
|
||
IRState *irs;
|
||
public:
|
||
|
||
CodegenVisitor(IRState *irs) : irs(irs) { }
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
// Import all functions from class Visitor
|
||
using Visitor::visit;
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(Dsymbol *sym) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("Ignoring Dsymbol::codegen for %s", sym->toPrettyChars());
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(InterfaceDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("InterfaceDeclaration::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
|
||
if (decl->type->ty == Terror)
|
||
{
|
||
error(decl->loc, "had semantic errors when compiling");
|
||
decl->ir.setDefined();
|
||
return;
|
||
}
|
||
|
||
if (decl->members && decl->symtab)
|
||
{
|
||
DtoResolveClass(decl);
|
||
decl->ir.setDefined();
|
||
|
||
// Emit any members (e.g. final functions).
|
||
for (Dsymbols::iterator I = decl->members->begin(),
|
||
E = decl->members->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
|
||
// Emit TypeInfo.
|
||
DtoTypeInfoOf(decl->type);
|
||
|
||
// Define __InterfaceZ.
|
||
IrAggr *ir = getIrAggr(decl);
|
||
llvm::GlobalVariable *interfaceZ = ir->getClassInfoSymbol();
|
||
interfaceZ->setInitializer(ir->getClassInfoInit());
|
||
interfaceZ->setLinkage(DtoExternalLinkage(decl));
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(StructDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("StructDeclaration::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
|
||
if (decl->type->ty == Terror)
|
||
{
|
||
error(decl->loc, "had semantic errors when compiling");
|
||
decl->ir.setDefined();
|
||
return;
|
||
}
|
||
|
||
if (decl->members && decl->symtab)
|
||
{
|
||
DtoResolveStruct(decl);
|
||
decl->ir.setDefined();
|
||
|
||
for (Dsymbols::iterator I = decl->members->begin(),
|
||
E = decl->members->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
|
||
// Define the __initZ symbol.
|
||
IrAggr *ir = getIrAggr(decl);
|
||
llvm::GlobalVariable *initZ = ir->getInitSymbol();
|
||
initZ->setInitializer(ir->getDefaultInit());
|
||
initZ->setLinkage(DtoExternalLinkage(decl));
|
||
|
||
// emit typeinfo
|
||
DtoTypeInfoOf(decl->type);
|
||
|
||
// Emit __xopEquals/__xopCmp/__xtoHash.
|
||
if (decl->xeq && decl->xeq != decl->xerreq)
|
||
decl->xeq->accept(this);
|
||
if (decl->xcmp && decl->xcmp != decl->xerrcmp)
|
||
decl->xcmp->accept(this);
|
||
if (decl->xhash)
|
||
decl->xhash->accept(this);
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(ClassDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("ClassDeclaration::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
|
||
if (decl->type->ty == Terror)
|
||
{
|
||
error(decl->loc, "had semantic errors when compiling");
|
||
decl->ir.setDefined();
|
||
return;
|
||
}
|
||
|
||
if (decl->members && decl->symtab)
|
||
{
|
||
DtoResolveClass(decl);
|
||
decl->ir.setDefined();
|
||
|
||
for (Dsymbols::iterator I = decl->members->begin(),
|
||
E = decl->members->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
|
||
IrAggr *ir = getIrAggr(decl);
|
||
llvm::GlobalValue::LinkageTypes const linkage = DtoExternalLinkage(decl);
|
||
|
||
llvm::GlobalVariable *initZ = ir->getInitSymbol();
|
||
initZ->setInitializer(ir->getDefaultInit());
|
||
initZ->setLinkage(linkage);
|
||
|
||
llvm::GlobalVariable *vtbl = ir->getVtblSymbol();
|
||
vtbl->setInitializer(ir->getVtblInit());
|
||
vtbl->setLinkage(linkage);
|
||
|
||
llvm::GlobalVariable *classZ = ir->getClassInfoSymbol();
|
||
classZ->setInitializer(ir->getClassInfoInit());
|
||
classZ->setLinkage(linkage);
|
||
|
||
// No need to do TypeInfo here, it is <name>__classZ for classes in D2.
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TupleDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("TupleDeclaration::codegen(): '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
decl->ir.setDefined();
|
||
|
||
assert(decl->isexp);
|
||
assert(decl->objects);
|
||
|
||
for (Objects::iterator I = decl->objects->begin(),
|
||
E = decl->objects->end();
|
||
I != E; ++I)
|
||
{
|
||
DsymbolExp *exp = static_cast<DsymbolExp *>(*I);
|
||
assert(exp->op == TOKdsymbol);
|
||
exp->s->accept(this);
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(VarDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("VarDeclaration::codegen(): '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE;
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
|
||
if (decl->type->ty == Terror)
|
||
{
|
||
error(decl->loc, "had semantic errors when compiling");
|
||
decl->ir.setDefined();
|
||
return;
|
||
}
|
||
|
||
DtoResolveVariable(decl);
|
||
decl->ir.setDefined();
|
||
|
||
// just forward aliases
|
||
if (decl->aliassym)
|
||
{
|
||
Logger::println("alias sym");
|
||
decl->toAlias()->accept(this);
|
||
return;
|
||
}
|
||
|
||
// global variable
|
||
if (decl->isDataseg())
|
||
{
|
||
Logger::println("data segment");
|
||
|
||
assert(!(decl->storage_class & STCmanifest) &&
|
||
"manifest constant being codegen'd!");
|
||
|
||
IrGlobal *irGlobal = getIrGlobal(decl);
|
||
llvm::GlobalVariable *gvar = llvm::cast<llvm::GlobalVariable>(irGlobal->value);
|
||
assert(gvar && "DtoResolveVariable should have created value");
|
||
|
||
const llvm::GlobalValue::LinkageTypes llLinkage = DtoLinkage(decl);
|
||
|
||
// Check if we are defining or just declaring the global in this module.
|
||
if (!(decl->storage_class & STCextern))
|
||
{
|
||
// Build the initializer. Might use this->ir.irGlobal->value!
|
||
LLConstant *initVal = DtoConstInitializer(decl->loc, decl->type, decl->init);
|
||
|
||
// In case of type mismatch, swap out the variable.
|
||
if (initVal->getType() != gvar->getType()->getElementType())
|
||
{
|
||
llvm::GlobalVariable* newGvar = getOrCreateGlobal(decl->loc,
|
||
*irs->module, initVal->getType(), gvar->isConstant(),
|
||
llLinkage, 0,
|
||
"", // We take on the name of the old global below.
|
||
gvar->isThreadLocal());
|
||
|
||
newGvar->setAlignment(gvar->getAlignment());
|
||
newGvar->takeName(gvar);
|
||
|
||
llvm::Constant* newValue =
|
||
llvm::ConstantExpr::getBitCast(newGvar, gvar->getType());
|
||
gvar->replaceAllUsesWith(newValue);
|
||
|
||
gvar->eraseFromParent();
|
||
gvar = newGvar;
|
||
irGlobal->value = newGvar;
|
||
}
|
||
|
||
// Now, set the initializer.
|
||
assert(!irGlobal->constInit);
|
||
irGlobal->constInit = initVal;
|
||
gvar->setInitializer(initVal);
|
||
gvar->setLinkage(llLinkage);
|
||
|
||
// Also set up the debug info.
|
||
irs->DBuilder.EmitGlobalVariable(gvar, decl);
|
||
}
|
||
|
||
// If this global is used from a naked function, we need to create an
|
||
// artificial "use" for it, or it could be removed by the optimizer if
|
||
// the only reference to it is in inline asm.
|
||
if (decl->nakedUse)
|
||
irs->usedArray.push_back(DtoBitCast(gvar, getVoidPtrType()));
|
||
|
||
IF_LOG Logger::cout() << *gvar << '\n';
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TypedefDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("TypedefDeclaration::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE;
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
decl->ir.setDefined();
|
||
|
||
if (decl->type->ty == Terror)
|
||
{ error(decl->loc, "had semantic errors when compiling");
|
||
return;
|
||
}
|
||
|
||
// generate typeinfo
|
||
DtoTypeInfoOf(decl->type, false);
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(EnumDeclaration *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("Ignoring EnumDeclaration::codegen: '%s'", decl->toPrettyChars());
|
||
|
||
if (decl->type->ty == Terror)
|
||
{ error(decl->loc, "had semantic errors when compiling");
|
||
return;
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(FuncDeclaration *decl) LLVM_OVERRIDE {
|
||
// don't touch function aliases, they don't contribute any new symbols
|
||
if (!decl->isFuncAliasDeclaration())
|
||
{
|
||
DtoDefineFunction(decl);
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TemplateInstance *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("TemplateInstance::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
decl->ir.setDefined();
|
||
|
||
// FIXME: This is #673 all over again.
|
||
if (!decl->needsCodegen()) return;
|
||
|
||
if (!decl->errors && decl->members)
|
||
{
|
||
for (Dsymbols::iterator I = decl->members->begin(),
|
||
E = decl->members->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TemplateMixin *decl) LLVM_OVERRIDE {
|
||
IF_LOG Logger::println("TemplateInstance::codegen: '%s'", decl->toPrettyChars());
|
||
LOG_SCOPE
|
||
|
||
if (decl->ir.isDefined()) return;
|
||
decl->ir.setDefined();
|
||
|
||
if (!decl->errors && decl->members)
|
||
{
|
||
for (Dsymbols::iterator I = decl->members->begin(),
|
||
E = decl->members->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(AttribDeclaration *decl) LLVM_OVERRIDE {
|
||
Dsymbols *d = decl->include(NULL, NULL);
|
||
|
||
if (d)
|
||
{
|
||
for (Dsymbols::iterator I = d->begin(),
|
||
E = d->end();
|
||
I != E; ++I)
|
||
{
|
||
(*I)->accept(this);
|
||
}
|
||
}
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(PragmaDeclaration *decl) LLVM_OVERRIDE {
|
||
if (decl->ident == Id::lib)
|
||
{
|
||
assert(decl->args && decl->args->dim == 1);
|
||
|
||
Expression *e = static_cast<Expression *>(decl->args->data[0]);
|
||
|
||
assert(e->op == TOKstring);
|
||
StringExp *se = static_cast<StringExp *>(e);
|
||
|
||
size_t nameLen = se->len;
|
||
#if LDC_LLVM_VER >= 305
|
||
if (global.params.targetTriple.isWindowsGNUEnvironment())
|
||
#else
|
||
if (global.params.targetTriple.getOS() == llvm::Triple::MinGW32)
|
||
#endif
|
||
{
|
||
if (nameLen > 4 &&
|
||
!memcmp(static_cast<char*>(se->string) + nameLen - 4, ".lib", 4))
|
||
{
|
||
// On MinGW, strip the .lib suffix, if any, to improve
|
||
// compatibility with code written for DMD (we pass the name to GCC
|
||
// via -l, just as on Posix).
|
||
nameLen -= 4;
|
||
}
|
||
|
||
if (nameLen >= 7 && !memcmp(se->string, "shell32", 7))
|
||
{
|
||
// Another DMD compatibility kludge: Ignore
|
||
// pragma(lib, "shell32.lib"), it is implicitly provided by
|
||
// MinGW.
|
||
return;
|
||
}
|
||
}
|
||
|
||
#if LDC_LLVM_VER >= 303
|
||
// With LLVM 3.3 or later we can place the library name in the object
|
||
// file. This seems to be supported only on Windows.
|
||
if (global.params.targetTriple.getOS() == llvm::Triple::Win32)
|
||
{
|
||
llvm::SmallString<24> LibName(llvm::StringRef(static_cast<const char *>(se->string), nameLen));
|
||
|
||
// Win32: /DEFAULTLIB:"curl"
|
||
if (LibName.endswith(".a"))
|
||
LibName = LibName.substr(0, LibName.size()-2);
|
||
if (LibName.endswith(".lib"))
|
||
LibName = LibName.substr(0, LibName.size()-4);
|
||
llvm::SmallString<24> tmp("/DEFAULTLIB:\"");
|
||
tmp.append(LibName);
|
||
tmp.append("\"");
|
||
LibName = tmp;
|
||
|
||
// Embedd library name as linker option in object file
|
||
llvm::Value *Value = llvm::MDString::get(gIR->context(), LibName);
|
||
gIR->LinkerMetadataArgs.push_back(llvm::MDNode::get(gIR->context(), Value));
|
||
}
|
||
else
|
||
#endif
|
||
{
|
||
size_t const n = nameLen + 3;
|
||
char *arg = static_cast<char *>(mem.malloc(n));
|
||
arg[0] = '-';
|
||
arg[1] = 'l';
|
||
memcpy(arg + 2, se->string, nameLen);
|
||
arg[n-1] = 0;
|
||
global.params.linkswitches->push(arg);
|
||
}
|
||
}
|
||
visit(static_cast<AttribDeclaration *>(decl));
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TypeInfoDeclaration *decl) LLVM_OVERRIDE {
|
||
TypeInfoDeclaration_codegen(decl, irs);
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////
|
||
|
||
void visit(TypeInfoClassDeclaration *decl) LLVM_OVERRIDE {
|
||
TypeInfoClassDeclaration_codegen(decl, irs);
|
||
}
|
||
};
|
||
|
||
//////////////////////////////////////////////////////////////////////////////
|
||
|
||
void Declaration_codegen(Dsymbol *decl)
|
||
{
|
||
CodegenVisitor v(gIR);
|
||
decl->accept(&v);
|
||
}
|
||
|
||
void Declaration_codegen(Dsymbol *decl, IRState *irs)
|
||
{
|
||
CodegenVisitor v(irs);
|
||
decl->accept(&v);
|
||
}
|
||
|
||
//////////////////////////////////////////////////////////////////////////////
|