| 1 | /* GNU m4 -- A simple macro processor
|
|---|
| 2 |
|
|---|
| 3 | Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 2003, 2006 Free
|
|---|
| 4 | Software Foundation, Inc.
|
|---|
| 5 |
|
|---|
| 6 | This program is free software; you can redistribute it and/or modify
|
|---|
| 7 | it under the terms of the GNU General Public License as published by
|
|---|
| 8 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 9 | (at your option) any later version.
|
|---|
| 10 |
|
|---|
| 11 | This program is distributed in the hope that it will be useful,
|
|---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 14 | GNU General Public License for more details.
|
|---|
| 15 |
|
|---|
| 16 | You should have received a copy of the GNU General Public License
|
|---|
| 17 | along with this program; if not, write to the Free Software
|
|---|
| 18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|---|
| 19 | 02110-1301 USA
|
|---|
| 20 | */
|
|---|
| 21 |
|
|---|
| 22 | /* This file handles all the low level work around the symbol table. The
|
|---|
| 23 | symbol table is a simple chained hash table. Each symbol is described
|
|---|
| 24 | by a struct symbol, which is placed in the hash table based upon the
|
|---|
| 25 | symbol name. Symbols that hash to the same entry in the table are
|
|---|
| 26 | kept on a list, sorted by name. As a special case, to facilitate the
|
|---|
| 27 | "pushdef" and "popdef" builtins, a symbol can be several times in the
|
|---|
| 28 | symbol table, one for each definition. Since the name is the same,
|
|---|
| 29 | all the entries for the symbol will be on the same list, and will
|
|---|
| 30 | also, because the list is sorted, be adjacent. All the entries for a
|
|---|
| 31 | name are simply ordered on the list by age. The current definition
|
|---|
| 32 | will then always be the first found. */
|
|---|
| 33 |
|
|---|
| 34 | #include "m4.h"
|
|---|
| 35 | #include <limits.h>
|
|---|
| 36 |
|
|---|
| 37 | #ifdef DEBUG_SYM
|
|---|
| 38 | /* When evaluating hash table performance, this profiling code shows
|
|---|
| 39 | how many collisions were encountered. */
|
|---|
| 40 |
|
|---|
| 41 | struct profile
|
|---|
|
|---|