110 lines
2.9 KiB
C++
110 lines
2.9 KiB
C++
|
|
/*
|
||
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
||
|
|
*
|
||
|
|
* 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
|
||
|
|
*/
|
||
|
|
#if !defined(WINNT)
|
||
|
|
#ident "$Id: vpi_scope.cc,v 1.1 2001/03/18 00:37:55 steve Exp $"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
# include "compile.h"
|
||
|
|
# include "vpi_priv.h"
|
||
|
|
# include "symbols.h"
|
||
|
|
# include <malloc.h>
|
||
|
|
# include <assert.h>
|
||
|
|
|
||
|
|
static symbol_table_t scope_table = 0;
|
||
|
|
static struct __vpiScope*current_scope = 0;
|
||
|
|
|
||
|
|
static void attach_to_scope_(struct __vpiScope*scope, vpiHandle obj)
|
||
|
|
{
|
||
|
|
assert(scope);
|
||
|
|
unsigned idx = scope->nintern++;
|
||
|
|
|
||
|
|
if (scope->intern == 0)
|
||
|
|
scope->intern = (vpiHandle*)
|
||
|
|
malloc(sizeof(vpiHandle));
|
||
|
|
else
|
||
|
|
scope->intern = (vpiHandle*)
|
||
|
|
realloc(scope->intern, sizeof(vpiHandle)*scope->nintern);
|
||
|
|
|
||
|
|
scope->intern[idx] = obj;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* When the compiler encounters a scope declaration, this function
|
||
|
|
* creates and initializes a __vpiScope object with the requested name
|
||
|
|
* and within the addressed parent. The label is used as a key in the
|
||
|
|
* symbol table and the name is used to construct the actual object.
|
||
|
|
*/
|
||
|
|
void compile_scope_decl(char*label, char*name, char*parent)
|
||
|
|
{
|
||
|
|
struct __vpiScope*scope = (struct __vpiScope*)
|
||
|
|
malloc(sizeof(struct __vpiScope));
|
||
|
|
scope->name = name;
|
||
|
|
scope->intern = 0;
|
||
|
|
scope->nintern = 0;
|
||
|
|
|
||
|
|
current_scope = scope;
|
||
|
|
|
||
|
|
symbol_value_t val;
|
||
|
|
val.ptr = scope;
|
||
|
|
sym_set_value(scope_table, label, val);
|
||
|
|
free(label);
|
||
|
|
|
||
|
|
if (parent) {
|
||
|
|
val = sym_get_value(scope_table, parent);
|
||
|
|
struct __vpiScope*sp = (struct __vpiScope*) val.ptr;
|
||
|
|
attach_to_scope_(sp, &scope->base);
|
||
|
|
free(parent);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void compile_scope_recall(char*symbol)
|
||
|
|
{
|
||
|
|
symbol_value_t val = sym_get_value(scope_table, symbol);
|
||
|
|
current_scope = (struct __vpiScope*)val.ptr;
|
||
|
|
free(symbol);
|
||
|
|
}
|
||
|
|
|
||
|
|
vpiHandle vpip_peek_current_scope(void)
|
||
|
|
{
|
||
|
|
return ¤t_scope->base;
|
||
|
|
}
|
||
|
|
|
||
|
|
void vpip_attach_to_current_scope(vpiHandle obj)
|
||
|
|
{
|
||
|
|
attach_to_scope_(current_scope, obj);
|
||
|
|
}
|
||
|
|
|
||
|
|
void scope_init(void)
|
||
|
|
{
|
||
|
|
scope_table = new_symbol_table();
|
||
|
|
}
|
||
|
|
|
||
|
|
void scope_cleanup(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/*
|
||
|
|
* $Log: vpi_scope.cc,v $
|
||
|
|
* Revision 1.1 2001/03/18 00:37:55 steve
|
||
|
|
* Add support for vpi scopes.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|