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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
|
(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
(* Disassembler for executable and .cmo object files *)
open Asttypes
open Config
open Instruct
open Lambda
open Location
open Opcodes
open Opnames
open Cmo_format
open Printf
let print_locations = ref true
(* Read signed and unsigned integers *)
let inputu ic =
let b1 = input_byte ic in
let b2 = input_byte ic in
let b3 = input_byte ic in
let b4 = input_byte ic in
(b4 lsl 24) + (b3 lsl 16) + (b2 lsl 8) + b1
let inputs ic =
let b1 = input_byte ic in
let b2 = input_byte ic in
let b3 = input_byte ic in
let b4 = input_byte ic in
let b4' = if b4 >= 128 then b4-256 else b4 in
(b4' lsl 24) + (b3 lsl 16) + (b2 lsl 8) + b1
(* Global variables *)
type global_table_entry =
Empty
| Global of Ident.t
| Constant of Obj.t
let start = ref 0 (* Position of beg. of code *)
let reloc = ref ([] : (reloc_info * int) list) (* Relocation table *)
let globals = ref ([||] : global_table_entry array) (* Global map *)
let primitives = ref ([||] : string array) (* Table of primitives *)
let objfile = ref false (* true if dumping a .cmo *)
(* Events (indexed by PC) *)
let event_table = (Hashtbl.create 253 : (int, debug_event) Hashtbl.t)
let relocate_event orig ev =
ev.ev_pos <- orig + ev.ev_pos;
match ev.ev_repr with
Event_parent repr -> repr := ev.ev_pos
| _ -> ()
let record_events orig evl =
List.iter
(fun ev ->
relocate_event orig ev;
Hashtbl.add event_table ev.ev_pos ev)
evl
(* Print a structured constant *)
let print_float f =
if String.contains f '.'
then printf "%s" f
else printf "%s." f
;;
let rec print_struct_const = function
Const_base(Const_int i) -> printf "%d" i
| Const_base(Const_float f) -> print_float f
| Const_base(Const_string s) -> printf "%S" s
| Const_immstring s -> printf "%S" s
| Const_base(Const_char c) -> printf "%C" c
| Const_base(Const_int32 i) -> printf "%ldl" i
| Const_base(Const_nativeint i) -> printf "%ndn" i
| Const_base(Const_int64 i) -> printf "%LdL" i
| Const_pointer n -> printf "%da" n
| Const_block(tag, args) ->
printf "<%d>" tag;
begin match args with
[] -> ()
| [a1] ->
printf "("; print_struct_const a1; printf ")"
| a1::al ->
printf "("; print_struct_const a1;
List.iter (fun a -> printf ", "; print_struct_const a) al;
printf ")"
end
| Const_float_array a ->
printf "[|";
List.iter (fun f -> print_float f; printf "; ") a;
printf "|]"
(* Print an obj *)
let same_custom x y =
Obj.field x 0 = Obj.field (Obj.repr y) 0
let rec print_obj x =
if Obj.is_block x then begin
let tag = Obj.tag x in
if tag = Obj.string_tag then
printf "%S" (Obj.magic x : string)
else if tag = Obj.double_tag then
printf "%.12g" (Obj.magic x : float)
else if tag = Obj.double_array_tag then begin
let a = (Obj.magic x : float array) in
printf "[|";
for i = 0 to Array.length a - 1 do
if i > 0 then printf ", ";
printf "%.12g" a.(i)
done;
printf "|]"
end else if tag = Obj.custom_tag && same_custom x 0l then
printf "%ldl" (Obj.magic x : int32)
else if tag = Obj.custom_tag && same_custom x 0n then
printf "%ndn" (Obj.magic x : nativeint)
else if tag = Obj.custom_tag && same_custom x 0L then
printf "%LdL" (Obj.magic x : int64)
else if tag < Obj.no_scan_tag then begin
printf "<%d>" (Obj.tag x);
match Obj.size x with
0 -> ()
| 1 ->
printf "("; print_obj (Obj.field x 0); printf ")"
| n ->
printf "("; print_obj (Obj.field x 0);
for i = 1 to n - 1 do
printf ", "; print_obj (Obj.field x i)
done;
printf ")"
end else
printf "<tag %d>" tag
end else
printf "%d" (Obj.magic x : int)
(* Current position in input file *)
let currpos ic =
pos_in ic - !start
(* Access in the relocation table *)
let rec rassoc key = function
[] -> raise Not_found
| (a,b) :: l -> if b = key then a else rassoc key l
let find_reloc ic =
rassoc (pos_in ic - !start) !reloc
(* Symbolic printing of global names, etc *)
let print_getglobal_name ic =
if !objfile then begin
begin try
match find_reloc ic with
Reloc_getglobal id -> print_string (Ident.name id)
| Reloc_literal sc -> print_struct_const sc
| _ -> print_string "<wrong reloc>"
with Not_found ->
print_string "<no reloc>"
end;
ignore (inputu ic);
end
else begin
let n = inputu ic in
if n >= Array.length !globals || n < 0
then print_string "<global table overflow>"
else match !globals.(n) with
Global id -> print_string(Ident.name id)
| Constant obj -> print_obj obj
| _ -> print_string "???"
end
let print_setglobal_name ic =
if !objfile then begin
begin try
match find_reloc ic with
Reloc_setglobal id -> print_string (Ident.name id)
| _ -> print_string "<wrong reloc>"
with Not_found ->
print_string "<no reloc>"
end;
ignore (inputu ic);
end
else begin
let n = inputu ic in
if n >= Array.length !globals || n < 0
then print_string "<global table overflow>"
else match !globals.(n) with
Global id -> print_string(Ident.name id)
| _ -> print_string "???"
end
let print_primitive ic =
if !objfile then begin
begin try
match find_reloc ic with
Reloc_primitive s -> print_string s
| _ -> print_string "<wrong reloc>"
with Not_found ->
print_string "<no reloc>"
end;
ignore (inputu ic);
end
else begin
let n = inputu ic in
if n >= Array.length !primitives || n < 0
then print_int n
else print_string !primitives.(n)
end
(* Disassemble one instruction *)
let currpc ic =
currpos ic / 4
type shape =
| Nothing
| Uint
| Sint
| Uint_Uint
| Disp
| Uint_Disp
| Sint_Disp
| Getglobal
| Getglobal_Uint
| Setglobal
| Primitive
| Uint_Primitive
| Switch
| Closurerec
| Pubmet
;;
let op_shapes = [
opACC0, Nothing;
opACC1, Nothing;
opACC2, Nothing;
opACC3, Nothing;
opACC4, Nothing;
opACC5, Nothing;
opACC6, Nothing;
opACC7, Nothing;
opACC, Uint;
opPUSH, Nothing;
opPUSHACC0, Nothing;
opPUSHACC1, Nothing;
opPUSHACC2, Nothing;
opPUSHACC3, Nothing;
opPUSHACC4, Nothing;
opPUSHACC5, Nothing;
opPUSHACC6, Nothing;
opPUSHACC7, Nothing;
opPUSHACC, Uint;
opPOP, Uint;
opASSIGN, Uint;
opENVACC1, Nothing;
opENVACC2, Nothing;
opENVACC3, Nothing;
opENVACC4, Nothing;
opENVACC, Uint;
opPUSHENVACC1, Nothing;
opPUSHENVACC2, Nothing;
opPUSHENVACC3, Nothing;
opPUSHENVACC4, Nothing;
opPUSHENVACC, Uint;
opPUSH_RETADDR, Disp;
opAPPLY, Uint;
opAPPLY1, Nothing;
opAPPLY2, Nothing;
opAPPLY3, Nothing;
opAPPTERM, Uint_Uint;
opAPPTERM1, Uint;
opAPPTERM2, Uint;
opAPPTERM3, Uint;
opRETURN, Uint;
opRESTART, Nothing;
opGRAB, Uint;
opCLOSURE, Uint_Disp;
opCLOSUREREC, Closurerec;
opOFFSETCLOSUREM2, Nothing;
opOFFSETCLOSURE0, Nothing;
opOFFSETCLOSURE2, Nothing;
opOFFSETCLOSURE, Sint; (* was Uint *)
opPUSHOFFSETCLOSUREM2, Nothing;
opPUSHOFFSETCLOSURE0, Nothing;
opPUSHOFFSETCLOSURE2, Nothing;
opPUSHOFFSETCLOSURE, Sint; (* was Nothing *)
opGETGLOBAL, Getglobal;
opPUSHGETGLOBAL, Getglobal;
opGETGLOBALFIELD, Getglobal_Uint;
opPUSHGETGLOBALFIELD, Getglobal_Uint;
opSETGLOBAL, Setglobal;
opATOM0, Nothing;
opATOM, Uint;
opPUSHATOM0, Nothing;
opPUSHATOM, Uint;
opMAKEBLOCK, Uint_Uint;
opMAKEBLOCK1, Uint;
opMAKEBLOCK2, Uint;
opMAKEBLOCK3, Uint;
opMAKEFLOATBLOCK, Uint;
opGETFIELD0, Nothing;
opGETFIELD1, Nothing;
opGETFIELD2, Nothing;
opGETFIELD3, Nothing;
opGETFIELD, Uint;
opGETFLOATFIELD, Uint;
opSETFIELD0, Nothing;
opSETFIELD1, Nothing;
opSETFIELD2, Nothing;
opSETFIELD3, Nothing;
opSETFIELD, Uint;
opSETFLOATFIELD, Uint;
opVECTLENGTH, Nothing;
opGETVECTITEM, Nothing;
opSETVECTITEM, Nothing;
opGETSTRINGCHAR, Nothing;
opSETSTRINGCHAR, Nothing;
opBRANCH, Disp;
opBRANCHIF, Disp;
opBRANCHIFNOT, Disp;
opSWITCH, Switch;
opBOOLNOT, Nothing;
opPUSHTRAP, Disp;
opPOPTRAP, Nothing;
opRAISE, Nothing;
opCHECK_SIGNALS, Nothing;
opC_CALL1, Primitive;
opC_CALL2, Primitive;
opC_CALL3, Primitive;
opC_CALL4, Primitive;
opC_CALL5, Primitive;
opC_CALLN, Uint_Primitive;
opCONST0, Nothing;
opCONST1, Nothing;
opCONST2, Nothing;
opCONST3, Nothing;
opCONSTINT, Sint;
opPUSHCONST0, Nothing;
opPUSHCONST1, Nothing;
opPUSHCONST2, Nothing;
opPUSHCONST3, Nothing;
opPUSHCONSTINT, Sint;
opNEGINT, Nothing;
opADDINT, Nothing;
opSUBINT, Nothing;
opMULINT, Nothing;
opDIVINT, Nothing;
opMODINT, Nothing;
opANDINT, Nothing;
opORINT, Nothing;
opXORINT, Nothing;
opLSLINT, Nothing;
opLSRINT, Nothing;
opASRINT, Nothing;
opEQ, Nothing;
opNEQ, Nothing;
opLTINT, Nothing;
opLEINT, Nothing;
opGTINT, Nothing;
opGEINT, Nothing;
opOFFSETINT, Sint;
opOFFSETREF, Sint;
opISINT, Nothing;
opGETMETHOD, Nothing;
opGETDYNMET, Nothing;
opGETPUBMET, Pubmet;
opBEQ, Sint_Disp;
opBNEQ, Sint_Disp;
opBLTINT, Sint_Disp;
opBLEINT, Sint_Disp;
opBGTINT, Sint_Disp;
opBGEINT, Sint_Disp;
opULTINT, Nothing;
opUGEINT, Nothing;
opBULTINT, Uint_Disp;
opBUGEINT, Uint_Disp;
opSTOP, Nothing;
opEVENT, Nothing;
opBREAK, Nothing;
];;
let print_event ev =
if !print_locations then
let ls = ev.ev_loc.loc_start in
let le = ev.ev_loc.loc_end in
printf "File \"%s\", line %d, characters %d-%d:\n" ls.Lexing.pos_fname
ls.Lexing.pos_lnum (ls.Lexing.pos_cnum - ls.Lexing.pos_bol)
(le.Lexing.pos_cnum - ls.Lexing.pos_bol)
let print_instr ic =
let pos = currpos ic in
List.iter print_event (Hashtbl.find_all event_table pos);
printf "%8d " (pos / 4);
let op = inputu ic in
if op >= Array.length names_of_instructions || op < 0
then (print_string "*** unknown opcode : "; print_int op)
else print_string names_of_instructions.(op);
print_string " ";
begin try match List.assoc op op_shapes with
| Uint -> print_int (inputu ic)
| Sint -> print_int (inputs ic)
| Uint_Uint
-> print_int (inputu ic); print_string ", "; print_int (inputu ic)
| Disp -> let p = currpc ic in print_int (p + inputs ic)
| Uint_Disp
-> print_int (inputu ic); print_string ", ";
let p = currpc ic in print_int (p + inputs ic)
| Sint_Disp
-> print_int (inputs ic); print_string ", ";
let p = currpc ic in print_int (p + inputs ic)
| Getglobal -> print_getglobal_name ic
| Getglobal_Uint
-> print_getglobal_name ic; print_string ", "; print_int (inputu ic)
| Setglobal -> print_setglobal_name ic
| Primitive -> print_primitive ic
| Uint_Primitive
-> print_int(inputu ic); print_string ", "; print_primitive ic
| Switch
-> let n = inputu ic in
let orig = currpc ic in
for i = 0 to (n land 0xFFFF) - 1 do
print_string "\n int "; print_int i; print_string " -> ";
print_int(orig + inputs ic);
done;
for i = 0 to (n lsr 16) - 1 do
print_string "\n tag "; print_int i; print_string " -> ";
print_int(orig + inputs ic);
done;
| Closurerec
-> let nfuncs = inputu ic in
let nvars = inputu ic in
let orig = currpc ic in
print_int nvars;
for _i = 0 to nfuncs - 1 do
print_string ", ";
print_int (orig + inputs ic);
done;
| Pubmet
-> let tag = inputs ic in
let _cache = inputu ic in
print_int tag
| Nothing -> ()
with Not_found -> print_string "(unknown arguments)"
end;
print_string "\n";
;;
(* Disassemble a block of code *)
let print_code ic len =
start := pos_in ic;
let stop = !start + len in
while pos_in ic < stop do print_instr ic done
(* Dump relocation info *)
let print_reloc (info, pos) =
printf " %d (%d) " pos (pos/4);
match info with
Reloc_literal sc -> print_struct_const sc; printf "\n"
| Reloc_getglobal id -> printf "require %s\n" (Ident.name id)
| Reloc_setglobal id -> printf "provide %s\n" (Ident.name id)
| Reloc_primitive s -> printf "prim %s\n" s
(* Print a .cmo file *)
let dump_obj filename ic =
let buffer = Misc.input_bytes ic (String.length cmo_magic_number) in
if buffer <> cmo_magic_number then begin
prerr_endline "Not an object file"; exit 2
end;
let cu_pos = input_binary_int ic in
seek_in ic cu_pos;
let cu = (input_value ic : compilation_unit) in
reloc := cu.cu_reloc;
if cu.cu_debug > 0 then begin
seek_in ic cu.cu_debug;
let evl = (input_value ic : debug_event list) in
record_events 0 evl
end;
seek_in ic cu.cu_pos;
print_code ic cu.cu_codesize
(* Read the primitive table from an executable *)
let read_primitive_table ic len =
let p = Misc.input_bytes ic len in
let rec split beg cur =
if cur >= len then []
else if p.[cur] = '\000' then
String.sub p beg (cur - beg) :: split (cur + 1) (cur + 1)
else
split beg (cur + 1) in
Array.of_list(split 0 0)
(* Print an executable file *)
let dump_exe ic =
Bytesections.read_toc ic;
let prim_size = Bytesections.seek_section ic "PRIM" in
primitives := read_primitive_table ic prim_size;
ignore(Bytesections.seek_section ic "DATA");
let init_data = (input_value ic : Obj.t array) in
globals := Array.create (Array.length init_data) Empty;
for i = 0 to Array.length init_data - 1 do
!globals.(i) <- Constant (init_data.(i))
done;
ignore(Bytesections.seek_section ic "SYMB");
let (_, sym_table) = (input_value ic : int * (Ident.t, int) Tbl.t) in
Tbl.iter (fun id pos -> !globals.(pos) <- Global id) sym_table;
begin try
ignore (Bytesections.seek_section ic "DBUG");
let num_eventlists = input_binary_int ic in
for _i = 1 to num_eventlists do
let orig = input_binary_int ic in
let evl = (input_value ic : debug_event list) in
record_events orig evl
done
with Not_found -> ()
end;
let code_size = Bytesections.seek_section ic "CODE" in
print_code ic code_size
let arg_list = [
"-noloc", Arg.Clear print_locations, " : don't print source information";
]
let arg_usage = Printf.sprintf "%s [OPTIONS] FILES : dump content of bytecode files" Sys.argv.(0)
let first_file = ref true
let arg_fun filename =
let ic = open_in_bin filename in
if not !first_file then print_newline ();
first_file := false;
printf "## start of ocaml dump of %S\n%!" filename;
begin try
objfile := false; dump_exe ic
with Bytesections.Bad_magic_number ->
objfile := true; seek_in ic 0; dump_obj filename ic
end;
close_in ic;
printf "## end of ocaml dump of %S\n%!" filename
let main() =
Arg.parse arg_list arg_fun arg_usage;
exit 0
let _ = main ()
|