view dmd/TypeInfoTupleDeclaration.d @ 72:2e2a5c3f943a

reduced warnings by adding override to the methods think this also normalizes different line endings used all over the place
author Trass3r
date Sat, 28 Aug 2010 16:19:48 +0200
parents f708f0452e81
children ef02e2e203c2
line wrap: on
line source

module dmd.TypeInfoTupleDeclaration;

import dmd.Type;
import dmd.TypeInfoDeclaration;
import dmd.WANT;
import dmd.TypeTuple;
import dmd.Argument;
import dmd.Expression;
import dmd.TY;
import dmd.backend.TYM;
import dmd.backend.Symbol;
import dmd.backend.dt_t;
import dmd.backend.Util;
import dmd.codegen.Util;

class TypeInfoTupleDeclaration : TypeInfoDeclaration
{
    this(Type tinfo)
	{
		super(tinfo, 0);
	}

    override void toDt(dt_t **pdt)
	{
		//printf("TypeInfoTupleDeclaration.toDt() %s\n", tinfo.toChars());
		dtxoff(pdt, Type.typeinfotypelist.toVtblSymbol(), 0, TYnptr); // vtbl for TypeInfoInterface
		dtdword(pdt, 0);			    // monitor

		assert(tinfo.ty == Ttuple);

		TypeTuple tu = cast(TypeTuple)tinfo;

		size_t dim = tu.arguments.dim;
		dtdword(pdt, dim);			    // elements.length

		dt_t* d = null;
		for (size_t i = 0; i < dim; i++)
		{	
			Argument arg = cast(Argument)tu.arguments.data[i];
			Expression e = arg.type.getTypeInfo(null);
			e = e.optimize(WANTvalue);
			e.toDt(&d);
		}

		Symbol *s;
		s = static_sym();
		s.Sdt = d;
		outdata(s);

		dtxoff(pdt, s, 0, TYnptr);		    // elements.ptr
	}
}