view dmd/TypeInfoFunctionDeclaration.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.TypeInfoFunctionDeclaration;

import dmd.common;
import dmd.Type;
import dmd.Global;
import dmd.TypeInfoDeclaration;
import dmd.TypeFunction;
import dmd.TY;

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

class TypeInfoFunctionDeclaration : TypeInfoDeclaration
{
	this(Type tinfo)
	{
		super(tinfo, 0);
        type = global.typeinfofunction.type;
	}

	override void toDt(dt_t** pdt)
	{
		//printf("TypeInfoFunctionDeclaration.toDt()\n");
		dtxoff(pdt, global.typeinfofunction.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfo_Function
		dtdword(pdt, 0);			    // monitor

		assert(tinfo.ty == Tfunction);

		TypeFunction tc = cast(TypeFunction)tinfo;

		tc.next.getTypeInfo(null);
		dtxoff(pdt, tc.next.vtinfo.toSymbol(), 0, TYnptr); // TypeInfo for function return value
	}
}