00001 /* 00002 00003 Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved. 00004 00005 This program is free software; you can redistribute it and/or modify it 00006 under the terms of version 2 of the GNU General Public License as 00007 published by the Free Software Foundation. 00008 00009 This program is distributed in the hope that it would be useful, but 00010 WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00012 00013 Further, this software is distributed without any warranty that it is 00014 free of the rightful claim of any third person regarding infringement 00015 or the like. Any license provided herein, whether implied or 00016 otherwise, applies only to this software file. Patent licenses, if 00017 any, provided herein do not apply to combinations of this program with 00018 other software, or any other product whatsoever. 00019 00020 You should have received a copy of the GNU General Public License along 00021 with this program; if not, write the Free Software Foundation, Inc., 59 00022 Temple Place - Suite 330, Boston MA 02111-1307, USA. 00023 00024 Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky, 00025 Mountain View, CA 94043, or: 00026 00027 http://www.sgi.com 00028 00029 For further information regarding this notice, see: 00030 00031 http://oss.sgi.com/projects/GenInfo/NoticeExplan 00032 00033 */ 00034 00035 00036 /* ==================================================================== 00037 * ==================================================================== 00038 * 00039 * Module: config_promp.h 00040 * $Revision: 1.1.1.1 $ 00041 * $Date: 2005/10/21 19:00:00 $ 00042 * $Author: marcel $ 00043 * $Source: /proj/osprey/CVS/open64/osprey1.0/common/com/config_promp.h,v $ 00044 * 00045 * Revision history: 00046 * 25-Mar-97 - Original Version 00047 * 00048 * Description: 00049 * 00050 * Define the external interface to the internal flags representing the 00051 * -PROMP group options. It is a single struct, so that addition of 00052 * flags for new options does not require additions to the be Exported 00053 * file. Since these options do not change on a per region basis, 00054 * there is no need for push/pop operations like other groups (such 00055 * as -LNO) support. 00056 * 00057 * NOTE: Only the standard group option reader, and routines in the 00058 * associated file config_promp.c, should modify the structs declared 00059 * here. By following this discipline, leaving a few undefined flags 00060 * at the end of the struct, and adding new flags there, we can avoid 00061 * serious version incompatibilities between be.so and its clients. 00062 * 00063 * ==================================================================== 00064 * 00065 * To add a new option: 00066 * 00067 * (On conversion from the old PROMP implementation, I tried to use 00068 * naming which was mostly like what had been used before, but 00069 * consistent. The instructions below reflect the results.) 00070 * 00071 * 1) In the PROMP_FLAGS options struct defined below, add a field to 00072 * receive the new option value. If you need a flag indicating 00073 * whether the option was set explicitly on the command line, add 00074 * a BOOL for that as well, with an appended "_set" in its name. 00075 * (You might also need another field if the option will be used 00076 * in a different form after configuration, i.e. the option value 00077 * is a string that is converted to a number. If so, add another 00078 * field.) 00079 * 00080 * The fields are starting out in alphabetical order by option 00081 * name. When adding new ones, keep in mind that adding them in 00082 * the middle will create a required correspondence between the 00083 * new be.so and lno.so (for purposes of using the later options). 00084 * That may be alright, but if you want to avoid it, add the new 00085 * fields just before the buffer at the end (and you can move 00086 * them into place later when it doesn't matter, if you care). 00087 * 00088 * 2) Below the PROMP_FLAGS definition are #defines for the 00089 * "PROMP_Option_Name" pseudo-variables that everyone will use to 00090 * reference them. Add #defines for your new ones. Note that 00091 * they all have PROMP_ prefixes. 00092 * 00093 * 3) There is only one instances of PROMP_FLAGS in config_promp.c. 00094 * We do not support pushing/popping of flag values based on 00095 * region boundaries (will we ever want to?). 00096 * 00097 * 4) The option group descriptor is also in config_promp.c. Add your 00098 * new option there. 00099 * 00100 * ==================================================================== 00101 * ==================================================================== 00102 */ 00103 00104 #ifndef config_promp_INCLUDED 00105 #define config_promp_INCLUDED 00106 00107 #ifdef _KEEP_RCS_ID 00108 /*REFERENCED*/ 00109 static char *config_promp_h_rcs_id = "$Source$ $Revision$"; 00110 #endif /* _KEEP_RCS_ID */ 00111 00112 #ifdef __cplusplus 00113 extern "C" { 00114 #endif /* __cplusplus */ 00115 00116 /* ==================================================================== 00117 * 00118 * -PROMP: option group 00119 * 00120 * Define the global structure containing -PROMP option group flags. 00121 * 00122 * WARNING: Most of the fields in this struct must be addressable by 00123 * an option group descriptor -- hence BOOL instead of mBOOL. 00124 * 00125 * ==================================================================== 00126 */ 00127 00128 00129 typedef struct promp_flags 00130 { 00131 BOOL enabled; /* Enabled? */ 00132 BOOL owhile; /* Emit construct descr for while loops */ 00133 BOOL show; /* Show progress of anl file generation */ 00134 const char *anl_filename; /* Name of output file */ 00135 const char *src_filename; /* Name of original source file */ 00136 UINT64 next_id; /* Id numbers start at this number */ 00137 00138 /* This buffer area allows references to new fields to be added in 00139 * later revisions, from other DSOs, without requiring a new be.so 00140 * or running the risk of referencing illegal data. Assuming that 00141 * the buffer is initialized to zeroes, any such references will 00142 * simply pick up FALSE values (for the Booleans): 00143 */ 00144 INT32 buffer[16]; /* Buffer space -- initialize to FALSE */ 00145 } PROMP_FLAGS; 00146 00147 00148 /* ==================================================================== 00149 * 00150 * -PROMP: option group 00151 * 00152 * Global data "objects" and manipulation functions. 00153 * 00154 * ==================================================================== 00155 */ 00156 00157 /* This is always the current set of option values: */ 00158 extern PROMP_FLAGS *Current_PROMP; 00159 00160 /* Define pseudo-variables for general usage: */ 00161 #define PROMP_enabled Current_PROMP->enabled 00162 #define PROMP_owhile Current_PROMP->owhile 00163 #define PROMP_show Current_PROMP->show 00164 #define PROMP_next_id Current_PROMP->next_id 00165 #define PROMP_anl_filename Current_PROMP->anl_filename 00166 #define PROMP_src_filename Current_PROMP->src_filename 00167 00168 00169 #ifdef __cplusplus 00170 } 00171 #endif /* __cplusplus */ 00172 00173 #endif /* config_promp_INCLUDED */
1.5.6