亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.h

?? RISC處理器仿真分析程序。可以用于研究通用RISC處理器的指令和架構設計。在linux下編譯
?? H
字號:
/* * options.h - options package interfaces * * This file is a part of the SimpleScalar tool suite written by * Todd M. Austin as a part of the Multiscalar Research Project. *   * The tool suite is currently maintained by Doug Burger and Todd M. Austin. *  * Copyright (C) 1994, 1995, 1996, 1997 by Todd M. Austin * * This source file is distributed "as is" in the hope that it will be * useful.  The tool set comes with no warranty, and no author or * distributor accepts any responsibility for the consequences of its * use.  *  * Everyone is granted permission to copy, modify and redistribute * this tool set under the following conditions: *  *    This source code is distributed for non-commercial use only.  *    Please contact the maintainer for restrictions applying to  *    commercial use. * *    Permission is granted to anyone to make or distribute copies *    of this source code, either as received or modified, in any *    medium, provided that all copyright notices, permission and *    nonwarranty notices are preserved, and that the distributor *    grants the recipient permission for further redistribution as *    permitted by this document. * *    Permission is granted to distribute this file in compiled *    or executable form under the same conditions that apply for *    source code, provided that either: * *    A. it is accompanied by the corresponding machine-readable *       source code, *    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 that they received concurrently. * * In other words, you are welcome to use, share and improve this * source file.  You are forbidden to forbid anyone else to use, share * and improve what you give them. * * INTERNET: dburger@cs.wisc.edu * US Mail:  1210 W. Dayton Street, Madison, WI 53706 * * $Id: options.h,v 1.1 1997/03/11 01:31:53 taustin Exp taustin $ * * $Log: options.h,v $ * Revision 1.1  1997/03/11  01:31:53  taustin * Initial revision * * */#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 + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲女与黑人做爰| 日韩美女久久久| 成人app网站| 国产精品一级片| 国产成人a级片| 粉嫩在线一区二区三区视频| 成人综合激情网| 99re这里只有精品首页| 91蝌蚪porny九色| 在线观看日韩毛片| 欧美日本在线观看| 精品国产凹凸成av人网站| 精品国产亚洲在线| 午夜久久久久久| 精品一区免费av| av中文字幕一区| 91精品国产综合久久婷婷香蕉| 精品国产麻豆免费人成网站| 亚洲午夜电影网| 国内成人自拍视频| 不卡一二三区首页| 久久久精品免费网站| 亚洲免费看黄网站| 99久久综合99久久综合网站| 久久九九全国免费| 亚洲小说欧美激情另类| 91在线高清观看| 亚洲日本青草视频在线怡红院 | 欧美日韩小视频| 精品免费一区二区三区| 中文字幕在线观看一区| 日韩成人精品视频| thepron国产精品| 国产精品入口麻豆原神| 日韩高清在线电影| 91精品在线观看入口| 亚洲国产婷婷综合在线精品| 在线精品观看国产| 亚洲妇女屁股眼交7| 欧美性大战xxxxx久久久| 国产亚洲污的网站| 成人精品视频一区二区三区| 欧美国产精品一区二区| 久久精品二区亚洲w码| 日本福利一区二区| 国产精品欧美一区二区三区| 成人小视频免费观看| 国产精品高潮呻吟| 国产在线日韩欧美| 中文字幕免费不卡| 一本色道亚洲精品aⅴ| 日本一区二区高清| 色综合久久久久久久久久久| 亚洲成av人在线观看| 色综合久久综合网欧美综合网 | 欧美蜜桃一区二区三区| 男人的j进女人的j一区| 在线影院国内精品| 午夜精品一区二区三区三上悠亚| 在线综合+亚洲+欧美中文字幕| 捆绑变态av一区二区三区| 久久久99精品免费观看| 91视频国产资源| 日韩中文欧美在线| 欧美日韩国产一级二级| 精品一二三四区| 亚洲三级免费观看| 欧美草草影院在线视频| av亚洲产国偷v产偷v自拍| 天天色天天操综合| 久久久久久久久久久久久夜| 色噜噜夜夜夜综合网| 美美哒免费高清在线观看视频一区二区| 欧美日韩中文字幕一区| 国产又黄又大久久| 国产午夜精品一区二区| 欧美色区777第一页| 国产精品自拍毛片| 亚洲国产综合人成综合网站| 国产校园另类小说区| 欧美三级视频在线播放| 国产99久久久国产精品| 日韩成人免费电影| 综合色中文字幕| 精品91自产拍在线观看一区| 91福利在线看| 成人一级视频在线观看| 青青草97国产精品免费观看无弹窗版 | 综合激情成人伊人| 精品久久久久久久久久久久久久久| 色综合天天综合狠狠| 亚洲国产视频网站| 日本一区二区高清| 精品国产一二三| 9191久久久久久久久久久| 色婷婷综合五月| 成人午夜私人影院| 国产一区二区三区四区五区美女 | 色系网站成人免费| 成人综合在线观看| 国产一区二区三区久久久| 日本强好片久久久久久aaa| 亚洲欧美一区二区三区久本道91 | 91福利资源站| 色噜噜夜夜夜综合网| 成人av在线一区二区三区| 久久99精品国产91久久来源| 天天亚洲美女在线视频| 亚洲高清一区二区三区| 亚洲一区欧美一区| 精品免费国产二区三区| 欧美一卡2卡3卡4卡| 成人白浆超碰人人人人| 国产精品99久久久久| 国产一区二区三区观看| 国产一区二区不卡在线| 国产米奇在线777精品观看| 蜜臀久久久99精品久久久久久| 日韩和欧美一区二区三区| 午夜国产不卡在线观看视频| 午夜日韩在线观看| 日韩福利视频网| 蜜臀a∨国产成人精品| 精品在线免费视频| 国产在线视频不卡二| 国产suv精品一区二区883| 粉嫩嫩av羞羞动漫久久久| av网站一区二区三区| 色婷婷综合久久| 欧美伊人久久久久久久久影院 | 国产亚洲女人久久久久毛片| 国产片一区二区| 欧美一区国产二区| 日韩午夜在线播放| 欧美军同video69gay| 成人av小说网| 91久久久免费一区二区| 欧美日韩精品欧美日韩精品一 | 亚洲高清免费视频| 美女网站色91| 国产大陆a不卡| 色婷婷精品久久二区二区蜜臂av | 成人影视亚洲图片在线| 91老师片黄在线观看| 337p亚洲精品色噜噜噜| 亚洲精品一区二区三区香蕉| 国产精品色呦呦| 偷偷要91色婷婷| 国产成人日日夜夜| 欧美日韩一区二区三区四区 | 奇米精品一区二区三区四区| 激情综合网天天干| av电影天堂一区二区在线观看| 欧美视频一区二区三区在线观看| 日韩免费高清电影| 欧美一区二区二区| 亚洲国产成人私人影院tom| 一区二区三区成人在线视频| 一区二区在线看| 亚洲一卡二卡三卡四卡无卡久久| 日韩av网站在线观看| 波多野结衣亚洲| 日韩欧美一二三| 亚洲天堂福利av| 激情五月婷婷综合网| 91欧美一区二区| 久久丝袜美腿综合| 国产亲近乱来精品视频 | 欧美三级三级三级| 国产喷白浆一区二区三区| 亚洲国产精品人人做人人爽| 国产成a人无v码亚洲福利| 欧美日韩国产乱码电影| 国产精品你懂的在线| 日韩av不卡一区二区| 99re这里只有精品6| 久久久精品免费网站| 免费精品视频在线| 色婷婷av一区二区三区之一色屋| 日韩欧美国产午夜精品| 亚洲一区二区视频在线观看| 成人av电影在线观看| 精品国产网站在线观看| 午夜精品久久一牛影视| 欧美xxxxx牲另类人与| 香港成人在线视频| 一本到三区不卡视频| 国产精品久久久久国产精品日日 | 国产伦理精品不卡| 91麻豆精品国产91久久久久| 亚洲桃色在线一区| 风间由美中文字幕在线看视频国产欧美| 日韩一区二区影院| 日韩av不卡在线观看| 欧美精品久久一区二区三区| 夜夜爽夜夜爽精品视频| av中文字幕一区| 国产精品久久久久久久久搜平片| 捆绑变态av一区二区三区| 欧美成人福利视频|