MemoryDumpList.java
     1: //========================================================================================
     2: //  MemoryDumpList.java
     3: //    en:Memory dump list
     4: //    ja:メモリダンプリスト
     5: //  Copyright (C) 2003-2024 Makoto Kamada
     6: //
     7: //  This file is part of the XEiJ (X68000 Emulator in Java).
     8: //  You can use, modify and redistribute the XEiJ if the conditions are met.
     9: //  Read the XEiJ License for more details.
    10: //  https://stdkmd.net/xeij/
    11: //========================================================================================
    12: 
    13: package xeij;
    14: 
    15: import java.awt.*;  //BasicStroke,BorderLayout,BoxLayout,Color,Component,Container,Cursor,Desktop,Dimension,Font,FlowLayout,Frame,Graphics,Graphics2D,GraphicsDevice,GraphicsEnvironment,GridLayout,Image,Insets,Paint,Point,Rectangle,RenderingHints,Robot,Shape,Stroke,TexturePaint,Toolkit
    16: import java.awt.event.*;  //ActionEvent,ActionListener,ComponentAdapter,ComponentEvent,ComponentListener,FocusAdapter,FocusEvent,FocusListener,InputEvent,KeyAdapter,KeyEvent,KeyListener,MouseAdapter,MouseEvent,MouseListener,MouseMotionAdapter,MouseWheelEvent,WindowAdapter,WindowEvent,WindowListener,WindowStateListener
    17: import java.lang.*;  //Boolean,Character,Class,Comparable,Double,Exception,Float,IllegalArgumentException,Integer,Long,Math,Number,Object,Runnable,SecurityException,String,StringBuilder,System
    18: import java.util.*;  //ArrayList,Arrays,Calendar,GregorianCalendar,HashMap,Map,Map.Entry,TimeZone,Timer,TimerTask,TreeMap
    19: import javax.swing.*;  //AbstractSpinnerModel,Box,ButtonGroup,DefaultListModel,ImageIcon,JApplet,JButton,JCheckBox,JCheckBoxMenuItem,JDialog,JFileChooser,JFrame,JLabel,JList,JMenu,JMenuBar,JMenuItem,JPanel,JRadioButton,JScrollPane,JSpinner,JTextArea,JTextField,JTextPane,JViewport,ScrollPaneConstants,SpinnerListModel,SpinnerNumberModel,SwingConstants,SwingUtilities,UIManager,UIDefaults,UnsupportedLookAndFeelException
    20: import javax.swing.event.*;  //CaretEvent,CaretListener,ChangeEvent,ChangeListener,DocumentEvent,DocumentListener,ListSelectionListener
    21: import javax.swing.text.*;  //AbstractDocument,BadLocationException,DefaultCaret,Document,DocumentFilter,JTextComponent,ParagraphView,Style,StyleConstants,StyleContext,StyledDocument
    22: 
    23: public class MemoryDumpList {
    24: 
    25:   public static final int DMP_ITEM_SIZE = 0x00000010;  //項目の最小サイズ
    26:   public static final int DMP_PAGE_SIZE = 0x00000400;  //ページのサイズ
    27:   public static final int DMP_ITEM_MASK = -DMP_ITEM_SIZE;
    28:   public static final int DMP_PAGE_MASK = -DMP_PAGE_SIZE;
    29:   public static final int DMP_MAX_ITEMS = DMP_PAGE_SIZE / DMP_ITEM_SIZE + 2;  //ページの最大項目数。先頭と末尾の番兵を含む
    30: 
    31:   public static final char[] DMP_BASE = (
    32:     //         11111111112222222222333333333344444444445555555555666666666677777777778
    33:     //12345678901234567890123456789012345678901234567890123456789012345678901234567890
    34:     "xxxxxxxx  xx xx xx xx  xx xx xx xx  xx xx xx xx  xx xx xx xx ").toCharArray ();
    35:   public static final int DMP_DATA_START = 10;  //行頭からデータの開始位置までのオフセット
    36:   public static final int[] DMP_DATA_ADDRESS = {
    37:     0,   1, -1,  2,  3, -1,  4,  5, -1,  6,  7, -1, -1,
    38:     8,   9, -1, 10, 11, -1, 12, 13, -1, 14, 15, -1, -1,
    39:     16, 17, -1, 18, 19, -1, 20, 21, -1, 22, 23, -1, -1,
    40:     24, 25, -1, 26, 27, -1, 28, 29, -1, 30, 31,
    41:   };  //データの開始位置からのオフセット→データのアドレス*2+(0=上位,1=下位)。-1=空白
    42:   public static final int[] DMP_DATA_OFFSET = {
    43:     0,   1,  3,  4,  6,  7,  9, 10,
    44:     13, 14, 16, 17, 19, 20, 22, 23,
    45:     26, 27, 29, 30, 32, 33, 35, 36,
    46:     39, 40, 42, 43, 45, 46, 48, 49,
    47:   };  //データのアドレス*2+(0=上位,1=下位)→データの開始位置からのオフセット
    48: 
    49:   public static int dmpItemCount;  //ページに含まれる項目の数。先頭と末尾の番兵を含む。0=構築前または再構築要求
    50:   public static int dmpItemIndex;  //キャレットがある項目の番号
    51:   public static int dmpPageAddress;  //ページの先頭アドレス
    52:   public static final int[] dmpAddressArray = new int[DMP_MAX_ITEMS];  //項目の先頭アドレスの配列。先頭は前のページの末尾、末尾は次のページの先頭。スピナーのヒント
    53:   public static final int[] dmpSplitArray = new int[DMP_MAX_ITEMS];  //項目を区切る位置の配列。先頭は0
    54:   public static final int[] dmpCaretArray = new int[DMP_MAX_ITEMS];  //項目が選択されたときキャレットを移動させる位置の配列。行の手前にヘッダやラベルなどを挿入しないときはdmpSplitArrayと同じ
    55: 
    56:   public static JFrame dmpFrame;  //ウインドウ
    57:   public static ScrollTextArea dmpBoard;  //スクロールテキストエリア
    58:   public static JTextArea dmpTextArea;  //テキストエリア
    59:   public static Hex8Spinner dmpSpinner;  //スピナー
    60: 
    61:   public static int dmpSupervisorMode;  //0=ユーザモード,0以外=スーパーバイザモード
    62:   public static JCheckBox dmpSupervisorCheckBox;  //ユーザ/スーパーバイザチェックボックス
    63:   public static boolean dmpSecondBridge;  //true=行末からはみ出して書いた文字を行頭にも書く
    64:   public static Color dmpCellophaneColor;  //dmpSecondBridgeではみ出した部分に被せるセロファンの色
    65: 
    66:   //dmpInit ()
    67:   //  初期化
    68:   public static void dmpInit () {
    69: 
    70:     dmpItemCount = 0;  //構築前
    71:     dmpItemIndex = 0;
    72:     dmpPageAddress = 0;
    73:     dmpSupervisorMode = 1;
    74:     //dmpAddressArray = new int[DMP_MAX_ITEMS];
    75:     //dmpSplitArray = new int[DMP_MAX_ITEMS];
    76:     //dmpCaretArray = new int[DMP_MAX_ITEMS];
    77: 
    78:     dmpFrame = null;
    79: 
    80:   }  //dmpInit()
    81: 
    82:   //dmpStart ()
    83:   public static void dmpStart () {
    84:     if (RestorableFrame.rfmGetOpened (Settings.SGS_DMP_FRAME_KEY)) {
    85:       dmpOpen (-1, -1, true);
    86:     }
    87:   }  //dmpStart()
    88: 
    89:   //dmpOpen (address, supervisor, forceUpdate)
    90:   //  メモリダンプリストウインドウを開く
    91:   //  既に開いているときは手前に持ってくる
    92:   public static void dmpOpen (int address, int supervisor, boolean forceUpdate) {
    93:     if (dmpFrame == null) {
    94:       dmpMake ();
    95:     }
    96:     dmpUpdate (address, supervisor, forceUpdate);
    97:     XEiJ.pnlExitFullScreen (false);
    98:     dmpFrame.setVisible (true);
    99:     XEiJ.dbgVisibleMask |= XEiJ.DBG_DMP_VISIBLE_MASK;
   100:   }  //dmpOpen(int,int,boolean)
   101: 
   102:   static class MemoryDumpTextArea extends ScrollTextArea {
   103:     @Override public void paintAfterText (JTextArea textArea, Graphics2D g2) {
   104:       if (MemoryDumpList.dmpSecondBridge) {
   105:         try {
   106:           g2.setPaint (MemoryDumpList.dmpCellophaneColor);
   107:           Rectangle r0 = textArea.modelToView2D (61).getBounds ();  //0の位置
   108:           Rectangle r1 = textArea.modelToView2D (62).getBounds ();  //1の位置
   109:           g2.fillRect (r0.x - (r1.x - r0.x), r0.y,
   110:                        r1.x - r0.x, r0.height * DMP_MAX_ITEMS);  //左側
   111:           g2.fillRect (r0.x + (r1.x - r0.x) * 16, r0.y,
   112:                        r1.x - r0.x, r0.height * DMP_MAX_ITEMS);  //右側
   113:         } catch (BadLocationException ble) {
   114:         }
   115:       }
   116:     }
   117:   }
   118: 
   119:   //dmpMake ()
   120:   //  メモリダンプリストウインドウを作る
   121:   public static void dmpMake () {
   122: 
   123:     //スクロールテキストエリア
   124:     dmpBoard = ComponentFactory.setPreferredSize (
   125:       ComponentFactory.setFont (new MemoryDumpTextArea (), LnF.lnfMonospacedFont),
   126:       500, 400);
   127:     dmpBoard.setMargin (new Insets (2, 4, 2, 4));
   128:     dmpBoard.setHighlightCursorOn (true);
   129:     dmpTextArea = dmpBoard.getTextArea ();
   130:     dmpTextArea.setEditable (false);
   131: 
   132:     //スピナー
   133:     dmpSpinner = new Hex8Spinner (dmpPageAddress, DMP_ITEM_MASK, true);
   134: 
   135:     //スピナーのチェンジリスナー
   136:     //  スピナーが操作されたとき、そのアドレスの行にテキストエリアのキャレットを移動させる
   137:     //  ページの範囲外になったときはテキストエリアを再構築する
   138:     //  ページの構築中に呼び出されたときは何もしない
   139:     dmpSpinner.addChangeListener (new ChangeListener () {
   140:       @Override public void stateChanged (ChangeEvent ce) {
   141:         if (XEiJ.dbgEventMask == 0) {  //テキストは構築済みでsetTextの中ではない
   142:           dmpUpdate (dmpSpinner.getIntValue (), dmpSupervisorMode, false);
   143:         }
   144:       }
   145:     });
   146: 
   147:     //テキストエリアのキャレットリスナー
   148:     //  テキストエリアがクリックされてキャレットが動いたとき、その行のアドレスをスピナーに設定する
   149:     //  クリックでテキストエリアに移ってしまったフォーカスをスピナーに戻す
   150:     //  ページの構築中に呼び出されたときは何もしない
   151:     //    setText→キャレットリスナー→スピナーのチェンジリスナー→setTextとなるとsetTextの二重呼び出しでエラーが出る
   152:     ComponentFactory.addListener (
   153:       dmpTextArea,
   154:       new CaretListener () {
   155:         @Override public void caretUpdate (CaretEvent ce) {
   156:           if (XEiJ.dbgEventMask == 0) {  //テキストは構築済みでsetTextの中ではない
   157:             int p = ce.getDot ();  //キャレットの位置
   158:             if (p == ce.getMark ()) {  //選択範囲がない
   159:               int i = Arrays.binarySearch (dmpSplitArray, 1, dmpItemCount, p + 1);  //項目の先頭のときも次の項目を検索してから1つ戻る
   160:               i = (i >> 31 ^ i) - 1;  //キャレットがある位置を含む項目の番号
   161:               dmpSpinner.setHintIndex (i);
   162:             }
   163:           }
   164:         }
   165:       });
   166: 
   167:     //テキストエリアのマウスリスナー
   168:     ComponentFactory.addListener (
   169:       dmpTextArea,
   170:       new MouseAdapter () {
   171:         @Override public void mousePressed (MouseEvent me) {
   172:           if (XEiJ.mpuTask == null && me.isPopupTrigger ()) {
   173:             XEiJ.dbgShowPopup (me, dmpTextArea, false);
   174:           }
   175:         }
   176:         @Override public void mouseReleased (MouseEvent me) {
   177:           if (XEiJ.mpuTask == null && me.isPopupTrigger ()) {
   178:             XEiJ.dbgShowPopup (me, dmpTextArea, false);
   179:           }
   180:         }
   181:       });
   182: 
   183:     //テキストエリアのフォーカスリスナー
   184:     ComponentFactory.addListener (
   185:       dmpBoard,
   186:       new FocusAdapter () {
   187:         @Override public void focusGained (FocusEvent fe) {
   188:           dmpBoard.setCaretVisible (true);
   189:         }
   190:         @Override public void focusLost (FocusEvent fe) {
   191:           dmpBoard.setCaretVisible (false);
   192:         }
   193:       });
   194: 
   195:     //テキストエリアのキーリスナー
   196:     ComponentFactory.addListener (
   197:       dmpBoard,
   198:       new KeyAdapter () {
   199:         @Override public void keyTyped (KeyEvent ke) {
   200:           if (XEiJ.dbgEventMask == 0) {  //テキストは構築済みでsetTextの中ではない
   201:             int x = Character.digit (ke.getKeyChar (), 16);
   202:             if (x >= 0) {  //16進数のキーが押された
   203:               int p = dmpTextArea.getCaretPosition ();  //キャレットの位置
   204:               int i = Arrays.binarySearch (dmpSplitArray, 1, dmpItemCount, p + 1);
   205:               i = (i >> 31 ^ i) - 1;  //キャレットがある位置を含む項目の番号
   206:               int t = p - dmpCaretArray[i] - DMP_DATA_START;  //最初のデータの位置からのオフセット
   207:               if (t >= 0 && t < DMP_DATA_ADDRESS.length) {
   208:                 t = DMP_DATA_ADDRESS[t];
   209:                 if (t >= 0) {  //データがある
   210:                   int a = dmpAddressArray[i] + (t >> 1);  //アドレス
   211:                   XEiJ.dbgEventMask++;  //キャレットが動くがキャレットリスナーが反応しないようにする
   212:                   if ((t & 1) == 0) {  //上位
   213:                     try {
   214:                       MC68060.mmuPokeByteData (a, x << 4 | Character.digit (dmpTextArea.getText (p + 1, 1).charAt (0), 16), XEiJ.regSRS);  //書き込む
   215:                     } catch (BadLocationException ble) {
   216:                     }
   217:                     dmpTextArea.replaceRange (XEiJ.fmtHex2 (MC68060.mmuPeekByteZeroData (a, XEiJ.regSRS)), p, p + 2);  //読み出す
   218:                     dmpTextArea.setCaretPosition (p + 1);  //下位の位置
   219:                   } else {  //下位
   220:                     try {
   221:                       MC68060.mmuPokeByteData (a, Character.digit (dmpTextArea.getText (p - 1, 1).charAt (0), 16) << 4 | x, XEiJ.regSRS);  //書き込む
   222:                     } catch (BadLocationException ble) {
   223:                     }
   224:                     dmpTextArea.replaceRange (XEiJ.fmtHex2 (MC68060.mmuPeekByteZeroData (a, XEiJ.regSRS)), p - 1, p + 1);  //読み出す
   225:                     if (t < 31) {
   226:                       dmpTextArea.setCaretPosition (dmpCaretArray[i] + DMP_DATA_START + DMP_DATA_OFFSET[t + 1]);  //次のアドレスの上位の位置
   227:                     }
   228:                   }
   229:                   XEiJ.dbgEventMask--;
   230:                 }
   231:               }
   232:             }
   233:           }
   234:         }
   235:       });
   236: 
   237:     //ボタンのアクションリスナー
   238:     ActionListener listener = new ActionListener () {
   239:       @Override public void actionPerformed (ActionEvent ae) {
   240:         Object source = ae.getSource ();
   241:         switch (ae.getActionCommand ()) {
   242:         case "Reload":
   243:           dmpItemCount = 0;  //再構築要求
   244:           dmpUpdate (dmpAddressArray[dmpItemIndex], dmpSupervisorMode, true);
   245:           break;
   246:         case "User/Supervisor":  //ユーザ/スーパーバイザ
   247:           if (XEiJ.dbgEventMask == 0) {
   248:             dmpUpdate (dmpAddressArray[dmpItemIndex], ((JCheckBox) ae.getSource ()).isSelected () ? 1 : 0, true);
   249:           }
   250:           break;
   251:         case "Second bridge":  //セカンドブリッジ
   252:           dmpSecondBridge = ((JCheckBox) ae.getSource ()).isSelected ();
   253:           dmpItemCount = 0;  //再構築要求
   254:           dmpUpdate (dmpAddressArray[dmpItemIndex], dmpSupervisorMode, true);
   255:           break;
   256:         }
   257:       }
   258:     };
   259: 
   260:     //再読み込みボタン
   261:     JButton reloadButton =
   262:       Multilingual.mlnToolTipText (
   263:         ComponentFactory.createImageButton (
   264:           XEiJ.createImage (
   265:             20, 14,
   266:             "11111111111111111111" +
   267:             "1..................1" +
   268:             "1.......1111.......1" +
   269:             "1......111111.1....1" +
   270:             "1.....11....111....1" +
   271:             "1....11.....111....1" +
   272:             "1....11....1111....1" +
   273:             "1....11............1" +
   274:             "1....11............1" +
   275:             "1.....11....11.....1" +
   276:             "1......111111......1" +
   277:             "1.......1111.......1" +
   278:             "1..................1" +
   279:             "11111111111111111111",
   280:             LnF.lnfRGB[0],
   281:             LnF.lnfRGB[12]),
   282:           "Reload", listener),
   283:         "ja", "再読み込み");
   284: 
   285:     //スーパーバイザチェックボックス
   286:     dmpSupervisorCheckBox =
   287:       Multilingual.mlnToolTipText (
   288:         ComponentFactory.createIconCheckBox (
   289:           dmpSupervisorMode != 0,
   290:           XEiJ.createImage (
   291:             20, 14,
   292:             "22222222222222222222" +
   293:             "2..................2" +
   294:             "2..................2" +
   295:             "2.....11....11.....2" +
   296:             "2.....11....11.....2" +
   297:             "2.....11....11.....2" +
   298:             "2.....11....11.....2" +
   299:             "2.....11....11.....2" +
   300:             "2.....11....11.....2" +
   301:             "2.....11111111.....2" +
   302:             "2.....11111111.....2" +
   303:             "2..................2" +
   304:             "2..................2" +
   305:             "22222222222222222222",
   306:             LnF.lnfRGB[0],
   307:             LnF.lnfRGB[12],
   308:             LnF.lnfRGB[12]),
   309:           XEiJ.createImage (
   310:             20, 14,
   311:             "22222222222222222222" +
   312:             "2..................2" +
   313:             "2..................2" +
   314:             "2.....11111111.....2" +
   315:             "2.....11111111.....2" +
   316:             "2.....11...........2" +
   317:             "2.....11111111.....2" +
   318:             "2.....11111111.....2" +
   319:             "2...........11.....2" +
   320:             "2.....11111111.....2" +
   321:             "2.....11111111.....2" +
   322:             "2..................2" +
   323:             "2..................2" +
   324:             "22222222222222222222",
   325:             LnF.lnfRGB[0],
   326:             LnF.lnfRGB[12],
   327:             LnF.lnfRGB[12]),
   328:           "User/Supervisor", listener),
   329:         "ja", "ユーザ/スーパーバイザ");
   330: 
   331:     //セカンドブリッジチェックボックス
   332:     dmpSecondBridge = false;
   333:     dmpCellophaneColor = new Color ((LnF.lnfRGB[5] & 0x00ffffff) | 0xcc000000, true);
   334:     JCheckBox secondBridgeCheckBox =
   335:       Multilingual.mlnToolTipText (
   336:         ComponentFactory.createIconCheckBox (
   337:           dmpSecondBridge,
   338:           XEiJ.createImage (
   339:             20, 14,
   340:             "22222222222222222222" +
   341:             "2..................2" +
   342:             "2...........11111..2" +
   343:             "2...........11111..2" +
   344:             "2....111111111111..2" +
   345:             "2...........11111..2" +
   346:             "2...........11111..2" +
   347:             "2..................2" +
   348:             "2..................2" +
   349:             "2....1111111111....2" +
   350:             "2..................2" +
   351:             "2..................2" +
   352:             "2..................2" +
   353:             "22222222222222222222",
   354:             LnF.lnfRGB[0],
   355:             LnF.lnfRGB[12],
   356:             LnF.lnfRGB[12]),
   357:           XEiJ.createImage (
   358:             20, 14,
   359:             "22222222222222222222" +
   360:             "2..................2" +
   361:             "2...........11111..2" +
   362:             "2...........11111..2" +
   363:             "2....111111111111..2" +
   364:             "2...........11111..2" +
   365:             "2...........11111..2" +
   366:             "2..11111...........2" +
   367:             "2..11111...........2" +
   368:             "2..111111111111....2" +
   369:             "2..11111...........2" +
   370:             "2..11111...........2" +
   371:             "2..................2" +
   372:             "22222222222222222222",
   373:             LnF.lnfRGB[0],
   374:             LnF.lnfRGB[12],
   375:             LnF.lnfRGB[12]),
   376:           "Second bridge", listener),
   377:         "ja", "セカンドブリッジ");
   378: 
   379:     //ウインドウ
   380:     dmpFrame = Multilingual.mlnTitle (
   381:       ComponentFactory.createRestorableSubFrame (
   382:         Settings.SGS_DMP_FRAME_KEY,
   383:         "Memory dump list",
   384:         null,
   385:         ComponentFactory.createBorderPanel (
   386:           dmpBoard,
   387:           ComponentFactory.createHorizontalBox (
   388:             dmpSpinner,
   389:             reloadButton,
   390:             dmpSupervisorCheckBox,
   391:             secondBridgeCheckBox,
   392:             Box.createHorizontalGlue ()
   393:             )
   394:           )
   395:         ),
   396:       "ja", "メモリダンプリスト");
   397:     ComponentFactory.addListener (
   398:       dmpFrame,
   399:       new WindowAdapter () {
   400:         @Override public void windowClosing (WindowEvent we) {
   401:           XEiJ.dbgVisibleMask &= ~XEiJ.DBG_DMP_VISIBLE_MASK;
   402:         }
   403:       });
   404: 
   405:   }  //dmpMake()
   406: 
   407:   //dmpUpdate (address, supervisor, forceUpdate)
   408:   //  メモリダンプリストウインドウを更新する
   409:   public static void dmpUpdate (int address, int supervisor, boolean forceUpdate) {
   410: 
   411:     XEiJ.dbgEventMask++;  //構築開始
   412: 
   413:     if (address == -1) {  //spを表示
   414:       address = XEiJ.regRn[15];
   415:       forceUpdate = true;
   416:     }
   417: 
   418:     if (supervisor == -1) {
   419:       supervisor = XEiJ.regSRS;
   420:       forceUpdate = true;
   421:     }
   422: 
   423:     if ((dmpSupervisorMode != 0) != (supervisor != 0)) {  //ユーザ/スーパーバイザが一致しない
   424:       dmpSupervisorMode = supervisor;
   425:       forceUpdate = true;
   426:       if (dmpSupervisorCheckBox.isSelected () != (supervisor != 0)) {
   427:         dmpSupervisorCheckBox.setSelected (supervisor != 0);
   428:       }
   429:     }
   430: 
   431:     if (forceUpdate) {  //再構築要求
   432:       dmpItemCount = 0;
   433:     }
   434: 
   435:     if (dmpItemCount != 0) {  //構築前または再構築要求のいずれでもない
   436:       int i = Arrays.binarySearch (dmpAddressArray, 1, dmpItemCount, address + 1);  //項目の先頭のときも次の項目を検索してから1つ戻る
   437:       i = (i >> 31 ^ i) - 1;  //目的のアドレスを含む項目の番号
   438:       if (0 < i && i < dmpItemCount - 1 &&  //ページの内側
   439:           dmpAddressArray[i] == address) {  //項目の先頭
   440: 
   441:         //再構築しない
   442: 
   443:         if (dmpItemIndex != i) {  //キャレットがある項目を変更する必要がある
   444:           dmpItemIndex = i;
   445:           dmpTextArea.setCaretPosition (dmpCaretArray[i]);
   446:         }
   447: 
   448:         XEiJ.dbgEventMask--;  //構築終了
   449: 
   450:         return;
   451:       }
   452:     }
   453: 
   454:     //再構築する
   455: 
   456:     //構築前または再構築要求または先頭または末尾の番兵が選択された
   457:     //  0x00000000の境界を跨ぐとき反対側を指すことがあるので先頭と末尾の番兵を区別しない
   458:     address &= DMP_ITEM_MASK;  //目的のアドレスを含む項目の先頭アドレス
   459:     dmpPageAddress = address & DMP_PAGE_MASK;  //ページの先頭アドレス
   460:     int pageEndAddress = dmpPageAddress + DMP_PAGE_SIZE;  //ページの末尾アドレス。0になることがある
   461: 
   462:     //先頭の番兵
   463:     dmpAddressArray[0] = dmpPageAddress - DMP_ITEM_SIZE;  //昇順を維持するためマスクしない
   464:     dmpSplitArray[0] = 0;
   465:     dmpCaretArray[0] = 0;
   466:     StringBuilder sb = new StringBuilder (
   467:       //         1111111111222222222233333333334444444444555555555566666666667777777777
   468:       //1234567890123456789012345678901234567890123456789012345678901234567890123456789
   469:       //xxxxxxx  xx xx xx xx  xx xx xx xx  xx xx xx xx  xx xx xx xx  ................
   470:       "▲        +0 +1 +2 +3  +4 +5 +6 +7  +8 +9 +A +B  +C +D +E +F  0123456789ABCDEF\n");
   471:     int itemCount = 1;  //項目数
   472:     int itemAddress = dmpPageAddress;  //項目の先頭アドレス
   473:     boolean bridge = false;  //1=先頭はSJISの2バイトコードの2バイト目
   474:     for (int k = 1; k <= 200; k++) {  //最大100文字200バイトまで遡る。長い文章でもSJISの2バイトコードの1バイト目ばかりが続くわけではないので十分だろう
   475:       int h = MC68060.mmuPeekByteZeroData (itemAddress - k, supervisor);
   476:       if ((0x81 <= h && h <= 0x9f) ||
   477:           (0xe0 <= h && h <= 0xef)) {  //SJISの2バイトコードの1バイト目
   478:         bridge = !bridge;
   479:       } else {
   480:         break;
   481:       }
   482:     }
   483: 
   484:     do {
   485:       int itemEndAddress = itemAddress + DMP_ITEM_SIZE;  //項目の末尾アドレス
   486:       //項目の開始
   487:       if (itemAddress == address) {
   488:         dmpItemIndex = itemCount;  //目的のアドレスを含む項目の番号
   489:       }
   490:       dmpAddressArray[itemCount] = itemAddress;  //項目の先頭アドレス
   491:       dmpSplitArray[itemCount] = sb.length ();  //項目を区切る位置
   492:       dmpCaretArray[itemCount] = sb.length ();  //項目が選択されたときキャレットを移動させる位置
   493:       //アドレス
   494:       XEiJ.fmtHex8 (DMP_BASE,  0, itemAddress);
   495:       //データ
   496:       XEiJ.fmtHex2 (DMP_BASE, 10, MC68060.mmuPeekByteZeroData (itemAddress     , supervisor));
   497:       XEiJ.fmtHex2 (DMP_BASE, 13, MC68060.mmuPeekByteZeroData (itemAddress +  1, supervisor));
   498:       XEiJ.fmtHex2 (DMP_BASE, 16, MC68060.mmuPeekByteZeroData (itemAddress +  2, supervisor));
   499:       XEiJ.fmtHex2 (DMP_BASE, 19, MC68060.mmuPeekByteZeroData (itemAddress +  3, supervisor));
   500:       XEiJ.fmtHex2 (DMP_BASE, 23, MC68060.mmuPeekByteZeroData (itemAddress +  4, supervisor));
   501:       XEiJ.fmtHex2 (DMP_BASE, 26, MC68060.mmuPeekByteZeroData (itemAddress +  5, supervisor));
   502:       XEiJ.fmtHex2 (DMP_BASE, 29, MC68060.mmuPeekByteZeroData (itemAddress +  6, supervisor));
   503:       XEiJ.fmtHex2 (DMP_BASE, 32, MC68060.mmuPeekByteZeroData (itemAddress +  7, supervisor));
   504:       XEiJ.fmtHex2 (DMP_BASE, 36, MC68060.mmuPeekByteZeroData (itemAddress +  8, supervisor));
   505:       XEiJ.fmtHex2 (DMP_BASE, 39, MC68060.mmuPeekByteZeroData (itemAddress +  9, supervisor));
   506:       XEiJ.fmtHex2 (DMP_BASE, 42, MC68060.mmuPeekByteZeroData (itemAddress + 10, supervisor));
   507:       XEiJ.fmtHex2 (DMP_BASE, 45, MC68060.mmuPeekByteZeroData (itemAddress + 11, supervisor));
   508:       XEiJ.fmtHex2 (DMP_BASE, 49, MC68060.mmuPeekByteZeroData (itemAddress + 12, supervisor));
   509:       XEiJ.fmtHex2 (DMP_BASE, 52, MC68060.mmuPeekByteZeroData (itemAddress + 13, supervisor));
   510:       XEiJ.fmtHex2 (DMP_BASE, 55, MC68060.mmuPeekByteZeroData (itemAddress + 14, supervisor));
   511:       XEiJ.fmtHex2 (DMP_BASE, 58, MC68060.mmuPeekByteZeroData (itemAddress + 15, supervisor));
   512:       sb.append (DMP_BASE);
   513:       //キャラクタ
   514:       boolean nextBridge = false;
   515:       int a;
   516:       if (!bridge) {  //行末からはみ出して書いた文字はない
   517:         sb.append (' ');
   518:         a = itemAddress;
   519:       } else if (itemAddress == dmpPageAddress ||  //1行目は常に
   520:                  dmpSecondBridge) {  //2行目以降は設定に従い、行末からはみ出して書いた文字を行頭にも書く
   521:         a = itemAddress - 1;
   522:       } else {  //行末からはみ出して書いた文字を行頭には書かない
   523:         sb.append ("  ");
   524:         a = itemAddress + 1;
   525:       }
   526:       for (; a < itemEndAddress; a++) {
   527:         int h = MC68060.mmuPeekByteZeroData (a, supervisor);
   528:         int c;
   529:         if ((0x81 <= h && h <= 0x9f) ||
   530:             (0xe0 <= h && h <= 0xef)) {  //SJISの2バイトコードの1バイト目
   531:           int l = MC68060.mmuPeekByteZeroData (a + 1, supervisor);  //これは範囲外になる場合がある
   532:           if (0x40 <= l && l <= 0xfc && l != 0x7f) {  //SJISの2バイトコードの2バイト目
   533:             c = CharacterCode.chrSJISToChar[h << 8 | l];  //2バイトで変換する
   534:             if (c == 0) {  //対応する文字がない
   535:               c = '※';
   536:             } else if (c == 0x3000) {  //全角空白
   537:               c = '\u2b1a';  //U+2B1A Dotted Square
   538:             }
   539:             a++;
   540:             if (a == itemEndAddress) {  //行末からはみ出した
   541:               nextBridge = true;
   542:             }
   543:           } else {  //SJISの2バイトコードの2バイト目ではない
   544:             c = '.';  //SJISの2バイトコードの1バイト目ではなかった
   545:           }
   546:         } else {  //SJISの2バイトコードの1バイト目ではない
   547:           c = CharacterCode.chrSJISToChar[h];  //1バイトで変換する
   548:           if (c < 0x20 || c == 0x7f) {  //対応する文字がないまたは制御コード
   549:             c = '.';
   550:           }
   551:         }
   552:         sb.append ((char) c);
   553:       }  //for a
   554:       sb.append ('\n');
   555:       //項目の終了
   556:       itemCount++;
   557:       itemAddress = itemEndAddress;
   558:       bridge = nextBridge;
   559:     } while (itemAddress < pageEndAddress);
   560: 
   561:     //末尾の番兵
   562:     dmpAddressArray[itemCount] = itemAddress;  //昇順を維持するためマスクしない
   563:     dmpSplitArray[itemCount] = sb.length ();
   564:     dmpCaretArray[itemCount] = sb.length ();
   565:     sb.append (
   566:       //         1111111111222222222233333333334444444444555555555566666666667777777777
   567:       //1234567890123456789012345678901234567890123456789012345678901234567890123456789
   568:       "▼        +0 +1 +2 +3  +4 +5 +6 +7  +8 +9 +A +B  +C +D +E +F  0123456789ABCDEF");
   569:     itemCount++;
   570:     dmpItemCount = itemCount;
   571: 
   572:     //テキスト
   573:     dmpTextArea.setText (sb.toString ());
   574:     dmpTextArea.setCaretPosition (dmpCaretArray[dmpItemIndex]);
   575: 
   576:     //スピナー
   577:     dmpSpinner.setHintArray (dmpAddressArray, itemCount);
   578:     dmpSpinner.setHintIndex (dmpItemIndex);
   579: 
   580:     XEiJ.dbgEventMask--;  //構築終了
   581: 
   582:   }  //dmpUpdate(int,int,boolean)
   583: 
   584: }  //class MemoryDumpList
   585: 
   586: 
   587: