view dmd/TypeInfoFunctionDeclaration.d @ 178:e3afd1303184

Many small bugs fixed Made all classes derive from TObject to detect memory leaks (functionality is disabled for now) Began work on overriding backend memory allocations (to avoid memory leaks)
author korDen
date Sun, 17 Oct 2010 07:42:00 +0400
parents af724d3510d7
children b0d41ff5e0df
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)
	{
		register();
		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
	}
}