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

编译器/解释器

开发平台:

C/C++

  1. /* sync.c   the Netwide Disassembler synchronisation processing module
  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 <limits.h>
  11. #include "sync.h"
  12. #define SYNC_MAX 4096        /* max # of sync points */
  13. /*
  14.  * This lot manages the current set of sync points by means of a
  15.  * heap (priority queue) structure.
  16.  */
  17. static struct Sync {
  18.     unsigned long pos;
  19.     unsigned long length;
  20. } *synx;
  21. static int nsynx;
  22. void init_sync(void) 
  23. {
  24.     /*
  25.      * I'd like to allocate an array of size SYNC_MAX, then write
  26.      * `synx--' which would allow numbering the array from one
  27.      * instead of zero without wasting memory. Sadly I don't trust
  28.      * this to work in 16-bit Large model, so it's staying the way
  29.      * it is. Btw, we don't care about freeing this array, since it
  30.      * has to last for the duration of the program and will then be
  31.      * auto-freed on exit. And I'm lazy ;-)
  32.      * 
  33.      * Speaking of 16-bit Large model, that's also the reason I'm
  34.      * not declaring this array statically - by doing it
  35.      * dynamically I avoid problems with the total size of DGROUP
  36.      * in Borland C.
  37.      */
  38.     synx = malloc((SYNC_MAX+1) * sizeof(*synx));
  39.     if (!synx) {
  40. fprintf(stderr, "ndisasm: not enough memory for sync arrayn");
  41. exit(1);
  42.     }
  43.     nsynx = 0;
  44. }
  45. void add_sync(unsigned long pos, unsigned long length) 
  46. {
  47.     int i;
  48.     if (nsynx == SYNC_MAX)
  49. return;        /* can't do anything - overflow */
  50.     nsynx++;
  51.     synx[nsynx].pos = pos;
  52.     synx[nsynx].length = length;
  53.     for (i = nsynx; i > 1; i /= 2) {
  54. if (synx[i/2].pos > synx[i].pos) {
  55.     struct Sync t;
  56.     t = synx[i/2];        /* structure copy */
  57.     synx[i/2] = synx[i];       /* structure copy again */
  58.     synx[i] = t;        /* another structure copy */
  59. }
  60.     }
  61. }
  62. unsigned long next_sync(unsigned long position, unsigned long *length) 
  63. {
  64.     while (nsynx > 0 && synx[1].pos + synx[1].length <= position) {
  65. int i, j;
  66. struct Sync t;
  67. t = synx[nsynx];        /* structure copy */
  68. synx[nsynx] = synx[1];        /* structure copy */
  69. synx[1] = t;        /* ditto */
  70. nsynx--;
  71.         i = 1;
  72. while (i*2 <= nsynx) {
  73.     j = i*2;
  74.     if (synx[j].pos < synx[i].pos &&
  75. (j+1 > nsynx || synx[j+1].pos > synx[j].pos)) {
  76. t = synx[j];        /* structure copy */
  77. synx[j] = synx[i];     /* lots of these... */
  78. synx[i] = t;        /* ...aren't there? */
  79. i = j;
  80.     } else if (j+1 <= nsynx && synx[j+1].pos < synx[i].pos) {
  81. t = synx[j+1];        /* structure copy */
  82. synx[j+1] = synx[i];   /* structure <yawn> copy */
  83. synx[i] = t;        /* structure copy <zzzz....> */
  84. i = j+1;
  85.     } else
  86. break;
  87. }
  88.     }
  89.     if (nsynx > 0) {
  90. if (length)
  91.     *length = synx[1].length;
  92. return synx[1].pos;
  93.     } else {
  94. if (length)
  95.     *length = 0L;
  96. return ULONG_MAX;
  97.     }
  98. }