An Inst is a single instruction in an assembly listing.
| 121 | |
| 122 | // An Inst is a single instruction in an assembly listing. |
| 123 | type Inst struct { |
| 124 | Addr uint64 // virtual address of instruction |
| 125 | Text string // instruction text |
| 126 | Function string // function name |
| 127 | File string // source file |
| 128 | Line int // source line |
| 129 | } |
| 130 | |
| 131 | // An ObjFile is a single object file: a shared library or executable. |
| 132 | type ObjFile interface { |