Beispiel #1
0
        private bool Dump(ISeq <Statement> statements, MachineState state, int skip, int i)
        {
            if (statements == null)
            {
                return(Failed(false, "eval in flush"));
            }

            var id   = state.PeekId(stack.Count - (1 + skip) - i, gensym);
            var cell = new VariableCell(id);
            var read = stack[i].Expression as ReadExpression;

            if (read == null || !read.Address.Equals(cell.AddressOf()))
            {
                // Ok if id already added as temporary
                compEnv.AddVariable(id, ArgLocal.Local, false, true, compEnv.SubstituteType(state.PeekType(stack.Count - (1 + skip) - i)));
                statements.Add(new ExpressionStatement(cell.Write(stack[i].Expression.CloneIfStruct(compEnv))));
            }
            // else: stack entry has not changed, so no need to save it
            return(true);
        }
Beispiel #2
0
 public override TypeRef Type(CompilationEnvironment compEnv)
 {
     return(compEnv.SubstituteType(ValueType));
 }