view dmd/VoidInitializer.d @ 114:e28b18c23469

added a module dmd.common for commonly used stuff it currently holds code for consistency checking of predefined versions also added a VisualD project file
author Trass3r
date Wed, 01 Sep 2010 18:21:58 +0200
parents 2e2a5c3f943a
children af724d3510d7
line wrap: on
line source

module dmd.VoidInitializer;

import dmd.common;
import dmd.Initializer;
import dmd.Type;
import dmd.Loc;
import dmd.Scope;
import dmd.Expression;
import dmd.OutBuffer;
import dmd.HdrGenState;

import dmd.backend.dt_t;
import dmd.backend.Util;

class VoidInitializer : Initializer
{
    Type type = null;		// type that this will initialize to

    this(Loc loc)
	{
		super(loc);
	}
	
    override Initializer syntaxCopy()
	{
		return new VoidInitializer(loc);
	}
	
    override Initializer semantic(Scope sc, Type t)
	{
		//printf("VoidInitializer.semantic(t = %p)\n", t);
		type = t;
		return this;
	}
	
    override Expression toExpression()
	{
		assert(false);
	}
	
    override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}

    override dt_t* toDt()
	{
		/* Void initializers are set to 0, just because we need something
		 * to set them to in the static data segment.
		 */
		dt_t *dt = null;

		dtnzeros(&dt, cast(uint)type.size());
		return dt;
	}

    override VoidInitializer isVoidInitializer() { return this; }
}