mirror of
https://git.savannah.gnu.org/git/gperf.git
synced 2025-12-02 21:19:24 +00:00
125 lines
4.6 KiB
C++
125 lines
4.6 KiB
C++
/* This may look like C code, but it is really -*- C++ -*- */
|
|
|
|
/* Output routines.
|
|
|
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
|
and Bruno Haible <bruno@clisp.org>.
|
|
|
|
This file is part of GNU GPERF.
|
|
|
|
GNU GPERF 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.
|
|
|
|
GNU GPERF 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; see the file COPYING.
|
|
If not, write to the Free Software Foundation, Inc.,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef output_h
|
|
#define output_h 1
|
|
|
|
#include "keyword-list.h"
|
|
|
|
/* OSF/1 cxx needs these forward declarations. */
|
|
struct Output_Constants;
|
|
struct Output_Compare;
|
|
|
|
class Output
|
|
{
|
|
public:
|
|
/* Constructor. */
|
|
Output (KeywordExt_List *head,
|
|
const char *array_type,
|
|
const char *return_type,
|
|
const char *struct_tag,
|
|
bool additional_code,
|
|
const char *include_src,
|
|
int total_keys,
|
|
int total_duplicates,
|
|
int max_key_len, int min_key_len,
|
|
int alpha_size,
|
|
const int *occurrences,
|
|
const int *asso_values);
|
|
|
|
/* Generates the hash function and the key word recognizer function. */
|
|
void output ();
|
|
|
|
private:
|
|
|
|
/* Computes the minimum and maximum hash values, and stores them
|
|
in _min_hash_value and _max_hash_value. */
|
|
void compute_min_max ();
|
|
|
|
/* Returns the number of different hash values. */
|
|
int num_hash_values () const;
|
|
|
|
/* Outputs the maximum and minimum hash values etc. */
|
|
void output_constants (struct Output_Constants&) const;
|
|
|
|
/* Generates C code for the hash function that returns the
|
|
proper encoding for each keyword. */
|
|
void output_hash_function () const;
|
|
|
|
/* Prints out a table of keyword lengths, for use with the
|
|
comparison code in generated function 'in_word_set'. */
|
|
void output_keylength_table () const;
|
|
|
|
/* Prints out the array containing the keywords for the hash function. */
|
|
void output_keyword_table () const;
|
|
|
|
/* Generates the large, sparse table that maps hash values into
|
|
the smaller, contiguous range of the keyword table. */
|
|
void output_lookup_array () const;
|
|
|
|
/* Generate all the tables needed for the lookup function. */
|
|
void output_lookup_tables () const;
|
|
|
|
/* Generates C code to perform the keyword lookup. */
|
|
void output_lookup_function_body (const struct Output_Compare&) const;
|
|
|
|
/* Generates C code for the lookup function. */
|
|
void output_lookup_function () const;
|
|
|
|
/* Linked list of keywords. */
|
|
KeywordExt_List * _head;
|
|
|
|
/* Pointer to the type for word list. */
|
|
const char * const _array_type;
|
|
/* Pointer to return type for lookup function. */
|
|
const char * _return_type;
|
|
/* Shorthand for user-defined struct tag type. */
|
|
const char * _struct_tag;
|
|
/* True if any additional C code is included. */
|
|
bool const _additional_code;
|
|
/* C source code to be included verbatim. */
|
|
const char * const _include_src;
|
|
/* Total number of keys, counting duplicates. */
|
|
int const _total_keys;
|
|
/* Total number of duplicate hash values. */
|
|
int const _total_duplicates;
|
|
/* Maximum length of the longest keyword. */
|
|
int const _max_key_len;
|
|
/* Minimum length of the shortest keyword. */
|
|
int const _min_key_len;
|
|
/* Minimum hash value for all keywords. */
|
|
int _min_hash_value;
|
|
/* Maximum hash value for all keywords. */
|
|
int _max_hash_value;
|
|
/* Size of alphabet. */
|
|
int const _alpha_size;
|
|
/* Counts occurrences of each key set character. */
|
|
const int * const _occurrences;
|
|
/* Value associated with each character. */
|
|
const int * const _asso_values;
|
|
};
|
|
|
|
#endif
|