FreeCalypso > hg > freecalypso-reveng
annotate ticoff/main.c @ 89:c5d52666d2eb
armdis: BX/MRS/MSR decoding implemented
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sat, 29 Mar 2014 21:36:22 +0000 |
| parents | c20dc315a9d4 |
| children | e650fdc743fe |
| rev | line source |
|---|---|
| 70 | 1 /* |
| 2 * tiobjd main() function and command dispatch | |
| 3 */ | |
| 4 | |
| 5 #include <sys/types.h> | |
| 6 #include <stdio.h> | |
| 7 #include <stdlib.h> | |
| 8 #include <string.h> | |
| 9 #include <strings.h> | |
| 10 #include "globals.h" | |
| 11 | |
|
77
590396e27e96
tiobjd: basics dump streamlined
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
75
diff
changeset
|
12 extern int cmd_basics(); |
|
81
192da19c7506
tiobjd: symbol sorting implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
79
diff
changeset
|
13 extern int cmd_nm(); |
|
79
8f4996bff904
tiobjd: profile operation implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
77
diff
changeset
|
14 extern int cmd_profile(); |
|
82
c20dc315a9d4
tiobjd: beginning of reloc handling
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
81
diff
changeset
|
15 extern int cmd_rawrel(); |
|
71
c15cd3d695c0
tiobjd: successful parsing of the section header table
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
70
diff
changeset
|
16 extern int cmd_sechdr(); |
|
77
590396e27e96
tiobjd: basics dump streamlined
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
75
diff
changeset
|
17 extern int cmd_symtab(); |
| 70 | 18 extern int dump_filehdr_info(); |
| 19 | |
| 20 static struct cmdtab { | |
| 21 char *cmd; | |
| 22 int (*func)(); | |
| 23 } cmdtab[] = { | |
|
77
590396e27e96
tiobjd: basics dump streamlined
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
75
diff
changeset
|
24 {"basics", cmd_basics}, |
|
590396e27e96
tiobjd: basics dump streamlined
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
75
diff
changeset
|
25 {"dumpsym", cmd_symtab}, /* backward compat */ |
| 70 | 26 {"hdr", dump_filehdr_info}, |
|
81
192da19c7506
tiobjd: symbol sorting implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
79
diff
changeset
|
27 {"nm", cmd_nm}, |
|
79
8f4996bff904
tiobjd: profile operation implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
77
diff
changeset
|
28 {"profile", cmd_profile}, |
|
82
c20dc315a9d4
tiobjd: beginning of reloc handling
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
81
diff
changeset
|
29 {"rawrel", cmd_rawrel}, |
|
71
c15cd3d695c0
tiobjd: successful parsing of the section header table
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
70
diff
changeset
|
30 {"sechdr", cmd_sechdr}, |
|
77
590396e27e96
tiobjd: basics dump streamlined
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
75
diff
changeset
|
31 {"symtab", cmd_symtab}, |
| 70 | 32 {0, 0} |
| 33 }; | |
| 34 | |
| 35 main(argc, argv) | |
| 36 char **argv; | |
| 37 { | |
| 38 struct cmdtab *tp; | |
| 39 | |
| 40 if (argc != 3) { | |
| 41 fprintf(stderr, "usage: %s <objfile> <op>\n", argv[0]); | |
| 42 exit(1); | |
| 43 } | |
| 44 objfilename = argv[1]; | |
| 45 mmap_objfile(); | |
| 46 initial_parse_hdr(); | |
| 47 for (tp = cmdtab; tp->cmd; tp++) | |
| 48 if (!strcmp(tp->cmd, argv[2])) | |
| 49 break; | |
| 50 if (!tp->func) { | |
| 51 fprintf(stderr, "\"%s\": unknown or unimplemented command\n", | |
| 52 argv[2]); | |
| 53 exit(1); | |
| 54 } | |
| 55 return tp->func(); | |
| 56 } |
