Statistics
| Branch: | Revision:

root / target-ppc / op_template.h @ 28b6751f

History | View | Annotate | Download (1.8 kB)

1
/*
2
 *  PPC emulation micro-operations for qemu.
3
 * 
4
 *  Copyright (c) 2003 Jocelyn Mayer
5
 *
6
 * This library is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 2 of the License, or (at your option) any later version.
10
 *
11
 * This library is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 */
20

    
21
void OPPROTO glue(op_load_gpr_T0_gpr, REG)(void)
22
{
23
    T0 = regs->gpr[REG];
24
}
25

    
26
void OPPROTO glue(op_load_gpr_T1_gpr, REG)(void)
27
{
28
    T1 = regs->gpr[REG];
29
}
30

    
31
void OPPROTO glue(op_load_gpr_T2_gpr, REG)(void)
32
{
33
    T2 = regs->gpr[REG];
34
}
35

    
36
void OPPROTO glue(op_store_T0_gpr_gpr, REG)(void)
37
{
38
    regs->gpr[REG] = T0;
39
}
40

    
41
void OPPROTO glue(op_store_T1_gpr_gpr, REG)(void)
42
{
43
    regs->gpr[REG] = T1;
44
}
45

    
46
void OPPROTO glue(op_store_T2_gpr_gpr, REG)(void)
47
{
48
    regs->gpr[REG] = T2;
49
}
50

    
51
#if REG <= 7
52

    
53
void OPPROTO glue(op_load_crf_T0_crf, REG)(void)
54
{
55
    T0 = regs->crf[REG];
56
}
57

    
58
void OPPROTO glue(op_load_crf_T1_crf, REG)(void)
59
{
60
    T1 = regs->crf[REG];
61
}
62

    
63
void OPPROTO glue(op_store_T0_crf_crf, REG)(void)
64
{
65
    regs->crf[REG] = T0;
66
}
67

    
68
void OPPROTO glue(op_store_T1_crf_crf, REG)(void)
69
{
70
    regs->crf[REG] = T1;
71
}
72

    
73
#endif /* REG <= 7 */
74

    
75
/* float moves */
76

    
77
void OPPROTO glue(op_load_FT0_fpr, REG)(void)
78
{
79
    FT0 = env->fpr[REG];
80
}
81

    
82
void OPPROTO glue(op_store_FT0_fpr, REG)(void)
83
{
84
    env->fpr[REG] = FT0;
85
}
86

    
87
#undef REG