2001-03-19 02:20:46 +01:00
|
|
|
#ifndef __vvp_priv_H
|
|
|
|
|
#define __vvp_priv_H
|
|
|
|
|
/*
|
2005-07-13 06:52:31 +02:00
|
|
|
* Copyright (c) 2001-2005 Stephen Williams (steve@icarus.com)
|
2001-03-19 02:20:46 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2006-02-02 03:43:57 +01:00
|
|
|
#ident "$Id: vvp_priv.h,v 1.40 2006/02/02 02:43:59 steve Exp $"
|
2001-03-19 02:20:46 +01:00
|
|
|
#endif
|
|
|
|
|
|
2004-01-20 22:00:47 +01:00
|
|
|
# include "vvp_config.h"
|
2001-03-19 02:20:46 +01:00
|
|
|
# include "ivl_target.h"
|
|
|
|
|
# include <stdio.h>
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The target_design entry opens the output file that receives the
|
|
|
|
|
* compiled design, and sets the vvp_out to the descripter.
|
|
|
|
|
*/
|
|
|
|
|
extern FILE* vvp_out;
|
|
|
|
|
|
2001-06-18 05:10:34 +02:00
|
|
|
/*
|
|
|
|
|
* Mangle all non-symbol characters in an identifier, quotes in names
|
|
|
|
|
*/
|
|
|
|
|
extern const char *vvp_mangle_id(const char *);
|
|
|
|
|
extern const char *vvp_mangle_name(const char *);
|
|
|
|
|
|
2002-08-04 00:30:48 +02:00
|
|
|
/*
|
|
|
|
|
* This generates a string from a signal that uniquely identifies
|
|
|
|
|
* that signal with letters that can be used in a label.
|
2005-10-12 19:26:17 +02:00
|
|
|
*
|
|
|
|
|
* NOTE: vvp_signal_label should be removed. All it does is a %p of
|
|
|
|
|
* the pointer, and return a pointer to a static. The code that wants
|
|
|
|
|
* to reference a signal needs to use the format V_%p, so the presence
|
|
|
|
|
* of this function is just plain inconsistent.
|
2002-08-04 00:30:48 +02:00
|
|
|
*/
|
|
|
|
|
extern const char* vvp_signal_label(ivl_signal_t sig);
|
|
|
|
|
|
2005-09-01 06:11:37 +02:00
|
|
|
extern unsigned width_of_nexus(ivl_nexus_t nex);
|
|
|
|
|
extern ivl_variable_type_t data_type_of_nexus(ivl_nexus_t nex);
|
|
|
|
|
|
2001-03-19 02:20:46 +01:00
|
|
|
/*
|
|
|
|
|
* This function draws a process (initial or always) into the output
|
2001-03-27 05:31:06 +02:00
|
|
|
* file. It normally returns 0, but returns !0 of there is some sort
|
|
|
|
|
* of error.
|
2001-03-19 02:20:46 +01:00
|
|
|
*/
|
|
|
|
|
extern int draw_process(ivl_process_t net, void*x);
|
|
|
|
|
|
2001-04-02 04:28:12 +02:00
|
|
|
extern int draw_task_definition(ivl_scope_t scope);
|
2001-04-06 04:28:02 +02:00
|
|
|
extern int draw_func_definition(ivl_scope_t scope);
|
2001-04-02 04:28:12 +02:00
|
|
|
|
2001-03-21 02:49:43 +01:00
|
|
|
extern int draw_scope(ivl_scope_t scope, ivl_scope_t parent);
|
|
|
|
|
|
2002-07-08 06:04:07 +02:00
|
|
|
extern void draw_lpm_mux(ivl_lpm_t net);
|
|
|
|
|
|
2005-07-13 06:52:31 +02:00
|
|
|
extern struct vector_info draw_ufunc_expr(ivl_expr_t exp, unsigned wid);
|
|
|
|
|
extern int draw_ufunc_real(ivl_expr_t exp);
|
|
|
|
|
|
2003-02-28 21:21:13 +01:00
|
|
|
/*
|
|
|
|
|
* This function draws the execution of a vpi_call statement, along
|
|
|
|
|
* with the tricky handling of arguments. If this is called with a
|
|
|
|
|
* statement handle, it will generate a %vpi_call
|
|
|
|
|
* instruction. Otherwise, it will generate a %vpi_func instruction.
|
|
|
|
|
*/
|
2003-03-15 05:45:18 +01:00
|
|
|
extern void draw_vpi_task_call(ivl_statement_t net);
|
|
|
|
|
|
|
|
|
|
extern struct vector_info draw_vpi_func_call(ivl_expr_t exp,
|
|
|
|
|
unsigned wid);
|
|
|
|
|
extern int draw_vpi_rfunc_call(ivl_expr_t exp);
|
2003-02-28 21:21:13 +01:00
|
|
|
|
2001-03-27 08:27:40 +02:00
|
|
|
/*
|
|
|
|
|
* Given a nexus, draw a string that represents the functor output
|
|
|
|
|
* that feeds the nexus. This function can be used to get the input to
|
|
|
|
|
* a functor, event, or even a %load in cases where I have the
|
2005-08-06 19:58:16 +02:00
|
|
|
* ivl_nexus_t object. The draw_net_input function will get the string
|
|
|
|
|
* cached in the nexus, if there is one, or will generate a string and
|
|
|
|
|
* cache it.
|
2001-03-27 08:27:40 +02:00
|
|
|
*/
|
2001-11-01 05:26:57 +01:00
|
|
|
extern const char* draw_net_input(ivl_nexus_t nex);
|
2001-03-22 06:06:21 +01:00
|
|
|
|
2005-10-12 19:26:17 +02:00
|
|
|
/*
|
|
|
|
|
* This function is different from draw_net_input in that it will
|
|
|
|
|
* return a reference to a net as its first choice. This reference
|
|
|
|
|
* will follow the net value, even if the net is assigned or
|
|
|
|
|
* forced. The draw_net_input above will return a reference to the
|
|
|
|
|
* *input* to the net and so will not follow direct assignments to
|
|
|
|
|
* the net. This function will not return references to local signals,
|
|
|
|
|
* and will in those cases resort to the net input, or a non-local
|
|
|
|
|
* signal if one exists for the nexus.
|
|
|
|
|
*/
|
|
|
|
|
extern const char*draw_input_from_net(ivl_nexus_t nex);
|
|
|
|
|
|
2001-03-22 06:06:21 +01:00
|
|
|
/*
|
|
|
|
|
* The draw_eval_expr function writes out the code to evaluate a
|
|
|
|
|
* behavioral expression.
|
2001-03-31 19:36:38 +02:00
|
|
|
*
|
|
|
|
|
* Expression results are placed into a vector allocated in the bit
|
|
|
|
|
* space of the thread. The vector_info structure represents that
|
|
|
|
|
* allocation. When the caller is done with the bits, it must release
|
|
|
|
|
* the vector with clr_vector so that the code generator can reuse
|
|
|
|
|
* those bits.
|
2002-09-13 05:12:50 +02:00
|
|
|
*
|
2002-09-24 06:20:32 +02:00
|
|
|
* The stuff_ok_flag is normally empty. Bits in the bitmask are set
|
|
|
|
|
* true in cases where certain special situations are allows. This
|
|
|
|
|
* might allow deeper expressions to make assumptions about the
|
|
|
|
|
* caller.
|
|
|
|
|
*
|
|
|
|
|
* STUFF_OK_XZ -- This bit is set if the code processing the result
|
|
|
|
|
* doesn't distinguish between x and z values.
|
|
|
|
|
*
|
|
|
|
|
* STUFF_OK_47 -- This bit is set if the node is allowed to leave a
|
|
|
|
|
* result in any of the 4-7 vthread bits.
|
2005-09-17 03:01:00 +02:00
|
|
|
*
|
|
|
|
|
* STUFF_OK_RO -- This bit is set if the node is allowed to nest its
|
|
|
|
|
* allocation from vector. It is only true if the client is not
|
|
|
|
|
* planning to use this vector as an output. This matters only
|
|
|
|
|
* if the expression might be found in the lookaside table, and
|
|
|
|
|
* therefore might be multiply allocated if allowed.
|
2001-03-22 06:06:21 +01:00
|
|
|
*/
|
|
|
|
|
struct vector_info {
|
2003-06-17 21:17:42 +02:00
|
|
|
unsigned base;
|
|
|
|
|
unsigned wid;
|
2001-03-22 06:06:21 +01:00
|
|
|
};
|
|
|
|
|
|
2002-09-24 06:20:32 +02:00
|
|
|
extern struct vector_info draw_eval_expr(ivl_expr_t exp, int stuff_ok_flag);
|
2002-09-13 05:12:50 +02:00
|
|
|
extern struct vector_info draw_eval_expr_wid(ivl_expr_t exp, unsigned w,
|
2002-09-24 06:20:32 +02:00
|
|
|
int stuff_ok_flag);
|
|
|
|
|
#define STUFF_OK_XZ 0x0001
|
|
|
|
|
#define STUFF_OK_47 0x0002
|
2005-09-17 03:01:00 +02:00
|
|
|
#define STUFF_OK_RO 0x0004
|
2002-08-27 07:39:57 +02:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function draws code to evaluate the index expression exp for
|
|
|
|
|
* the memory mem. The result is loaded into index register i3, and
|
|
|
|
|
* the flag bit 4 is set to 0 if the numerical value is defined, or 1
|
|
|
|
|
* if not.
|
|
|
|
|
*/
|
2001-05-06 19:54:33 +02:00
|
|
|
extern void draw_memory_index_expr(ivl_memory_t mem, ivl_expr_t exp);
|
2001-03-31 19:36:38 +02:00
|
|
|
|
2006-02-02 03:43:57 +01:00
|
|
|
/*
|
|
|
|
|
* This evaluates an expression and leaves the result in the numbered
|
|
|
|
|
* integer index register. It also will set bit-4 to 1 if the value is
|
|
|
|
|
* not fully defined (i.e. contains x or z).
|
|
|
|
|
*/
|
|
|
|
|
extern void draw_eval_expr_into_integer(ivl_expr_t expr, unsigned ix);
|
|
|
|
|
|
2002-09-27 18:33:34 +02:00
|
|
|
/*
|
|
|
|
|
* These functions manage vector allocation in the thread register
|
|
|
|
|
* space. They presume that we work on one thread at a time, to
|
|
|
|
|
* completion.
|
|
|
|
|
*
|
|
|
|
|
* allocate_vector
|
|
|
|
|
* Return the base of an allocated vector in the thread. The bits
|
|
|
|
|
* are marked allocated in the process.
|
|
|
|
|
*
|
2004-12-11 03:31:25 +01:00
|
|
|
* clr_vector
|
2002-09-27 18:33:34 +02:00
|
|
|
* Clear a vector previously allocated.
|
|
|
|
|
*
|
|
|
|
|
* The thread vector allocator also keeps a lookaside of expression
|
|
|
|
|
* results that are stored in register bit. This lookaside can be used
|
|
|
|
|
* by the code generator to notice that certain expression bits are
|
|
|
|
|
* already calculated, and can be reused.
|
|
|
|
|
*
|
|
|
|
|
* clear_expression_lookaside
|
2005-09-15 04:50:13 +02:00
|
|
|
* Clear the lookaside tables for the current thread. This must be
|
|
|
|
|
* called before starting a new thread, and around basic blocks
|
|
|
|
|
* that are entered from unknown places.
|
2002-09-27 18:33:34 +02:00
|
|
|
*
|
|
|
|
|
* save_expression_lookaside
|
|
|
|
|
* Mark the given expression as available in the given register
|
2005-09-15 04:50:13 +02:00
|
|
|
* bits. This remains until the lookaside is cleared. This does not
|
|
|
|
|
* clear the allocation, it is still necessary to call clr_vector.
|
2002-09-27 18:33:34 +02:00
|
|
|
*
|
2005-09-17 03:01:00 +02:00
|
|
|
* save_signal_lookaside
|
|
|
|
|
* Mark the given signal as available in the given register bits.
|
|
|
|
|
* This is different from a given expression, in that the signal
|
|
|
|
|
* lookaside is in addition to the expression lookaside. The signal
|
|
|
|
|
* lookaside is specifically to save on unnecessary loads of a
|
|
|
|
|
* signal recently written.
|
|
|
|
|
*
|
2002-09-27 18:33:34 +02:00
|
|
|
* allocate_vector_exp
|
|
|
|
|
* This function attempts to locate the expression in the
|
|
|
|
|
* lookaside. If it finds it, return a reallocated base for the
|
|
|
|
|
* expression. Otherwise, return 0.
|
2005-09-17 03:01:00 +02:00
|
|
|
*
|
|
|
|
|
* The allocate_vector and allocate_vector_exp calls must have
|
|
|
|
|
* matching call to clr_vector. Although the allocate_vector will
|
|
|
|
|
* never reallocate a vector already allocated, the allocate_vector_exp
|
|
|
|
|
* might, so it is possible for allocations to nest in that
|
|
|
|
|
* manner. The exclusive_flag to allocate_vector_exp will prevent
|
|
|
|
|
* nested allocations. This is needed where the expression result is
|
|
|
|
|
* expected to be overwritten.
|
2002-09-27 18:33:34 +02:00
|
|
|
*/
|
2003-06-17 21:17:42 +02:00
|
|
|
extern unsigned allocate_vector(unsigned wid);
|
2001-03-31 19:36:38 +02:00
|
|
|
extern void clr_vector(struct vector_info vec);
|
2001-03-22 06:06:21 +01:00
|
|
|
|
2002-09-27 18:33:34 +02:00
|
|
|
extern void clear_expression_lookaside(void);
|
2003-06-17 21:17:42 +02:00
|
|
|
extern void save_expression_lookaside(unsigned addr,
|
2002-09-27 18:33:34 +02:00
|
|
|
ivl_expr_t exp,
|
2003-06-17 21:17:42 +02:00
|
|
|
unsigned wid);
|
2005-09-17 03:01:00 +02:00
|
|
|
extern void save_signal_lookaside(unsigned addr,
|
|
|
|
|
ivl_signal_t sig,
|
|
|
|
|
unsigned wid);
|
2002-09-27 18:33:34 +02:00
|
|
|
|
2005-09-17 03:01:00 +02:00
|
|
|
extern unsigned allocate_vector_exp(ivl_expr_t exp, unsigned wid,
|
|
|
|
|
int exclusive_flag);
|
2002-09-27 18:33:34 +02:00
|
|
|
|
2002-06-02 20:57:17 +02:00
|
|
|
extern int number_is_unknown(ivl_expr_t ex);
|
|
|
|
|
extern int number_is_immediate(ivl_expr_t ex, unsigned lim_wid);
|
|
|
|
|
extern unsigned long get_number_immediate(ivl_expr_t ex);
|
|
|
|
|
|
2003-01-26 22:15:58 +01:00
|
|
|
/*
|
|
|
|
|
* draw_eval_real evaluates real value expressions. The return code
|
|
|
|
|
* from the function is the index of the word register that contains
|
|
|
|
|
* the result.
|
|
|
|
|
*/
|
|
|
|
|
extern int draw_eval_real(ivl_expr_t ex);
|
|
|
|
|
|
2005-09-14 04:53:13 +02:00
|
|
|
/*
|
|
|
|
|
* draw_eval_bool64 evaluates a bool expression. The return code from
|
|
|
|
|
* the function is the index of the word register that contains the
|
|
|
|
|
* result. The word is allocated widh allocate_word(), so the caller
|
|
|
|
|
* must arrange for it to be released with clr_word(). The width must
|
|
|
|
|
* be such that it fits in a 64bit word.
|
|
|
|
|
*/
|
|
|
|
|
extern int draw_eval_bool64(ivl_expr_t ex);
|
|
|
|
|
|
2003-01-26 22:15:58 +01:00
|
|
|
/*
|
|
|
|
|
* These functions manage word register allocation.
|
|
|
|
|
*/
|
|
|
|
|
extern int allocate_word(void);
|
|
|
|
|
extern void clr_word(int idx);
|
|
|
|
|
|
2001-05-17 06:37:02 +02:00
|
|
|
/*
|
|
|
|
|
* These are used to count labels as I generate code.
|
|
|
|
|
*/
|
|
|
|
|
extern unsigned local_count;
|
|
|
|
|
extern unsigned thread_count;
|
|
|
|
|
|
2001-03-19 02:20:46 +01:00
|
|
|
/*
|
|
|
|
|
* $Log: vvp_priv.h,v $
|
2006-02-02 03:43:57 +01:00
|
|
|
* Revision 1.40 2006/02/02 02:43:59 steve
|
|
|
|
|
* Allow part selects of memory words in l-values.
|
|
|
|
|
*
|
2005-10-12 19:26:17 +02:00
|
|
|
* Revision 1.39 2005/10/12 17:26:17 steve
|
|
|
|
|
* MUX nodes get inputs from nets, not from net inputs,
|
|
|
|
|
* Detect and draw alias nodes to reduce net size and
|
|
|
|
|
* handle force confusion.
|
|
|
|
|
*
|
2005-10-11 20:30:50 +02:00
|
|
|
* Revision 1.38 2005/10/11 18:30:50 steve
|
|
|
|
|
* Remove obsolete vvp_memory_label function.
|
|
|
|
|
*
|
2005-10-10 06:16:13 +02:00
|
|
|
* Revision 1.37 2005/10/10 04:16:13 steve
|
|
|
|
|
* Remove dead dram_input_from_net and lpm_inputs_a_b
|
|
|
|
|
*
|
2005-09-17 03:01:00 +02:00
|
|
|
* Revision 1.36 2005/09/17 01:01:00 steve
|
|
|
|
|
* More robust use of precalculated expressions, and
|
|
|
|
|
* Separate lookaside for written variables that can
|
|
|
|
|
* also be reused.
|
|
|
|
|
*
|
2005-09-15 04:50:13 +02:00
|
|
|
* Revision 1.35 2005/09/15 02:50:13 steve
|
|
|
|
|
* Preserve precalculated expressions when possible.
|
|
|
|
|
*
|
2005-09-14 04:53:13 +02:00
|
|
|
* Revision 1.34 2005/09/14 02:53:15 steve
|
|
|
|
|
* Support bool expressions and compares handle them optimally.
|
|
|
|
|
*
|
2005-09-01 06:11:37 +02:00
|
|
|
* Revision 1.33 2005/09/01 04:11:37 steve
|
|
|
|
|
* Generate code to handle real valued muxes.
|
|
|
|
|
*
|
2005-08-06 19:58:16 +02:00
|
|
|
* Revision 1.32 2005/08/06 17:58:16 steve
|
|
|
|
|
* Implement bi-directional part selects.
|
|
|
|
|
*
|
2005-07-13 06:52:31 +02:00
|
|
|
* Revision 1.31 2005/07/13 04:52:31 steve
|
|
|
|
|
* Handle functions with real values.
|
|
|
|
|
*
|
2005-07-11 18:56:50 +02:00
|
|
|
* Revision 1.30 2005/07/11 16:56:51 steve
|
|
|
|
|
* Remove NetVariable and ivl_variable_t structures.
|
|
|
|
|
*
|
2004-12-11 03:31:25 +01:00
|
|
|
* Revision 1.29 2004/12/11 02:31:28 steve
|
|
|
|
|
* Rework of internals to carry vectors through nexus instead
|
|
|
|
|
* of single bits. Make the ivl, tgt-vvp and vvp initial changes
|
|
|
|
|
* down this path.
|
|
|
|
|
*
|
2004-01-20 22:00:47 +01:00
|
|
|
* Revision 1.28 2004/01/20 21:00:47 steve
|
|
|
|
|
* Isolate configure from containing config.h
|
|
|
|
|
*
|
2003-06-17 21:17:42 +02:00
|
|
|
* Revision 1.27 2003/06/17 19:17:42 steve
|
|
|
|
|
* Remove short int restrictions from vvp opcodes.
|
|
|
|
|
*
|
2003-06-05 06:18:50 +02:00
|
|
|
* Revision 1.26 2003/06/05 04:18:50 steve
|
|
|
|
|
* Better width testing for thread vector allocation.
|
|
|
|
|
*
|
2003-03-15 05:45:18 +01:00
|
|
|
* Revision 1.25 2003/03/15 04:45:18 steve
|
|
|
|
|
* Allow real-valued vpi functions to have arguments.
|
|
|
|
|
*
|
2003-02-28 21:21:13 +01:00
|
|
|
* Revision 1.24 2003/02/28 20:21:13 steve
|
|
|
|
|
* Merge vpi_call and vpi_func draw functions.
|
|
|
|
|
*
|
2003-01-26 22:15:58 +01:00
|
|
|
* Revision 1.23 2003/01/26 21:16:00 steve
|
|
|
|
|
* Rework expression parsing and elaboration to
|
|
|
|
|
* accommodate real/realtime values and expressions.
|
|
|
|
|
*
|
2002-09-27 18:33:34 +02:00
|
|
|
* Revision 1.22 2002/09/27 16:33:34 steve
|
|
|
|
|
* Add thread expression lookaside map.
|
|
|
|
|
*
|
2002-09-24 06:20:32 +02:00
|
|
|
* Revision 1.21 2002/09/24 04:20:32 steve
|
|
|
|
|
* Allow results in register bits 47 in certain cases.
|
|
|
|
|
*
|
2002-09-13 05:12:50 +02:00
|
|
|
* Revision 1.20 2002/09/13 03:12:50 steve
|
|
|
|
|
* Optimize ==1 when in context where x vs z doesnt matter.
|
|
|
|
|
*
|
2002-08-27 07:39:57 +02:00
|
|
|
* Revision 1.19 2002/08/27 05:39:57 steve
|
|
|
|
|
* Fix l-value indexing of memories and vectors so that
|
|
|
|
|
* an unknown (x) index causes so cell to be addresses.
|
|
|
|
|
*
|
|
|
|
|
* Fix tangling of label identifiers in the fork-join
|
|
|
|
|
* code generator.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.18 2002/08/12 01:35:04 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-08-04 20:28:14 +02:00
|
|
|
* Revision 1.17 2002/08/04 18:28:15 steve
|
|
|
|
|
* Do not use hierarchical names of memories to
|
|
|
|
|
* generate vvp labels. -tdll target does not
|
|
|
|
|
* used hierarchical name string to look up the
|
|
|
|
|
* memory objects in the design.
|
|
|
|
|
*
|
2002-08-04 00:30:48 +02:00
|
|
|
* Revision 1.16 2002/08/03 22:30:48 steve
|
|
|
|
|
* Eliminate use of ivl_signal_name for signal labels.
|
|
|
|
|
*
|
2002-07-08 06:04:07 +02:00
|
|
|
* Revision 1.15 2002/07/08 04:04:07 steve
|
|
|
|
|
* Generate code for wide muxes.
|
|
|
|
|
*
|
2002-06-02 20:57:17 +02:00
|
|
|
* Revision 1.14 2002/06/02 18:57:17 steve
|
|
|
|
|
* Generate %cmpi/u where appropriate.
|
|
|
|
|
*
|
2002-04-22 04:41:30 +02:00
|
|
|
* Revision 1.13 2002/04/22 02:41:30 steve
|
|
|
|
|
* Reduce the while loop expression if needed.
|
|
|
|
|
*
|
2001-11-01 05:26:57 +01:00
|
|
|
* Revision 1.12 2001/11/01 04:26:57 steve
|
|
|
|
|
* Generate code for deassign and cassign.
|
|
|
|
|
*
|
2001-06-18 05:10:34 +02:00
|
|
|
* Revision 1.11 2001/06/18 03:10:34 steve
|
|
|
|
|
* 1. Logic with more than 4 inputs
|
|
|
|
|
* 2. Id and name mangling
|
|
|
|
|
* 3. A memory leak in draw_net_in_scope()
|
|
|
|
|
* (Stephan Boettcher)
|
2001-03-19 02:20:46 +01:00
|
|
|
*/
|
|
|
|
|
#endif
|