view dmd/TypeInfoSharedDeclaration.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 acd69f84627e
children af724d3510d7
line wrap: on
line source

module dmd.TypeInfoSharedDeclaration;

import dmd.common;
import dmd.Type;
import dmd.TypeInfoDeclaration;
import dmd.backend.dt_t;
import dmd.backend.Util;
import dmd.backend.TYM;

version(DMDV2)
class TypeInfoSharedDeclaration : TypeInfoDeclaration
{
	this(Type tinfo)
	{
		super(tinfo, 0);
		type = Type.typeinfoshared.type;
	}

	override void toDt(dt_t** pdt)
	{
		// writef("TypeInfoSharedDeclaration::toDt() %s\n", toChars());
		dtxoff(pdt, Type.typeinfoshared.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Shared
		dtdword(pdt, 0);				// monitor
		Type tm = tinfo.unSharedOf();
		tm = tm.merge();
		tm.getTypeInfo(null);
		dtxoff(pdt, tm.vtinfo.toSymbol(), 0, TYnptr);
	}
}