mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 02:45:25 +03:00
Fixed a crash when compiling test runnable/A16.
This commit is contained in:
parent
0b4b009a69
commit
3eb6b5e8c8
5 changed files with 134 additions and 96 deletions
|
@ -529,7 +529,7 @@ void DtoDeclareFunction(FuncDeclaration* fdecl)
|
||||||
#endif
|
#endif
|
||||||
// we never reference parameters of function prototypes
|
// we never reference parameters of function prototypes
|
||||||
std::string str;
|
std::string str;
|
||||||
if (!declareOnly)
|
// if (!declareOnly)
|
||||||
{
|
{
|
||||||
// name parameters
|
// name parameters
|
||||||
llvm::Function::arg_iterator iarg = func->arg_begin();
|
llvm::Function::arg_iterator iarg = func->arg_begin();
|
||||||
|
@ -772,16 +772,6 @@ void DtoDefineFunction(FuncDeclaration* fd)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if DMDV2
|
|
||||||
// fill nestedVars
|
|
||||||
size_t nnest = fd->closureVars.dim;
|
|
||||||
for (size_t i = 0; i < nnest; ++i)
|
|
||||||
{
|
|
||||||
VarDeclaration* vd = (VarDeclaration*)fd->closureVars.data[i];
|
|
||||||
fd->nestedVars.insert(vd);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
DtoCreateNestedContext(fd);
|
DtoCreateNestedContext(fd);
|
||||||
|
|
||||||
#if DMDV2
|
#if DMDV2
|
||||||
|
|
|
@ -958,7 +958,6 @@ DValue* DtoDeclarationExp(Dsymbol* declaration)
|
||||||
#endif
|
#endif
|
||||||
Logger::println("has nestedref set");
|
Logger::println("has nestedref set");
|
||||||
assert(vd->ir.irLocal);
|
assert(vd->ir.irLocal);
|
||||||
|
|
||||||
DtoNestedInit(vd);
|
DtoNestedInit(vd);
|
||||||
}
|
}
|
||||||
// normal stack variable, allocate storage on the stack if it has not already been done
|
// normal stack variable, allocate storage on the stack if it has not already been done
|
||||||
|
|
215
gen/nested.cpp
215
gen/nested.cpp
|
@ -68,6 +68,8 @@ static FuncDeclaration* getParentFunc(Dsymbol* sym, bool stopOnStatic) {
|
||||||
return (parent ? parent->isFuncDeclaration() : NULL);
|
return (parent ? parent->isFuncDeclaration() : NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void DtoCreateNestedContextType(FuncDeclaration* fd);
|
||||||
|
|
||||||
DValue* DtoNestedVariable(Loc loc, Type* astype, VarDeclaration* vd, bool byref)
|
DValue* DtoNestedVariable(Loc loc, Type* astype, VarDeclaration* vd, bool byref)
|
||||||
{
|
{
|
||||||
Logger::println("DtoNestedVariable for %s @ %s", vd->toChars(), loc.toChars());
|
Logger::println("DtoNestedVariable for %s @ %s", vd->toChars(), loc.toChars());
|
||||||
|
@ -109,6 +111,7 @@ DValue* DtoNestedVariable(Loc loc, Type* astype, VarDeclaration* vd, bool byref)
|
||||||
ctx = irfunc->nestArg;
|
ctx = irfunc->nestArg;
|
||||||
assert(ctx);
|
assert(ctx);
|
||||||
|
|
||||||
|
DtoCreateNestedContextType(vdparent->isFuncDeclaration());
|
||||||
assert(vd->ir.irLocal);
|
assert(vd->ir.irLocal);
|
||||||
|
|
||||||
////////////////////////////////////
|
////////////////////////////////////
|
||||||
|
@ -270,14 +273,18 @@ LLValue* DtoNestedContext(Loc loc, Dsymbol* sym)
|
||||||
if (nestedCtx == NCHybrid) {
|
if (nestedCtx == NCHybrid) {
|
||||||
if (FuncDeclaration* symfd = sym->isFuncDeclaration()) {
|
if (FuncDeclaration* symfd = sym->isFuncDeclaration()) {
|
||||||
// Make sure we've had a chance to analyze nested context usage
|
// Make sure we've had a chance to analyze nested context usage
|
||||||
|
#if DMDV2
|
||||||
|
DtoCreateNestedContextType(symfd);
|
||||||
|
#else
|
||||||
DtoDefineFunction(symfd);
|
DtoDefineFunction(symfd);
|
||||||
|
#endif
|
||||||
|
|
||||||
// if this is for a function that doesn't access variables from
|
// if this is for a function that doesn't access variables from
|
||||||
// enclosing scopes, it doesn't matter what we pass.
|
// enclosing scopes, it doesn't matter what we pass.
|
||||||
// Tell LLVM about it by passing an 'undef'.
|
// Tell LLVM about it by passing an 'undef'.
|
||||||
if (symfd && symfd->ir.irFunc->depth == -1)
|
if (symfd && symfd->ir.irFunc->depth == -1)
|
||||||
return llvm::UndefValue::get(getVoidPtrType());
|
return llvm::UndefValue::get(getVoidPtrType());
|
||||||
|
|
||||||
// If sym is a nested function, and it's parent context is different than the
|
// If sym is a nested function, and it's parent context is different than the
|
||||||
// one we got, adjust it.
|
// one we got, adjust it.
|
||||||
if (FuncDeclaration* fd = getParentFunc(symfd, true)) {
|
if (FuncDeclaration* fd = getParentFunc(symfd, true)) {
|
||||||
|
@ -289,13 +296,13 @@ LLValue* DtoNestedContext(Loc loc, Dsymbol* sym)
|
||||||
assert(ctxfd && "Context from outer function, but no outer function?");
|
assert(ctxfd && "Context from outer function, but no outer function?");
|
||||||
}
|
}
|
||||||
Logger::println("Context is from %s", ctxfd->toChars());
|
Logger::println("Context is from %s", ctxfd->toChars());
|
||||||
|
|
||||||
unsigned neededDepth = fd->ir.irFunc->depth;
|
unsigned neededDepth = fd->ir.irFunc->depth;
|
||||||
unsigned ctxDepth = ctxfd->ir.irFunc->depth;
|
unsigned ctxDepth = ctxfd->ir.irFunc->depth;
|
||||||
|
|
||||||
Logger::cout() << "Needed depth: " << neededDepth << '\n';
|
Logger::cout() << "Needed depth: " << neededDepth << '\n';
|
||||||
Logger::cout() << "Context depth: " << ctxDepth << '\n';
|
Logger::cout() << "Context depth: " << ctxDepth << '\n';
|
||||||
|
|
||||||
if (neededDepth >= ctxDepth) {
|
if (neededDepth >= ctxDepth) {
|
||||||
// assert(neededDepth <= ctxDepth + 1 && "How are we going more than one nesting level up?");
|
// assert(neededDepth <= ctxDepth + 1 && "How are we going more than one nesting level up?");
|
||||||
// fd needs the same context as we do, so all is well
|
// fd needs the same context as we do, so all is well
|
||||||
|
@ -313,10 +320,125 @@ LLValue* DtoNestedContext(Loc loc, Dsymbol* sym)
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void DtoCreateNestedContextType(FuncDeclaration* fd) {
|
||||||
|
Logger::println("DtoCreateNestedContextType for %s", fd->toChars());
|
||||||
|
LOG_SCOPE
|
||||||
|
|
||||||
|
if (fd->ir.irFunc->nestedContextCreated)
|
||||||
|
return;
|
||||||
|
fd->ir.irFunc->nestedContextCreated = true;
|
||||||
|
|
||||||
|
#if DMDV2
|
||||||
|
DtoDeclareFunction(fd);
|
||||||
|
if (fd->nestedVars.empty()) {
|
||||||
|
// fill nestedVars
|
||||||
|
size_t nnest = fd->closureVars.dim;
|
||||||
|
for (size_t i = 0; i < nnest; ++i)
|
||||||
|
{
|
||||||
|
VarDeclaration* vd = (VarDeclaration*)fd->closureVars.data[i];
|
||||||
|
fd->nestedVars.insert(vd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
if (nestedCtx == NCHybrid) {
|
||||||
|
// construct nested variables array
|
||||||
|
if (!fd->nestedVars.empty())
|
||||||
|
{
|
||||||
|
Logger::println("has nested frame");
|
||||||
|
// start with adding all enclosing parent frames until a static parent is reached
|
||||||
|
|
||||||
|
const LLStructType* innerFrameType = NULL;
|
||||||
|
unsigned depth = -1;
|
||||||
|
if (!fd->isStatic()) {
|
||||||
|
if (FuncDeclaration* parfd = getParentFunc(fd, true)) {
|
||||||
|
innerFrameType = parfd->ir.irFunc->frameType;
|
||||||
|
if (innerFrameType)
|
||||||
|
depth = parfd->ir.irFunc->depth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fd->ir.irFunc->depth = ++depth;
|
||||||
|
|
||||||
|
Logger::cout() << "Function " << fd->toChars() << " has depth " << depth << '\n';
|
||||||
|
|
||||||
|
typedef std::vector<const LLType*> TypeVec;
|
||||||
|
TypeVec types;
|
||||||
|
if (depth != 0) {
|
||||||
|
assert(innerFrameType);
|
||||||
|
// Add frame pointer types for all but last frame
|
||||||
|
if (depth > 1) {
|
||||||
|
for (unsigned i = 0; i < (depth - 1); ++i) {
|
||||||
|
types.push_back(innerFrameType->getElementType(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Add frame pointer type for last frame
|
||||||
|
types.push_back(LLPointerType::getUnqual(innerFrameType));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Logger::enabled()) {
|
||||||
|
Logger::println("Frame types: ");
|
||||||
|
LOG_SCOPE;
|
||||||
|
for (TypeVec::iterator i = types.begin(); i != types.end(); ++i)
|
||||||
|
Logger::cout() << **i << '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the direct nested variables of this function, and update their indices to match.
|
||||||
|
// TODO: optimize ordering for minimal space usage?
|
||||||
|
for (std::set<VarDeclaration*>::iterator i=fd->nestedVars.begin(); i!=fd->nestedVars.end(); ++i)
|
||||||
|
{
|
||||||
|
VarDeclaration* vd = *i;
|
||||||
|
if (!vd->ir.irLocal)
|
||||||
|
vd->ir.irLocal = new IrLocal(vd);
|
||||||
|
|
||||||
|
vd->ir.irLocal->nestedIndex = types.size();
|
||||||
|
vd->ir.irLocal->nestedDepth = depth;
|
||||||
|
if (vd->isParameter()) {
|
||||||
|
// Parameters already have storage associated with them (to handle byref etc.),
|
||||||
|
// so handle those cases specially by storing a pointer instead of a value.
|
||||||
|
assert(vd->ir.irLocal->value);
|
||||||
|
LLValue* value = vd->ir.irLocal->value;
|
||||||
|
const LLType* type = value->getType();
|
||||||
|
if (llvm::isa<llvm::AllocaInst>(value->getUnderlyingObject()))
|
||||||
|
// This will be copied to the nesting frame.
|
||||||
|
type = type->getContainedType(0);
|
||||||
|
types.push_back(type);
|
||||||
|
} else if (vd->isRef() || vd->isOut()) {
|
||||||
|
// Foreach variables can also be by reference, for instance.
|
||||||
|
types.push_back(DtoType(vd->type->pointerTo()));
|
||||||
|
} else {
|
||||||
|
types.push_back(DtoType(vd->type));
|
||||||
|
}
|
||||||
|
if (Logger::enabled()) {
|
||||||
|
Logger::println("Nested var: %s", vd->toChars());
|
||||||
|
Logger::cout() << "of type: " << *types.back() << '\n';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const LLStructType* frameType = LLStructType::get(gIR->context(), types);
|
||||||
|
gIR->module->addTypeName(std::string("nest.") + fd->toChars(), frameType);
|
||||||
|
|
||||||
|
Logger::cout() << "frameType = " << *frameType << '\n';
|
||||||
|
|
||||||
|
// Store type in IrFunction
|
||||||
|
fd->ir.irFunc->frameType = frameType;
|
||||||
|
} else if (FuncDeclaration* parFunc = getParentFunc(fd, true)) {
|
||||||
|
// Propagate context arg properties if the context arg is passed on unmodified.
|
||||||
|
DtoCreateNestedContextType(parFunc);
|
||||||
|
fd->ir.irFunc->frameType = parFunc->ir.irFunc->frameType;
|
||||||
|
fd->ir.irFunc->depth = parFunc->ir.irFunc->depth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
assert(0 && "Not implemented yet");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void DtoCreateNestedContext(FuncDeclaration* fd) {
|
void DtoCreateNestedContext(FuncDeclaration* fd) {
|
||||||
Logger::println("DtoCreateNestedContext for %s", fd->toChars());
|
Logger::println("DtoCreateNestedContext for %s", fd->toChars());
|
||||||
LOG_SCOPE
|
LOG_SCOPE
|
||||||
|
|
||||||
|
DtoCreateNestedContextType(fd);
|
||||||
|
|
||||||
if (nestedCtx == NCArray) {
|
if (nestedCtx == NCArray) {
|
||||||
// construct nested variables array
|
// construct nested variables array
|
||||||
if (!fd->nestedVars.empty())
|
if (!fd->nestedVars.empty())
|
||||||
|
@ -408,84 +530,9 @@ void DtoCreateNestedContext(FuncDeclaration* fd) {
|
||||||
// construct nested variables array
|
// construct nested variables array
|
||||||
if (!fd->nestedVars.empty())
|
if (!fd->nestedVars.empty())
|
||||||
{
|
{
|
||||||
Logger::println("has nested frame");
|
|
||||||
// start with adding all enclosing parent frames until a static parent is reached
|
|
||||||
|
|
||||||
const LLStructType* innerFrameType = NULL;
|
|
||||||
unsigned depth = -1;
|
|
||||||
if (!fd->isStatic()) {
|
|
||||||
if (FuncDeclaration* parfd = getParentFunc(fd, true)) {
|
|
||||||
innerFrameType = parfd->ir.irFunc->frameType;
|
|
||||||
if (innerFrameType)
|
|
||||||
depth = parfd->ir.irFunc->depth;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fd->ir.irFunc->depth = ++depth;
|
|
||||||
|
|
||||||
Logger::cout() << "Function " << fd->toChars() << " has depth " << depth << '\n';
|
|
||||||
|
|
||||||
typedef std::vector<const LLType*> TypeVec;
|
|
||||||
TypeVec types;
|
|
||||||
if (depth != 0) {
|
|
||||||
assert(innerFrameType);
|
|
||||||
// Add frame pointer types for all but last frame
|
|
||||||
if (depth > 1) {
|
|
||||||
for (unsigned i = 0; i < (depth - 1); ++i) {
|
|
||||||
types.push_back(innerFrameType->getElementType(i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Add frame pointer type for last frame
|
|
||||||
types.push_back(LLPointerType::getUnqual(innerFrameType));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Logger::enabled()) {
|
|
||||||
Logger::println("Frame types: ");
|
|
||||||
LOG_SCOPE;
|
|
||||||
for (TypeVec::iterator i = types.begin(); i != types.end(); ++i)
|
|
||||||
Logger::cout() << **i << '\n';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add the direct nested variables of this function, and update their indices to match.
|
|
||||||
// TODO: optimize ordering for minimal space usage?
|
|
||||||
for (std::set<VarDeclaration*>::iterator i=fd->nestedVars.begin(); i!=fd->nestedVars.end(); ++i)
|
|
||||||
{
|
|
||||||
VarDeclaration* vd = *i;
|
|
||||||
if (!vd->ir.irLocal)
|
|
||||||
vd->ir.irLocal = new IrLocal(vd);
|
|
||||||
|
|
||||||
vd->ir.irLocal->nestedIndex = types.size();
|
|
||||||
vd->ir.irLocal->nestedDepth = depth;
|
|
||||||
if (vd->isParameter()) {
|
|
||||||
// Parameters already have storage associated with them (to handle byref etc.),
|
|
||||||
// so handle those cases specially by storing a pointer instead of a value.
|
|
||||||
assert(vd->ir.irLocal->value);
|
|
||||||
LLValue* value = vd->ir.irLocal->value;
|
|
||||||
const LLType* type = value->getType();
|
|
||||||
if (llvm::isa<llvm::AllocaInst>(value->getUnderlyingObject()))
|
|
||||||
// This will be copied to the nesting frame.
|
|
||||||
type = type->getContainedType(0);
|
|
||||||
types.push_back(type);
|
|
||||||
} else if (vd->isRef() || vd->isOut()) {
|
|
||||||
// Foreach variables can also be by reference, for instance.
|
|
||||||
types.push_back(DtoType(vd->type->pointerTo()));
|
|
||||||
} else {
|
|
||||||
types.push_back(DtoType(vd->type));
|
|
||||||
}
|
|
||||||
if (Logger::enabled()) {
|
|
||||||
Logger::println("Nested var: %s", vd->toChars());
|
|
||||||
Logger::cout() << "of type: " << *types.back() << '\n';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const LLStructType* frameType = LLStructType::get(gIR->context(), types);
|
|
||||||
gIR->module->addTypeName(std::string("nest.") + fd->toChars(), frameType);
|
|
||||||
|
|
||||||
Logger::cout() << "frameType = " << *frameType << '\n';
|
|
||||||
|
|
||||||
// Store type in IrFunction
|
|
||||||
IrFunction* irfunction = fd->ir.irFunc;
|
IrFunction* irfunction = fd->ir.irFunc;
|
||||||
irfunction->frameType = frameType;
|
unsigned depth = irfunction->depth;
|
||||||
|
const llvm::StructType *frameType = irfunction->frameType;
|
||||||
// Create frame for current function and append to frames list
|
// Create frame for current function and append to frames list
|
||||||
// FIXME: For D2, this should be a gc_malloc (or similar) call, not alloca
|
// FIXME: For D2, this should be a gc_malloc (or similar) call, not alloca
|
||||||
// (Note that it'd also require more aggressive copying of
|
// (Note that it'd also require more aggressive copying of
|
||||||
|
@ -522,7 +569,7 @@ void DtoCreateNestedContext(FuncDeclaration* fd) {
|
||||||
getABITypeAlign(getVoidPtrType()));
|
getABITypeAlign(getVoidPtrType()));
|
||||||
}
|
}
|
||||||
// Copy nestArg into framelist; the outer frame is not in the list of pointers
|
// Copy nestArg into framelist; the outer frame is not in the list of pointers
|
||||||
src = DtoBitCast(src, types[depth-1]);
|
src = DtoBitCast(src, frameType->getContainedType(depth-1));
|
||||||
LLValue* gep = DtoGEPi(frame, 0, depth-1);
|
LLValue* gep = DtoGEPi(frame, 0, depth-1);
|
||||||
DtoAlignedStore(src, gep);
|
DtoAlignedStore(src, gep);
|
||||||
}
|
}
|
||||||
|
|
|
@ -144,6 +144,7 @@ IrFunction::IrFunction(FuncDeclaration* fd)
|
||||||
nestedVar = NULL;
|
nestedVar = NULL;
|
||||||
frameType = NULL;
|
frameType = NULL;
|
||||||
depth = -1;
|
depth = -1;
|
||||||
|
nestedContextCreated = false;
|
||||||
|
|
||||||
_arguments = NULL;
|
_arguments = NULL;
|
||||||
_argptr = NULL;
|
_argptr = NULL;
|
||||||
|
|
|
@ -93,6 +93,7 @@ struct IrFunction : IrBase
|
||||||
// number of enclosing functions with variables accessed by nested functions
|
// number of enclosing functions with variables accessed by nested functions
|
||||||
// (-1 if neither this function nor any enclosing ones access variables from enclosing functions)
|
// (-1 if neither this function nor any enclosing ones access variables from enclosing functions)
|
||||||
int depth;
|
int depth;
|
||||||
|
bool nestedContextCreated; // holds whether nested context is created
|
||||||
|
|
||||||
llvm::Value* _arguments;
|
llvm::Value* _arguments;
|
||||||
llvm::Value* _argptr;
|
llvm::Value* _argptr;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue