/* * The contents of this file are subject to the Mozilla Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * The Initial Developer of this code is David Baum. * Portions created by David Baum are Copyright (C) 2000 David Baum. * All Rights Reserved. * * Portions created by John Hansen are Copyright (C) 2005 John Hansen. * All Rights Reserved. * */ #include #include "AssignMathStmt.h" #include "RCX_Cmd.h" #include "Bytecode.h" #include "Expr.h" #include "Error.h" AssignMathStmt::AssignMathStmt(Expr *lval, RCX_VarCode code, Expr * value) : AssignStmt(lval, value), fCode(code) { } void AssignMathStmt::EmitActual(Bytecode &b) { RCX_Value dst = fLval->EmitAny(b); if (RCX_VALUE_TYPE(dst) == kRCX_VariableType) { EmitOperation(b, RCX_VALUE_DATA(dst)); } else if (b.GetTarget()->fHasExtendedMathOps && (fCode != kRCX_IllegalVar)) { // this firmware supports math assignment to generic sources EmitValueOperation(b, dst); } else Error(kErr_NotSupported, "math assignment to non-vars").Raise(&fLval->GetLoc()); b.ReleaseTempEA(dst); } void AssignMathStmt::EmitOperation(Bytecode &b, int var) { RCX_Value ea = fValue->EmitMath(b); if (ea != Expr::kIllegalEA) { RCX_Cmd cmd; cmd.MakeVar(fCode, (UByte)var, ea); b.Add(cmd); b.ReleaseTempEA(ea); } } void AssignMathStmt::EmitValueOperation(Bytecode &b, RCX_Value dst) { RCX_Value ea = fValue->EmitMath(b); if (ea != Expr::kIllegalEA) { RCX_Cmd cmd; cmd.MakeSetMath(dst, ea, fCode); b.Add(cmd); b.ReleaseTempEA(ea); } } Stmt* AssignMathStmt::CloneActual(Mapping *m) const { return new AssignMathStmt(fLval->Clone(m), fCode, fValue->Clone(m)); }