/[dynamips]/trunk/ppc32.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

Annotation of /trunk/ppc32.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (hide annotations)
Sat Oct 6 16:29:14 2007 UTC (16 years, 5 months ago) by dpavlin
Original Path: upstream/dynamips-0.2.7/ppc32.h
File MIME type: text/plain
File size: 16896 byte(s)
dynamips-0.2.7

1 dpavlin 7 /*
2     * Cisco router simulation platform.
3     * Copyright (c) 2006 Christophe Fillot (cf@utc.fr)
4     */
5    
6     #ifndef __PPC_32_H__
7     #define __PPC_32_H__
8    
9     #include <pthread.h>
10    
11     #include "utils.h"
12     #include "rbtree.h"
13    
14     /* CPU identifiers */
15     #define PPC32_PVR_405 0x40110000
16    
17     /* Number of GPR (general purpose registers) */
18     #define PPC32_GPR_NR 32
19    
20     /* Number of registers in FPU */
21     #define PPC32_FPU_REG_NR 32
22    
23     /* Minimum page size: 4 Kb */
24     #define PPC32_MIN_PAGE_SHIFT 12
25     #define PPC32_MIN_PAGE_SIZE (1 << PPC32_MIN_PAGE_SHIFT)
26     #define PPC32_MIN_PAGE_IMASK (PPC32_MIN_PAGE_SIZE - 1)
27     #define PPC32_MIN_PAGE_MASK 0xFFFFF000
28    
29 dpavlin 9 /* Number of instructions per page */
30     #define PPC32_INSN_PER_PAGE (PPC32_MIN_PAGE_SIZE/sizeof(ppc_insn_t))
31    
32 dpavlin 7 /* Starting point for ROM */
33     #define PPC32_ROM_START 0xfff00100
34     #define PPC32_ROM_SP 0x00006000
35    
36     /* Special Purpose Registers (SPR) */
37     #define PPC32_SPR_XER 1
38     #define PPC32_SPR_LR 8 /* Link Register */
39     #define PPC32_SPR_CTR 9 /* Count Register */
40     #define PPC32_SPR_DSISR 18
41     #define PPC32_SPR_DAR 19
42     #define PPC32_SPR_DEC 22 /* Decrementer */
43     #define PPC32_SPR_SDR1 25 /* Page Table Address */
44     #define PPC32_SPR_SRR0 26
45     #define PPC32_SPR_SRR1 27
46     #define PPC32_SPR_TBL_READ 268 /* Time Base Low (read) */
47     #define PPC32_SPR_TBU_READ 269 /* Time Base Up (read) */
48     #define PPC32_SPR_SPRG0 272
49     #define PPC32_SPR_SPRG1 273
50     #define PPC32_SPR_SPRG2 274
51     #define PPC32_SPR_SPRG3 275
52     #define PPC32_SPR_TBL_WRITE 284 /* Time Base Low (write) */
53     #define PPC32_SPR_TBU_WRITE 285 /* Time Base Up (write) */
54     #define PPC32_SPR_PVR 287 /* Processor Version Register */
55     #define PPC32_SPR_HID0 1008
56     #define PPC32_SPR_HID1 1009
57    
58     #define PPC405_SPR_PID 945 /* Process Identifier */
59    
60     /* Exception vectors */
61     #define PPC32_EXC_SYS_RST 0x00000100 /* System Reset */
62     #define PPC32_EXC_MC_CHK 0x00000200 /* Machine Check */
63     #define PPC32_EXC_DSI 0x00000300 /* Data memory access failure */
64     #define PPC32_EXC_ISI 0x00000400 /* Instruction fetch failure */
65     #define PPC32_EXC_EXT 0x00000500 /* External Interrupt */
66     #define PPC32_EXC_ALIGN 0x00000600 /* Alignment */
67     #define PPC32_EXC_PROG 0x00000700 /* FPU, Illegal instruction, ... */
68     #define PPC32_EXC_NO_FPU 0x00000800 /* FPU unavailable */
69     #define PPC32_EXC_DEC 0x00000900 /* Decrementer */
70     #define PPC32_EXC_SYSCALL 0x00000C00 /* System Call */
71     #define PPC32_EXC_TRACE 0x00000D00 /* Trace */
72     #define PPC32_EXC_FPU_HLP 0x00000E00 /* Floating-Point Assist */
73    
74 dpavlin 8 /* Condition Register (CR) is accessed through 8 fields of 4 bits */
75     #define ppc32_get_cr_field(n) ((n) >> 2)
76     #define ppc32_get_cr_bit(n) (~(n) & 0x03)
77    
78     /* Positions of LT, GT, EQ and SO bits in CR fields */
79     #define PPC32_CR_LT_BIT 3
80     #define PPC32_CR_GT_BIT 2
81     #define PPC32_CR_EQ_BIT 1
82     #define PPC32_CR_SO_BIT 0
83    
84 dpavlin 7 /* CR0 (Condition Register Field 0) bits */
85     #define PPC32_CR0_LT_BIT 31
86     #define PPC32_CR0_LT (1 << PPC32_CR0_LT_BIT) /* Negative */
87     #define PPC32_CR0_GT_BIT 30
88     #define PPC32_CR0_GT (1 << PPC32_CR0_GT_BIT) /* Positive */
89     #define PPC32_CR0_EQ_BIT 29
90     #define PPC32_CR0_EQ (1 << PPC32_CR0_EQ_BIT) /* Zero */
91     #define PPC32_CR0_SO_BIT 28
92     #define PPC32_CR0_SO (1 << PPC32_CR0_SO_BIT) /* Summary overflow */
93    
94     /* XER register */
95     #define PPC32_XER_SO_BIT 31
96     #define PPC32_XER_SO (1 << PPC32_XER_SO_BIT) /* Summary Overflow */
97     #define PPC32_XER_OV 0x40000000 /* Overflow */
98     #define PPC32_XER_CA_BIT 29
99     #define PPC32_XER_CA (1 << PPC32_XER_CA_BIT) /* Carry */
100     #define PPC32_XER_BC_MASK 0x0000007F /* Byte cnt (lswx/stswx) */
101    
102     /* MSR (Machine State Register) */
103     #define PPC32_MSR_POW_MASK 0x00060000 /* Power Management */
104     #define PPC32_MSR_ILE 0x00010000 /* Exception Little-Endian Mode */
105     #define PPC32_MSR_EE 0x00008000 /* External Interrupt Enable */
106     #define PPC32_MSR_PR 0x00004000 /* Privilege Level (0=supervisor) */
107     #define PPC32_MSR_PR_SHIFT 14
108     #define PPC32_MSR_FP 0x00002000 /* Floating-Point Available */
109     #define PPC32_MSR_ME 0x00001000 /* Machine Check Enable */
110     #define PPC32_MSR_FE0 0x00000800 /* Floating-Point Exception Mode 0 */
111     #define PPC32_MSR_SE 0x00000400 /* Single-step trace enable */
112     #define PPC32_MSR_BE 0x00000200 /* Branch Trace Enable */
113     #define PPC32_MSR_FE1 0x00000100 /* Floating-Point Exception Mode 1 */
114     #define PPC32_MSR_IP 0x00000040 /* Exception Prefix */
115     #define PPC32_MSR_IR 0x00000020 /* Instruction address translation */
116     #define PPC32_MSR_DR 0x00000010 /* Data address translation */
117     #define PPC32_MSR_RI 0x00000002 /* Recoverable Exception */
118     #define PPC32_MSR_LE 0x00000001 /* Little-Endian mode enable */
119    
120     #define PPC32_RFI_MSR_MASK 0x87c0ff73
121     #define PPC32_EXC_SRR1_MASK 0x0000ff73
122     #define PPC32_EXC_MSR_MASK 0x0006ef32
123    
124     /* Number of BAT registers (8 for PowerPC 7448) */
125     #define PPC32_BAT_NR 8
126    
127     /* Number of segment registers */
128     #define PPC32_SR_NR 16
129    
130     /* Upper BAT register */
131     #define PPC32_UBAT_BEPI_MASK 0xFFFE0000 /* Block Effective Page Index */
132     #define PPC32_UBAT_BEPI_SHIFT 17
133     #define PPC32_UBAT_BL_MASK 0x00001FFC /* Block Length */
134     #define PPC32_UBAT_BL_SHIFT 2
135     #define PPC32_UBAT_XBL_MASK 0x0001FFFC /* Block Length */
136     #define PPC32_UBAT_XBL_SHIFT 2
137     #define PPC32_UBAT_VS 0x00000002 /* Supervisor mode valid bit */
138     #define PPC32_UBAT_VP 0x00000001 /* User mode valid bit */
139     #define PPC32_UBAT_PROT_MASK (PPC32_UBAT_VS|PPC32_UBAT_VP)
140    
141     /* Lower BAT register */
142     #define PPC32_LBAT_BRPN_MASK 0xFFFE0000 /* Physical address */
143     #define PPC32_LBAT_BRPN_SHIFT 17
144     #define PPC32_LBAT_WIMG_MASK 0x00000078 /* Memory/cache access mode bits */
145     #define PPC32_LBAT_PP_MASK 0x00000003 /* Protection bits */
146    
147     #define PPC32_BAT_ADDR_SHIFT 17
148    
149     /* Segment Descriptor */
150     #define PPC32_SD_T 0x80000000
151     #define PPC32_SD_KS 0x40000000 /* Supervisor-state protection key */
152     #define PPC32_SD_KP 0x20000000 /* User-state protection key */
153     #define PPC32_SD_N 0x10000000 /* No-execute protection bit */
154     #define PPC32_SD_VSID_MASK 0x00FFFFFF /* Virtual Segment ID */
155    
156     /* SDR1 Register */
157     #define PPC32_SDR1_HTABORG_MASK 0xFFFF0000 /* Physical base address */
158     #define PPC32_SDR1_HTABEXT_MASK 0x0000E000 /* Extended base address */
159     #define PPC32_SDR1_HTABMASK 0x000001FF /* Mask for page table address */
160     #define PPC32_SDR1_HTMEXT_MASK 0x00001FFF /* Extended mask */
161    
162     /* Page Table Entry (PTE) size: 64-bits */
163     #define PPC32_PTE_SIZE 8
164    
165     /* PTE entry (Up and Lo) */
166     #define PPC32_PTEU_V 0x80000000 /* Valid entry */
167     #define PPC32_PTEU_VSID_MASK 0x7FFFFF80 /* Virtual Segment ID */
168     #define PPC32_PTEU_VSID_SHIFT 7
169     #define PPC32_PTEU_H 0x00000040 /* Hash function */
170     #define PPC32_PTEU_API_MASK 0x0000003F /* Abbreviated Page index */
171     #define PPC32_PTEL_RPN_MASK 0xFFFFF000 /* Physical Page Number */
172     #define PPC32_PTEL_XPN_MASK 0x00000C00 /* Extended Page Number (0-2) */
173     #define PPC32_PTEL_XPN_SHIFT 9
174     #define PPC32_PTEL_R 0x00000100 /* Referenced bit */
175     #define PPC32_PTEL_C 0x00000080 /* Changed bit */
176     #define PPC32_PTEL_WIMG_MASK 0x00000078 /* Mem/cache access mode bits */
177     #define PPC32_PTEL_WIMG_SHIFT 3
178     #define PPC32_PTEL_X_MASK 0x00000004 /* Extended Page Number (3) */
179     #define PPC32_PTEL_X_SHIFT 2
180     #define PPC32_PTEL_PP_MASK 0x00000003 /* Page Protection bits */
181    
182     /* DSISR register */
183     #define PPC32_DSISR_NOTRANS 0x40000000 /* No valid translation */
184     #define PPC32_DSISR_STORE 0x02000000 /* Store operation */
185    
186     /* PowerPC 405 TLB definitions */
187     #define PPC405_TLBHI_EPN_MASK 0xFFFFFC00 /* Effective Page Number */
188     #define PPC405_TLBHI_SIZE_MASK 0x00000380 /* Page Size */
189     #define PPC405_TLBHI_SIZE_SHIFT 7
190     #define PPC405_TLBHI_V 0x00000040 /* Valid TLB entry */
191     #define PPC405_TLBHI_E 0x00000020 /* Endianness */
192     #define PPC405_TLBHI_U0 0x00000010 /* User-Defined Attribute */
193    
194     #define PPC405_TLBLO_RPN_MASK 0xFFFFFC00 /* Real Page Number */
195     #define PPC405_TLBLO_EX 0x00000200 /* Execute Enable */
196     #define PPC405_TLBLO_WR 0x00000100 /* Write Enable */
197     #define PPC405_TLBLO_ZSEL_MASK 0x000000F0 /* Zone Select */
198     #define PPC405_TLBLO_ZSEL_SHIFT 4
199     #define PPC405_TLBLO_W 0x00000008 /* Write-Through */
200     #define PPC405_TLBLO_I 0x00000004 /* Caching Inhibited */
201     #define PPC405_TLBLO_M 0x00000002 /* Memory Coherent */
202     #define PPC405_TLBLO_G 0x00000001 /* Guarded */
203    
204     /* Number of TLB entries for PPC405 */
205     #define PPC405_TLB_ENTRIES 64
206    
207     struct ppc405_tlb_entry {
208     m_uint32_t tlb_hi,tlb_lo,tid;
209     };
210    
211     /* Memory operations */
212     enum {
213     PPC_MEMOP_LOOKUP = 0,
214    
215     /* Instruction fetch operation */
216     PPC_MEMOP_IFETCH,
217    
218     /* Load operations */
219     PPC_MEMOP_LBZ,
220     PPC_MEMOP_LHZ,
221     PPC_MEMOP_LWZ,
222    
223     /* Load operation with sign-extend */
224     PPC_MEMOP_LHA,
225    
226     /* Store operations */
227     PPC_MEMOP_STB,
228     PPC_MEMOP_STH,
229     PPC_MEMOP_STW,
230    
231     /* Byte-Reversed operations */
232     PPC_MEMOP_LWBR,
233     PPC_MEMOP_STWBR,
234    
235     /* String operations */
236     PPC_MEMOP_LSW,
237     PPC_MEMOP_STSW,
238    
239     /* FPU operations */
240     PPC_MEMOP_LFD,
241     PPC_MEMOP_STFD,
242    
243     /* ICBI - Instruction Cache Block Invalidate */
244     PPC_MEMOP_ICBI,
245    
246     PPC_MEMOP_MAX,
247     };
248    
249     /* PowerPC CPU type */
250     typedef struct cpu_ppc cpu_ppc_t;
251    
252     /* Memory operation function prototype */
253     typedef fastcall u_int (*ppc_memop_fn)(cpu_ppc_t *cpu,m_uint32_t vaddr,
254     u_int reg);
255    
256     /* BAT type indexes */
257     enum {
258     PPC32_IBAT_IDX = 0,
259     PPC32_DBAT_IDX,
260     };
261    
262     /* BAT register */
263     struct ppc32_bat_reg {
264     m_uint32_t reg[2];
265     };
266    
267     /* BAT register programming */
268     struct ppc32_bat_prog {
269     int type,index;
270     m_uint32_t hi,lo;
271     };
272    
273     /* MTS Instruction Cache and Data Cache */
274     #define PPC32_MTS_ICACHE PPC32_IBAT_IDX
275     #define PPC32_MTS_DCACHE PPC32_DBAT_IDX
276    
277     /* FPU Coprocessor definition */
278     typedef struct {
279     m_uint64_t reg[PPC32_FPU_REG_NR];
280     }ppc_fpu_t;
281    
282     /* Maximum number of breakpoints */
283     #define PPC32_MAX_BREAKPOINTS 8
284    
285     /* PowerPC CPU definition */
286     struct cpu_ppc {
287     /* Instruction address */
288     m_uint32_t ia;
289    
290     /* General Purpose registers */
291     m_uint32_t gpr[PPC32_GPR_NR];
292    
293     /* Pending IRQ */
294     volatile m_uint32_t irq_pending,irq_check;
295    
296     /* XER, Condition Register, Link Register, Count Register */
297 dpavlin 8 m_uint32_t xer,lr,ctr,reserve;
298 dpavlin 7 m_uint32_t xer_ca;
299    
300 dpavlin 8 /* Condition Register (CR) fields */
301     u_int cr_fields[8];
302    
303 dpavlin 7 /* MTS caches (Instruction+Data) */
304     mts32_entry_t *mts_cache[2];
305    
306 dpavlin 8 /* Code page translation cache and physical page mapping */
307     ppc32_jit_tcb_t **exec_blk_map,**exec_phys_map;
308 dpavlin 7
309     /* Virtual address to physical page translation */
310     fastcall int (*translate)(cpu_ppc_t *cpu,m_uint32_t vaddr,u_int cid,
311     m_uint32_t *phys_page);
312    
313     /* Memory access functions */
314     ppc_memop_fn mem_op_fn[PPC_MEMOP_MAX];
315    
316     /* Memory lookup function (to load ELF image,...) */
317     void *(*mem_op_lookup)(cpu_ppc_t *cpu,m_uint32_t vaddr,u_int cid);
318    
319     /* MTS slow lookup function */
320     mts32_entry_t *(*mts_slow_lookup)(cpu_ppc_t *cpu,m_uint32_t vaddr,
321     u_int cid,u_int op_code,u_int op_size,
322     u_int op_type,m_uint64_t *data,
323     u_int *exc,mts32_entry_t *alt_entry);
324    
325     /* IRQ counters */
326     m_uint64_t irq_count,timer_irq_count,irq_fp_count;
327     pthread_mutex_t irq_lock;
328    
329     /* Current and free lists of translated code blocks */
330     ppc32_jit_tcb_t *tcb_list,*tcb_last,*tcb_free_list;
331    
332     /* Executable page area */
333     void *exec_page_area;
334     size_t exec_page_area_size;
335     size_t exec_page_count,exec_page_alloc;
336     insn_exec_page_t *exec_page_free_list;
337     insn_exec_page_t *exec_page_array;
338    
339     /* Idle PC value */
340     volatile m_uint32_t idle_pc;
341    
342     /* Timer IRQs */
343     volatile u_int timer_irq_pending,timer_irq_armed;
344     u_int timer_irq_freq;
345     u_int timer_irq_check_itv;
346     u_int timer_drift;
347    
348     /* IRQ disable flag */
349     volatile u_int irq_disable;
350    
351     /* IBAT (Instruction) and DBAT (Data) registers */
352     struct ppc32_bat_reg bat[2][PPC32_BAT_NR];
353    
354     /* Segment registers */
355     m_uint32_t sr[PPC32_SR_NR];
356    
357     /* Page Table Address */
358     m_uint32_t sdr1;
359     void *sdr1_hptr;
360    
361     /* MSR (Machine state register) */
362     m_uint32_t msr;
363    
364     /* Interrupt Registers (SRR0/SRR1) */
365     m_uint32_t srr0,srr1,dsisr,dar;
366    
367     /* SPRG registers */
368     m_uint32_t sprg[4];
369    
370     /* PVR (Processor Version Register) */
371     m_uint32_t pvr;
372    
373     /* Time-Base register */
374     m_uint64_t tb;
375    
376     /* Decrementer */
377     m_uint32_t dec;
378    
379     /* Hardware Implementation Dependent Registers */
380     m_uint32_t hid0,hid1;
381    
382     /* String instruction position (lswi/stswi) */
383     u_int sw_pos;
384    
385     /* PowerPC 405 TLB */
386     struct ppc405_tlb_entry ppc405_tlb[PPC405_TLB_ENTRIES];
387     m_uint32_t ppc405_pid;
388    
389     /* FPU */
390     ppc_fpu_t fpu;
391    
392     /* Generic CPU instance pointer */
393     cpu_gen_t *gen;
394    
395     /* VM instance */
396     vm_instance_t *vm;
397    
398     /* MTS cache statistics */
399     m_uint64_t mts_misses,mts_lookups;
400    
401     /* JIT flush method */
402     u_int jit_flush_method;
403    
404     /* Number of compiled pages */
405     u_int compiled_pages;
406    
407     /* Fast memory operations use */
408     u_int fast_memop;
409    
410 dpavlin 8 /* Direct block jump */
411     u_int exec_blk_direct_jump;
412 dpavlin 7
413     /* Current exec page (non-JIT) info */
414     m_uint64_t njm_exec_page;
415     mips_insn_t *njm_exec_ptr;
416    
417     /* Performance counter (non-JIT) */
418     m_uint64_t perf_counter;
419    
420     /* non-JIT mode instruction counter */
421     m_uint64_t insn_exec_count;
422    
423     /* Breakpoints */
424     m_uint32_t breakpoints[PPC32_MAX_BREAKPOINTS];
425     u_int breakpoints_enabled;
426 dpavlin 9
427     /* JIT host register allocation */
428     char *jit_hreg_seq_name;
429     int ppc_reg_map[PPC32_GPR_NR];
430     struct hreg_map *hreg_map_list,*hreg_lru;
431     struct hreg_map hreg_map[JIT_HOST_NREG];
432 dpavlin 7 };
433    
434 dpavlin 8 #define PPC32_CR_FIELD_OFFSET(f) \
435     (OFFSET(cpu_ppc_t,cr_fields)+((f) * sizeof(u_int)))
436    
437     /* Get the full CR register */
438     static forced_inline m_uint32_t ppc32_get_cr(cpu_ppc_t *cpu)
439     {
440     m_uint32_t cr = 0;
441     int i;
442    
443     for(i=0;i<8;i++)
444     cr |= cpu->cr_fields[i] << (28 - (i << 2));
445    
446     return(cr);
447     }
448    
449     /* Set the CR fields given a CR value */
450     static forced_inline void ppc32_set_cr(cpu_ppc_t *cpu,m_uint32_t cr)
451     {
452     int i;
453    
454     for(i=0;i<8;i++)
455     cpu->cr_fields[i] = (cr >> (28 - (i << 2))) & 0x0F;
456     }
457    
458     /* Get a CR bit */
459     static forced_inline m_uint32_t ppc32_read_cr_bit(cpu_ppc_t *cpu,u_int bit)
460     {
461     m_uint32_t res;
462    
463     res = cpu->cr_fields[ppc32_get_cr_field(bit)] >> ppc32_get_cr_bit(bit);
464     return(res & 0x01);
465     }
466    
467     /* Set a CR bit */
468     static forced_inline void ppc32_set_cr_bit(cpu_ppc_t *cpu,u_int bit)
469     {
470     cpu->cr_fields[ppc32_get_cr_field(bit)] |= 1 << ppc32_get_cr_bit(bit);
471     }
472    
473     /* Clear a CR bit */
474     static forced_inline void ppc32_clear_cr_bit(cpu_ppc_t *cpu,u_int bit)
475     {
476     cpu->cr_fields[ppc32_get_cr_field(bit)] &= ~(1 << ppc32_get_cr_bit(bit));
477     }
478    
479 dpavlin 7 /* Reset a PowerPC CPU */
480     int ppc32_reset(cpu_ppc_t *cpu);
481    
482     /* Initialize a PowerPC processor */
483     int ppc32_init(cpu_ppc_t *cpu);
484    
485     /* Delete a PowerPC processor */
486     void ppc32_delete(cpu_ppc_t *cpu);
487    
488     /* Set the processor version register (PVR) */
489     void ppc32_set_pvr(cpu_ppc_t *cpu,m_uint32_t pvr);
490    
491     /* Set idle PC value */
492     void ppc32_set_idle_pc(cpu_gen_t *cpu,m_uint64_t addr);
493    
494     /* Timer IRQ */
495     void *ppc32_timer_irq_run(cpu_ppc_t *cpu);
496    
497     /* Determine an "idling" PC */
498     int ppc32_get_idling_pc(cpu_gen_t *cpu);
499    
500     /* Generate an exception */
501     void ppc32_trigger_exception(cpu_ppc_t *cpu,u_int exc_vector);
502    
503     /* Trigger the decrementer exception */
504     void ppc32_trigger_timer_irq(cpu_ppc_t *cpu);
505    
506     /* Trigger IRQs */
507     fastcall void ppc32_trigger_irq(cpu_ppc_t *cpu);
508    
509     /* Virtual breakpoint */
510     fastcall void ppc32_run_breakpoint(cpu_ppc_t *cpu);
511    
512     /* Add a virtual breakpoint */
513     int ppc32_add_breakpoint(cpu_gen_t *cpu,m_uint64_t ia);
514    
515     /* Remove a virtual breakpoint */
516     void ppc32_remove_breakpoint(cpu_gen_t *cpu,m_uint64_t ia);
517    
518     /* Set a register */
519     void ppc32_reg_set(cpu_gen_t *cpu,u_int reg,m_uint64_t val);
520    
521     /* Dump registers of a PowerPC processor */
522     void ppc32_dump_regs(cpu_gen_t *cpu);
523    
524     /* Dump MMU registers */
525     void ppc32_dump_mmu(cpu_gen_t *cpu);
526    
527     /* Load a raw image into the simulated memory */
528     int ppc32_load_raw_image(cpu_ppc_t *cpu,char *filename,m_uint32_t vaddr);
529    
530     /* Load an ELF image into the simulated memory */
531     int ppc32_load_elf_image(cpu_ppc_t *cpu,char *filename,int skip_load,
532     m_uint32_t *entry_point);
533    
534     /* Run PowerPC code in step-by-step mode */
535     void *ppc32_exec_run_cpu(cpu_gen_t *gen);
536    
537     #endif

  ViewVC Help
Powered by ViewVC 1.1.26