⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 options.h

📁 一个很有名的硬件模拟器。可以模拟CPU
💻 H
字号:
/* options.h - options package interfaces *//* SimpleScalar(TM) Tool Suite * Copyright (C) 1994-2003 by Todd M. Austin, Ph.D. and SimpleScalar, LLC. * All Rights Reserved.  *  * THIS IS A LEGAL DOCUMENT, BY USING SIMPLESCALAR, * YOU ARE AGREEING TO THESE TERMS AND CONDITIONS. *  * No portion of this work may be used by any commercial entity, or for any * commercial purpose, without the prior, written permission of SimpleScalar, * LLC (info@simplescalar.com). Nonprofit and noncommercial use is permitted * as described below. *  * 1. SimpleScalar is provided AS IS, with no warranty of any kind, express * or implied. The user of the program accepts full responsibility for the * application of the program and the use of any results. *  * 2. Nonprofit and noncommercial use is encouraged. SimpleScalar may be * downloaded, compiled, executed, copied, and modified solely for nonprofit, * educational, noncommercial research, and noncommercial scholarship * purposes provided that this notice in its entirety accompanies all copies. * Copies of the modified software can be delivered to persons who use it * solely for nonprofit, educational, noncommercial research, and * noncommercial scholarship purposes provided that this notice in its * entirety accompanies all copies. *  * 3. ALL COMMERCIAL USE, AND ALL USE BY FOR PROFIT ENTITIES, IS EXPRESSLY * PROHIBITED WITHOUT A LICENSE FROM SIMPLESCALAR, LLC (info@simplescalar.com). *  * 4. No nonprofit user may place any restrictions on the use of this software, * including as modified by the user, by any other authorized user. *  * 5. Noncommercial and nonprofit users may distribute copies of SimpleScalar * in compiled or executable form as set forth in Section 2, provided that * either: (A) it is accompanied by the corresponding machine-readable source * code, or (B) it is accompanied by a written offer, with no time limit, to * give anyone a machine-readable copy of the corresponding source code in * return for reimbursement of the cost of distribution. This written offer * must permit verbatim duplication by anyone, or (C) it is distributed by * someone who received only the executable form, and is accompanied by a * copy of the written offer of source code. *  * 6. SimpleScalar was developed by Todd M. Austin, Ph.D. The tool suite is * currently maintained by SimpleScalar LLC (info@simplescalar.com). US Mail: * 2395 Timbercrest Court, Ann Arbor, MI 48105. *  * Copyright (C) 1994-2003 by Todd M. Austin, Ph.D. and SimpleScalar, LLC. */#ifndef OPTIONS_H#define OPTIONS_H/* * This options package allows the user to specify the name, description, * location, and default values of program option variables.  In addition, * two builtin options are supported: * *   -config <filename>		# load options from <filename> *   -dumpconfig <filename>	# save current option into <filename> * * NOTE: all user-installed option names must begin with a `-', e.g., `-debug' *//* option variable classes */enum opt_class_t {  oc_int = 0,		/* integer option */  oc_uint,		/* unsigned integer option */  oc_float,		/* float option */  oc_double,		/* double option */  oc_enum,		/* enumeration option */  oc_flag,		/* boolean option */  oc_string,		/* string option */  oc_NUM};/* user-specified option definition */struct opt_opt_t {  struct opt_opt_t *next;	/* next option */  char *name;			/* option name, e.g., "-foo:bar" */  char *desc;			/* option description */  int nvars;			/* > 1 if var for list options */  int *nelt;			/* number of elements parsed */  char *format;			/* option value print format */  int print;			/* print option during `-dumpconfig'? */  int accrue;			/* accrue list across uses */  enum opt_class_t oc;		/* class of this option */  union opt_variant_t {    /* oc == oc_int */    struct opt_for_int_t {      int *var;			/* pointer to integer option */    } for_int;    /* oc == oc_uint */    struct opt_for_uint_t {      unsigned int *var;	/* pointer to unsigned integer option */    } for_uint;    /* oc == oc_float */    struct opt_for_float_t {      float *var;		/* pointer to float option */    } for_float;    /* oc == oc_double */    struct opt_for_double_t {      double *var;		/* pointer to double option */    } for_double;    /* oc == oc_enum, oc_flag */    struct opt_for_enum_t {      int *var;			/* ptr to *int* enum option, NOTE: AN INT */      char **emap;		/* array of enum strings */      int *eval;		/* optional array of enum values */      int emap_sz;		/* number of enum's in arrays */    } for_enum;    /* oc == oc_string */    struct opt_for_string_t {      char **var;		/* pointer to string pointer option */    } for_string;  } variant;};/* user-specified argument orphan parser, called when an argument is   encountered that is not claimed by a user-installed option */typedef int(*orphan_fn_t)(int i,		/* index of the orphan'ed argument */	       int argc,	/* number of program arguments */	       char **argv);	/* program arguments *//* an option note, these trail the option list when help or option state   is printed */struct opt_note_t {  struct opt_note_t *next;	/* next option note */  char *note;			/* option note */};/* option database definition */struct opt_odb_t {  struct opt_opt_t *options;	/* user-installed options in option database */  orphan_fn_t orphan_fn;	/* user-specified orphan parser */  char *header;			/* options header */  struct opt_note_t *notes;	/* option notes */};/* create a new option database */struct opt_odb_t *opt_new(orphan_fn_t orphan_fn);		/* user-specified orphan parser *//* free an option database */voidopt_delete(struct opt_odb_t *odb);	/* option database *//* register an integer option variable */voidopt_reg_int(struct opt_odb_t *odb,	/* option database */	    char *name,			/* option name */	    char *desc,			/* option description */	    int *var,			/* pointer to option variable */	    int def_val,		/* default value of option variable */	    int print,			/* print during `-dumpconfig' */	    char *format);		/* optional user print format *//* register an integer option list */voidopt_reg_int_list(struct opt_odb_t *odb,	/* option database */		 char *name,		/* option name */		 char *desc,		/* option description */		 int *vars,		/* pointer to option array */		 int nvars,		/* total entries in option array */		 int *nelt,		/* number of entries parsed */		 int *def_val,		/* default value of option array */		 int print,		/* print during `-dumpconfig'? */		 char *format,		/* optional user print format */		 int accrue);		/* accrue list across uses *//* register an unsigned integer option variable */voidopt_reg_uint(struct opt_odb_t *odb,	/* option database */	     char *name,		/* option name */	     char *desc,		/* option description */	     unsigned int *var,		/* pointer to option variable */	     unsigned int def_val,	/* default value of option variable */	     int print,			/* print during `-dumpconfig'? */	     char *format);		/* optional user print format *//* register an unsigned integer option list */voidopt_reg_uint_list(struct opt_odb_t *odb,/* option database */		  char *name,		/* option name */		  char *desc,		/* option description */		  unsigned int *vars,	/* pointer to option array */		  int nvars,		/* total entries in option array */		  int *nelt,		/* number of elements parsed */		  unsigned int *def_val,/* default value of option array */		  int print,		/* print during `-dumpconfig'? */		  char *format,		/* optional user print format */		  int accrue);		/* accrue list across uses *//* register a single-precision floating point option variable */voidopt_reg_float(struct opt_odb_t *odb,	/* option data base */	      char *name,		/* option name */	      char *desc,		/* option description */	      float *var,		/* target option variable */	      float def_val,		/* default variable value */	      int print,		/* print during `-dumpconfig'? */	      char *format);		/* optional value print format *//* register a single-precision floating point option array */voidopt_reg_float_list(struct opt_odb_t *odb,/* option data base */		   char *name,		/* option name */		   char *desc,		/* option description */		   float *vars,		/* target array */		   int nvars,		/* target array size */		   int *nelt,		/* number of args parsed goes here */		   float *def_val,	/* default variable value */		   int print,		/* print during `-dumpconfig'? */		   char *format,	/* optional value print format */		   int accrue);		/* accrue list across uses *//* register a double-precision floating point option variable */voidopt_reg_double(struct opt_odb_t *odb,	/* option data base */	       char *name,		/* option name */	       char *desc,		/* option description */	       double *var,		/* target variable */	       double def_val,		/* default variable value */	       int print,		/* print during `-dumpconfig'? */	       char *format);		/* optional value print format *//* register a double-precision floating point option array */voidopt_reg_double_list(struct opt_odb_t *odb,/* option data base */		    char *name,		/* option name */		    char *desc,		/* option description */		    double *vars,	/* target array */		    int nvars,		/* target array size */		    int *nelt,		/* number of args parsed goes here */		    double *def_val,	/* default variable value */		    int print,		/* print during `-dumpconfig'? */		    char *format,	/* optional value print format */		    int accrue);	/* accrue list across uses *//* register an enumeration option variable, NOTE: all enumeration option   variables must be of type `int', since true enum variables may be allocated   with variable sizes by some compilers */voidopt_reg_enum(struct opt_odb_t *odb,	/* option data base */	     char *name,		/* option name */	     char *desc,		/* option description */	     int *var,			/* target variable */	     char *def_val,		/* default variable value */	     char **emap,		/* enumeration string map */	     int *eval,			/* enumeration value map, optional */	     int emap_sz,		/* size of maps */	     int print,			/* print during `-dumpconfig'? */	     char *format);		/* optional value print format *//* register an enumeration option array, NOTE: all enumeration option variables   must be of type `int', since true enum variables may be allocated with   variable sizes by some compilers */voidopt_reg_enum_list(struct opt_odb_t *odb,/* option data base */		  char *name,		/* option name */		  char *desc,		/* option description */		  int *vars,		/* target array */		  int nvars,		/* target array size */		  int *nelt,		/* number of args parsed goes here */		  char *def_val,	/* default variable value */		  char **emap,		/* enumeration string map */		  int *eval,		/* enumeration value map, optional */		  int emap_sz,		/* size of maps */		  int print,		/* print during `-dumpconfig'? */		  char *format,		/* optional value print format */		  int accrue);		/* accrue list across uses *//* register a boolean flag option variable */voidopt_reg_flag(struct opt_odb_t *odb,	/* option data base */	     char *name,		/* option name */	     char *desc,		/* option description */	     int *var,			/* target variable */	     int def_val,		/* default variable value */	     int print,			/* print during `-dumpconfig'? */	     char *format);		/* optional value print format *//* register a boolean flag option array */voidopt_reg_flag_list(struct opt_odb_t *odb,/* option database */		  char *name,		/* option name */		  char *desc,		/* option description */		  int *vars,		/* pointer to option array */		  int nvars,		/* total entries in option array */		  int *nelt,		/* number of elements parsed */		  int *def_val,		/* default array value */		  int print,		/* print during `-dumpconfig'? */		  char *format,		/* optional value print format */		  int accrue);		/* accrue list across uses *//* register a string option variable */voidopt_reg_string(struct opt_odb_t *odb,	/* option data base */	       char *name,		/* option name */	       char *desc,		/* option description */	       char **var,		/* pointer to string option variable */	       char *def_val,		/* default variable value */	       int print,		/* print during `-dumpconfig'? */	       char *format);		/* optional value print format *//* register a string option array */voidopt_reg_string_list(struct opt_odb_t *odb,/* option data base */		    char *name,		/* option name */		    char *desc,		/* option description */		    char **vars,	/* pointer to option string array */		    int nvars,		/* target array size */		    int *nelt,		/* number of args parsed goes here */		    char **def_val,	/* default variable value */		    int print,		/* print during `-dumpconfig'? */		    char *format,	/* optional value print format */		    int accrue);	/* accrue list across uses *//* process command line arguments */voidopt_process_options(struct opt_odb_t *odb,	/* option data base */		    int argc,			/* number of arguments */		    char **argv);		/* argument array *//* print the value of an option */voidopt_print_option(struct opt_opt_t *opt,	/* option variable */		 FILE *fd);		/* output stream *//* print all options and current values */voidopt_print_options(struct opt_odb_t *odb,/* option data base */		  FILE *fd,		/* output stream */		  int terse,		/* print terse options? */		  int notes);		/* include notes? *//* print option help page with default values */voidopt_print_help(struct opt_odb_t *odb,	/* option data base */	       FILE *fd);		/* output stream *//* find an option by name in the option database, returns NULL if not found */struct opt_opt_t *opt_find_option(struct opt_odb_t *odb,	/* option database */		char *opt_name);	/* option name *//* register an options header, the header is printed before the option list */voidopt_reg_header(struct opt_odb_t *odb,	/* option database */	       char *header);		/* options header string *//* register an option note, notes are printed after the list of options */voidopt_reg_note(struct opt_odb_t *odb,	/* option database */	     char *note);		/* option note */#endif /* OPTIONS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -