view src/pt-misc.h @ 2086:bfb775fb6fe8

[project @ 1996-04-25 05:55:19 by jwe]
author jwe
date Thu, 25 Apr 1996 05:55:19 +0000
parents 003570e69c7b
children 97a566037a75
line wrap: on
line source

/*

Copyright (C) 1996 John W. Eaton

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.

Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

#if !defined (octave_tree_misc_h)
#define octave_tree_misc_h 1

#if defined (__GNUG__)
#pragma interface
#endif

class ostream;

class octave_value_list;
class octave_value;
class tree_command;
class tree_expression;
class tree_simple_assignment_expression;
class tree_index_expression;
class tree_identifier;
class symbol_record;
class symbol_table;

class tree_statement;
class tree_statement_list;
class tree_argument_list;
class tree_parameter_list;
class tree_return_list;
class tree_va_return_list;
class tree_global;
class tree_global_init_list;

#include <SLList.h>

#include "pt-base.h"

// A list of expressions and commands to be executed.

class
tree_statement : public tree_print_code
{
friend class tree_statement_list;

public:
  tree_statement (void)
    : tree_print_code (), command (0), expression (0), print_flag (true) { }

  tree_statement (tree_command *c)
    : tree_print_code (), command (c), expression (0), print_flag (true) { }

  tree_statement (tree_expression *e)
    : tree_print_code (), command (0), expression (e), print_flag (true) { }

  ~tree_statement (void);

  void set_print_flag (bool print)
    { print_flag = print; }

  bool is_command (void)
    { return command != 0; }

  bool is_expression (void)
    { return expression != 0; }

  int line (void);
  int column (void);

  void maybe_echo_code (bool);

  void print_code (ostream& os);

private:
  tree_command *command;	// Command to execute.
  tree_expression *expression;	// Command to execute.
  bool print_flag;		// Print result of eval for this command?
};

class
tree_statement_list : public SLList<tree_statement *>, public tree_print_code
{
public:
  tree_statement_list (void)
    : SLList<tree_statement *> (), tree_print_code (), function_body (false)
      { }

  tree_statement_list (tree_statement *s)
    : SLList<tree_statement *> (), tree_print_code (), function_body (false)
      { append (s); }

  ~tree_statement_list (void)
    {
      while (! empty ())
	{
	  tree_statement *t = remove_front ();
	  delete t;
	}
    }

  void mark_as_function_body (void) { function_body = true; }

  octave_value eval (bool print);

  octave_value_list eval (bool print, int nargout);

  void print_code (ostream& os);

private:
  bool function_body;
};

// Argument lists.  Used to hold the list of expressions that are the
// arguments in a function call or index expression.

class
tree_argument_list : public SLList<tree_expression *>, public tree_print_code
{
public:
  tree_argument_list (void)
    : SLList<tree_expression *> (), tree_print_code () { }

  tree_argument_list (tree_expression *t)
    : SLList<tree_expression *> (), tree_print_code ()
      { append (t); }

  ~tree_argument_list (void)
    {
      while (! empty ())
	{
	  tree_expression *t = remove_front ();
	  delete t;
	}
    }

  octave_value_list convert_to_const_vector (void);

  void print_code (ostream& os);
};

// Parameter lists.  Used to hold the list of input and output
// parameters in a function definition.  Elements are identifiers
// only.

class
tree_parameter_list : public SLList<tree_identifier *>, public tree_print_code
{
public:
  tree_parameter_list (void)
    : SLList<tree_identifier *> (), tree_print_code (),
      marked_for_varargs (0) { }

  tree_parameter_list (tree_identifier *t)
    : SLList<tree_identifier *> (), tree_print_code (),
      marked_for_varargs (0)
      { append (t); }

  ~tree_parameter_list (void);

//  char *name (void) const;

  void mark_as_formal_parameters (void);

  void mark_varargs (void)
    { marked_for_varargs = 1; }

  bool takes_varargs (void) const
    { return marked_for_varargs != 0; }

  void mark_varargs_only (void)
    { marked_for_varargs = -1; }

  bool varargs_only (void)
    { return (marked_for_varargs < 0); }

  void initialize_undefined_elements (octave_value& val);

  void define_from_arg_vector (const octave_value_list& args);

  bool is_defined (void);

  octave_value_list convert_to_const_vector (tree_va_return_list *vr_list);

  void print_code (ostream& os);

private:
  int marked_for_varargs;
};

// Return lists.  Used to hold the right hand sides of multiple
// assignment expressions.

class
tree_return_list : public SLList<tree_index_expression *>,
  public tree_print_code 
{
public:
  tree_return_list (void)
    : SLList<tree_index_expression *> (), tree_print_code () { }

  tree_return_list (tree_index_expression *t)
    : SLList<tree_index_expression *> (), tree_print_code ()
      { append (t); }

  ~tree_return_list (void);

  void print_code (ostream& os);
};

class
tree_va_return_list : public SLList<octave_value>
{
public:
  tree_va_return_list (void) : SLList<octave_value> () { }

  ~tree_va_return_list (void) { }
};

// List of expressions that make up a global statement.

class
tree_global : public tree_print_code
{
public:
  tree_global (void) : tree_print_code (), ident (0), assign_expr (0) { }

  tree_global (tree_identifier *id)
    : tree_print_code (), ident (id), assign_expr (0) { }

  tree_global (tree_simple_assignment_expression *ass)
    : tree_print_code (), ident (0), assign_expr (ass) { }

  ~tree_global (void);

  void eval (void);

  void print_code (ostream& os);

private:
  tree_identifier *ident;
  tree_simple_assignment_expression *assign_expr;
};

class
tree_global_init_list : public SLList<tree_global *>, public tree_print_code
{
public:
  tree_global_init_list (void)
    : SLList<tree_global *> (), tree_print_code () { }

  tree_global_init_list (tree_global *t)
    : SLList<tree_global *> (), tree_print_code ()
      { append (t); }

  ~tree_global_init_list (void)
    {
      while (! empty ())
	{
	  tree_global *t = remove_front ();
	  delete t;
	}
    }

  void eval (void);

  void print_code (ostream& os);
};

class
tree_if_clause : public tree_print_code
{
public:
  tree_if_clause (void) : tree_print_code (), expr (0), list (0) { }

  tree_if_clause (tree_statement_list *l)
    : tree_print_code (), expr (0), list (l) { }

  tree_if_clause (tree_expression *e, tree_statement_list *l)
    : tree_print_code (), expr (e), list (l) { }

  ~tree_if_clause (void);

  bool is_else_clause (void)
    { return ! expr; }

  int eval (void);

  void print_code (ostream& os);

private:
  tree_expression *expr;
  tree_statement_list *list;
};

class
tree_if_command_list : public SLList<tree_if_clause *>, public tree_print_code
{
public:
  tree_if_command_list (void)
    : SLList<tree_if_clause *> (), tree_print_code () { }

  tree_if_command_list (tree_if_clause *t)
    : SLList<tree_if_clause *> (), tree_print_code ()
      { append (t); }

  ~tree_if_command_list (void)
    {
      while (! empty ())
	{
	  tree_if_clause *t = remove_front ();
	  delete t;
	}
    }

  void eval (void);

  void print_code (ostream& os);
};

#endif

/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/