Print this page
9210 remove KMDB branch debugging support
9211 ::crregs could do with cr2/cr3 support
9209 ::ttrace should be able to filter by thread
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/mdb/intel/mdb/kvm_ia32dep.c
          +++ new/usr/src/cmd/mdb/intel/mdb/kvm_ia32dep.c
↓ open down ↓ 13 lines elided ↑ open up ↑
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  23   23   * Use is subject to license terms.
       24 + *
       25 + * Copyright 2018 Joyent, Inc.
  24   26   */
  25   27  
  26      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  27      -
  28   28  /*
  29   29   * Libkvm Kernel Target Intel 32-bit component
  30   30   *
  31   31   * This file provides the ISA-dependent portion of the libkvm kernel target.
  32   32   * For more details on the implementation refer to mdb_kvm.c.
  33   33   */
  34   34  
  35   35  #include <sys/types.h>
  36   36  #include <sys/regset.h>
  37   37  #include <sys/frame.h>
↓ open down ↓ 93 lines elided ↑ open up ↑
 131  131          kt_mapping_iter,                        /* t_mapping_iter */
 132  132          kt_object_iter,                         /* t_object_iter */
 133  133          kt_addr_to_map,                         /* t_addr_to_map */
 134  134          kt_name_to_map,                         /* t_name_to_map */
 135  135          kt_addr_to_ctf,                         /* t_addr_to_ctf */
 136  136          kt_name_to_ctf,                         /* t_name_to_ctf */
 137  137          kt_status,                              /* t_status */
 138  138          (int (*)()) mdb_tgt_notsup,             /* t_run */
 139  139          (int (*)()) mdb_tgt_notsup,             /* t_step */
 140  140          (int (*)()) mdb_tgt_notsup,             /* t_step_out */
 141      -        (int (*)()) mdb_tgt_notsup,             /* t_step_branch */
 142  141          (int (*)()) mdb_tgt_notsup,             /* t_next */
 143  142          (int (*)()) mdb_tgt_notsup,             /* t_cont */
 144  143          (int (*)()) mdb_tgt_notsup,             /* t_signal */
 145  144          (int (*)()) mdb_tgt_null,               /* t_add_vbrkpt */
 146  145          (int (*)()) mdb_tgt_null,               /* t_add_sbrkpt */
 147  146          (int (*)()) mdb_tgt_null,               /* t_add_pwapt */
 148  147          (int (*)()) mdb_tgt_null,               /* t_add_vwapt */
 149  148          (int (*)()) mdb_tgt_null,               /* t_add_iowapt */
 150  149          (int (*)()) mdb_tgt_null,               /* t_add_sysenter */
 151  150          (int (*)()) mdb_tgt_null,               /* t_add_sysexit */
↓ open down ↓ 150 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX