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

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

?? cplus-dem.c

?? Vxworks OS source code
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* Demangler for GNU C++   Copyright 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999,   2000 Free Software Foundation, Inc.   Written by James Clark (jjc@jclark.uucp)   Rewritten by Fred Fish (fnf@cygnus.com) for ARM and Lucid demangling   Modified by Satish Pai (pai@apollo.hp.com) for HP demanglingThis file is part of the libiberty library.Libiberty is free software; you can redistribute it and/ormodify it under the terms of the GNU Library General PublicLicense as published by the Free Software Foundation; eitherversion 2 of the License, or (at your option) any later version.Libiberty is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULibrary General Public License for more details.You should have received a copy of the GNU Library General PublicLicense along with libiberty; see the file COPYING.LIB.  Ifnot, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* This file exports two functions; cplus_mangle_opname and cplus_demangle.   This file imports xmalloc and xrealloc, which are like malloc and   realloc except that they generate a fatal error if there is no   available memory.  *//* This file lives in both GCC and libiberty.  When making changes, please   try not to break either.  */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "safe-ctype.h"#include <sys/types.h>#include <string.h>#include <stdio.h>#ifdef HAVE_STDLIB_H#include <stdlib.h>#elsechar * malloc ();char * realloc ();#endif#include <demangle.h>#undef CURRENT_DEMANGLING_STYLE#define CURRENT_DEMANGLING_STYLE work->options#include "libiberty.h"static char *ada_demangle  PARAMS ((const char *, int));static char *edg_demangle  PARAMS ((const char *, int));#define min(X,Y) (((X) < (Y)) ? (X) : (Y))/* A value at least one greater than the maximum number of characters   that will be output when using the `%d' format with `printf'.  */#define INTBUF_SIZE 32extern void fancy_abort PARAMS ((void)) ATTRIBUTE_NORETURN;static const char *mystrstr PARAMS ((const char *, const char *));static const char *mystrstr (s1, s2)     const char *s1, *s2;{  register const char *p = s1;  register int len = strlen (s2);  for (; (p = strchr (p, *s2)) != 0; p++)    {      if (strncmp (p, s2, len) == 0)	{	  return (p);	}    }  return (0);}/* In order to allow a single demangler executable to demangle strings   using various common values of CPLUS_MARKER, as well as any specific   one set at compile time, we maintain a string containing all the   commonly used ones, and check to see if the marker we are looking for   is in that string.  CPLUS_MARKER is usually '$' on systems where the   assembler can deal with that.  Where the assembler can't, it's usually   '.' (but on many systems '.' is used for other things).  We put the   current defined CPLUS_MARKER first (which defaults to '$'), followed   by the next most common value, followed by an explicit '$' in case   the value of CPLUS_MARKER is not '$'.   We could avoid this if we could just get g++ to tell us what the actual   cplus marker character is as part of the debug information, perhaps by   ensuring that it is the character that terminates the gcc<n>_compiled   marker symbol (FIXME).  */#if !defined (CPLUS_MARKER)#define CPLUS_MARKER '$'#endifenum demangling_styles current_demangling_style = auto_demangling;static char cplus_markers[] = { CPLUS_MARKER, '.', '$', '\0' };static char char_str[2] = { '\000', '\000' };voidset_cplus_marker_for_demangling (ch)     int ch;{  cplus_markers[0] = ch;}typedef struct string		/* Beware: these aren't required to be */{				/*  '\0' terminated.  */  char *b;			/* pointer to start of string */  char *p;			/* pointer after last character */  char *e;			/* pointer after end of allocated space */} string;/* Stuff that is shared between sub-routines.   Using a shared structure allows cplus_demangle to be reentrant.  */struct work_stuff{  int options;  char **typevec;  char **ktypevec;  char **btypevec;  int numk;  int numb;  int ksize;  int bsize;  int ntypes;  int typevec_size;  int constructor;  int destructor;  int static_type;	/* A static member function */  int temp_start;       /* index in demangled to start of template args */  int type_quals;       /* The type qualifiers.  */  int dllimported;	/* Symbol imported from a PE DLL */  char **tmpl_argvec;   /* Template function arguments. */  int ntmpl_args;       /* The number of template function arguments. */  int forgetting_types; /* Nonzero if we are not remembering the types			   we see.  */  string* previous_argument; /* The last function argument demangled.  */  int nrepeats;         /* The number of times to repeat the previous			   argument.  */};#define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI)#define PRINT_ARG_TYPES       (work -> options & DMGL_PARAMS)static const struct optable{  const char *in;  const char *out;  int flags;} optable[] = {  {"nw",	  " new",	DMGL_ANSI},	/* new (1.92,	 ansi) */  {"dl",	  " delete",	DMGL_ANSI},	/* new (1.92,	 ansi) */  {"new",	  " new",	0},		/* old (1.91,	 and 1.x) */  {"delete",	  " delete",	0},		/* old (1.91,	 and 1.x) */  {"vn",	  " new []",	DMGL_ANSI},	/* GNU, pending ansi */  {"vd",	  " delete []",	DMGL_ANSI},	/* GNU, pending ansi */  {"as",	  "=",		DMGL_ANSI},	/* ansi */  {"ne",	  "!=",		DMGL_ANSI},	/* old, ansi */  {"eq",	  "==",		DMGL_ANSI},	/* old,	ansi */  {"ge",	  ">=",		DMGL_ANSI},	/* old,	ansi */  {"gt",	  ">",		DMGL_ANSI},	/* old,	ansi */  {"le",	  "<=",		DMGL_ANSI},	/* old,	ansi */  {"lt",	  "<",		DMGL_ANSI},	/* old,	ansi */  {"plus",	  "+",		0},		/* old */  {"pl",	  "+",		DMGL_ANSI},	/* ansi */  {"apl",	  "+=",		DMGL_ANSI},	/* ansi */  {"minus",	  "-",		0},		/* old */  {"mi",	  "-",		DMGL_ANSI},	/* ansi */  {"ami",	  "-=",		DMGL_ANSI},	/* ansi */  {"mult",	  "*",		0},		/* old */  {"ml",	  "*",		DMGL_ANSI},	/* ansi */  {"amu",	  "*=",		DMGL_ANSI},	/* ansi (ARM/Lucid) */  {"aml",	  "*=",		DMGL_ANSI},	/* ansi (GNU/g++) */  {"convert",	  "+",		0},		/* old (unary +) */  {"negate",	  "-",		0},		/* old (unary -) */  {"trunc_mod",	  "%",		0},		/* old */  {"md",	  "%",		DMGL_ANSI},	/* ansi */  {"amd",	  "%=",		DMGL_ANSI},	/* ansi */  {"trunc_div",	  "/",		0},		/* old */  {"dv",	  "/",		DMGL_ANSI},	/* ansi */  {"adv",	  "/=",		DMGL_ANSI},	/* ansi */  {"truth_andif", "&&",		0},		/* old */  {"aa",	  "&&",		DMGL_ANSI},	/* ansi */  {"truth_orif",  "||",		0},		/* old */  {"oo",	  "||",		DMGL_ANSI},	/* ansi */  {"truth_not",	  "!",		0},		/* old */  {"nt",	  "!",		DMGL_ANSI},	/* ansi */  {"postincrement","++",	0},		/* old */  {"pp",	  "++",		DMGL_ANSI},	/* ansi */  {"postdecrement","--",	0},		/* old */  {"mm",	  "--",		DMGL_ANSI},	/* ansi */  {"bit_ior",	  "|",		0},		/* old */  {"or",	  "|",		DMGL_ANSI},	/* ansi */  {"aor",	  "|=",		DMGL_ANSI},	/* ansi */  {"bit_xor",	  "^",		0},		/* old */  {"er",	  "^",		DMGL_ANSI},	/* ansi */  {"aer",	  "^=",		DMGL_ANSI},	/* ansi */  {"bit_and",	  "&",		0},		/* old */  {"ad",	  "&",		DMGL_ANSI},	/* ansi */  {"aad",	  "&=",		DMGL_ANSI},	/* ansi */  {"bit_not",	  "~",		0},		/* old */  {"co",	  "~",		DMGL_ANSI},	/* ansi */  {"call",	  "()",		0},		/* old */  {"cl",	  "()",		DMGL_ANSI},	/* ansi */  {"alshift",	  "<<",		0},		/* old */  {"ls",	  "<<",		DMGL_ANSI},	/* ansi */  {"als",	  "<<=",	DMGL_ANSI},	/* ansi */  {"arshift",	  ">>",		0},		/* old */  {"rs",	  ">>",		DMGL_ANSI},	/* ansi */  {"ars",	  ">>=",	DMGL_ANSI},	/* ansi */  {"component",	  "->",		0},		/* old */  {"pt",	  "->",		DMGL_ANSI},	/* ansi; Lucid C++ form */  {"rf",	  "->",		DMGL_ANSI},	/* ansi; ARM/GNU form */  {"indirect",	  "*",		0},		/* old */  {"method_call",  "->()",	0},		/* old */  {"addr",	  "&",		0},		/* old (unary &) */  {"array",	  "[]",		0},		/* old */  {"vc",	  "[]",		DMGL_ANSI},	/* ansi */  {"compound",	  ", ",		0},		/* old */  {"cm",	  ", ",		DMGL_ANSI},	/* ansi */  {"cond",	  "?:",		0},		/* old */  {"cn",	  "?:",		DMGL_ANSI},	/* pseudo-ansi */  {"max",	  ">?",		0},		/* old */  {"mx",	  ">?",		DMGL_ANSI},	/* pseudo-ansi */  {"min",	  "<?",		0},		/* old */  {"mn",	  "<?",		DMGL_ANSI},	/* pseudo-ansi */  {"nop",	  "",		0},		/* old (for operator=) */  {"rm",	  "->*",	DMGL_ANSI},	/* ansi */  {"sz",          "sizeof ",    DMGL_ANSI}      /* pseudo-ansi */};/* These values are used to indicate the various type varieties.   They are all non-zero so that they can be used as `success'   values.  */typedef enum type_kind_t{  tk_none,  tk_pointer,  tk_reference,  tk_integral,  tk_bool,  tk_char,  tk_real} type_kind_t;struct demangler_engine libiberty_demanglers[] ={  {    AUTO_DEMANGLING_STYLE_STRING,      auto_demangling,      "Automatic selection based on executable"  }  ,  {    GNU_DEMANGLING_STYLE_STRING,      gnu_demangling,      "GNU (g++) style demangling"  }  ,  {    LUCID_DEMANGLING_STYLE_STRING,      lucid_demangling,      "Lucid (lcc) style demangling"  }  ,  {    ARM_DEMANGLING_STYLE_STRING,      arm_demangling,      "ARM style demangling"  }  ,  {    HP_DEMANGLING_STYLE_STRING,      hp_demangling,      "HP (aCC) style demangling"  }  ,  {    EDG_DEMANGLING_STYLE_STRING,      edg_demangling,      "EDG style demangling"  }  ,  {    GNU_V3_DEMANGLING_STYLE_STRING,    gnu_v3_demangling,    "GNU (g++) V3 ABI-style demangling"  }  ,  {    JAVA_DEMANGLING_STYLE_STRING,    java_demangling,    "Java style demangling"  }  ,  {    GNAT_DEMANGLING_STYLE_STRING,    gnat_demangling,    "GNAT style demangling"  }  ,  {    NULL, unknown_demangling, NULL  }};#define STRING_EMPTY(str)	((str) -> b == (str) -> p)#define PREPEND_BLANK(str)	{if (!STRING_EMPTY(str)) \    string_prepend(str, " ");}#define APPEND_BLANK(str)	{if (!STRING_EMPTY(str)) \    string_append(str, " ");}#define LEN_STRING(str)         ( (STRING_EMPTY(str))?0:((str)->p - (str)->b))/* The scope separator appropriate for the language being demangled.  */#define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::")#define ARM_VTABLE_STRING "__vtbl__"	/* Lucid/ARM virtual table prefix */#define ARM_VTABLE_STRLEN 8		/* strlen (ARM_VTABLE_STRING) *//* Prototypes for local functions */static voiddelete_work_stuff PARAMS ((struct work_stuff *));static voiddelete_non_B_K_work_stuff PARAMS ((struct work_stuff *));static char *mop_up PARAMS ((struct work_stuff *, string *, int));static voidsquangle_mop_up PARAMS ((struct work_stuff *));static voidwork_stuff_copy_to_from PARAMS ((struct work_stuff *, struct work_stuff *));#if 0static intdemangle_method_args PARAMS ((struct work_stuff *, const char **, string *));#endifstatic char *internal_cplus_demangle PARAMS ((struct work_stuff *, const char *));static intdemangle_template_template_parm PARAMS ((struct work_stuff *work,					 const char **, string *));static intdemangle_template PARAMS ((struct work_stuff *work, const char **, string *,			   string *, int, int));static intarm_pt PARAMS ((struct work_stuff *, const char *, int, const char **,		const char **));static intdemangle_class_name PARAMS ((struct work_stuff *, const char **, string *));static intdemangle_qualified PARAMS ((struct work_stuff *, const char **, string *,			    int, int));static intdemangle_class PARAMS ((struct work_stuff *, const char **, string *));static intdemangle_fund_type PARAMS ((struct work_stuff *, const char **, string *));static intdemangle_signature PARAMS ((struct work_stuff *, const char **, string *));static intdemangle_prefix PARAMS ((struct work_stuff *, const char **, string *));static intgnu_special PARAMS ((struct work_stuff *, const char **, string *));static intarm_special PARAMS ((const char **, string *));static voidstring_need PARAMS ((string *, int));static voidstring_delete PARAMS ((string *));static voidstring_init PARAMS ((string *));static voidstring_clear PARAMS ((string *));#if 0static intstring_empty PARAMS ((string *));#endifstatic voidstring_append PARAMS ((string *, const char *));static voidstring_appends PARAMS ((string *, string *));static voidstring_appendn PARAMS ((string *, const char *, int));static voidstring_prepend PARAMS ((string *, const char *));static voidstring_prependn PARAMS ((string *, const char *, int));static voidstring_append_template_idx PARAMS ((string *, int));static intget_count PARAMS ((const char **, int *));static intconsume_count PARAMS ((const char **));static intconsume_count_with_underscores PARAMS ((const char**));static intdemangle_args PARAMS ((struct work_stuff *, const char **, string *));static intdemangle_nested_args PARAMS ((struct work_stuff*, const char**, string*));static intdo_type PARAMS ((struct work_stuff *, const char **, string *));static intdo_arg PARAMS ((struct work_stuff *, const char **, string *));static voiddemangle_function_name PARAMS ((struct work_stuff *, const char **, string *,				const char *));static intiterate_demangle_function PARAMS ((struct work_stuff *,				   const char **, string *, const char *));static voidremember_type PARAMS ((struct work_stuff *, const char *, int));static voidremember_Btype PARAMS ((struct work_stuff *, const char *, int, int));static intregister_Btype PARAMS ((struct work_stuff *));static voidremember_Ktype PARAMS ((struct work_stuff *, const char *, int));static voidforget_types PARAMS ((struct work_stuff *));static voidforget_B_and_K_types PARAMS ((struct work_stuff *));static voidstring_prepends PARAMS ((string *, string *));static intdemangle_template_value_parm PARAMS ((struct work_stuff*, const char**,				      string*, type_kind_t));static intdo_hpacc_template_const_value PARAMS ((struct work_stuff *, const char **, string *));static intdo_hpacc_template_literal PARAMS ((struct work_stuff *, const char **, string *));static intsnarf_numeric_literal PARAMS ((const char **, string *));/* There is a TYPE_QUAL value for each type qualifier.  They can be   combined by bitwise-or to form the complete set of qualifiers for a   type.  */#define TYPE_UNQUALIFIED   0x0#define TYPE_QUAL_CONST    0x1#define TYPE_QUAL_VOLATILE 0x2#define TYPE_QUAL_RESTRICT 0x4static intcode_for_qualifier PARAMS ((int));static const char*qualifier_string PARAMS ((int));static const char*demangle_qualifier PARAMS ((int));static intdemangle_expression PARAMS ((struct work_stuff *, const char **, string *, 			     type_kind_t));static intdemangle_integral_value PARAMS ((struct work_stuff *, const char **,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人免费三级在线| 日本亚洲视频在线| 国产精品原创巨作av| 欧美日韩精品免费观看视频| 国产日产欧美精品一区二区三区| 日韩福利视频网| 欧美优质美女网站| 亚洲视频在线观看一区| 国产在线播放一区三区四| 欧美日韩综合在线免费观看| 中文字幕av免费专区久久| 久久精品国产在热久久| 欧美精品在线观看播放| 亚洲激情五月婷婷| zzijzzij亚洲日本少妇熟睡| 国产欧美日韩不卡免费| 精品一区二区三区av| 亚洲人成电影网站色mp4| 国产不卡在线播放| 欧美一区二区三区日韩视频| 亚洲精品视频一区二区| 99精品欧美一区二区蜜桃免费| 精品国产乱码久久| 美女一区二区视频| 91精品国产综合久久久蜜臀粉嫩| 在线欧美小视频| 中文字幕永久在线不卡| 国产麻豆精品95视频| 久久久影视传媒| 日韩激情一二三区| 91精品国产一区二区三区香蕉| 婷婷国产在线综合| 欧美色精品在线视频| 亚洲国产日日夜夜| 欧美日韩日日夜夜| 亚洲电影视频在线| 欧美视频一区二区三区在线观看| 亚洲国产裸拍裸体视频在线观看乱了 | 在线观看免费一区| 一个色妞综合视频在线观看| 91国产视频在线观看| 亚洲欧美怡红院| 99久久精品久久久久久清纯| 亚洲日本va在线观看| 99re热视频精品| 亚洲色图在线看| 在线一区二区视频| 亚洲制服欧美中文字幕中文字幕| 欧美探花视频资源| 亚洲成人免费观看| 日韩一本二本av| 久久精品国产亚洲a| 久久综合国产精品| 成人视屏免费看| 最新日韩在线视频| 色婷婷久久久综合中文字幕| 亚洲制服丝袜av| 日韩午夜在线影院| 激情深爱一区二区| 中文字幕久久午夜不卡| 91免费国产在线| 亚洲第一在线综合网站| 日韩欧美国产1| 丁香一区二区三区| 亚洲欧美日韩国产手机在线| 欧美三级欧美一级| 美女一区二区三区| 国产欧美日韩视频在线观看| 99视频精品免费视频| 亚洲国产中文字幕| 精品国产区一区| 成人丝袜高跟foot| 日本精品免费观看高清观看| 天天综合天天综合色| 欧美成人在线直播| 成人精品视频一区二区三区尤物| 亚洲一区二区视频在线| 欧美一级专区免费大片| 国产成人自拍高清视频在线免费播放| 中文字幕日本不卡| 在线91免费看| 国产成人啪免费观看软件 | 欧美日韩高清影院| 加勒比av一区二区| 日韩理论电影院| 精品久久久久久久久久久久包黑料 | 一区二区三区四区乱视频| 欧美电影一区二区| 成人一区二区视频| 午夜视频在线观看一区二区三区| 欧美不卡激情三级在线观看| 99久久婷婷国产| 蜜桃精品视频在线观看| 国产精品乱码一区二三区小蝌蚪| 欧美午夜理伦三级在线观看| 国产一区二区按摩在线观看| 一区二区三区免费网站| 亚洲精品在线网站| 在线免费观看视频一区| 黑人巨大精品欧美一区| 亚洲激情五月婷婷| 精品欧美一区二区三区精品久久 | 久久婷婷久久一区二区三区| 在线日韩国产精品| 岛国一区二区三区| 日本一不卡视频| 一区二区三区在线观看网站| 久久免费的精品国产v∧| 精品视频一区 二区 三区| 成人一区在线观看| 久久国产日韩欧美精品| 亚洲主播在线观看| 国产精品福利一区二区| 日韩欧美国产1| 欧美日韩国产色站一区二区三区| hitomi一区二区三区精品| 久久丁香综合五月国产三级网站| 亚洲va韩国va欧美va精品| 国产精品日韩成人| 337p日本欧洲亚洲大胆色噜噜| 欧美日韩国产乱码电影| 91丨九色丨尤物| 国产69精品久久久久毛片| 久久国产精品一区二区| 婷婷开心激情综合| 亚洲综合激情网| 亚洲欧洲精品一区二区三区不卡| 久久亚洲春色中文字幕久久久| 欧美一区二区三区四区在线观看| 色婷婷av一区| 99视频精品全部免费在线| 风流少妇一区二区| 国产精品18久久久久久久久| 麻豆成人久久精品二区三区红| 亚洲bt欧美bt精品| 一区二区三区波多野结衣在线观看 | 欧美日韩一区二区三区四区| 91在线视频播放| www.性欧美| 成人av高清在线| 成人午夜短视频| 国产成人亚洲综合a∨婷婷| 精品亚洲成a人| 精品一区二区久久| 国产一区二区三区久久悠悠色av| 久久精品国产亚洲5555| 久久99国产精品久久99果冻传媒| 日韩不卡一区二区三区 | 国产精品美女久久久久高潮| 久久久久久黄色| 久久久久久久久久久久久久久99| 精品国精品国产尤物美女| 精品国精品自拍自在线| 日韩欧美的一区| 精品区一区二区| 久久久久久99精品| 国产日韩精品一区二区浪潮av| 久久久噜噜噜久久中文字幕色伊伊| 精品国一区二区三区| 久久综合九色综合97婷婷| 久久久综合视频| 欧美国产激情一区二区三区蜜月| 国产欧美精品一区二区三区四区| 欧美国产精品一区二区| 中文字幕在线一区免费| 亚洲丝袜另类动漫二区| 亚洲一区二区三区三| 偷窥少妇高潮呻吟av久久免费| 日韩国产高清在线| 九色porny丨国产精品| 国产精品一色哟哟哟| 成人开心网精品视频| 色综合视频在线观看| 欧美性生交片4| 日韩一区二区三区在线观看| 久久日一线二线三线suv| 欧美激情一二三区| 亚洲特级片在线| 亚洲国产另类av| 美女被吸乳得到大胸91| 韩国v欧美v日本v亚洲v| 不卡免费追剧大全电视剧网站| jizz一区二区| 欧美日韩一级二级三级| 欧美sm极限捆绑bd| 日本一二三四高清不卡| 又紧又大又爽精品一区二区| 婷婷六月综合网| 国产精品一二三四五| 99精品久久久久久| 欧美精品在欧美一区二区少妇| 精品国产乱码久久久久久浪潮| 亚洲国产电影在线观看| 一二三四社区欧美黄| 精品一区免费av| 99久久精品国产一区| 91精品啪在线观看国产60岁| 国产亚洲精品久| 亚洲一二三四在线| 久久99精品国产.久久久久久 |