symtab.c
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:2k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* symtab.c Routines to maintain and manipulate a symbol table
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include "symtab.h"
  11. /* TODO: Implement a hash table, not this stupid implementation which
  12.    is too slow to be of practical use */
  13. /* Private data types */
  14. typedef struct tagSymtab {
  15.   symtabEnt ent;
  16.   struct tagSymtab * next;
  17. } symtabList;
  18. typedef symtabList * _symtab;
  19. void *symtabNew(void)
  20. {
  21.   void *p = malloc(sizeof(_symtab));
  22.   if (p == NULL) {
  23.     fprintf(stderr,"symtab: out of memoryn");
  24.     exit(3);
  25.   }
  26.   *(_symtab *)p = NULL;
  27.   return p;
  28. }
  29. void symtabDone(void *symtab)
  30. {
  31.   /* DO SOMETHING HERE! */
  32. }
  33. void symtabInsert(void *symtab,symtabEnt *ent)
  34. {
  35.   symtabList *l = malloc(sizeof(symtabList));
  36.   if (l == NULL) {
  37.     fprintf(stderr,"symtab: out of memoryn");
  38.     exit(3);
  39.   }
  40.   l->ent = *ent;
  41.   l->next = *(_symtab *)symtab;
  42.   *(_symtab *)symtab = l;
  43. }
  44. symtabEnt *symtabFind(void *symtab,char *name)
  45. {
  46.   symtabList *l = *(_symtab *)symtab;
  47.   while (l) {
  48.     if (!strcmp(l->ent.name,name)) {
  49.       return &(l->ent);
  50.     }
  51.     l = l->next;
  52.   }  
  53.   return NULL;
  54. }
  55. void symtabDump(void *symtab,FILE *of)
  56. {
  57.   symtabList *l = *(_symtab *)symtab;
  58.   while(l) {
  59.     fprintf(of,"%32s %s:%08lx (%ld)n",l->ent.name,
  60.     l->ent.segment ? "data" : "code" ,
  61.     l->ent.offset, l->ent.flags);
  62.     l = l->next;
  63.   }
  64. }