/[gxemul]/upstream/0.3.8/src/cpus/cpu_ia64_instr.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /upstream/0.3.8/src/cpus/cpu_ia64_instr.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 23 - (show annotations)
Mon Oct 8 16:19:43 2007 UTC (16 years, 7 months ago) by dpavlin
File MIME type: text/plain
File size: 3870 byte(s)
0.3.8
1 /*
2 * Copyright (C) 2005-2006 Anders Gavare. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 *
28 * $Id: cpu_ia64_instr.c,v 1.4 2006/02/09 22:40:27 debug Exp $
29 *
30 * IA64 instructions.
31 *
32 * Individual functions should keep track of cpu->n_translated_instrs.
33 * (If no instruction was executed, then it should be decreased. If, say, 4
34 * instructions were combined into one function and executed, then it should
35 * be increased by 3.)
36 */
37
38
39 /*
40 * nop: Do nothing.
41 */
42 X(nop)
43 {
44 }
45
46
47 /*****************************************************************************/
48
49
50 X(end_of_page)
51 {
52 /* Update the PC: (offset 0, but on the next page) */
53 cpu->pc &= ~((IA64_IC_ENTRIES_PER_PAGE-1) << 4);
54 cpu->pc += (IA64_IC_ENTRIES_PER_PAGE << 4);
55
56 /* Find the new physical page and update the translation pointers: */
57 ia64_pc_to_pointers(cpu);
58
59 /* end_of_page doesn't count as an executed instruction: */
60 cpu->n_translated_instrs --;
61 }
62
63
64 /*****************************************************************************/
65
66
67 /*
68 * ia64_instr_to_be_translated():
69 *
70 * Translate an instruction word into an ia64_instr_call. ic is filled in with
71 * valid data for the translated instruction, or a "nothing" instruction if
72 * there was a translation failure. The newly translated instruction is then
73 * executed.
74 */
75 X(to_be_translated)
76 {
77 uint64_t addr, low_pc;
78 #ifdef DYNTRANS_BACKEND
79 int simple = 0;
80 #endif
81 unsigned char ib[16];
82
83 /* Figure out the (virtual) address of the instruction: */
84 low_pc = ((size_t)ic - (size_t)cpu->cd.ia64.cur_ic_page)
85 / sizeof(struct ia64_instr_call);
86 addr = cpu->pc & ~((IA64_IC_ENTRIES_PER_PAGE-1)
87 << IA64_INSTR_ALIGNMENT_SHIFT);
88 addr += (low_pc << IA64_INSTR_ALIGNMENT_SHIFT);
89 addr &= ~0xf;
90 cpu->pc = addr;
91
92 /* Read the instruction word from memory: */
93 #if 0
94 if (page != NULL) {
95 /* fatal("TRANSLATION HIT!\n"); */
96 memcpy(ib, page + (addr & 8191), sizeof(ib));
97 } else
98 #endif
99 {
100 /* fatal("TRANSLATION MISS!\n"); */
101 if (!cpu->memory_rw(cpu, cpu->mem, addr, &ib[0],
102 sizeof(ib), MEM_READ, CACHE_INSTRUCTION)) {
103 fatal("to_be_translated(): read failed: TODO\n");
104 goto bad;
105 }
106 }
107
108
109 #define DYNTRANS_TO_BE_TRANSLATED_HEAD
110 #include "cpu_dyntrans.c"
111 #undef DYNTRANS_TO_BE_TRANSLATED_HEAD
112
113
114 fatal("[ UNIMPLEMENTED IA64 instruction ]\n");
115 goto bad;
116
117
118 #define DYNTRANS_TO_BE_TRANSLATED_TAIL
119 #include "cpu_dyntrans.c"
120 #undef DYNTRANS_TO_BE_TRANSLATED_TAIL
121 }
122

  ViewVC Help
Powered by ViewVC 1.1.26