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

📄 coffcode.texi

📁 这个是LINUX下的GDB调度工具的源码
💻 TEXI
📖 第 1 页 / 共 2 页
字号:
@section coff backendsBFD supports a number of different flavours of coff format.The major differences between formats are the sizes andalignments of fields in structures on disk, and the occasionalextra field.Coff in all its varieties is implemented with a few commonfiles and a number of implementation specific files. Forexample, The 88k bcs coff format is implemented in the file@file{coff-m88k.c}. This file @code{#include}s@file{coff/m88k.h} which defines the external structure of thecoff format for the 88k, and @file{coff/internal.h} whichdefines the internal structure. @file{coff-m88k.c} alsodefines the relocations used by the 88k format@xref{Relocations}.The Intel i960 processor version of coff is implemented in@file{coff-i960.c}. This file has the same structure as@file{coff-m88k.c}, except that it includes @file{coff/i960.h}rather than @file{coff-m88k.h}.@subsection Porting to a new version of coffThe recommended method is to select from the existingimplementations the version of coff which is most like the oneyou want to use.  For example, we'll say that i386 coff isthe one you select, and that your coff flavour is called foo.Copy @file{i386coff.c} to @file{foocoff.c}, copy@file{../include/coff/i386.h} to @file{../include/coff/foo.h},and add the lines to @file{targets.c} and @file{Makefile.in}so that your new back end is used. Alter the shapes of thestructures in @file{../include/coff/foo.h} so that they matchwhat you need. You will probably also have to add@code{#ifdef}s to the code in @file{coff/internal.h} and@file{coffcode.h} if your version of coff is too wild.You can verify that your new BFD backend works quite simply bybuilding @file{objdump} from the @file{binutils} directory,and making sure that its version of what's going on and yourhost system's idea (assuming it has the pretty standard coffdump utility, usually called @code{att-dump} or just@code{dump}) are the same.  Then clean up your code, and sendwhat you've done to Cygnus. Then your stuff will be in thenext release, and you won't have to keep integrating it.@subsection How the coff backend works@subsubsection File layoutThe Coff backend is split into generic routines that areapplicable to any Coff target and routines that are specificto a particular target.  The target-specific routines arefurther split into ones which are basically the same for allCoff targets except that they use the external symbol formator use different values for certain constants.The generic routines are in @file{coffgen.c}.  These routineswork for any Coff target.  They use some hooks into the targetspecific code; the hooks are in a @code{bfd_coff_backend_data}structure, one of which exists for each target.The essentially similar target-specific routines are in@file{coffcode.h}.  This header file includes executable C code.The various Coff targets first include the appropriate Coffheader file, make any special defines that are needed, andthen include @file{coffcode.h}.Some of the Coff targets then also have additional routines inthe target source file itself.For example, @file{coff-i960.c} includes@file{coff/internal.h} and @file{coff/i960.h}.  It thendefines a few constants, such as @code{I960}, and includes@file{coffcode.h}.  Since the i960 has complex relocationtypes, @file{coff-i960.c} also includes some code tomanipulate the i960 relocs.  This code is not in@file{coffcode.h} because it would not be used by any othertarget.@subsubsection Bit twiddlingEach flavour of coff supported in BFD has its own header filedescribing the external layout of the structures. There is alsoan internal description of the coff layout, in@file{coff/internal.h}. A major function of thecoff backend is swapping the bytes and twiddling the bits totranslate the external form of the structures into the normalinternal form. This is all performed in the@code{bfd_swap}_@i{thing}_@i{direction} routines. Someelements are different sizes between different versions ofcoff; it is the duty of the coff version specific include fileto override the definitions of various packing routines in@file{coffcode.h}. E.g., the size of line number entry in coff issometimes 16 bits, and sometimes 32 bits. @code{#define}ing@code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select thecorrect one. No doubt, some day someone will find a version ofcoff which has a varying field size not catered to at themoment. To port BFD, that person will have to add more @code{#defines}.Three of the bit twiddling routines are exported to@code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}and @code{coff_swap_lineno_in}. @code{GDB} reads the symboltable on its own, but uses BFD to fix things up.  More of thebit twiddlers are exported for @code{gas};@code{coff_swap_aux_out}, @code{coff_swap_sym_out},@code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},@code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},@code{coff_swap_scnhdr_out}. @code{Gas} currently keeps trackof all the symbol table and reloc drudgery itself, therebysaving the internal BFD overhead, but uses BFD to swap thingson the way out, making cross ports much safer.  Doing so alsoallows BFD (and thus the linker) to use the same header filesas @code{gas}, which makes one avenue to disaster disappear.@subsubsection Symbol readingThe simple canonical form for symbols used by BFD is not richenough to keep all the information available in a coff symboltable. The back end gets around this problem by keeping the originalsymbol table around, "behind the scenes".When a symbol table is requested (through a call to@code{bfd_canonicalize_symtab}), a request gets through to@code{coff_get_normalized_symtab}. This reads the symbol table fromthe coff file and swaps all the structures inside into theinternal form. It also fixes up all the pointers in the table(represented in the file by offsets from the first symbol inthe table) into physical pointers to elements in the newinternal table. This involves some work since the meanings offields change depending upon context: a field that is apointer to another structure in the symbol table at one momentmay be the size in bytes of a structure at the next.  Anotherpass is made over the table. All symbols which mark file names(@code{C_FILE} symbols) are modified so that the internalstring points to the value in the auxent (the real filename)rather than the normal text associated with the symbol(@code{".file"}).At this time the symbol names are moved around. Coff storesall symbols less than nine characters long physicallywithin the symbol table; longer strings are kept at the end ofthe file in the string  table. This pass moves all stringsinto memory and replaces them with pointers to the strings.The symbol table is massaged once again, this time to createthe canonical table used by the BFD application. Each symbolis inspected in turn, and a decision made (using the@code{sclass} field) about the various flags to set in the@code{asymbol}.  @xref{Symbols}. The generated canonical tableshares strings with the hidden internal symbol table.Any linenumbers are read from the coff file too, and attachedto the symbols which own the functions the linenumbers belong to.@subsubsection Symbol writingWriting a symbol to a coff file which didn't come from a cofffile will lose any debugging information. The @code{asymbol}structure remembers the BFD from which the symbol was taken, and onoutput the back end makes sure that the same destination target assource target is present.When the symbols have come from a coff file then all thedebugging information is preserved.Symbol tables are provided for writing to the back end in avector of pointers to pointers. This allows applications likethe linker to accumulate and output large symbol tableswithout having to do too much byte copying.This function runs through the provided symbol table andpatches each symbol marked as a file place holder(@code{C_FILE}) to point to the next file place holder in thelist. It also marks each @code{offset} field in the list withthe offset from the first symbol of the current symbol.Another function of this procedure is to turn the canonicalvalue form of BFD into the form used by coff. Internally, BFDexpects symbol values to be offsets from a section base; so asymbol physically at 0x120, but in a section starting at0x100, would have the value 0x20. Coff expects symbols tocontain their final value, so symbols have their valueschanged at this point to reflect their sum with their owningsection.  This transformation uses the@code{output_section} field of the @code{asymbol}'s@code{asection} @xref{Sections}.@itemize @bullet@item@code{coff_mangle_symbols}@end itemizeThis routine runs though the provided symbol table and usesthe offsets generated by the previous pass and the pointersgenerated when the symbol table was read in to create thestructured hierarchy required by coff. It changes each pointerto a symbol into the index into the symbol table of the asymbol.@itemize @bullet@item@code{coff_write_symbols}@end itemizeThis routine runs through the symbol table and patches up thesymbols from their internal form into the coff way, calls thebit twiddlers, and writes out the table to the file.@findex coff_symbol_type@subsubsection @code{coff_symbol_type}@strong{Description}@*The hidden information for an @code{asymbol} is described in a@code{combined_entry_type}:@exampletypedef struct coff_ptr_struct@{  /* Remembers the offset from the first symbol in the file for     this symbol. Generated by coff_renumber_symbols. */  unsigned int offset;  /* Should the value of this symbol be renumbered.  Used for     XCOFF C_BSTAT symbols.  Set by coff_slurp_symbol_table.  */  unsigned int fix_value : 1;  /* Should the tag field of this symbol be renumbered.     Created by coff_pointerize_aux. */  unsigned int fix_tag : 1;  /* Should the endidx field of this symbol be renumbered.     Created by coff_pointerize_aux. */  unsigned int fix_end : 1;  /* Should the x_csect.x_scnlen field be renumbered.     Created by coff_pointerize_aux. */  unsigned int fix_scnlen : 1;  /* Fix up an XCOFF C_BINCL/C_EINCL symbol.  The value is the     index into the line number entries.  Set by coff_slurp_symbol_table.  */  unsigned int fix_line : 1;  /* The container for the symbol structure as read and translated     from the file. */  union  @{    union internal_auxent auxent;    struct internal_syment syment;  @} u;@} combined_entry_type;/* Each canonical asymbol really looks like this: */typedef struct coff_symbol_struct@{  /* The actual symbol which the rest of BFD works with */  asymbol symbol;  /* A pointer to the hidden information for this symbol */  combined_entry_type *native;  /* A pointer to the linenumber information for this symbol */  struct lineno_cache_entry *lineno;  /* Have the line numbers been relocated yet ? */  bfd_boolean done_lineno;@} coff_symbol_type;@end example@findex bfd_coff_backend_data@subsubsection @code{bfd_coff_backend_data}@example/* COFF symbol classifications.  */enum coff_symbol_classification@{  /* Global symbol.  */  COFF_SYMBOL_GLOBAL,  /* Common symbol.  */  COFF_SYMBOL_COMMON,  /* Undefined symbol.  */  COFF_SYMBOL_UNDEFINED,  /* Local symbol.  */  COFF_SYMBOL_LOCAL,  /* PE section symbol.  */  COFF_SYMBOL_PE_SECTION@};@end exampleSpecial entry points for gdb to swap in coff symbol table parts:@exampletypedef struct@{  void (*_bfd_coff_swap_aux_in)    PARAMS ((bfd *, PTR, int, int, int, int, PTR));  void (*_bfd_coff_swap_sym_in)    PARAMS ((bfd *, PTR, PTR));  void (*_bfd_coff_swap_lineno_in)    PARAMS ((bfd *, PTR, PTR));  unsigned int (*_bfd_coff_swap_aux_out)    PARAMS ((bfd *, PTR, int, int, int, int, PTR));  unsigned int (*_bfd_coff_swap_sym_out)    PARAMS ((bfd *, PTR, PTR));  unsigned int (*_bfd_coff_swap_lineno_out)

⌨️ 快捷键说明

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