view dmd/SwitchErrorStatement.d @ 156:0c8cc2a10f99

+ ArrayInitializer.toAssocArrayLiteral() + FuncDeclaration.isUnique() + TypeEnum.alignsize() + TypeEnum.toChars() + TypeEnum.getProperty() + VarExp.equals() + expression.Util.fpunique() * fixed missing default in TypeBasic
author trass3r
date Wed, 15 Sep 2010 18:24:39 +0200
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.SwitchErrorStatement;

import dmd.common;
import dmd.Statement;
import dmd.OutBuffer;
import dmd.Loc;
import dmd.IRState;
import dmd.HdrGenState;
import dmd.BE;

import dmd.backend.elem;
import dmd.backend.Blockx;
import dmd.backend.Util;
import dmd.backend.TYM;
import dmd.backend.OPER;
import dmd.backend.RTLSYM;

class SwitchErrorStatement : Statement
{
	this(Loc loc)
	{
		super(loc);
	}

	override BE blockExit()
	{
		return BE.BEthrow;
	}

	override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		buf.writestring("SwitchErrorStatement.toCBuffer()");
		buf.writenl();
	}

	override void toIR(IRState* irs)
	{
		elem* e;
		elem* elinnum;
		elem* efilename;
		Blockx* blx = irs.blx;

		//printf("SwitchErrorStatement.toIR()\n");

		efilename = blx.module_.toEmodulename();
		elinnum = el_long(TYM.TYint, loc.linnum);
		e = el_bin(OPER.OPcall, TYM.TYvoid, el_var(rtlsym[RTLSYM_DSWITCHERR]), el_param(elinnum, efilename));
		block_appendexp(blx.curblock, e);
	}
}