File: README.txt

package info (click to toggle)
hatari 2.6.1%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 11,236 kB
  • sloc: ansic: 167,249; cpp: 8,685; python: 6,324; objc: 1,888; asm: 1,754; sh: 1,688; javascript: 149; makefile: 87; xml: 32
file content (51 lines) | stat: -rw-r--r-- 1,635 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
This directory contains helper & post-processing tools and legacy
scripts to be used with Hatari debugger symbol handling and profiling.

They are...


Scripts for converting different ASCII symbols (name/address) formats
to a nm-style ASCII symbols format understood by the Hatari debugger:

- ahcc-symbols-convert.sh
- devpac3-symbols-convert.sh
- dsp-lod-symbols-convert.sh

NOTE: Normally you should set AHCC & DevPac to generate binaries with
debug symbols (as explained in debugger documentation) instead of
using these scripts.  DSP LOD symbols you need only when profiling
Falcon DSP LOD code.


Tool for outputting binary symbols data from Atari programs as ASCII,
to edit it before feeding it to Hatari debugger:

- gst2ascii.1
- gst2ascii.c

Typical use-cases for wanting this are profiling related:

* Manual (or automated) removal of symbols that make profiler output
  messy, or slow it down too much, such as symbols for loop entry
  points

* Binary is missing a symbol(s) / address(es) you're interested about,
  and you want to add it manually (e.g. old MiNTlib builds had stripped
  out symbols for time related functionality that took a lot of cycles)


Hatari profiler output post-processing and call-graph generation:
- hatari_profile.1
- hatari_profile.py


Post-processing tool providing analysis data for optimizing I/O waits:
- hatari_spinloop.py

(= what you can do after you've optimized everything else profiler
tells about CPU & DSP usage.)


Legacy script for cleaning irrevant symbols out of 'nm' tool output
(before gst2ascii and Hatari debugger supported binary symbols data):
- nm-symbols-cleanup.sh