/[dynamips]/trunk/cpu.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/cpu.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

upstream/dynamips-0.2.7-RC1/cpu.h revision 7 by dpavlin, Sat Oct 6 16:23:47 2007 UTC upstream/dynamips-0.2.7/cpu.h revision 10 by dpavlin, Sat Oct 6 16:29:14 2007 UTC
# Line 8  Line 8 
8    
9  #include <pthread.h>  #include <pthread.h>
10  #include "utils.h"  #include "utils.h"
11    #include "jit_op.h"
 /* Forward declaration for generic CPU type */  
 typedef struct cpu_gen cpu_gen_t;  
12    
13  #include "mips64.h"  #include "mips64.h"
14  #include "mips64_cp0.h"  #include "mips64_cp0.h"
# Line 100  struct cpu_gen { Line 98  struct cpu_gen {
98     /* Memory access log for fault debugging */     /* Memory access log for fault debugging */
99     u_int memlog_pos;     u_int memlog_pos;
100     memlog_access_t memlog_array[MEMLOG_COUNT];     memlog_access_t memlog_array[MEMLOG_COUNT];
101    
102       /* Statistics */
103       m_uint64_t dev_access_counter;
104    
105       /* JIT op array for current compiled page */
106       u_int jit_op_array_size;
107       jit_op_t **jit_op_array;
108       jit_op_t **jit_op_current;
109      
110       /* JIT op pool */
111       jit_op_t *jit_op_pool[JIT_OP_POOL_NR];
112  };  };
113    
114  /* CPU group definition */  /* CPU group definition */

Legend:
Removed from v.7  
changed lines
  Added in v.10

  ViewVC Help
Powered by ViewVC 1.1.26