DisassembleList.java
     1: //========================================================================================
     2: //  DisassembleList.java
     3: //    en:Disassemble 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: 
    22: public class DisassembleList {
    23: 
    24:   public static final int DDP_ITEM_SIZE = 0x00000002;  //行の最小サイズ
    25:   public static final int DDP_PAGE_SIZE = 0x00000400;  //ページのサイズ
    26:   public static final int DDP_ITEM_MASK = -DDP_ITEM_SIZE;
    27:   public static final int DDP_PAGE_MASK = -DDP_PAGE_SIZE;
    28:   public static final int DDP_MAX_ITEMS = DDP_PAGE_SIZE / DDP_ITEM_SIZE + 2;  //ページの最大項目数。先頭と末尾の番兵を含む
    29: 
    30:   public static final char[] DDP_MOVEQD0_BASE = (
    31:     //         11111111112222222222333333333344444444445555555555666666666677777777778
    32:     //12345678901234567890123456789012345678901234567890123456789012345678901234567890
    33:     "moveq.l #$xx,d0").toCharArray ();
    34:   public static final char[] DDP_DCW_BASE = (
    35:     //         11111111112222222222333333333344444444445555555555666666666677777777778
    36:     //12345678901234567890123456789012345678901234567890123456789012345678901234567890
    37:     ".dc.w   $xxxx").toCharArray ();
    38: 
    39:   public static int ddpItemCount;  //ページに含まれる項目の数。先頭と末尾の番兵を含む。0=構築前または再構築要求
    40:   public static int ddpItemIndex;  //キャレットがある項目の番号
    41:   public static int ddpItemAddress;  //キャレットがある項目の先頭アドレス
    42:   public static int ddpPageAddress;  //ページの先頭アドレス
    43:   public static final int[] ddpAddressArray = new int[DDP_MAX_ITEMS];  //項目の先頭アドレスの配列。先頭は前のページの末尾、末尾は次のページの先頭。スピナーのヒント
    44:   public static final int[] ddpSplitArray = new int[DDP_MAX_ITEMS];  //項目を区切る位置の配列。先頭は0
    45:   public static final int[] ddpCaretArray = new int[DDP_MAX_ITEMS];  //項目が選択されたときキャレットを移動させる位置の配列。行の手前にヘッダやラベルなどを挿入しないときはddpSplitArrayと同じ
    46:   public static final boolean[] ddpDCWArray = new boolean[DDP_MAX_ITEMS];  //項目毎の.dc.wで出力したかどうかのフラグの配列。true=数ワード後にある表示しなければならないアドレスを跨がないために逆アセンブルせず.dc.wで出力した。この行がクリックされたとき逆アセンブルし直す
    47: 
    48:   public static JFrame ddpFrame;  //ウインドウ
    49:   public static ScrollTextArea ddpBoard;  //スクロールテキストエリア
    50:   public static JTextArea ddpTextArea;  //テキストエリア
    51: 
    52:   public static Hex8Spinner ddpSpinner;  //スピナー
    53: 
    54:   public static int ddpPopupAddress;  //クリックされた行のアドレス
    55: 
    56:   public static boolean ddpBacktraceOn;  //true=バックトレース
    57:   public static long ddpBacktraceRecord;  //現在選択されている分岐レコードの通し番号。-1L=未選択
    58:   public static SpinnerNumberModel ddpBacktraceModel;  //バックトレーススピナーのモデル。値はLong
    59:   public static JSpinner ddpBacktraceSpinner;  //バックトレーススピナー
    60:   public static JCheckBox ddpBacktraceCheckBox;  //バックトレースチェックボックス
    61: 
    62:   public static String ddpStoppedBy;  //停止理由
    63:   public static int ddpStoppedAddress;  //停止位置
    64: 
    65:   public static int ddpSupervisorMode;  //0=ユーザモード,0以外=スーパーバイザモード
    66:   public static JCheckBox ddpSupervisorCheckBox;  //ユーザ/スーパーバイザチェックボックス
    67: 
    68:   //ddpInit ()
    69:   //  初期化
    70:   public static void ddpInit () {
    71: 
    72:     ddpItemCount = 0;  //構築前
    73:     ddpItemIndex = 0;
    74:     ddpItemAddress = -1;
    75:     ddpPageAddress = 0;
    76:     ddpSupervisorMode = 1;
    77:     //ddpAddressArray = new int[DDP_MAX_ITEMS];
    78:     //ddpSplitArray = new int[DDP_MAX_ITEMS];
    79:     //ddpCaretArray = new int[DDP_MAX_ITEMS];
    80:     //ddpDCWArray = new boolean[DDP_MAX_ITEMS];
    81: 
    82:     ddpFrame = null;
    83: 
    84:   }  //ddpInit()
    85: 
    86:   //ddpStart ()
    87:   public static void ddpStart () {
    88:     if (RestorableFrame.rfmGetOpened (Settings.SGS_DDP_FRAME_KEY)) {
    89:       ddpOpen (-1, -1, true);
    90:     }
    91:   }  //ddpStart()
    92: 
    93:   //ddpOpen (address, supervisor, forceUpdate)
    94:   //  逆アセンブルリストウインドウを開く
    95:   //  既に開いているときは手前に持ってくる
    96:   public static void ddpOpen (int address, int supervisor, boolean forceUpdate) {
    97:     if (ddpFrame == null) {
    98:       ddpMake ();
    99:     }
   100:     ddpBacktraceRecord = -1L;  //分岐レコードの選択を解除する
   101:     ddpUpdate (address, supervisor, forceUpdate);
   102:     XEiJ.pnlExitFullScreen (false);
   103:     ddpFrame.setVisible (true);
   104:     XEiJ.dbgVisibleMask |= XEiJ.DBG_DDP_VISIBLE_MASK;
   105:   }  //ddpOpen(int,int,boolean)
   106: 
   107:   //ddpMake ()
   108:   //  逆アセンブルリストウインドウを作る
   109:   public static void ddpMake () {
   110: 
   111:     //スクロールテキストエリア
   112:     ddpBoard = ComponentFactory.setPreferredSize (
   113:       ComponentFactory.setFont (new ScrollTextArea (), LnF.lnfMonospacedFont),
   114:       500, 400);
   115:     ddpBoard.setMargin (new Insets (2, 4, 2, 4));
   116:     ddpBoard.setHighlightCursorOn (true);
   117:     ddpTextArea = ddpBoard.getTextArea ();
   118:     ddpTextArea.setEditable (false);
   119: 
   120:     //スピナー
   121:     ddpSpinner = ComponentFactory.createHex8Spinner (ddpPageAddress, DDP_ITEM_MASK, true, new ChangeListener () {
   122:       //スピナーのチェンジリスナー
   123:       //  スピナーが操作されたとき、そのアドレスの行にテキストエリアのキャレットを移動させる
   124:       //  ページの範囲外になったときはテキストエリアを再構築する
   125:       //  ページの構築中に呼び出されたときは何もしない
   126:       @Override public void stateChanged (ChangeEvent ce) {
   127:         if (XEiJ.dbgEventMask == 0) {  //テキストは構築済みでsetTextの中ではない
   128:           ddpUpdate (ddpSpinner.getIntValue (), ddpSupervisorMode, false);
   129:         }
   130:       }
   131:     });
   132: 
   133:     //テキストエリアのキャレットリスナー
   134:     //  テキストエリアがクリックされてキャレットが動いたとき、その行のアドレスをスピナーに設定する
   135:     //  クリックでテキストエリアに移ってしまったフォーカスをスピナーに戻す
   136:     //  ページの構築中に呼び出されたときは何もしない
   137:     //    setText→キャレットリスナー→スピナーのチェンジリスナー→setTextとなるとsetTextの二重呼び出しでエラーが出る
   138:     ComponentFactory.addListener (
   139:       ddpTextArea,
   140:       new CaretListener () {
   141:         @Override public void caretUpdate (CaretEvent ce) {
   142:           if (XEiJ.dbgEventMask == 0) {  //テキストは構築済みでsetTextの中ではない
   143:             int p = ce.getDot ();  //キャレットの位置
   144:             if (p == ce.getMark ()) {  //選択範囲がない
   145:               int i = Arrays.binarySearch (ddpSplitArray, 1, ddpItemCount, p + 1);  //項目の先頭のときも次の項目を検索してから1つ戻る
   146:               i = (i >> 31 ^ i) - 1;  //キャレットがある位置を含む項目の番号
   147:               ddpSpinner.setHintIndex (i);
   148:             }
   149:           }
   150:         }
   151:       });
   152: 
   153:     //テキストエリアのマウスリスナー
   154:     ComponentFactory.addListener (
   155:       ddpTextArea,
   156:       new MouseAdapter () {
   157:         @Override public void mousePressed (MouseEvent me) {
   158:           if (XEiJ.mpuTask == null && me.isPopupTrigger ()) {
   159:             XEiJ.dbgShowPopup (me, ddpTextArea, true);
   160:           }
   161:         }
   162:         @Override public void mouseReleased (MouseEvent me) {
   163:           if (XEiJ.mpuTask == null && me.isPopupTrigger ()) {
   164:             XEiJ.dbgShowPopup (me, ddpTextArea, true);
   165:           }
   166:         }
   167:       });
   168: 
   169:     //ボタンのアクションリスナー
   170:     ActionListener listener = new ActionListener () {
   171:       @Override public void actionPerformed (ActionEvent ae) {
   172:         Object source = ae.getSource ();
   173:         switch (ae.getActionCommand ()) {
   174:         case "Backtrace":
   175:           if (BranchLog.BLG_ON) {
   176:             ddpBacktraceOn = ((JCheckBox) ae.getSource ()).isSelected ();
   177:             if (XEiJ.dbgEventMask == 0) {
   178:               ddpUpdate (ddpAddressArray[ddpItemIndex], ddpSupervisorMode, true);
   179:             }
   180:           }
   181:           break;
   182:         case "User/Supervisor":  //ユーザ/スーパーバイザ
   183:           if (XEiJ.dbgEventMask == 0) {
   184:             ddpUpdate (ddpAddressArray[ddpItemIndex], ((JCheckBox) ae.getSource ()).isSelected () ? 1 : 0, true);
   185:           }
   186:           break;
   187:         }
   188:       }
   189:     };
   190: 
   191:     //バックトレース
   192:     if (BranchLog.BLG_ON) {
   193:       ddpBacktraceOn = false;
   194:       ddpBacktraceRecord = -1L;  //未選択
   195: 
   196:       //バックトレーススピナー
   197:       ddpBacktraceModel = new ReverseLongModel (0L, 0L, 0L, 1L);
   198:       ddpBacktraceSpinner = ComponentFactory.createNumberSpinner (ddpBacktraceModel, 15, new ChangeListener () {
   199:         @Override public void stateChanged (ChangeEvent ce) {
   200:           if (XEiJ.dbgEventMask == 0 && XEiJ.mpuTask == null) {  //MPU停止中
   201:             long record = ddpBacktraceModel.getNumber ().longValue ();
   202:             int i = (char) record << BranchLog.BLG_RECORD_SHIFT;
   203:             if (//ddpBacktraceRecord < 0L ||  //現在選択されている分岐レコードがない
   204:                 ddpBacktraceRecord < record) {  //後ろへ移動する
   205:               ddpBacktraceRecord = record;
   206:               ddpUpdate (BranchLog.blgArray[i] & ~1, BranchLog.blgArray[i] & 1, false);  //分岐レコードの先頭
   207:             } else if (record < ddpBacktraceRecord) {  //手前へ移動する
   208:               ddpBacktraceRecord = record;
   209:               ddpUpdate (BranchLog.blgArray[i + 1], BranchLog.blgArray[i] & 1, false);  //分岐レコードの末尾
   210:             }
   211:           }
   212:         }
   213:       });
   214: 
   215:       //バックトレースチェックボックス
   216:       ddpBacktraceCheckBox =
   217:         Multilingual.mlnToolTipText (
   218:           ComponentFactory.createIconCheckBox (
   219:             ddpBacktraceOn,
   220:             XEiJ.createImage (
   221:               20, 14,
   222:               "22222222222222222222" +
   223:               "2..................2" +
   224:               "2.......1..........2" +
   225:               "2......1.1.........2" +
   226:               "2.....1...1........2" +
   227:               "2....111.111.......2" +
   228:               "2......1.1.........2" +
   229:               "2......1.111111....2" +
   230:               "2......1......1....2" +
   231:               "2......111111.1....2" +
   232:               "2...........1.1....2" +
   233:               "2...........111....2" +
   234:               "2..................2" +
   235:               "22222222222222222222",
   236:               LnF.lnfRGB[0],
   237:               LnF.lnfRGB[6],
   238:               LnF.lnfRGB[12]),
   239:             XEiJ.createImage (
   240:               20, 14,
   241:               "22222222222222222222" +
   242:               "2..................2" +
   243:               "2.......1..........2" +
   244:               "2......1.1.........2" +
   245:               "2.....1...1........2" +
   246:               "2....111.111.......2" +
   247:               "2......1.1.........2" +
   248:               "2......1.111111....2" +
   249:               "2......1......1....2" +
   250:               "2......111111.1....2" +
   251:               "2...........1.1....2" +
   252:               "2...........111....2" +
   253:               "2..................2" +
   254:               "22222222222222222222",
   255:               LnF.lnfRGB[0],
   256:               LnF.lnfRGB[12],
   257:               LnF.lnfRGB[12]),
   258:             "Backtrace", listener),
   259:           "ja", "バックトレース");
   260:     }
   261: 
   262:     //スーパーバイザチェックボックス
   263:     ddpSupervisorCheckBox =
   264:       Multilingual.mlnToolTipText (
   265:         ComponentFactory.createIconCheckBox (
   266:           ddpSupervisorMode != 0,
   267:           XEiJ.createImage (
   268:             20, 14,
   269:             "22222222222222222222" +
   270:             "2..................2" +
   271:             "2..................2" +
   272:             "2.....11....11.....2" +
   273:             "2.....11....11.....2" +
   274:             "2.....11....11.....2" +
   275:             "2.....11....11.....2" +
   276:             "2.....11....11.....2" +
   277:             "2.....11....11.....2" +
   278:             "2.....11111111.....2" +
   279:             "2.....11111111.....2" +
   280:             "2..................2" +
   281:             "2..................2" +
   282:             "22222222222222222222",
   283:             LnF.lnfRGB[0],
   284:             LnF.lnfRGB[12],
   285:             LnF.lnfRGB[12]),
   286:           XEiJ.createImage (
   287:             20, 14,
   288:             "22222222222222222222" +
   289:             "2..................2" +
   290:             "2..................2" +
   291:             "2.....11111111.....2" +
   292:             "2.....11111111.....2" +
   293:             "2.....11...........2" +
   294:             "2.....11111111.....2" +
   295:             "2.....11111111.....2" +
   296:             "2...........11.....2" +
   297:             "2.....11111111.....2" +
   298:             "2.....11111111.....2" +
   299:             "2..................2" +
   300:             "2..................2" +
   301:             "22222222222222222222",
   302:             LnF.lnfRGB[0],
   303:             LnF.lnfRGB[12],
   304:             LnF.lnfRGB[12]),
   305:           "User/Supervisor", listener),
   306:         "ja", "ユーザ/スーパーバイザ");
   307: 
   308:     //ウインドウ
   309:     ddpFrame = Multilingual.mlnTitle (
   310:       ComponentFactory.createRestorableSubFrame (
   311:         Settings.SGS_DDP_FRAME_KEY,
   312:         "Disassemble list",
   313:         null,
   314:         ComponentFactory.createBorderPanel (
   315:           ddpBoard,
   316:           ComponentFactory.createHorizontalBox (
   317:             ddpSpinner,
   318:             ddpSupervisorCheckBox,
   319:             Box.createHorizontalStrut (12),
   320:             (BranchLog.BLG_ON ?
   321:              ComponentFactory.createHorizontalBox (
   322:                ddpBacktraceCheckBox,
   323:                ddpBacktraceSpinner,
   324:                Box.createHorizontalStrut (12)) :
   325:              null),
   326:             Box.createHorizontalGlue (),
   327:             XEiJ.mpuMakeOriIllegalCheckBox (),  //ORI.B #$00,D0を不当命令とみなすチェックボックス
   328:             XEiJ.mpuMakeStopOnErrorCheckBox (),  //エラーで停止するチェックボックス
   329:             XEiJ.mpuMakeStopAtStartCheckBox (),  //実行開始位置で停止するチェックボックス
   330:             Box.createHorizontalStrut (12),
   331:             XEiJ.mpuMakeBreakButton (),  //停止ボタン
   332:             XEiJ.mpuMakeTraceButton (),  //トレース実行ボタン
   333:             XEiJ.mpuMakeTrace10Button (),  //トレース10回ボタン
   334:             XEiJ.mpuMakeTrace100Button (),  //トレース100回ボタン
   335:             XEiJ.mpuMakeStepButton (),  //ステップ実行ボタン
   336:             XEiJ.mpuMakeStep10Button (),  //ステップ10回ボタン
   337:             XEiJ.mpuMakeStep100Button (),  //ステップ100回ボタン
   338:             XEiJ.mpuMakeReturnButton (),  //ステップアンティルリターンボタン
   339:             XEiJ.mpuMakeRunButton ()  //実行ボタン
   340:             )
   341:           )
   342:         ),
   343:       "ja", "逆アセンブルリスト");
   344:     ComponentFactory.addListener (
   345:       ddpFrame,
   346:       new WindowAdapter () {
   347:         @Override public void windowClosing (WindowEvent we) {
   348:           XEiJ.dbgVisibleMask &= ~XEiJ.DBG_DDP_VISIBLE_MASK;
   349:         }
   350:       });
   351: 
   352:     ddpStoppedBy = null;
   353:     ddpStoppedAddress = -1;
   354: 
   355:   }  //ddpMake()
   356: 
   357:   //ddpUpdate (address, supervisor, forceUpdate)
   358:   //  逆アセンブルリストウインドウを更新する
   359:   //  address  -1=pcまたはpc0を表示,0=前回と同じアドレスを表示
   360:   public static void ddpUpdate (int address, int supervisor, boolean forceUpdate) {
   361: 
   362:     XEiJ.dbgEventMask++;  //構築開始
   363: 
   364:     if (address == -1) {  //pcまたはpc0を表示
   365:       ddpStoppedAddress = address = ddpStoppedBy == null ? XEiJ.regPC : XEiJ.regPC0;
   366:       forceUpdate = true;
   367:     } else if (address == 0) {  //前回と同じアドレスを表示。同じアドレスで再構築したいときに使う
   368:       address = ddpItemAddress;
   369:     }
   370: 
   371:     if (supervisor == -1) {
   372:       supervisor = XEiJ.regSRS;
   373:       forceUpdate = true;
   374:     }
   375: 
   376:     if ((ddpSupervisorMode != 0) != (supervisor != 0)) {  //ユーザ/スーパーバイザが一致しない
   377:       ddpSupervisorMode = supervisor;
   378:       forceUpdate = true;
   379:       if (ddpSupervisorCheckBox.isSelected () != (supervisor != 0)) {
   380:         ddpSupervisorCheckBox.setSelected (supervisor != 0);
   381:       }
   382:     }
   383: 
   384:     if (forceUpdate) {  //再構築要求
   385:       ddpItemCount = 0;
   386:     }
   387: 
   388:     address &= DDP_ITEM_MASK;  //目的のアドレスを含む項目の先頭アドレス
   389: 
   390:     //バックトレース
   391:     if (BranchLog.BLG_ON) {
   392:       if (XEiJ.mpuTask == null) {  //MPU停止中
   393:         long newestRecord = BranchLog.blgNewestRecord;  //最新のレコードの番号
   394:         long oldestRecord = Math.max (0L, newestRecord - 65535);  //最古のレコードの番号
   395:         if (//ddpBacktraceRecord < 0L ||  //レコードが選択されていない
   396:             ddpBacktraceRecord < oldestRecord || newestRecord < ddpBacktraceRecord) {  //選択されているレコードが存在しない
   397:           ddpBacktraceRecord = newestRecord;  //最新のレコードを選択する
   398:           ddpBacktraceModel.setMaximum (Long.valueOf (newestRecord));
   399:           ddpBacktraceModel.setValue (Long.valueOf (newestRecord));
   400:         }
   401:         if (ddpBacktraceOn) {  //バックトレースモードのとき
   402:           int i = (char) ddpBacktraceRecord << BranchLog.BLG_RECORD_SHIFT;
   403:           if (address >>> 1 < BranchLog.blgArray[i] >>> 1) {  //現在選択されているレコードよりも前
   404:             if (oldestRecord < ddpBacktraceRecord) {  //直前にレコードがある
   405:               ddpBacktraceRecord--;  //直前のレコードを選択する
   406:               ddpBacktraceModel.setValue (Long.valueOf (ddpBacktraceRecord));
   407:               address = BranchLog.blgArray[((char) ddpBacktraceRecord << BranchLog.BLG_RECORD_SHIFT) + 1] & ~1;  //直前のレコードの末尾に移動する
   408:             }
   409:           } else if (BranchLog.blgArray[i + 1] >>> 1 < address >>> 1) {  //現在選択されているレコードよりも後
   410:             if (ddpBacktraceRecord < newestRecord) {  //直後にレコードがある
   411:               ddpBacktraceRecord++;  //直後のレコードを選択する
   412:               ddpBacktraceModel.setValue (Long.valueOf (ddpBacktraceRecord));
   413:               address = BranchLog.blgArray[(char) ddpBacktraceRecord << BranchLog.BLG_RECORD_SHIFT] & ~1;  //直後のレコードの先頭に移動する
   414:             }
   415:           }
   416:         }
   417:       }
   418:     }
   419: 
   420:     if (ddpItemCount != 0) {  //構築前または再構築要求のいずれでもない
   421:       int i = Arrays.binarySearch (ddpAddressArray, 1, ddpItemCount, address + 1);  //項目の先頭のときも次の項目を検索してから1つ戻る
   422:       i = (i >> 31 ^ i) - 1;  //目的のアドレスを含む項目の番号
   423:       if (0 < i && i < ddpItemCount - 1 &&  //ページの内側
   424:           ddpAddressArray[i] == address &&  //項目の先頭
   425:           !ddpDCWArray[i]) {  //.dc.wで出力されていない
   426: 
   427:         //再構築しない
   428: 
   429:         ddpItemAddress = address;
   430:         if (ddpItemIndex != i) {  //キャレットがある項目を変更する必要がある
   431:           ddpItemIndex = i;
   432:           ddpTextArea.setCaretPosition (ddpCaretArray[i]);
   433:         }
   434: 
   435:         //!
   436:         //バックトレースモードのとき分岐レコードの範囲が変わったときはハイライト表示を更新する
   437: 
   438:         XEiJ.dbgEventMask--;  //構築終了
   439:         return;
   440:       }
   441:     }
   442: 
   443:     //再構築する
   444:     ddpItemAddress = address;
   445: 
   446:     //構築前または再構築要求または先頭または末尾の番兵が選択された
   447:     //  0x00000000の境界を跨ぐとき反対側を指すことがあるので先頭と末尾の番兵を区別しない
   448:     ddpPageAddress = address & DDP_PAGE_MASK;  //ページの先頭アドレス
   449:     int pageEndAddress = ddpPageAddress + DDP_PAGE_SIZE;  //ページの末尾アドレス。0になることがある
   450: 
   451:     //先頭の番兵
   452:     ddpAddressArray[0] = ddpPageAddress - DDP_ITEM_SIZE;  //昇順を維持するためマスクしない
   453:     ddpSplitArray[0] = 0;
   454:     ddpCaretArray[0] = 0;
   455:     StringBuilder sb = new StringBuilder (
   456:       //         1111111111222222222233333333334444444444555555555566666666667777777777
   457:       //1234567890123456789012345678901234567890123456789012345678901234567890123456789
   458:       //xxxxxxx  xxxxxxxxxxxxxxxxxxxx  ssssssssssssssssssssssssssssssssssss..........
   459:       //                               move.b  100(a0,d0.l),100(a0,d0.l)
   460:       "          +0+1+2+3+4+5+6+7+8+9                                              ▲\n");
   461:     int itemCount = 1;  //項目数
   462:     int itemAddress = ddpPageAddress;  //項目の先頭アドレス
   463:     int dcwAddress = pageEndAddress;  //.dc.wで出力する範囲
   464:     int dcwEndAddress = pageEndAddress;
   465:     boolean prevBranchFlag = false;  //true=直前が完全分岐命令だった
   466: 
   467:     //ラベル
   468:     //LabeledAddress.lblUpdateProgram ();
   469: 
   470:     TreeMap<Integer,InstructionBreakPoint.InstructionBreakRecord> pointTable;
   471:     if (InstructionBreakPoint.IBP_ON) {
   472:       pointTable = supervisor != 0 ? InstructionBreakPoint.ibpSuperPointTable : InstructionBreakPoint.ibpUserPointTable;
   473:     }
   474: 
   475:   itemLoop:
   476:     do {
   477:       int itemEndAddress;  //項目の末尾アドレス
   478:       String code;  //逆アセンブル結果
   479: 
   480:       //逆アセンブルする
   481:       //  以下のアドレスを跨いでしまうときは逆アセンブルせず1ワードずつ.dc.wまたはmoveqで出力する
   482:       //    目的のアドレス
   483:       //    命令ブレークポイント
   484:       //  途中の行をクリックすることで途中から逆アセンブルし直せるようにするため、複数ワードあっても1行にまとめない
   485:       //  途中に逆アセンブルできる命令があっても、跨いではいけないアドレスまですべて1ワードずつ出力する
   486:       if (dcwAddress <= itemAddress && itemAddress < dcwEndAddress) {  //.dc.wで出力中
   487:         Disassembler.disStatus = 0;  //念のため
   488:         int oc = MC68060.mmuPeekWordZeroCode (itemAddress, supervisor);
   489:         if ((oc & 0xfe00) == 0x7000 && MC68060.mmuPeekWordZeroCode (itemAddress + 2, supervisor) == 0x4e4f) {  //moveq.l #$xx,d0;trap#15
   490:           //pcがIOCSコールのtrap#15を指しているときmoveqが.dc.wになってしまうのを避ける
   491:           XEiJ.fmtHex2 (DDP_MOVEQD0_BASE, 10, oc);
   492:           code = String.valueOf (DDP_MOVEQD0_BASE);
   493:         } else {
   494:           XEiJ.fmtHex4 (DDP_DCW_BASE, 9, oc);
   495:           code = String.valueOf (DDP_DCW_BASE);
   496:         }
   497:         itemEndAddress = itemAddress + 2;
   498:         ddpDCWArray[itemCount] = true;
   499:       } else {  //.dc.wで出力中ではない
   500:         code = Disassembler.disDisassemble (new StringBuilder (), itemAddress, supervisor).toString ();  //逆アセンブルする
   501:         for (int t = itemAddress + 2; t < Disassembler.disPC; t += 2) {
   502:           if (t == address ||  //目的のアドレスを跨いでしまった
   503:               InstructionBreakPoint.IBP_ON && pointTable.containsKey (t)) {  //命令ブレークポイントを跨いでしまった
   504:             //!
   505:             //バックトレースモードのとき選択されている分岐レコードの先頭も跨がないようにする
   506:             //  IOCSの_B_READと_B_WRITEでmoveq.l #<data>,d0だけ変更してtrap#15に飛び込んでいるところなど
   507:             dcwAddress = itemAddress;  //.dc.wで出力し直す
   508:             dcwEndAddress = t;
   509:             continue itemLoop;
   510:           }
   511:         }
   512:         itemEndAddress = Disassembler.disPC;
   513:         ddpDCWArray[itemCount] = false;
   514:       }
   515: 
   516:       //完全分岐命令の下に隙間を空けて読みやすくする
   517:       if (prevBranchFlag) {
   518:         sb.append ('\n');
   519:       }
   520: 
   521:       //項目の開始
   522:       if (itemAddress == address) {
   523:         ddpItemIndex = itemCount;  //目的のアドレスを含む項目の番号
   524:       }
   525:       ddpAddressArray[itemCount] = itemAddress;  //項目の先頭アドレス
   526:       ddpSplitArray[itemCount] = sb.length ();  //項目を区切る位置
   527: 
   528:       if (prevBranchFlag) {
   529:         //ラベル
   530:         if (true) {
   531:           int i = sb.length ();
   532:           LabeledAddress.lblSearch (sb, itemAddress);
   533:           if (i < sb.length ()) {
   534:             sb.append ('\n');
   535:           }
   536:         }
   537:       }
   538: 
   539:       //停止理由
   540:       if (itemAddress == ddpStoppedAddress && ddpStoppedBy != null) {
   541:         sb.append (ddpStoppedBy).append ('\n');
   542:       }
   543: 
   544:       ddpCaretArray[itemCount] = sb.length ();  //項目が選択されたときキャレットを移動させる位置
   545: 
   546:       //1行目
   547:       int lineAddress = itemAddress;  //行の開始アドレス
   548:       int lineEndAddress = Math.min (lineAddress + 10, itemEndAddress);  //行の終了アドレス
   549:       //アドレス
   550:       XEiJ.fmtHex8 (sb, lineAddress).append ("  ");
   551:       //データ
   552:       for (int a = lineAddress; a < lineEndAddress; a += 2) {
   553:         XEiJ.fmtHex4 (sb, MC68060.mmuPeekWordZeroCode (a, supervisor));
   554:       }
   555:       sb.append (XEiJ.DBG_SPACES, 0, 2 * Math.max (0, lineAddress + 10 - lineEndAddress) + 2);
   556:       //逆アセンブル結果
   557:       sb.append (code).append (XEiJ.DBG_SPACES, 0, Math.max (1, 68 - 32 - code.length ()));
   558:       //キャラクタ
   559:       InstructionBreakPoint.InstructionBreakRecord r = InstructionBreakPoint.IBP_ON ? pointTable.get (itemAddress) : null;
   560:       if (r != null) {  //命令ブレークポイントがある
   561:         if (r.ibrWaitInstruction != null) {  //待機ポイント
   562:           sb.append ("----");
   563:         }
   564:         if (r.ibrThreshold < 0) {  //インスタント
   565:           sb.append ("******");
   566:         } else if (r.ibrThreshold != 0x7fffffff) {
   567:           sb.append (r.ibrValue).append ('/').append (r.ibrThreshold);
   568:         }
   569:       } else {  //命令ブレークポイントがない
   570:         for (int a = lineAddress; a < lineEndAddress; a++) {
   571:           int h = MC68060.mmuPeekByteZeroCode (a, supervisor);
   572:           int c;
   573:           if (0x81 <= h && h <= 0x9f || 0xe0 <= h && h <= 0xef) {  //SJISの2バイトコードの1バイト目
   574:             int l = MC68060.mmuPeekByteZeroCode (a + 1, supervisor);  //これは範囲外になる場合がある
   575:             if (0x40 <= l && l != 0x7f && l <= 0xfc) {  //SJISの2バイトコードの2バイト目
   576:               c = CharacterCode.chrSJISToChar[h << 8 | l];  //2バイトで変換する
   577:               if (c == 0) {  //対応する文字がない
   578:                 c = '※';
   579:               }
   580:               a++;
   581:             } else {  //SJISの2バイトコードの2バイト目ではない
   582:               c = '.';  //SJISの2バイトコードの1バイト目ではなかった
   583:             }
   584:           } else {  //SJISの2バイトコードの1バイト目ではない
   585:             c = CharacterCode.chrSJISToChar[h];  //1バイトで変換する
   586:             if (c < 0x20 || c == 0x7f) {  //対応する文字がないまたは制御コード
   587:               c = '.';
   588:             }
   589:           }
   590:           sb.append ((char) c);
   591:         }  //for a
   592:       }
   593:       sb.append ('\n');
   594: 
   595:       //2行目以降
   596:       while (lineEndAddress < itemEndAddress) {
   597:         lineAddress = lineEndAddress;  //行の開始アドレス
   598:         lineEndAddress = Math.min (lineAddress + 10, itemEndAddress);  //行の終了アドレス
   599:         //アドレス
   600:         XEiJ.fmtHex8 (sb, lineAddress).append ("  ");
   601:         //データ
   602:         for (int a = lineAddress; a < lineEndAddress; a += 2) {
   603:           XEiJ.fmtHex4 (sb, MC68060.mmuPeekWordZeroCode (a, supervisor));
   604:         }
   605:         sb.append (XEiJ.DBG_SPACES, 0, 2 * Math.max (0, lineAddress + 10 - lineEndAddress) + (2 + 68 - 32));
   606:         //キャラクタ
   607:         for (int a = lineAddress; a < lineEndAddress; a++) {
   608:           int h = MC68060.mmuPeekByteZeroCode (a, supervisor);
   609:           int c;
   610:           if (0x81 <= h && h <= 0x9f || 0xe0 <= h && h <= 0xef) {  //SJISの2バイトコードの1バイト目
   611:             int l = MC68060.mmuPeekByteZeroCode (a + 1, supervisor);  //これは範囲外になる場合がある
   612:             if (0x40 <= l && l != 0x7f && l <= 0xfc) {  //SJISの2バイトコードの2バイト目
   613:               c = CharacterCode.chrSJISToChar[h << 8 | l];  //2バイトで変換する
   614:               if (c == 0) {  //対応する文字がない
   615:                 c = '※';
   616:               }
   617:               a++;
   618:             } else {  //SJISの2バイトコードの2バイト目ではない
   619:               c = '.';  //SJISの2バイトコードの1バイト目ではなかった
   620:             }
   621:           } else {  //SJISの2バイトコードの1バイト目ではない
   622:             c = CharacterCode.chrSJISToChar[h];  //1バイトで変換する
   623:             if (c < 0x20 || c == 0x7f) {  //対応する文字がないまたは制御コード
   624:               c = '.';
   625:             }
   626:           }
   627:           sb.append ((char) c);
   628:         }  //for a
   629:         sb.append ('\n');
   630:       }
   631: 
   632:       //項目の終了
   633:       itemCount++;
   634:       itemAddress = itemEndAddress;
   635: 
   636:       //完全分岐命令の下に隙間を空けて読みやすくする
   637:       prevBranchFlag = (Disassembler.disStatus & Disassembler.DIS_ALWAYS_BRANCH) != 0;
   638: 
   639:     } while (itemAddress < pageEndAddress);
   640: 
   641:     //末尾の番兵
   642:     ddpAddressArray[itemCount] = itemAddress;  //昇順を維持するためマスクしない
   643:     ddpSplitArray[itemCount] = sb.length ();
   644:     ddpCaretArray[itemCount] = sb.length ();
   645:     sb.append (
   646:       //         1111111111222222222233333333334444444444555555555566666666667777777777
   647:       //1234567890123456789012345678901234567890123456789012345678901234567890123456789
   648:       "          +0+1+2+3+4+5+6+7+8+9                                              ▼");
   649:     itemCount++;
   650:     ddpItemCount = itemCount;
   651: 
   652:     //テキスト
   653:     ddpTextArea.setText (sb.toString ());
   654:     ddpTextArea.setCaretPosition (ddpCaretArray[ddpItemIndex]);
   655: 
   656:     //!
   657:     //バックトレースモードのとき選択されている分岐レコードの範囲をハイライト表示する
   658: 
   659:     //スピナー
   660:     ddpSpinner.setHintArray (ddpAddressArray, itemCount);
   661:     ddpSpinner.setHintIndex (ddpItemIndex);
   662: 
   663:     XEiJ.dbgEventMask--;  //構築終了
   664: 
   665:   }  //ddpUpdate(int,int,boolean)
   666: 
   667: }  //class DisassembleList
   668: 
   669: 
   670: