don't bother resolving onbld python module deps
[unleashed.git] / bin / dis / dis.1
blobcb72d55af99dfc803629fd2514c9b940ee127d9f
1 .\" Copyright 1989 AT&T
2 .\" Copyright (c) 2009, Sun Microsystems, Inc.  All Rights Reserved
3 .\" Portions Copyright (c) 1992, X/Open Company Limited  All Rights Reserved
4 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at  http://www.opengroup.org/bookstore/.
5 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text
6 .\" are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical
7 .\" and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
8 .\"  This notice shall appear on any product containing this material.
9 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License. You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.
10 .\"  See the License for the specific language governing permissions and limitations under the License. When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with
11 .\" the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
12 .Dd Nov 28, 2016
13 .Dt DIS 1
14 .Os
15 .Sh NAME
16 .Nm dis
17 .Nd object code disassembler
18 .Sh SYNOPSIS
19 .Nm
20 .Op Fl Cnoq
21 .Op Fl d Ar section
22 .Op Fl D Ar section
23 .Op Fl F Ar function
24 .Op Fl t Ar section
25 .Ar
26 .Sh DESCRIPTION
27 The
28 .Nm
29 command produces an assembly language listing of each
30 .Ar file ,
31 which can be object files or archives of object files. The listing includes
32 assembly statements and an octal or hexadecimal representation of the binary
33 that produced those statements.
34 .Pp
35 The options are as follows:
36 .Bl -tag -width Ds
37 .It Fl C
38 Demangle C++ symbol names.
39 .It Fl d Ar section
40 Disassemble
41 .Ar section
42 as data, printing the offset of the data from the beginning of the section.
43 .It Fl D Ar section
44 Disassemble
45 .Ar section
46 as data, printing the actual address of the data.
47 .It Fl F Ar function
48 Disassemble
49 .Ar function .
50 May be specified multiple times.
51 .It Fl n
52 Show numeric addresses instead of symbol names.
53 .It Fl o
54 Display numbers in octal (the default is hexadecimal).
55 .It Fl q
56 Do not show headers or function entry labels.
57 .It Fl t Ar section
58 Disassemble
59 .Ar section
60 as text.
61 .El
62 .Pp
64 .Fl d ,
65 .Fl D ,
66 .Fl F
68 .Fl t
69 are specified, only the specified sections or functions are disassembled.
70 Otherwise, all text sections are disassembled.
71 .Sh EXIT STATUS
72 .Ex -std
73 .Sh SEE ALSO
74 .Xr ar 1 ,
75 .Xr as 1 ,
76 .Xr ld 1 ,
77 .Xr a.out 4