view dmd/TypeInfoConstDeclaration.d @ 175:94b6033c07f3

get rid of globals malloc -> GC.malloc
author korDen
date Sun, 10 Oct 2010 03:48:06 +0400
parents af724d3510d7
children e3afd1303184
line wrap: on
line source

module dmd.TypeInfoConstDeclaration;

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

version(DMDV2)
class TypeInfoConstDeclaration : TypeInfoDeclaration
{
	this(Type tinfo)
	{
		super(tinfo, 0);
	    type = global.typeinfoconst.type;
	}

	override void toDt(dt_t** pdt)
	{
		//printf("TypeInfoConstDeclaration.toDt() %s\n", toChars());
		dtxoff(pdt, global.typeinfoconst.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Const
		dtdword(pdt, 0);			    // monitor
		Type tm = tinfo.mutableOf();
		tm = tm.merge();
		tm.getTypeInfo(null);
		dtxoff(pdt, tm.vtinfo.toSymbol(), 0, TYnptr);
	}
}