File: decode16.cc

package info (click to toggle)
bochs 1.4pre2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,656 kB
  • ctags: 10,322
  • sloc: cpp: 66,880; ansic: 19,674; sh: 2,951; makefile: 2,183; asm: 2,110; yacc: 723; lex: 171; csh: 147; perl: 35
file content (120 lines) | stat: -rw-r--r-- 2,907 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/////////////////////////////////////////////////////////////////////////
// $Id: decode16.cc,v 1.5 2001/10/03 13:10:37 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
//  Copyright (C) 2001  MandrakeSoft S.A.
//
//    MandrakeSoft S.A.
//    43, rue d'Aboukir
//    75002 Paris - France
//    http://www.linux-mandrake.com/
//    http://www.mandrakesoft.com/
//
//  This library is free software; you can redistribute it and/or
//  modify it under the terms of the GNU Lesser General Public
//  License as published by the Free Software Foundation; either
//  version 2 of the License, or (at your option) any later version.
//
//  This library is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//  Lesser General Public License for more details.
//
//  You should have received a copy of the GNU Lesser General Public
//  License along with this library; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA





#define NEED_CPU_REG_SHORTCUTS 1
#include "bochs.h"
#define LOG_THIS BX_CPU_THIS_PTR



static Bit16u *aaa[8] = {
  & BX,
  & BX,
  & BP,
  & BP,
  & SI,
  & DI,
  & BP,
  & BX,
  };

static Bit16u *bbb[8] = {
  & SI,
  & DI,
  & SI,
  & DI,
  (Bit16u *) & BX_CPU_THIS_PTR empty_register,
  (Bit16u *) & BX_CPU_THIS_PTR empty_register,
  (Bit16u *) & BX_CPU_THIS_PTR empty_register,
  (Bit16u *) & BX_CPU_THIS_PTR empty_register
  };




  void
BX_CPU_C::decode_exgx16(unsigned modrm)
{
  Bit8u  displ8;
  Bit16u displ16;
  unsigned mod, rm;

#if BX_WEIRDISMS
    i->seg_reg = NULL;
#endif

  // |  76 | 543 | 210
  // | mod | ttt |  rm

  BX_INSTR_MODRM16(modrm);
  i->nnn = (modrm>>3) & 0x07;
  mod = modrm & 0xc0;
  rm = modrm & 0x07;

  if (mod == 0xc0) {
    i->rm_addr = rm;
    BX_CPU_THIS_PTR rm_type = BX_REGISTER_REF;
    return;
    }
  else { // mod != 3
    BX_CPU_THIS_PTR rm_type = BX_MEMORY_REF;

    if (mod == 0x40) {
      displ8 = fetch_next_byte();
      i->rm_addr = (Bit16u) (*aaa[rm] + *bbb[rm] + (Bit8s) displ8);
      if (i->seg_reg == NULL)
        i->seg_reg = BX_CPU_THIS_PTR sreg_mod01_rm16[rm];
      else
        i->seg_reg = i->seg_reg;
      return;
      }
    if (mod == 0x80) {
      displ16 = fetch_next_word();
      i->rm_addr = (Bit16u) (*aaa[rm] + *bbb[rm] + (Bit16s) displ16);
      if (i->seg_reg == NULL)
        i->seg_reg = BX_CPU_THIS_PTR sreg_mod10_rm16[rm];
      else
        i->seg_reg = i->seg_reg;
      return;
      }

    // mod == 0x00
    if (rm==6)
      i->rm_addr = fetch_next_word();
    else
      i->rm_addr = (Bit16u) (*aaa[rm] + *bbb[rm]);

    if (i->seg_reg == NULL)
      i->seg_reg = BX_CPU_THIS_PTR sreg_mod00_rm16[rm];
    else
      i->seg_reg = i->seg_reg;
    return;
    }
}