/[dynamips]/trunk/ppc32_x86_trans.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_x86_trans.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8 - (hide annotations)
Sat Oct 6 16:24:54 2007 UTC (16 years, 6 months ago) by dpavlin
Original Path: upstream/dynamips-0.2.7-RC2/ppc32_x86_trans.h
File MIME type: text/plain
File size: 1824 byte(s)
dynamips-0.2.7-RC2

1 dpavlin 7 /*
2     * Cisco router simulation platform.
3     * Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr)
4     */
5    
6     #ifndef __PPC32_X86_TRANS_H__
7     #define __PPC32_X86_TRANS_H__
8    
9     #include "utils.h"
10     #include "x86-codegen.h"
11     #include "cpu.h"
12     #include "ppc32_exec.h"
13     #include "dynamips.h"
14    
15     #define JIT_SUPPORT 1
16    
17     /* Manipulate bitmasks atomically */
18     static forced_inline void atomic_or(m_uint32_t *v,m_uint32_t m)
19     {
20     __asm__ __volatile__("lock; orl %1,%0":"=m"(*v):"ir"(m),"m"(*v));
21     }
22    
23     static forced_inline void atomic_and(m_uint32_t *v,m_uint32_t m)
24     {
25     __asm__ __volatile__("lock; andl %1,%0":"=m"(*v):"ir"(m),"m"(*v));
26     }
27    
28     /* Wrappers to x86-codegen functions */
29     #define ppc32_jit_tcb_set_patch x86_patch
30     #define ppc32_jit_tcb_set_jump x86_jump_code
31    
32     /* PPC instruction array */
33     extern struct ppc32_insn_tag ppc32_insn_tags[];
34    
35     /* Push epilog for an x86 instruction block */
36     static forced_inline void ppc32_jit_tcb_push_epilog(ppc32_jit_tcb_t *block)
37     {
38     x86_ret(block->jit_ptr);
39     }
40    
41     /* Execute JIT code */
42     static forced_inline
43     void ppc32_jit_tcb_exec(cpu_ppc_t *cpu,ppc32_jit_tcb_t *block)
44     {
45     insn_tblock_fptr jit_code;
46     m_uint32_t offset;
47    
48     offset = (cpu->ia & PPC32_MIN_PAGE_IMASK) >> 2;
49     jit_code = (insn_tblock_fptr)block->jit_insn_ptr[offset];
50    
51     #if 0
52     if (unlikely(!jit_code)) {
53     ppc32_exec_single_step(cpu,vmtoh32(block->ppc_code[offset]));
54     return;
55     }
56     #endif
57    
58     asm volatile ("movl %0,%%edi"::"r"(cpu):
59     "esi","edi","eax","ebx","ecx","edx");
60     jit_code();
61     }
62    
63     /* Set the Instruction Address (IA) register */
64     void ppc32_set_ia(ppc32_jit_tcb_t *b,m_uint32_t new_ia);
65    
66     /* Set the Link Register (LR) */
67     void ppc32_set_lr(ppc32_jit_tcb_t *b,m_uint32_t new_lr);
68    
69     /* Increment the number of executed instructions (performance debugging) */
70     void ppc32_inc_perf_counter(ppc32_jit_tcb_t *b);
71    
72     #endif

  ViewVC Help
Powered by ViewVC 1.1.26