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

📄 stab.5

📁 早期freebsd实现
💻 5
字号:
.\" Copyright (c) 1980, 1991, 1993.\"	The Regents of the University of California.  All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\"    notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\"    notice, this list of conditions and the following disclaimer in the.\"    documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\"    must display the following acknowledgement:.\"	This product includes software developed by the University of.\"	California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\"    may be used to endorse or promote products derived from this software.\"    without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\"     @(#)stab.5	8.1 (Berkeley) 6/5/93.\".Dd June 5, 1993.Dt STAB 5.Os BSD 4.Sh NAME.Nm stab.Nd symbol table types.Sh SYNOPSIS.Fd #include <stab.h>.Sh DESCRIPTIONThe file.Aq Pa stab.hdefines some of the symbol table.Fa n_typefield values for a.out files.These are the types for permanent symbols (i.e. not local labels, etc.)used by the old debugger.Em sdband the Berkeley Pascal compiler.Xr pc 1 .Symbol table entries can be produced by the.Pa .stabsassembler directive.This allows one to specify a double-quote delimited name, a symbol type,one char and one short of information about the symbol, and an unsignedlong (usually an address).To avoid having to produce an explicit label for the address field,the.Pa .stabddirective can be used to implicitly address the current location.If no name is needed, symbol table entries can be generated using the.Pa .stabndirective.The loader promises to preserve the order of symbol table entries producedby.Pa .stabdirectives.As described in.Xr a.out 5 ,an element of the symbol tableconsists of the following structure:.Bd -literal/** Format of a symbol table entry.*/struct nlist {	union {		char	*n_name;	/* for use when in-core */		long	n_strx;		/* index into file string table */	} n_un;	unsigned char	n_type;		/* type flag */	char		n_other;	/* unused */	short		n_desc;		/* see struct desc, below */	unsigned	n_value;	/* address or offset or line */};.Ed.PpThe low bits of the.Fa n_typefield are used to place a symbol intoat most one segment, according to the following masks, defined in.Aq Pa a.out.h .A symbol can be in none of these segments by having none of these segmentbits set..Bd -literal/** Simple values for n_type.*/#define	N_UNDF	0x0	/* undefined */#define	N_ABS	0x2	/* absolute */#define	N_TEXT	0x4	/* text */#define	N_DATA	0x6	/* data */#define	N_BSS	0x8	/* bss */#define	N_EXT	01	/* external bit, or'ed in */.Ed.PpThe.Fa n_valuefield of a symbol is relocated by the linker,.Xr ld 1as an address within the appropriate segment..Fa N_valuefields of symbols not in any segment are unchanged by the linker.In addition, the linker will discard certain symbols, according to rulesof its own, unless the.Fa n_typefield has one of the following bits set:.Bd -literal/** Other permanent symbol table entries have some of the N_STAB bits set.* These are given in <stab.h>*/#define	N_STAB	0xe0	/* if any of these bits set, don't discard */.Ed.PpThis allows up to 112 (7 \(** 16) symbol types, split between the varioussegments.Some of these have already been claimed.The old symbolic debugger,.Em sdb ,uses the following n_type values:.Bd -literal#define	N_GSYM	0x20	/* global symbol: name,,0,type,0 */#define	N_FNAME	0x22	/* procedure name (f77 kludge): name,,0 */#define	N_FUN	0x24	/* procedure: name,,0,linenumber,address */#define	N_STSYM	0x26	/* static symbol: name,,0,type,address */#define	N_LCSYM	0x28	/* .lcomm symbol: name,,0,type,address */#define	N_RSYM	0x40	/* register sym: name,,0,type,register */#define	N_SLINE	0x44	/* src line: 0,,0,linenumber,address */#define	N_SSYM	0x60	/* structure elt: name,,0,type,struct_offset */#define	N_SO	0x64	/* source file name: name,,0,0,address */#define	N_LSYM	0x80	/* local sym: name,,0,type,offset */#define	N_SOL	0x84	/* #included file name: name,,0,0,address */#define	N_PSYM	0xa0	/* parameter: name,,0,type,offset */#define	N_ENTRY	0xa4	/* alternate entry: name,linenumber,address */#define	N_LBRAC	0xc0	/* left bracket: 0,,0,nesting level,address */#define	N_RBRAC	0xe0	/* right bracket: 0,,0,nesting level,address */#define	N_BCOMM	0xe2	/* begin common: name,, */#define	N_ECOMM	0xe4	/* end common: name,, */#define	N_ECOML	0xe8	/* end common (local name): ,,address */#define	N_LENG	0xfe	/* second stab entry with length information */.Ed.Ppwhere the comments give.Em sdbconventional use for.Pa .stab.Fa sand the.Fa n_name ,.Fa n_other ,.Fa n_desc ,and.Fa n_valuefieldsof the given.Fa n_type . .Em Sdbuses the.Fa n_descfield to hold a type specifier in the form usedby the Portable C Compiler,.Xr cc 1 ;see the header file.Pa pcc.hfor details on the format of these type values..PpThe Berkeley Pascal compiler,.Xr pc 1 ,uses the following.Fa n_typevalue:.Bd -literal#define	N_PC	0x30	/* global pascal symbol: name,,0,subtype,line */.Ed.Ppand uses the following subtypes to do type checking across separatelycompiled files:.Bd -unfilled -offset indent1	source file name2	included file name3	global label4	global constant5	global type6	global variable7	global function8	global procedure9	external function10	external procedure11	library variable12	library routine.Ed.Sh SEE ALSO.Xr as 1 ,.Xr ld 1 ,.Xr dbx 1 ,.Xr a.out 5.Sh BUGS.PpMore basic types are needed..Sh HISTORYThe.Nm stabfile appeared in.Bx 4.0 .

⌨️ 快捷键说明

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