Lines Matching full:bytes
13 my ($addr, $bytes, $instr) = ($1, $2, $4);
15 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
33 my ($addr, $bytes, $instr) = ($1, $3, $2);
34 $bytes =~ s/0x//g;
35 $bytes =~ s/\s+/ /g; # regularize whitespace
36 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
38 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
39 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
43 my ($addr, $bytes, $instr) = ($got_addr, $2, $1);
44 $bytes =~ s/0x//g;
45 $bytes =~ s/\s+/ /g; # regularize whitespace
46 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
48 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
49 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
65 if ($d1->{'bytes'} ne $d2->{'bytes'}) {
67 printf "0x%08x:\t%30s \t%s\n", 0+$d1->{'addr'}, $d1->{'bytes'}, $d1->{'instr'};
68 printf "0x%08x:\t%30s \t%s\n\n", 0+$d2->{'addr'}, $d2->{'bytes'}, $d2->{'instr'};
99 to print out hex bytes in the B<disassemble> command output, on
116 Don't show instructions where the bytes are different but they
133 http://llvm.cs.uiuc.edu/~gaeke/gdb-disassembly-print-bytes.patch