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/sparc/mdb/kvm_v7dep.c
          +++ new/usr/src/cmd/mdb/sparc/mdb/kvm_v7dep.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 SPARC v7 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/machtypes.h>
  37   37  #include <sys/regset.h>
↓ open down ↓ 359 lines elided ↑ open up ↑
 397  397          kt_mapping_iter,                        /* t_mapping_iter */
 398  398          kt_object_iter,                         /* t_object_iter */
 399  399          kt_addr_to_map,                         /* t_addr_to_map */
 400  400          kt_name_to_map,                         /* t_name_to_map */
 401  401          kt_addr_to_ctf,                         /* t_addr_to_ctf */
 402  402          kt_name_to_ctf,                         /* t_name_to_ctf */
 403  403          kt_status,                              /* t_status */
 404  404          (int (*)()) mdb_tgt_notsup,             /* t_run */
 405  405          (int (*)()) mdb_tgt_notsup,             /* t_step */
 406  406          (int (*)()) mdb_tgt_notsup,             /* t_step_out */
 407      -        (int (*)()) mdb_tgt_notsup,             /* t_step_branch */
 408  407          (int (*)()) mdb_tgt_notsup,             /* t_next */
 409  408          (int (*)()) mdb_tgt_notsup,             /* t_cont */
 410  409          (int (*)()) mdb_tgt_notsup,             /* t_signal */
 411  410          (int (*)()) mdb_tgt_null,               /* t_add_vbrkpt */
 412  411          (int (*)()) mdb_tgt_null,               /* t_add_sbrkpt */
 413  412          (int (*)()) mdb_tgt_null,               /* t_add_pwapt */
 414  413          (int (*)()) mdb_tgt_null,               /* t_add_vwapt */
 415  414          (int (*)()) mdb_tgt_null,               /* t_add_iowapt */
 416  415          (int (*)()) mdb_tgt_null,               /* t_add_sysenter */
 417  416          (int (*)()) mdb_tgt_null,               /* t_add_sysexit */
↓ open down ↓ 117 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX