Package anvil.script.expression

Source Code of anvil.script.expression.UnaryNegateNode

/*
* $Id: UnaryNegateNode.java,v 1.6 2002/09/16 08:05:05 jkl Exp $
*
* Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
*
* Use is subject to license terms, as defined in
* Anvil Sofware License, Version 1.1. See LICENSE
* file, or http://njet.org/license-1.1.txt
*/
package anvil.script.expression;

import anvil.core.Any;
import anvil.codec.Code;
import anvil.script.compiler.ByteCompiler;
import anvil.script.Context;
import java.io.IOException;

/**
* class UnaryNegateNode
*
* @author: Jani Lehtim�ki
*/
public class UnaryNegateNode extends UnaryParent
{

  public UnaryNegateNode(Node child)
  {
    super(child);
  }


  public int typeOf()
  {
    return Node.EXPR_NOT; 
  }
 

  public Node optimize()
  {
    int count = 1;
    Node child = _child;
    while(child.typeOf() == EXPR_NOT) {
      count++;
      child = ((UnaryNegateNode)child).getChild();
    }
    if (count % 2 == 0) {
      return child;
    } else {
      _child = child;
      return this;
    }
  }
 
  public Any eval()
  {
    return _child.eval().not();
  }


  public void compile(ByteCompiler context, int operation)
  {
    Code code = context.getCode();
    if (operation == GET_BOOLEAN) {
      _child.compile(context, GET_BOOLEAN);
      code.iconst(1);
      code.ixor();
    } else {
      _child.compile(context, GET);
      code.invokevirtual(code.getPool().addMethodRef(context.TYPE_ANY,
        "not", "()Lanvil/core/Any;"));
    }
  }

}
TOP

Related Classes of anvil.script.expression.UnaryNegateNode

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.