Re: [DynInst_API:] DynInst Overhead


Date: Mon, 28 Jul 2014 23:01:31 -0000
From: Buddhika Chamith Kahawitage Don <budkahaw@xxxxxxxxxxxx>
Subject: Re: [DynInst_API:] DynInst Overhead
Yes. That output is coming from CodeCoverage.C apparently when it is trying iterate the module list.

    if ((*moduleIter)->isSharedLib ()) {
      if (!includeSharedLib
          || skipLibraries.find (moduleName) != skipLibraries.end ()) {
        cout << "Skipping library: " << moduleName << endl;
        continue;
      }
    }

I have attached the output. The interesting bit of output seems to be the following.

Instrumenting Basic Block 0x40b695 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b69c of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6a5 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6b4 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6c6 of BZ2_hbMakeCodeLengths
Inserting instrumention at function entry of __libc_csu_fini
Instrumenting Basic Block 0x40b6d0 of __libc_csu_fini
Skipping library: ld-linux-x86-64.so.2
Skipping library: libc.so.6
insertInitCallback on huffman.c
insertFiniCallback on huffman.c
ÂcreateSymbolTables for ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂQ
::driver for emitElf64
Emitting to temporary file bzipsfJyqC
section .interp addr = 400200 off = 238 size = 1c
section .note.ABI-tag addr = 40021c off = 121c size = 20
section .note.gnu.build-id addr = 40023c off = 123c size = 24
section .gnu.hash addr = 400260 off = 1260 size = 24

I also checked my LD_LIBRARY_PATH and LD_LIBRARY entries for any weird stuff just in case and found none.

Regards
Bud



On Mon, Jul 28, 2014 at 5:10 PM, Bill Williams <bill@xxxxxxxxxxx> wrote:
On 07/25/2014 10:53 PM, Buddhika Chamith Kahawitage Don wrote:
Yes that did the trick. Thanks. But that doesn't seem to be the end of
the road unfortunately :(. I tried instrumenting several apps. I see
following inconsistent behavior.

Initially the instrumentation starts with following message for all apps.

...I've been through our source and can't find the source of this log message anywhere inside the Dyninst tree. Is this coming from the mutator by chance? And if so, can you poke in a debugger and find where the ostensible library name is coming from and what it looks like as a hex dump?

I mean, it seems obvious that this is an attempt to open/instrument a library dependency with a bogus (corrupt? missing? whole library entry is invalid?) pathname, skipping it, copying it over into the rewritten binary's DT_NEEDED entries, and the loader horking that <arbitrary line noise> is not a loadable library. What's not obvious is where this bogus dependency came from--I haven't seen this in any of our testing.

Can you turn on SYMTAB_DEBUG_REWRITE in your environment and send me that log?

"Skipping library: ïïïïïïïïïïïïïïïï1"

Then some of the apps fails when executed with the following message.

"error while loading shared libraries: ïïïïïïïïïïïïïïïïQ: cannot open
shared object file: No such file or directory"

So I checked the ldd output from before and after instrumentation for a
such application.

Before

$ ldd bzip2
  Âlinux-vdso.so.1 => Â(0x00007fff23fff000)
  Âlibc.so.6 => /lib64/libc.so.6 (0x0000003acc200000)
  Â/lib64/ld-linux-x86-64.so.2 (0x0000003acbe00000)

After

$ ldd bz
  Âlinux-vdso.so.1 => Â(0x00007fffba172000)
  Âlibc.so.6 => /lib64/libc.so.6 (0x0000003acc200000)
  Â./libInst.so (0x00007f8673335000)
  Â/home/buddhikac/dyninst/build/lib/libdyninstAPI_RT.so.8.2
(0x00007f867209b000)
   => /lib64/ld-linux-x86-64.so.2 (0x0000003acbe00000)
  ÂïïïïïïïïïïïïïïïïQ => not found
  Âlibstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x0000003ad0200000)
  Âlibm.so.6 => /lib64/libm.so.6 (0x0000003acca00000)
  Âlibgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x0000003acf600000)
  Âlibdl.so.2 => /lib64/libdl.so.2 (0x0000003acc600000)

Where it seems to be that a stray entry has been added during
instrumentation. Not sure what to make of this. Any ideas?

Bud




On Fri, Jul 25, 2014 at 11:11 AM, Bill Williams <bill@xxxxxxxxxxx
<mailto:bill@xxxxxxxxxxx>> wrote:

  On 07/25/2014 01:53 AM, Buddhika Chamith Kahawitage Don wrote:

    Thanks for the input. I finally manage to get the build working.
    However
    when I try to run the code-coverage tool linked to this version
    I get
    the following.

    codeCoverage: ~/dyninst/dyninstAPI/src/__binaryEdit.C:928:
    int_variable*
    BinaryEdit::createTrampGuard()__: Assertion `var' failed.

    Aborted

    Is this something which sounds familiar?

  Yes; is your DYNINSTAPI_RT_LIB environment variable set to point to
  libdyninstAPI_RT.so's full pathname? And does libdyninstAPI_RT.so
  have a public DYNINST_default_tramp_guards symbol?

    Regards
    Bud



    On Thu, Jul 24, 2014 at 1:38 PM, Bill Williams <bill@xxxxxxxxxxx
    <mailto:bill@xxxxxxxxxxx>
    <mailto:bill@xxxxxxxxxxx <mailto:bill@xxxxxxxxxxx>>> wrote:

      ÂOn 07/24/2014 12:35 PM, Buddhika Chamith Kahawitage Don wrote:

        ÂI tried clearing old install and I am still getting
    that error.
        ÂApparently eventhough entryIDs.h file contain this
    entry it's not
        Âgetting properly included in arch-X86.C file during
    compilation.

        ÂSince I am not familiar with CMake builds (it seems to
    generate
        Âlot of
        Âintermediate build files) I am not sure where to look
    to debug this
        Âissue. Any pointers would be greatly appreciated.

      ÂIIRC entryIDs.h moved in our build structure between 8.1.2
    and 8.2;
      Âyou could be picking up an old copy from the build tree
    rather than
      Âfrom the installed location.

      ÂI haven't seen this on actually clean checkouts, so you've
    still got
      Âa second entryIDs.h kicking around somewhere...

        ÂRegards
        ÂBud



        ÂOn Tue, Jul 22, 2014 at 8:23 PM, Buddhika Chamith
    Kahawitage Don
        Â<budkahaw@xxxxxxxxxxxx <mailto:budkahaw@xxxxxxxxxxxx>
    <mailto:budkahaw@xxxxxxxxxxxx <mailto:budkahaw@xxxxxxxxxxxx>>
        Â<mailto:budkahaw@xxxxxxxxxxxx
    <mailto:budkahaw@xxxxxxxxxxxx> <mailto:budkahaw@xxxxxxxxxxxx
    <mailto:budkahaw@xxxxxxxxxxxx>>__>__>

        Âwrote:

           Will try that out.

           Thanks
           Bud


           On Tue, Jul 22, 2014 at 2:06 PM, Matthew LeGendre
           <legendre1@xxxxxxxx <mailto:legendre1@xxxxxxxx>
    <mailto:legendre1@xxxxxxxx <mailto:legendre1@xxxxxxxx>>
        Â<mailto:legendre1@xxxxxxxx <mailto:legendre1@xxxxxxxx>
    <mailto:legendre1@xxxxxxxx <mailto:legendre1@xxxxxxxx>>>> wrote:



             On Mon, 21 Jul 2014, Buddhika Chamith
    Kahawitage Don wrote:

               I tried building v8.2 branch but got the
    following
        Âerror.

               arch-x86.C:368: error: âe_cmpsd_sseâ was not
        Âdeclared in
               this scope

               Really appreciate if you can (re)post the
    build
               instructions. I tried
               browsing the list archive. But couldn't
    find any
        Âspecific
               build how-to. May
               be I missed it due to the message volume.


             The cmpsd_sse instructions were only added to
    v8.2 a
        Âmonth ago
             by Ray. They weren't in Dyninst 8.1. ÂI'd bet your
        Âinstall is
             pulling the old 8.1 header files (specifically
        ÂentryID.h, where
             e_cmpsd_sse is defined) and mixing them with
    the new
        Â8.2 source.
              Try clearing out your old install and see if
    that
        Âfixes the build.

             -Matt





      Â--
      Â--bw

      ÂBill Williams
      ÂParadyn Project
    bill@xxxxxxxxxxx <mailto:bill@xxxxxxxxxxx>
    <mailto:bill@xxxxxxxxxxx <mailto:bill@xxxxxxxxxxx>>





  --
  --bw

  Bill Williams
  Paradyn Project
  bill@xxxxxxxxxxx <mailto:bill@xxxxxxxxxxx>




--
--bw

Bill Williams
Paradyn Project
bill@xxxxxxxxxxx

Skipping library: »»»»»»»»»»»»»»»»1
Instrumenting module: bzlib.c
Inserting instrumention at function entry of BZ2_bzCompressInit
Instrumenting Basic Block 0x402200 of BZ2_bzCompressInit
Instrumenting Basic Block 0x402229 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40222e of BZ2_bzCompressInit
Instrumenting Basic Block 0x402250 of BZ2_bzCompressInit
Instrumenting Basic Block 0x402255 of BZ2_bzCompressInit
Instrumenting Basic Block 0x402259 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40225e of BZ2_bzCompressInit
Instrumenting Basic Block 0x402266 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40227b of BZ2_bzCompressInit
Instrumenting Basic Block 0x402286 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40229b of BZ2_bzCompressInit
Instrumenting Basic Block 0x4022a8 of BZ2_bzCompressInit
Instrumenting Basic Block 0x4022df of BZ2_bzCompressInit
Instrumenting Basic Block 0x4022e7 of BZ2_bzCompressInit
Instrumenting Basic Block 0x4022f7 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40230c of BZ2_bzCompressInit
Instrumenting Basic Block 0x402321 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40232c of BZ2_bzCompressInit
Instrumenting Basic Block 0x402335 of BZ2_bzCompressInit
Instrumenting Basic Block 0x4023ea of BZ2_bzCompressInit
Instrumenting Basic Block 0x4023fa of BZ2_bzCompressInit
Instrumenting Basic Block 0x402409 of BZ2_bzCompressInit
Instrumenting Basic Block 0x402416 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40241d of BZ2_bzCompressInit
Instrumenting Basic Block 0x402426 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40242d of BZ2_bzCompressInit
Instrumenting Basic Block 0x402436 of BZ2_bzCompressInit
Instrumenting Basic Block 0x40243d of BZ2_bzCompressInit
Instrumenting Basic Block 0x402447 of BZ2_bzCompressInit
Instrumenting Basic Block 0x402451 of BZ2_bzCompressInit
Inserting instrumention at function entry of add_pair_to_block
Instrumenting Basic Block 0x402460 of add_pair_to_block
Instrumenting Basic Block 0x40246e of add_pair_to_block
Instrumenting Basic Block 0x402480 of add_pair_to_block
Instrumenting Basic Block 0x40249d of add_pair_to_block
Instrumenting Basic Block 0x4024a3 of add_pair_to_block
Instrumenting Basic Block 0x4024b8 of add_pair_to_block
Instrumenting Basic Block 0x4024c1 of add_pair_to_block
Instrumenting Basic Block 0x4024c6 of add_pair_to_block
Instrumenting Basic Block 0x402540 of add_pair_to_block
Instrumenting Basic Block 0x402558 of add_pair_to_block
Instrumenting Basic Block 0x40256f of add_pair_to_block
Instrumenting Basic Block 0x402590 of add_pair_to_block
Inserting instrumention at function entry of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025a0 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025bb of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025c0 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025d8 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025e1 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025ea of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025f3 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x4025fd of BZ2_bzCompressEnd
Instrumenting Basic Block 0x402606 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x40260e of BZ2_bzCompressEnd
Instrumenting Basic Block 0x402617 of BZ2_bzCompressEnd
Instrumenting Basic Block 0x40261f of BZ2_bzCompressEnd
Instrumenting Basic Block 0x40262c of BZ2_bzCompressEnd
Inserting instrumention at function entry of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402640 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402660 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402665 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402680 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402685 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x40268a of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402695 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x4026a0 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x4026b1 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x4026be of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402737 of BZ2_bzDecompressInit
Instrumenting Basic Block 0x402744 of BZ2_bzDecompressInit
Inserting instrumention at function entry of BZ2_indexIntoF
Instrumenting Basic Block 0x402760 of BZ2_indexIntoF
Instrumenting Basic Block 0x402770 of BZ2_indexIntoF
Instrumenting Basic Block 0x40278b of BZ2_indexIntoF
Inserting instrumention at function entry of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x402790 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027ab of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027b0 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027c8 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027d1 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027da of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027e6 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027f0 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x4027fc of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x402804 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x402810 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x402818 of BZ2_bzDecompressEnd
Instrumenting Basic Block 0x402825 of BZ2_bzDecompressEnd
Inserting instrumention at function entry of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402840 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402845 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x40284e of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402853 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402859 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402868 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x40286d of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402872 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402877 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x40287d of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402890 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x402895 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x4028a0 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x4028a5 of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x4028ab of BZ2_bzReadGetUnused
Instrumenting Basic Block 0x4028c7 of BZ2_bzReadGetUnused
Inserting instrumention at function entry of BZ2_bzlibVersion
Instrumenting Basic Block 0x4028d0 of BZ2_bzlibVersion
Inserting instrumention at function entry of BZ2_bzflush
Instrumenting Basic Block 0x4028e0 of BZ2_bzflush
Inserting instrumention at function entry of BZ2_bzerror
Instrumenting Basic Block 0x4028f0 of BZ2_bzerror
Inserting instrumention at function entry of myfeof
Instrumenting Basic Block 0x402910 of myfeof
Instrumenting Basic Block 0x402918 of myfeof
Instrumenting Basic Block 0x402924 of myfeof
Instrumenting Basic Block 0x40292f of myfeof
Instrumenting Basic Block 0x402931 of myfeof
Inserting instrumention at function entry of BZ2_bzReadClose
Instrumenting Basic Block 0x402940 of BZ2_bzReadClose
Instrumenting Basic Block 0x402949 of BZ2_bzReadClose
Instrumenting Basic Block 0x40294f of BZ2_bzReadClose
Instrumenting Basic Block 0x402954 of BZ2_bzReadClose
Instrumenting Basic Block 0x402967 of BZ2_bzReadClose
Instrumenting Basic Block 0x40296c of BZ2_bzReadClose
Instrumenting Basic Block 0x402972 of BZ2_bzReadClose
Instrumenting Basic Block 0x40297c of BZ2_bzReadClose
Instrumenting Basic Block 0x402988 of BZ2_bzReadClose
Instrumenting Basic Block 0x402991 of BZ2_bzReadClose
Instrumenting Basic Block 0x4029a0 of BZ2_bzReadClose
Instrumenting Basic Block 0x4029a5 of BZ2_bzReadClose
Instrumenting Basic Block 0x4029b0 of BZ2_bzReadClose
Instrumenting Basic Block 0x4029b7 of BZ2_bzReadClose
Instrumenting Basic Block 0x4029c1 of BZ2_bzReadClose
Inserting instrumention at function entry of default_bzfree
Instrumenting Basic Block 0x4029e0 of default_bzfree
Instrumenting Basic Block 0x4029e5 of default_bzfree
Instrumenting Basic Block 0x4029f0 of default_bzfree
Inserting instrumention at function entry of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a00 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a21 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a27 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a31 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a3a of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a43 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a4c of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a59 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a68 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a79 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a7e of BZ2_bzReadOpen
Instrumenting Basic Block 0x402a84 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402ad4 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402ad8 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402af0 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402af4 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b13 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b1a of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b24 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b2c of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b50 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b60 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b69 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b70 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b75 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402b90 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bb0 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bb9 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bbb of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bc2 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bc4 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bd3 of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bda of BZ2_bzReadOpen
Instrumenting Basic Block 0x402bdf of BZ2_bzReadOpen
Inserting instrumention at function entry of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402bf0 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c26 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c2c of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c35 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c42 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c46 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c4f of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c59 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c63 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c6f of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c74 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402c7a of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402ce2 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402ce6 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402cfa of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d20 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d25 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d30 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d40 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d45 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d47 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d55 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d60 of BZ2_bzWriteOpen
Instrumenting Basic Block 0x402d65 of BZ2_bzWriteOpen
Inserting instrumention at function entry of bzopen_or_bzdopen
Instrumenting Basic Block 0x402d70 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402da0 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402da2 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402dc8 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402ded of bzopen_or_bzdopen
Instrumenting Basic Block 0x402df0 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402dfa of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e00 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e05 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e13 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e20 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e2d of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e33 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e39 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e4c of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e56 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e61 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e6c of bzopen_or_bzdopen
Instrumenting Basic Block 0x402e84 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402eae of bzopen_or_bzdopen
Instrumenting Basic Block 0x402eb3 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402ebc of bzopen_or_bzdopen
Instrumenting Basic Block 0x402ec6 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402eca of bzopen_or_bzdopen
Instrumenting Basic Block 0x402ed5 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402eee of bzopen_or_bzdopen
Instrumenting Basic Block 0x402ef8 of bzopen_or_bzdopen
Instrumenting Basic Block 0x402f00 of bzopen_or_bzdopen
Inserting instrumention at function entry of BZ2_bzdopen
Instrumenting Basic Block 0x402f10 of BZ2_bzdopen
Inserting instrumention at function entry of BZ2_bzopen
Instrumenting Basic Block 0x402f30 of BZ2_bzopen
Inserting instrumention at function entry of default_bzalloc
Instrumenting Basic Block 0x402f40 of default_bzalloc
Inserting instrumention at function entry of BZ2_bzDecompress
Instrumenting Basic Block 0x402f50 of BZ2_bzDecompress
Instrumenting Basic Block 0x402f72 of BZ2_bzDecompress
Instrumenting Basic Block 0x402f77 of BZ2_bzDecompress
Instrumenting Basic Block 0x402fa0 of BZ2_bzDecompress
Instrumenting Basic Block 0x402fa9 of BZ2_bzDecompress
Instrumenting Basic Block 0x402faf of BZ2_bzDecompress
Instrumenting Basic Block 0x402fba of BZ2_bzDecompress
Instrumenting Basic Block 0x402fbf of BZ2_bzDecompress
Instrumenting Basic Block 0x402fc4 of BZ2_bzDecompress
Instrumenting Basic Block 0x402fcc of BZ2_bzDecompress
Instrumenting Basic Block 0x402fd7 of BZ2_bzDecompress
Instrumenting Basic Block 0x402fdd of BZ2_bzDecompress
Instrumenting Basic Block 0x402fe7 of BZ2_bzDecompress
Instrumenting Basic Block 0x402ff1 of BZ2_bzDecompress
Instrumenting Basic Block 0x402ff5 of BZ2_bzDecompress
Instrumenting Basic Block 0x402fff of BZ2_bzDecompress
Instrumenting Basic Block 0x403005 of BZ2_bzDecompress
Instrumenting Basic Block 0x40304b of BZ2_bzDecompress
Instrumenting Basic Block 0x403051 of BZ2_bzDecompress
Instrumenting Basic Block 0x40306a of BZ2_bzDecompress
Instrumenting Basic Block 0x403070 of BZ2_bzDecompress
Instrumenting Basic Block 0x403089 of BZ2_bzDecompress
Instrumenting Basic Block 0x40308b of BZ2_bzDecompress
Instrumenting Basic Block 0x40308e of BZ2_bzDecompress
Instrumenting Basic Block 0x40309d of BZ2_bzDecompress
Instrumenting Basic Block 0x4030a1 of BZ2_bzDecompress
Instrumenting Basic Block 0x4030aa of BZ2_bzDecompress
Instrumenting Basic Block 0x4030f7 of BZ2_bzDecompress
Instrumenting Basic Block 0x403104 of BZ2_bzDecompress
Instrumenting Basic Block 0x40310c of BZ2_bzDecompress
Instrumenting Basic Block 0x403146 of BZ2_bzDecompress
Instrumenting Basic Block 0x40314e of BZ2_bzDecompress
Instrumenting Basic Block 0x403154 of BZ2_bzDecompress
Instrumenting Basic Block 0x40315d of BZ2_bzDecompress
Instrumenting Basic Block 0x403186 of BZ2_bzDecompress
Instrumenting Basic Block 0x40318a of BZ2_bzDecompress
Instrumenting Basic Block 0x40318c of BZ2_bzDecompress
Instrumenting Basic Block 0x4031a4 of BZ2_bzDecompress
Instrumenting Basic Block 0x4031a8 of BZ2_bzDecompress
Instrumenting Basic Block 0x4031d0 of BZ2_bzDecompress
Instrumenting Basic Block 0x4031e1 of BZ2_bzDecompress
Instrumenting Basic Block 0x4031e7 of BZ2_bzDecompress
Instrumenting Basic Block 0x4031fd of BZ2_bzDecompress
Instrumenting Basic Block 0x403202 of BZ2_bzDecompress
Instrumenting Basic Block 0x403213 of BZ2_bzDecompress
Instrumenting Basic Block 0x403221 of BZ2_bzDecompress
Instrumenting Basic Block 0x403242 of BZ2_bzDecompress
Instrumenting Basic Block 0x40325b of BZ2_bzDecompress
Instrumenting Basic Block 0x403260 of BZ2_bzDecompress
Instrumenting Basic Block 0x403267 of BZ2_bzDecompress
Instrumenting Basic Block 0x40326d of BZ2_bzDecompress
Instrumenting Basic Block 0x40328c of BZ2_bzDecompress
Instrumenting Basic Block 0x40329e of BZ2_bzDecompress
Instrumenting Basic Block 0x4032a8 of BZ2_bzDecompress
Instrumenting Basic Block 0x4032b2 of BZ2_bzDecompress
Instrumenting Basic Block 0x4032b8 of BZ2_bzDecompress
Instrumenting Basic Block 0x4032c2 of BZ2_bzDecompress
Instrumenting Basic Block 0x4032c8 of BZ2_bzDecompress
Instrumenting Basic Block 0x40330e of BZ2_bzDecompress
Instrumenting Basic Block 0x403314 of BZ2_bzDecompress
Instrumenting Basic Block 0x40332d of BZ2_bzDecompress
Instrumenting Basic Block 0x403333 of BZ2_bzDecompress
Instrumenting Basic Block 0x40335e of BZ2_bzDecompress
Instrumenting Basic Block 0x40337d of BZ2_bzDecompress
Instrumenting Basic Block 0x403380 of BZ2_bzDecompress
Instrumenting Basic Block 0x40339a of BZ2_bzDecompress
Instrumenting Basic Block 0x4033b1 of BZ2_bzDecompress
Instrumenting Basic Block 0x4033b9 of BZ2_bzDecompress
Instrumenting Basic Block 0x4033c0 of BZ2_bzDecompress
Instrumenting Basic Block 0x4033ca of BZ2_bzDecompress
Instrumenting Basic Block 0x4033d0 of BZ2_bzDecompress
Instrumenting Basic Block 0x403416 of BZ2_bzDecompress
Instrumenting Basic Block 0x40341c of BZ2_bzDecompress
Instrumenting Basic Block 0x403435 of BZ2_bzDecompress
Instrumenting Basic Block 0x40343b of BZ2_bzDecompress
Instrumenting Basic Block 0x403454 of BZ2_bzDecompress
Instrumenting Basic Block 0x403456 of BZ2_bzDecompress
Instrumenting Basic Block 0x403459 of BZ2_bzDecompress
Instrumenting Basic Block 0x403468 of BZ2_bzDecompress
Instrumenting Basic Block 0x40346c of BZ2_bzDecompress
Instrumenting Basic Block 0x403475 of BZ2_bzDecompress
Instrumenting Basic Block 0x4034b4 of BZ2_bzDecompress
Instrumenting Basic Block 0x4034d6 of BZ2_bzDecompress
Instrumenting Basic Block 0x4034d9 of BZ2_bzDecompress
Instrumenting Basic Block 0x4034f5 of BZ2_bzDecompress
Instrumenting Basic Block 0x40350a of BZ2_bzDecompress
Instrumenting Basic Block 0x403512 of BZ2_bzDecompress
Instrumenting Basic Block 0x40352d of BZ2_bzDecompress
Instrumenting Basic Block 0x40354c of BZ2_bzDecompress
Instrumenting Basic Block 0x40356e of BZ2_bzDecompress
Instrumenting Basic Block 0x403585 of BZ2_bzDecompress
Instrumenting Basic Block 0x4035a1 of BZ2_bzDecompress
Instrumenting Basic Block 0x4035c5 of BZ2_bzDecompress
Instrumenting Basic Block 0x4035e9 of BZ2_bzDecompress
Instrumenting Basic Block 0x4035fd of BZ2_bzDecompress
Instrumenting Basic Block 0x403605 of BZ2_bzDecompress
Instrumenting Basic Block 0x403619 of BZ2_bzDecompress
Instrumenting Basic Block 0x40361b of BZ2_bzDecompress
Instrumenting Basic Block 0x40361e of BZ2_bzDecompress
Instrumenting Basic Block 0x40362d of BZ2_bzDecompress
Instrumenting Basic Block 0x403631 of BZ2_bzDecompress
Instrumenting Basic Block 0x40363a of BZ2_bzDecompress
Instrumenting Basic Block 0x40366b of BZ2_bzDecompress
Instrumenting Basic Block 0x40368d of BZ2_bzDecompress
Instrumenting Basic Block 0x4036af of BZ2_bzDecompress
Instrumenting Basic Block 0x4036c4 of BZ2_bzDecompress
Instrumenting Basic Block 0x4036d8 of BZ2_bzDecompress
Instrumenting Basic Block 0x4036da of BZ2_bzDecompress
Instrumenting Basic Block 0x4036dd of BZ2_bzDecompress
Instrumenting Basic Block 0x4036ec of BZ2_bzDecompress
Instrumenting Basic Block 0x4036f0 of BZ2_bzDecompress
Instrumenting Basic Block 0x4036f9 of BZ2_bzDecompress
Instrumenting Basic Block 0x40372a of BZ2_bzDecompress
Instrumenting Basic Block 0x40374c of BZ2_bzDecompress
Instrumenting Basic Block 0x40376e of BZ2_bzDecompress
Instrumenting Basic Block 0x403783 of BZ2_bzDecompress
Instrumenting Basic Block 0x40378b of BZ2_bzDecompress
Instrumenting Basic Block 0x40379d of BZ2_bzDecompress
Instrumenting Basic Block 0x4037bc of BZ2_bzDecompress
Instrumenting Basic Block 0x4037bf of BZ2_bzDecompress
Instrumenting Basic Block 0x4037f0 of BZ2_bzDecompress
Instrumenting Basic Block 0x40380f of BZ2_bzDecompress
Instrumenting Basic Block 0x40382d of BZ2_bzDecompress
Instrumenting Basic Block 0x40383d of BZ2_bzDecompress
Instrumenting Basic Block 0x403840 of BZ2_bzDecompress
Instrumenting Basic Block 0x403844 of BZ2_bzDecompress
Instrumenting Basic Block 0x403854 of BZ2_bzDecompress
Instrumenting Basic Block 0x40385a of BZ2_bzDecompress
Instrumenting Basic Block 0x403864 of BZ2_bzDecompress
Instrumenting Basic Block 0x4038a5 of BZ2_bzDecompress
Instrumenting Basic Block 0x4038b3 of BZ2_bzDecompress
Instrumenting Basic Block 0x4038bc of BZ2_bzDecompress
Instrumenting Basic Block 0x4038e2 of BZ2_bzDecompress
Instrumenting Basic Block 0x4038ea of BZ2_bzDecompress
Instrumenting Basic Block 0x4038f0 of BZ2_bzDecompress
Instrumenting Basic Block 0x403908 of BZ2_bzDecompress
Instrumenting Basic Block 0x40390a of BZ2_bzDecompress
Instrumenting Basic Block 0x40390e of BZ2_bzDecompress
Instrumenting Basic Block 0x40391a of BZ2_bzDecompress
Instrumenting Basic Block 0x40391e of BZ2_bzDecompress
Instrumenting Basic Block 0x403935 of BZ2_bzDecompress
Instrumenting Basic Block 0x403943 of BZ2_bzDecompress
Instrumenting Basic Block 0x40394b of BZ2_bzDecompress
Instrumenting Basic Block 0x403955 of BZ2_bzDecompress
Instrumenting Basic Block 0x403967 of BZ2_bzDecompress
Instrumenting Basic Block 0x40396b of BZ2_bzDecompress
Instrumenting Basic Block 0x403978 of BZ2_bzDecompress
Instrumenting Basic Block 0x40397c of BZ2_bzDecompress
Instrumenting Basic Block 0x403983 of BZ2_bzDecompress
Instrumenting Basic Block 0x403995 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039a3 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039c7 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039d6 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039e2 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039f2 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039f5 of BZ2_bzDecompress
Instrumenting Basic Block 0x4039f9 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a09 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a0f of BZ2_bzDecompress
Instrumenting Basic Block 0x403a19 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a5a of BZ2_bzDecompress
Instrumenting Basic Block 0x403a68 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a6f of BZ2_bzDecompress
Instrumenting Basic Block 0x403a81 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a85 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a92 of BZ2_bzDecompress
Instrumenting Basic Block 0x403a96 of BZ2_bzDecompress
Instrumenting Basic Block 0x403ac3 of BZ2_bzDecompress
Instrumenting Basic Block 0x403ae5 of BZ2_bzDecompress
Instrumenting Basic Block 0x403ae9 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b0f of BZ2_bzDecompress
Instrumenting Basic Block 0x403b22 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b27 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b31 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b35 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b64 of BZ2_bzDecompress
Instrumenting Basic Block 0x403b84 of BZ2_bzDecompress
Instrumenting Basic Block 0x403ba1 of BZ2_bzDecompress
Instrumenting Basic Block 0x403be7 of BZ2_bzDecompress
Instrumenting Basic Block 0x403bf9 of BZ2_bzDecompress
Instrumenting Basic Block 0x403bfd of BZ2_bzDecompress
Instrumenting Basic Block 0x403c06 of BZ2_bzDecompress
Instrumenting Basic Block 0x403c0a of BZ2_bzDecompress
Inserting instrumention at function entry of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403c50 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403c7e of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403c84 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cb0 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cb5 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cbb of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cc0 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cc6 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403ccb of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cd0 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403cfd of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d0c of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d28 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d2e of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d33 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d3e of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d43 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d4a of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d58 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d5d of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d6b of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d70 of BZ2_bzBuffToBuffDecompress
Instrumenting Basic Block 0x403d7e of BZ2_bzBuffToBuffDecompress
Inserting instrumention at function entry of BZ2_bzRead
Instrumenting Basic Block 0x403d90 of BZ2_bzRead
Instrumenting Basic Block 0x403dbb of BZ2_bzRead
Instrumenting Basic Block 0x403dc1 of BZ2_bzRead
Instrumenting Basic Block 0x403dc6 of BZ2_bzRead
Instrumenting Basic Block 0x403dd0 of BZ2_bzRead
Instrumenting Basic Block 0x403dd5 of BZ2_bzRead
Instrumenting Basic Block 0x403dda of BZ2_bzRead
Instrumenting Basic Block 0x403ddf of BZ2_bzRead
Instrumenting Basic Block 0x403de6 of BZ2_bzRead
Instrumenting Basic Block 0x403dee of BZ2_bzRead
Instrumenting Basic Block 0x403df8 of BZ2_bzRead
Instrumenting Basic Block 0x403e20 of BZ2_bzRead
Instrumenting Basic Block 0x403e25 of BZ2_bzRead
Instrumenting Basic Block 0x403e2e of BZ2_bzRead
Instrumenting Basic Block 0x403e37 of BZ2_bzRead
Instrumenting Basic Block 0x403e42 of BZ2_bzRead
Instrumenting Basic Block 0x403e50 of BZ2_bzRead
Instrumenting Basic Block 0x403e5e of BZ2_bzRead
Instrumenting Basic Block 0x403e66 of BZ2_bzRead
Instrumenting Basic Block 0x403e6f of BZ2_bzRead
Instrumenting Basic Block 0x403e74 of BZ2_bzRead
Instrumenting Basic Block 0x403e80 of BZ2_bzRead
Instrumenting Basic Block 0x403ea0 of BZ2_bzRead
Instrumenting Basic Block 0x403ea5 of BZ2_bzRead
Instrumenting Basic Block 0x403eac of BZ2_bzRead
Instrumenting Basic Block 0x403ec0 of BZ2_bzRead
Instrumenting Basic Block 0x403eca of BZ2_bzRead
Instrumenting Basic Block 0x403ed0 of BZ2_bzRead
Instrumenting Basic Block 0x403ed5 of BZ2_bzRead
Instrumenting Basic Block 0x403edc of BZ2_bzRead
Instrumenting Basic Block 0x403ef0 of BZ2_bzRead
Instrumenting Basic Block 0x403ef7 of BZ2_bzRead
Instrumenting Basic Block 0x403eff of BZ2_bzRead
Instrumenting Basic Block 0x403f13 of BZ2_bzRead
Instrumenting Basic Block 0x403f30 of BZ2_bzRead
Instrumenting Basic Block 0x403f34 of BZ2_bzRead
Instrumenting Basic Block 0x403f3b of BZ2_bzRead
Instrumenting Basic Block 0x403f3f of BZ2_bzRead
Instrumenting Basic Block 0x403f4d of BZ2_bzRead
Instrumenting Basic Block 0x403f5b of BZ2_bzRead
Instrumenting Basic Block 0x403f60 of BZ2_bzRead
Instrumenting Basic Block 0x403f67 of BZ2_bzRead
Instrumenting Basic Block 0x403f80 of BZ2_bzRead
Instrumenting Basic Block 0x403f85 of BZ2_bzRead
Instrumenting Basic Block 0x403f88 of BZ2_bzRead
Inserting instrumention at function entry of BZ2_bzread
Instrumenting Basic Block 0x403fa0 of BZ2_bzread
Instrumenting Basic Block 0x403faf of BZ2_bzread
Instrumenting Basic Block 0x403fb8 of BZ2_bzread
Instrumenting Basic Block 0x403fbd of BZ2_bzread
Instrumenting Basic Block 0x403fcd of BZ2_bzread
Instrumenting Basic Block 0x403fd6 of BZ2_bzread
Inserting instrumention at function entry of handle_compress
Instrumenting Basic Block 0x403ff0 of handle_compress
Instrumenting Basic Block 0x404010 of handle_compress
Instrumenting Basic Block 0x404015 of handle_compress
Instrumenting Basic Block 0x40401a of handle_compress
Instrumenting Basic Block 0x404028 of handle_compress
Instrumenting Basic Block 0x404035 of handle_compress
Instrumenting Basic Block 0x404055 of handle_compress
Instrumenting Basic Block 0x404060 of handle_compress
Instrumenting Basic Block 0x404070 of handle_compress
Instrumenting Basic Block 0x404075 of handle_compress
Instrumenting Basic Block 0x40407c of handle_compress
Instrumenting Basic Block 0x404088 of handle_compress
Instrumenting Basic Block 0x4040b4 of handle_compress
Instrumenting Basic Block 0x4040ba of handle_compress
Instrumenting Basic Block 0x4040c9 of handle_compress
Instrumenting Basic Block 0x4040d3 of handle_compress
Instrumenting Basic Block 0x4040f8 of handle_compress
Instrumenting Basic Block 0x404108 of handle_compress
Instrumenting Basic Block 0x404122 of handle_compress
Instrumenting Basic Block 0x40412d of handle_compress
Instrumenting Basic Block 0x404139 of handle_compress
Instrumenting Basic Block 0x404149 of handle_compress
Instrumenting Basic Block 0x404152 of handle_compress
Instrumenting Basic Block 0x404160 of handle_compress
Instrumenting Basic Block 0x40416a of handle_compress
Instrumenting Basic Block 0x404176 of handle_compress
Instrumenting Basic Block 0x404181 of handle_compress
Instrumenting Basic Block 0x404194 of handle_compress
Instrumenting Basic Block 0x404198 of handle_compress
Instrumenting Basic Block 0x4041ad of handle_compress
Instrumenting Basic Block 0x4041ba of handle_compress
Instrumenting Basic Block 0x4041c2 of handle_compress
Instrumenting Basic Block 0x4041d1 of handle_compress
Instrumenting Basic Block 0x4041e0 of handle_compress
Instrumenting Basic Block 0x4041f0 of handle_compress
Instrumenting Basic Block 0x4041fa of handle_compress
Instrumenting Basic Block 0x404206 of handle_compress
Instrumenting Basic Block 0x404211 of handle_compress
Instrumenting Basic Block 0x40422a of handle_compress
Instrumenting Basic Block 0x40422f of handle_compress
Instrumenting Basic Block 0x40423b of handle_compress
Instrumenting Basic Block 0x40424b of handle_compress
Instrumenting Basic Block 0x40425a of handle_compress
Instrumenting Basic Block 0x404269 of handle_compress
Instrumenting Basic Block 0x404271 of handle_compress
Instrumenting Basic Block 0x4042b6 of handle_compress
Instrumenting Basic Block 0x4042be of handle_compress
Instrumenting Basic Block 0x4042c6 of handle_compress
Instrumenting Basic Block 0x4042d3 of handle_compress
Instrumenting Basic Block 0x4042de of handle_compress
Instrumenting Basic Block 0x4042eb of handle_compress
Instrumenting Basic Block 0x4042f5 of handle_compress
Instrumenting Basic Block 0x4042fa of handle_compress
Instrumenting Basic Block 0x4042ff of handle_compress
Instrumenting Basic Block 0x404308 of handle_compress
Instrumenting Basic Block 0x404313 of handle_compress
Instrumenting Basic Block 0x404316 of handle_compress
Instrumenting Basic Block 0x40431f of handle_compress
Instrumenting Basic Block 0x404329 of handle_compress
Instrumenting Basic Block 0x404331 of handle_compress
Instrumenting Basic Block 0x404376 of handle_compress
Instrumenting Basic Block 0x40437e of handle_compress
Instrumenting Basic Block 0x404386 of handle_compress
Instrumenting Basic Block 0x40438f of handle_compress
Instrumenting Basic Block 0x40439a of handle_compress
Instrumenting Basic Block 0x4043a3 of handle_compress
Instrumenting Basic Block 0x4043b5 of handle_compress
Instrumenting Basic Block 0x4043bf of handle_compress
Instrumenting Basic Block 0x4043cb of handle_compress
Instrumenting Basic Block 0x4043d5 of handle_compress
Instrumenting Basic Block 0x4043d7 of handle_compress
Instrumenting Basic Block 0x4043df of handle_compress
Instrumenting Basic Block 0x4043e0 of handle_compress
Inserting instrumention at function entry of BZ2_bzCompress
Instrumenting Basic Block 0x4043f0 of BZ2_bzCompress
Instrumenting Basic Block 0x4043f6 of BZ2_bzCompress
Instrumenting Basic Block 0x404400 of BZ2_bzCompress
Instrumenting Basic Block 0x404409 of BZ2_bzCompress
Instrumenting Basic Block 0x404411 of BZ2_bzCompress
Instrumenting Basic Block 0x40441d of BZ2_bzCompress
Instrumenting Basic Block 0x40441f of BZ2_bzCompress
Instrumenting Basic Block 0x404424 of BZ2_bzCompress
Instrumenting Basic Block 0x404428 of BZ2_bzCompress
Instrumenting Basic Block 0x40442d of BZ2_bzCompress
Instrumenting Basic Block 0x404432 of BZ2_bzCompress
Instrumenting Basic Block 0x404437 of BZ2_bzCompress
Instrumenting Basic Block 0x40443c of BZ2_bzCompress
Instrumenting Basic Block 0x404444 of BZ2_bzCompress
Instrumenting Basic Block 0x40444c of BZ2_bzCompress
Instrumenting Basic Block 0x404450 of BZ2_bzCompress
Instrumenting Basic Block 0x404456 of BZ2_bzCompress
Instrumenting Basic Block 0x40445f of BZ2_bzCompress
Instrumenting Basic Block 0x404465 of BZ2_bzCompress
Instrumenting Basic Block 0x40446c of BZ2_bzCompress
Instrumenting Basic Block 0x404471 of BZ2_bzCompress
Instrumenting Basic Block 0x404479 of BZ2_bzCompress
Instrumenting Basic Block 0x404481 of BZ2_bzCompress
Instrumenting Basic Block 0x404487 of BZ2_bzCompress
Instrumenting Basic Block 0x404490 of BZ2_bzCompress
Instrumenting Basic Block 0x404496 of BZ2_bzCompress
Instrumenting Basic Block 0x40449d of BZ2_bzCompress
Instrumenting Basic Block 0x4044a1 of BZ2_bzCompress
Instrumenting Basic Block 0x4044a6 of BZ2_bzCompress
Instrumenting Basic Block 0x4044af of BZ2_bzCompress
Instrumenting Basic Block 0x4044c1 of BZ2_bzCompress
Instrumenting Basic Block 0x4044c9 of BZ2_bzCompress
Instrumenting Basic Block 0x4044d7 of BZ2_bzCompress
Instrumenting Basic Block 0x4044df of BZ2_bzCompress
Instrumenting Basic Block 0x4044ed of BZ2_bzCompress
Instrumenting Basic Block 0x4044ff of BZ2_bzCompress
Instrumenting Basic Block 0x404507 of BZ2_bzCompress
Instrumenting Basic Block 0x404516 of BZ2_bzCompress
Inserting instrumention at function entry of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404520 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x40455d of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404563 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404590 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404595 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x40459a of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x40459f of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045a4 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045aa of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045ae of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045b4 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045bc of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045ef of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x4045fa of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x40461b of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404623 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404628 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404630 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404635 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404643 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404648 of BZ2_bzBuffToBuffCompress
Instrumenting Basic Block 0x404659 of BZ2_bzBuffToBuffCompress
Inserting instrumention at function entry of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404660 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40469f of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046ac of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046b1 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046b7 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046bc of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046c4 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046c9 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046d0 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046d5 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046dd of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046e4 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046ed of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4046fb of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404700 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404709 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40470e of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404718 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40471d of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404726 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40472b of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404735 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40473a of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404741 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404755 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404780 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404785 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40478b of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404795 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4047c0 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4047c4 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4047d0 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4047da of BZ2_bzWriteClose64
Instrumenting Basic Block 0x4047ff of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40480b of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404818 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40483e of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40484c of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404851 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404858 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404870 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404879 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404888 of BZ2_bzWriteClose64
Instrumenting Basic Block 0x40488d of BZ2_bzWriteClose64
Instrumenting Basic Block 0x404891 of BZ2_bzWriteClose64
Inserting instrumention at function entry of BZ2_bzWriteClose
Instrumenting Basic Block 0x4048a0 of BZ2_bzWriteClose
Instrumenting Basic Block 0x4048b7 of BZ2_bzWriteClose
Inserting instrumention at function entry of BZ2_bzclose
Instrumenting Basic Block 0x4048c0 of BZ2_bzclose
Instrumenting Basic Block 0x4048cd of BZ2_bzclose
Instrumenting Basic Block 0x4048d6 of BZ2_bzclose
Instrumenting Basic Block 0x4048db of BZ2_bzclose
Instrumenting Basic Block 0x4048ea of BZ2_bzclose
Instrumenting Basic Block 0x4048f4 of BZ2_bzclose
Instrumenting Basic Block 0x404900 of BZ2_bzclose
Instrumenting Basic Block 0x404905 of BZ2_bzclose
Instrumenting Basic Block 0x40490d of BZ2_bzclose
Instrumenting Basic Block 0x404918 of BZ2_bzclose
Instrumenting Basic Block 0x40492c of BZ2_bzclose
Inserting instrumention at function entry of BZ2_bzWrite
Instrumenting Basic Block 0x404940 of BZ2_bzWrite
Instrumenting Basic Block 0x404968 of BZ2_bzWrite
Instrumenting Basic Block 0x40496e of BZ2_bzWrite
Instrumenting Basic Block 0x404973 of BZ2_bzWrite
Instrumenting Basic Block 0x40497d of BZ2_bzWrite
Instrumenting Basic Block 0x404982 of BZ2_bzWrite
Instrumenting Basic Block 0x404987 of BZ2_bzWrite
Instrumenting Basic Block 0x40498c of BZ2_bzWrite
Instrumenting Basic Block 0x404993 of BZ2_bzWrite
Instrumenting Basic Block 0x404998 of BZ2_bzWrite
Instrumenting Basic Block 0x4049a2 of BZ2_bzWrite
Instrumenting Basic Block 0x4049c0 of BZ2_bzWrite
Instrumenting Basic Block 0x4049c4 of BZ2_bzWrite
Instrumenting Basic Block 0x4049d1 of BZ2_bzWrite
Instrumenting Basic Block 0x4049d9 of BZ2_bzWrite
Instrumenting Basic Block 0x4049f8 of BZ2_bzWrite
Instrumenting Basic Block 0x404a08 of BZ2_bzWrite
Instrumenting Basic Block 0x404a23 of BZ2_bzWrite
Instrumenting Basic Block 0x404a2c of BZ2_bzWrite
Instrumenting Basic Block 0x404a39 of BZ2_bzWrite
Instrumenting Basic Block 0x404a54 of BZ2_bzWrite
Instrumenting Basic Block 0x404a59 of BZ2_bzWrite
Instrumenting Basic Block 0x404a5e of BZ2_bzWrite
Instrumenting Basic Block 0x404a65 of BZ2_bzWrite
Instrumenting Basic Block 0x404a78 of BZ2_bzWrite
Instrumenting Basic Block 0x404a7d of BZ2_bzWrite
Instrumenting Basic Block 0x404a84 of BZ2_bzWrite
Instrumenting Basic Block 0x404a98 of BZ2_bzWrite
Instrumenting Basic Block 0x404a9d of BZ2_bzWrite
Instrumenting Basic Block 0x404aa4 of BZ2_bzWrite
Instrumenting Basic Block 0x404ab8 of BZ2_bzWrite
Instrumenting Basic Block 0x404abd of BZ2_bzWrite
Instrumenting Basic Block 0x404ac0 of BZ2_bzWrite
Inserting instrumention at function entry of BZ2_bzwrite
Instrumenting Basic Block 0x404ad0 of BZ2_bzwrite
Instrumenting Basic Block 0x404aec of BZ2_bzwrite
Inserting instrumention at function entry of BZ2_bz__AssertH__fail
Instrumenting Basic Block 0x404b10 of BZ2_bz__AssertH__fail
Instrumenting Basic Block 0x404b2d of BZ2_bz__AssertH__fail
Instrumenting Basic Block 0x404b35 of BZ2_bz__AssertH__fail
Instrumenting Basic Block 0x404b40 of BZ2_bz__AssertH__fail
Instrumenting Basic Block 0x404b5b of BZ2_bz__AssertH__fail
Instrumenting module: DEFAULT_MODULE
Inserting instrumention at function entry of call_gmon_start
Instrumenting Basic Block 0x40098c of call_gmon_start
Instrumenting Basic Block 0x40099c of call_gmon_start
Instrumenting Basic Block 0x40099e of call_gmon_start
Instrumenting module: blocksort.c
Inserting instrumention at function entry of mainGtU
Instrumenting Basic Block 0x4094e0 of mainGtU
Instrumenting Basic Block 0x4094f0 of mainGtU
Instrumenting Basic Block 0x4094f8 of mainGtU
Instrumenting Basic Block 0x4094ff of mainGtU
Instrumenting Basic Block 0x409509 of mainGtU
Instrumenting Basic Block 0x409510 of mainGtU
Instrumenting Basic Block 0x40951a of mainGtU
Instrumenting Basic Block 0x409521 of mainGtU
Instrumenting Basic Block 0x40952b of mainGtU
Instrumenting Basic Block 0x409532 of mainGtU
Instrumenting Basic Block 0x40953c of mainGtU
Instrumenting Basic Block 0x409543 of mainGtU
Instrumenting Basic Block 0x40954d of mainGtU
Instrumenting Basic Block 0x409554 of mainGtU
Instrumenting Basic Block 0x40955e of mainGtU
Instrumenting Basic Block 0x409565 of mainGtU
Instrumenting Basic Block 0x40956f of mainGtU
Instrumenting Basic Block 0x409576 of mainGtU
Instrumenting Basic Block 0x409584 of mainGtU
Instrumenting Basic Block 0x409587 of mainGtU
Instrumenting Basic Block 0x40959d of mainGtU
Instrumenting Basic Block 0x4095a4 of mainGtU
Instrumenting Basic Block 0x4095b2 of mainGtU
Instrumenting Basic Block 0x4095b9 of mainGtU
Instrumenting Basic Block 0x4095c7 of mainGtU
Instrumenting Basic Block 0x4095cb of mainGtU
Instrumenting Basic Block 0x4095d1 of mainGtU
Instrumenting Basic Block 0x4095e6 of mainGtU
Instrumenting Basic Block 0x4095f6 of mainGtU
Instrumenting Basic Block 0x4095fe of mainGtU
Instrumenting Basic Block 0x40960d of mainGtU
Instrumenting Basic Block 0x40961d of mainGtU
Instrumenting Basic Block 0x409625 of mainGtU
Instrumenting Basic Block 0x409634 of mainGtU
Instrumenting Basic Block 0x409644 of mainGtU
Instrumenting Basic Block 0x40964c of mainGtU
Instrumenting Basic Block 0x40965b of mainGtU
Instrumenting Basic Block 0x40966b of mainGtU
Instrumenting Basic Block 0x409686 of mainGtU
Instrumenting Basic Block 0x409696 of mainGtU
Instrumenting Basic Block 0x40969e of mainGtU
Instrumenting Basic Block 0x4096ad of mainGtU
Instrumenting Basic Block 0x4096bd of mainGtU
Instrumenting Basic Block 0x4096c5 of mainGtU
Instrumenting Basic Block 0x4096d4 of mainGtU
Instrumenting Basic Block 0x4096e4 of mainGtU
Instrumenting Basic Block 0x4096ec of mainGtU
Instrumenting Basic Block 0x4096fb of mainGtU
Instrumenting Basic Block 0x40970b of mainGtU
Instrumenting Basic Block 0x409738 of mainGtU
Inserting instrumention at function entry of fallbackSort
Instrumenting Basic Block 0x409740 of fallbackSort
Instrumenting Basic Block 0x40976d of fallbackSort
Instrumenting Basic Block 0x409779 of fallbackSort
Instrumenting Basic Block 0x40977f of fallbackSort
Instrumenting Basic Block 0x40978e of fallbackSort
Instrumenting Basic Block 0x409796 of fallbackSort
Instrumenting Basic Block 0x4097a2 of fallbackSort
Instrumenting Basic Block 0x4097ac of fallbackSort
Instrumenting Basic Block 0x4097b4 of fallbackSort
Instrumenting Basic Block 0x4097b6 of fallbackSort
Instrumenting Basic Block 0x4097c9 of fallbackSort
Instrumenting Basic Block 0x4097cd of fallbackSort
Instrumenting Basic Block 0x4097db of fallbackSort
Instrumenting Basic Block 0x4097df of fallbackSort
Instrumenting Basic Block 0x4097fb of fallbackSort
Instrumenting Basic Block 0x409801 of fallbackSort
Instrumenting Basic Block 0x40981b of fallbackSort
Instrumenting Basic Block 0x409828 of fallbackSort
Instrumenting Basic Block 0x40982c of fallbackSort
Instrumenting Basic Block 0x409833 of fallbackSort
Instrumenting Basic Block 0x409838 of fallbackSort
Instrumenting Basic Block 0x409857 of fallbackSort
Instrumenting Basic Block 0x409865 of fallbackSort
Instrumenting Basic Block 0x4098a0 of fallbackSort
Instrumenting Basic Block 0x4098ae of fallbackSort
Instrumenting Basic Block 0x4098b9 of fallbackSort
Instrumenting Basic Block 0x4098c0 of fallbackSort
Instrumenting Basic Block 0x4098d2 of fallbackSort
Instrumenting Basic Block 0x4098e5 of fallbackSort
Instrumenting Basic Block 0x409907 of fallbackSort
Instrumenting Basic Block 0x40990c of fallbackSort
Instrumenting Basic Block 0x40991c of fallbackSort
Instrumenting Basic Block 0x409928 of fallbackSort
Instrumenting Basic Block 0x409930 of fallbackSort
Instrumenting Basic Block 0x40994d of fallbackSort
Instrumenting Basic Block 0x409951 of fallbackSort
Instrumenting Basic Block 0x409961 of fallbackSort
Instrumenting Basic Block 0x40997b of fallbackSort
Instrumenting Basic Block 0x409980 of fallbackSort
Instrumenting Basic Block 0x4099a1 of fallbackSort
Instrumenting Basic Block 0x4099a5 of fallbackSort
Instrumenting Basic Block 0x4099b0 of fallbackSort
Instrumenting Basic Block 0x4099bf of fallbackSort
Instrumenting Basic Block 0x4099c4 of fallbackSort
Instrumenting Basic Block 0x4099d6 of fallbackSort
Instrumenting Basic Block 0x4099e0 of fallbackSort
Instrumenting Basic Block 0x4099fc of fallbackSort
Instrumenting Basic Block 0x409a00 of fallbackSort
Instrumenting Basic Block 0x409a10 of fallbackSort
Instrumenting Basic Block 0x409a1b of fallbackSort
Instrumenting Basic Block 0x409a26 of fallbackSort
Instrumenting Basic Block 0x409a34 of fallbackSort
Instrumenting Basic Block 0x409a3f of fallbackSort
Instrumenting Basic Block 0x409a43 of fallbackSort
Instrumenting Basic Block 0x409a49 of fallbackSort
Instrumenting Basic Block 0x409a50 of fallbackSort
Instrumenting Basic Block 0x409a53 of fallbackSort
Instrumenting Basic Block 0x409a61 of fallbackSort
Instrumenting Basic Block 0x409a80 of fallbackSort
Instrumenting Basic Block 0x409a8f of fallbackSort
Instrumenting Basic Block 0x409a93 of fallbackSort
Instrumenting Basic Block 0x409aa7 of fallbackSort
Instrumenting Basic Block 0x409ab0 of fallbackSort
Instrumenting Basic Block 0x409acb of fallbackSort
Instrumenting Basic Block 0x409ace of fallbackSort
Instrumenting Basic Block 0x409ad2 of fallbackSort
Instrumenting Basic Block 0x409ae2 of fallbackSort
Instrumenting Basic Block 0x409aed of fallbackSort
Instrumenting Basic Block 0x409b20 of fallbackSort
Instrumenting Basic Block 0x409b38 of fallbackSort
Instrumenting Basic Block 0x409b40 of fallbackSort
Instrumenting Basic Block 0x409b49 of fallbackSort
Instrumenting Basic Block 0x409b4c of fallbackSort
Instrumenting Basic Block 0x409b54 of fallbackSort
Instrumenting Basic Block 0x409b68 of fallbackSort
Instrumenting Basic Block 0x409b81 of fallbackSort
Instrumenting Basic Block 0x409b92 of fallbackSort
Instrumenting Basic Block 0x409b96 of fallbackSort
Instrumenting Basic Block 0x409ba0 of fallbackSort
Instrumenting Basic Block 0x409bb1 of fallbackSort
Instrumenting Basic Block 0x409bb7 of fallbackSort
Instrumenting Basic Block 0x409bc3 of fallbackSort
Instrumenting Basic Block 0x409bc6 of fallbackSort
Instrumenting Basic Block 0x409bd8 of fallbackSort
Instrumenting Basic Block 0x409bdb of fallbackSort
Instrumenting Basic Block 0x409be3 of fallbackSort
Instrumenting Basic Block 0x409bf8 of fallbackSort
Instrumenting Basic Block 0x409c11 of fallbackSort
Instrumenting Basic Block 0x409c22 of fallbackSort
Instrumenting Basic Block 0x409c26 of fallbackSort
Instrumenting Basic Block 0x409c30 of fallbackSort
Instrumenting Basic Block 0x409c40 of fallbackSort
Instrumenting Basic Block 0x409c46 of fallbackSort
Instrumenting Basic Block 0x409c51 of fallbackSort
Instrumenting Basic Block 0x409c54 of fallbackSort
Instrumenting Basic Block 0x409c66 of fallbackSort
Instrumenting Basic Block 0x409c70 of fallbackSort
Instrumenting Basic Block 0x409c7c of fallbackSort
Instrumenting Basic Block 0x409c86 of fallbackSort
Instrumenting Basic Block 0x409c91 of fallbackSort
Instrumenting Basic Block 0x409cad of fallbackSort
Instrumenting Basic Block 0x409cdf of fallbackSort
Instrumenting Basic Block 0x409cea of fallbackSort
Instrumenting Basic Block 0x409cf8 of fallbackSort
Instrumenting Basic Block 0x409cfd of fallbackSort
Instrumenting Basic Block 0x409d19 of fallbackSort
Instrumenting Basic Block 0x409d35 of fallbackSort
Instrumenting Basic Block 0x409d38 of fallbackSort
Instrumenting Basic Block 0x409d41 of fallbackSort
Instrumenting Basic Block 0x409d59 of fallbackSort
Instrumenting Basic Block 0x409d70 of fallbackSort
Instrumenting Basic Block 0x409d8a of fallbackSort
Instrumenting Basic Block 0x409da5 of fallbackSort
Instrumenting Basic Block 0x409dc0 of fallbackSort
Instrumenting Basic Block 0x409dda of fallbackSort
Instrumenting Basic Block 0x409ddf of fallbackSort
Instrumenting Basic Block 0x409df9 of fallbackSort
Instrumenting Basic Block 0x409e30 of fallbackSort
Instrumenting Basic Block 0x409e40 of fallbackSort
Instrumenting Basic Block 0x409e42 of fallbackSort
Instrumenting Basic Block 0x409e50 of fallbackSort
Instrumenting Basic Block 0x409e66 of fallbackSort
Instrumenting Basic Block 0x409e76 of fallbackSort
Instrumenting Basic Block 0x409e89 of fallbackSort
Instrumenting Basic Block 0x409e8b of fallbackSort
Instrumenting Basic Block 0x409e90 of fallbackSort
Instrumenting Basic Block 0x409ea4 of fallbackSort
Instrumenting Basic Block 0x409ead of fallbackSort
Instrumenting Basic Block 0x409eb5 of fallbackSort
Instrumenting Basic Block 0x409ebf of fallbackSort
Instrumenting Basic Block 0x409ecf of fallbackSort
Instrumenting Basic Block 0x409ed7 of fallbackSort
Instrumenting Basic Block 0x409f08 of fallbackSort
Instrumenting Basic Block 0x409f28 of fallbackSort
Instrumenting Basic Block 0x409f32 of fallbackSort
Instrumenting Basic Block 0x409f49 of fallbackSort
Instrumenting Basic Block 0x409f57 of fallbackSort
Instrumenting Basic Block 0x409f73 of fallbackSort
Instrumenting Basic Block 0x409f76 of fallbackSort
Instrumenting Basic Block 0x409f87 of fallbackSort
Instrumenting Basic Block 0x409f93 of fallbackSort
Instrumenting Basic Block 0x409f9c of fallbackSort
Instrumenting Basic Block 0x409fb3 of fallbackSort
Instrumenting Basic Block 0x409fb8 of fallbackSort
Instrumenting Basic Block 0x409fbf of fallbackSort
Instrumenting Basic Block 0x409fd1 of fallbackSort
Instrumenting Basic Block 0x409fe8 of fallbackSort
Instrumenting Basic Block 0x409fed of fallbackSort
Instrumenting Basic Block 0x40a008 of fallbackSort
Instrumenting Basic Block 0x40a00d of fallbackSort
Instrumenting Basic Block 0x40a028 of fallbackSort
Instrumenting Basic Block 0x40a02d of fallbackSort
Inserting instrumention at function entry of mainSort
Instrumenting Basic Block 0x40a050 of mainSort
Instrumenting Basic Block 0x40a08f of mainSort
Instrumenting Basic Block 0x40a0aa of mainSort
Instrumenting Basic Block 0x40a0ac of mainSort
Instrumenting Basic Block 0x40a0c4 of mainSort
Instrumenting Basic Block 0x40a0ef of mainSort
Instrumenting Basic Block 0x40a160 of mainSort
Instrumenting Basic Block 0x40a165 of mainSort
Instrumenting Basic Block 0x40a178 of mainSort
Instrumenting Basic Block 0x40a19b of mainSort
Instrumenting Basic Block 0x40a19f of mainSort
Instrumenting Basic Block 0x40a1b7 of mainSort
Instrumenting Basic Block 0x40a1d6 of mainSort
Instrumenting Basic Block 0x40a1e0 of mainSort
Instrumenting Basic Block 0x40a1fb of mainSort
Instrumenting Basic Block 0x40a1fd of mainSort
Instrumenting Basic Block 0x40a212 of mainSort
Instrumenting Basic Block 0x40a229 of mainSort
Instrumenting Basic Block 0x40a2bd of mainSort
Instrumenting Basic Block 0x40a2c9 of mainSort
Instrumenting Basic Block 0x40a2d3 of mainSort
Instrumenting Basic Block 0x40a2fb of mainSort
Instrumenting Basic Block 0x40a2ff of mainSort
Instrumenting Basic Block 0x40a317 of mainSort
Instrumenting Basic Block 0x40a31a of mainSort
Instrumenting Basic Block 0x40a330 of mainSort
Instrumenting Basic Block 0x40a33c of mainSort
Instrumenting Basic Block 0x40a352 of mainSort
Instrumenting Basic Block 0x40a360 of mainSort
Instrumenting Basic Block 0x40a390 of mainSort
Instrumenting Basic Block 0x40a392 of mainSort
Instrumenting Basic Block 0x40a396 of mainSort
Instrumenting Basic Block 0x40a3be of mainSort
Instrumenting Basic Block 0x40a3cc of mainSort
Instrumenting Basic Block 0x40a3ce of mainSort
Instrumenting Basic Block 0x40a3ea of mainSort
Instrumenting Basic Block 0x40a3f3 of mainSort
Instrumenting Basic Block 0x40a412 of mainSort
Instrumenting Basic Block 0x40a44e of mainSort
Instrumenting Basic Block 0x40a45f of mainSort
Instrumenting Basic Block 0x40a471 of mainSort
Instrumenting Basic Block 0x40a4a0 of mainSort
Instrumenting Basic Block 0x40a4aa of mainSort
Instrumenting Basic Block 0x40a4df of mainSort
Instrumenting Basic Block 0x40a519 of mainSort
Instrumenting Basic Block 0x40a532 of mainSort
Instrumenting Basic Block 0x40a53b of mainSort
Instrumenting Basic Block 0x40a57d of mainSort
Instrumenting Basic Block 0x40a585 of mainSort
Instrumenting Basic Block 0x40a58a of mainSort
Instrumenting Basic Block 0x40a593 of mainSort
Instrumenting Basic Block 0x40a5a8 of mainSort
Instrumenting Basic Block 0x40a5ad of mainSort
Instrumenting Basic Block 0x40a5cb of mainSort
Instrumenting Basic Block 0x40a5e6 of mainSort
Instrumenting Basic Block 0x40a5f0 of mainSort
Instrumenting Basic Block 0x40a5f9 of mainSort
Instrumenting Basic Block 0x40a61e of mainSort
Instrumenting Basic Block 0x40a623 of mainSort
Instrumenting Basic Block 0x40a62e of mainSort
Instrumenting Basic Block 0x40a660 of mainSort
Instrumenting Basic Block 0x40a662 of mainSort
Instrumenting Basic Block 0x40a670 of mainSort
Instrumenting Basic Block 0x40a684 of mainSort
Instrumenting Basic Block 0x40a694 of mainSort
Instrumenting Basic Block 0x40a6a6 of mainSort
Instrumenting Basic Block 0x40a6a8 of mainSort
Instrumenting Basic Block 0x40a6b0 of mainSort
Instrumenting Basic Block 0x40a6c3 of mainSort
Instrumenting Basic Block 0x40a6cc of mainSort
Instrumenting Basic Block 0x40a6d8 of mainSort
Instrumenting Basic Block 0x40a6f0 of mainSort
Instrumenting Basic Block 0x40a6f2 of mainSort
Instrumenting Basic Block 0x40a6ff of mainSort
Instrumenting Basic Block 0x40a716 of mainSort
Instrumenting Basic Block 0x40a73b of mainSort
Instrumenting Basic Block 0x40a798 of mainSort
Instrumenting Basic Block 0x40a7c0 of mainSort
Instrumenting Basic Block 0x40a7c3 of mainSort
Instrumenting Basic Block 0x40a7ee of mainSort
Instrumenting Basic Block 0x40a7fa of mainSort
Instrumenting Basic Block 0x40a80c of mainSort
Instrumenting Basic Block 0x40a80f of mainSort
Instrumenting Basic Block 0x40a82a of mainSort
Instrumenting Basic Block 0x40a858 of mainSort
Instrumenting Basic Block 0x40a85b of mainSort
Instrumenting Basic Block 0x40a886 of mainSort
Instrumenting Basic Block 0x40a892 of mainSort
Instrumenting Basic Block 0x40a8a4 of mainSort
Instrumenting Basic Block 0x40a8a7 of mainSort
Instrumenting Basic Block 0x40a8c2 of mainSort
Instrumenting Basic Block 0x40a8f0 of mainSort
Instrumenting Basic Block 0x40a8f3 of mainSort
Instrumenting Basic Block 0x40a91e of mainSort
Instrumenting Basic Block 0x40a92a of mainSort
Instrumenting Basic Block 0x40a93c of mainSort
Instrumenting Basic Block 0x40a93f of mainSort
Instrumenting Basic Block 0x40a959 of mainSort
Instrumenting Basic Block 0x40a982 of mainSort
Instrumenting Basic Block 0x40a998 of mainSort
Instrumenting Basic Block 0x40a9a5 of mainSort
Instrumenting Basic Block 0x40a9b3 of mainSort
Instrumenting Basic Block 0x40a9bf of mainSort
Instrumenting Basic Block 0x40a9cd of mainSort
Instrumenting Basic Block 0x40a9f4 of mainSort
Instrumenting Basic Block 0x40aa00 of mainSort
Instrumenting Basic Block 0x40aa19 of mainSort
Instrumenting Basic Block 0x40aa2b of mainSort
Instrumenting Basic Block 0x40aa35 of mainSort
Instrumenting Basic Block 0x40aa49 of mainSort
Instrumenting Basic Block 0x40aa86 of mainSort
Instrumenting Basic Block 0x40aaa5 of mainSort
Instrumenting Basic Block 0x40aab7 of mainSort
Instrumenting Basic Block 0x40aad6 of mainSort
Instrumenting Basic Block 0x40aadd of mainSort
Instrumenting Basic Block 0x40aae5 of mainSort
Instrumenting Basic Block 0x40aaec of mainSort
Instrumenting Basic Block 0x40aaf8 of mainSort
Instrumenting Basic Block 0x40ab0e of mainSort
Instrumenting Basic Block 0x40ab20 of mainSort
Instrumenting Basic Block 0x40ab39 of mainSort
Instrumenting Basic Block 0x40ab4c of mainSort
Instrumenting Basic Block 0x40ab68 of mainSort
Instrumenting Basic Block 0x40ab81 of mainSort
Instrumenting Basic Block 0x40abaa of mainSort
Instrumenting Basic Block 0x40abca of mainSort
Instrumenting Basic Block 0x40abd8 of mainSort
Instrumenting Basic Block 0x40abf3 of mainSort
Instrumenting Basic Block 0x40abf8 of mainSort
Instrumenting Basic Block 0x40ac12 of mainSort
Instrumenting Basic Block 0x40ac74 of mainSort
Instrumenting Basic Block 0x40ac83 of mainSort
Instrumenting Basic Block 0x40ac9f of mainSort
Instrumenting Basic Block 0x40acbb of mainSort
Instrumenting Basic Block 0x40acd7 of mainSort
Instrumenting Basic Block 0x40ace1 of mainSort
Instrumenting Basic Block 0x40aceb of mainSort
Instrumenting Basic Block 0x40ad06 of mainSort
Instrumenting Basic Block 0x40ad14 of mainSort
Instrumenting Basic Block 0x40ad26 of mainSort
Instrumenting Basic Block 0x40ad5e of mainSort
Instrumenting Basic Block 0x40ad72 of mainSort
Instrumenting Basic Block 0x40ad93 of mainSort
Instrumenting Basic Block 0x40ad9a of mainSort
Instrumenting Basic Block 0x40ad9e of mainSort
Instrumenting Basic Block 0x40ada5 of mainSort
Instrumenting Basic Block 0x40adab of mainSort
Instrumenting Basic Block 0x40adae of mainSort
Instrumenting Basic Block 0x40adb2 of mainSort
Instrumenting Basic Block 0x40adb6 of mainSort
Instrumenting Basic Block 0x40adbf of mainSort
Instrumenting Basic Block 0x40adc9 of mainSort
Instrumenting Basic Block 0x40add3 of mainSort
Instrumenting Basic Block 0x40adf3 of mainSort
Instrumenting Basic Block 0x40ae05 of mainSort
Instrumenting Basic Block 0x40ae22 of mainSort
Instrumenting Basic Block 0x40ae2e of mainSort
Instrumenting Basic Block 0x40ae33 of mainSort
Instrumenting Basic Block 0x40ae4a of mainSort
Instrumenting Basic Block 0x40ae52 of mainSort
Instrumenting Basic Block 0x40ae67 of mainSort
Instrumenting Basic Block 0x40ae73 of mainSort
Instrumenting Basic Block 0x40ae7c of mainSort
Instrumenting Basic Block 0x40aeb8 of mainSort
Inserting instrumention at function entry of BZ2_blockSort
Instrumenting Basic Block 0x40aed0 of BZ2_blockSort
Instrumenting Basic Block 0x40af06 of BZ2_blockSort
Instrumenting Basic Block 0x40af0c of BZ2_blockSort
Instrumenting Basic Block 0x40af19 of BZ2_blockSort
Instrumenting Basic Block 0x40af22 of BZ2_blockSort
Instrumenting Basic Block 0x40af2c of BZ2_blockSort
Instrumenting Basic Block 0x40af52 of BZ2_blockSort
Instrumenting Basic Block 0x40af58 of BZ2_blockSort
Instrumenting Basic Block 0x40af64 of BZ2_blockSort
Instrumenting Basic Block 0x40af72 of BZ2_blockSort
Instrumenting Basic Block 0x40af7b of BZ2_blockSort
Instrumenting Basic Block 0x40af80 of BZ2_blockSort
Instrumenting Basic Block 0x40af90 of BZ2_blockSort
Instrumenting Basic Block 0x40af97 of BZ2_blockSort
Instrumenting Basic Block 0x40afb0 of BZ2_blockSort
Instrumenting Basic Block 0x40afe1 of BZ2_blockSort
Instrumenting Basic Block 0x40afed of BZ2_blockSort
Instrumenting Basic Block 0x40aff3 of BZ2_blockSort
Instrumenting Basic Block 0x40b00e of BZ2_blockSort
Instrumenting Basic Block 0x40b023 of BZ2_blockSort
Instrumenting Basic Block 0x40b030 of BZ2_blockSort
Instrumenting Basic Block 0x40b048 of BZ2_blockSort
Instrumenting module: spec.c
Inserting instrumention at function entry of ran
Instrumenting Basic Block 0x401430 of ran
Instrumenting Basic Block 0x401476 of ran
Instrumenting Basic Block 0x40147d of ran
Inserting instrumention at function entry of spec_rewind
Instrumenting Basic Block 0x4014a0 of spec_rewind
Inserting instrumention at function entry of spec_initbufs
Instrumenting Basic Block 0x4014c0 of spec_initbufs
Inserting instrumention at function entry of debug_time
Instrumenting Basic Block 0x4014f0 of debug_time
Inserting instrumention at function entry of spec_uncompress
Instrumenting Basic Block 0x401500 of spec_uncompress
Inserting instrumention at function entry of spec_compress
Instrumenting Basic Block 0x401510 of spec_compress
Inserting instrumention at function entry of spec_putc
Instrumenting Basic Block 0x401520 of spec_putc
Instrumenting Basic Block 0x401533 of spec_putc
Instrumenting Basic Block 0x401538 of spec_putc
Instrumenting Basic Block 0x401578 of spec_putc
Instrumenting Basic Block 0x40158a of spec_putc
Instrumenting Basic Block 0x40158c of spec_putc
Instrumenting Basic Block 0x4015a1 of spec_putc
Inserting instrumention at function entry of spec_getc
Instrumenting Basic Block 0x4015b0 of spec_getc
Instrumenting Basic Block 0x4015bc of spec_getc
Instrumenting Basic Block 0x4015c1 of spec_getc
Instrumenting Basic Block 0x4015da of spec_getc
Instrumenting Basic Block 0x4015fa of spec_getc
Instrumenting Basic Block 0x401608 of spec_getc
Instrumenting Basic Block 0x401610 of spec_getc
Instrumenting Basic Block 0x40161e of spec_getc
Instrumenting Basic Block 0x401620 of spec_getc
Instrumenting Basic Block 0x401629 of spec_getc
Instrumenting Basic Block 0x401630 of spec_getc
Instrumenting Basic Block 0x40163a of spec_getc
Instrumenting Basic Block 0x40163c of spec_getc
Instrumenting Basic Block 0x401651 of spec_getc
Inserting instrumention at function entry of spec_fwrite
Instrumenting Basic Block 0x401660 of spec_fwrite
Instrumenting Basic Block 0x40168b of spec_fwrite
Instrumenting Basic Block 0x401694 of spec_fwrite
Instrumenting Basic Block 0x4016bd of spec_fwrite
Instrumenting Basic Block 0x4016d4 of spec_fwrite
Instrumenting Basic Block 0x4016e2 of spec_fwrite
Instrumenting Basic Block 0x401700 of spec_fwrite
Instrumenting Basic Block 0x401716 of spec_fwrite
Instrumenting Basic Block 0x40171b of spec_fwrite
Instrumenting Basic Block 0x401730 of spec_fwrite
Inserting instrumention at function entry of spec_write
Instrumenting Basic Block 0x401740 of spec_write
Instrumenting Basic Block 0x401763 of spec_write
Instrumenting Basic Block 0x401768 of spec_write
Instrumenting Basic Block 0x40178d of spec_write
Instrumenting Basic Block 0x4017a2 of spec_write
Instrumenting Basic Block 0x4017b0 of spec_write
Instrumenting Basic Block 0x4017c8 of spec_write
Instrumenting Basic Block 0x4017db of spec_write
Instrumenting Basic Block 0x4017dd of spec_write
Instrumenting Basic Block 0x4017f2 of spec_write
Inserting instrumention at function entry of spec_fread
Instrumenting Basic Block 0x401800 of spec_fread
Instrumenting Basic Block 0x401834 of spec_fread
Instrumenting Basic Block 0x40183d of spec_fread
Instrumenting Basic Block 0x40185d of spec_fread
Instrumenting Basic Block 0x40186c of spec_fread
Instrumenting Basic Block 0x401871 of spec_fread
Instrumenting Basic Block 0x40188a of spec_fread
Instrumenting Basic Block 0x40189a of spec_fread
Instrumenting Basic Block 0x4018a9 of spec_fread
Instrumenting Basic Block 0x4018d0 of spec_fread
Instrumenting Basic Block 0x4018e8 of spec_fread
Instrumenting Basic Block 0x4018fe of spec_fread
Instrumenting Basic Block 0x401908 of spec_fread
Instrumenting Basic Block 0x401911 of spec_fread
Instrumenting Basic Block 0x401919 of spec_fread
Instrumenting Basic Block 0x401923 of spec_fread
Instrumenting Basic Block 0x401925 of spec_fread
Instrumenting Basic Block 0x40193a of spec_fread
Inserting instrumention at function entry of spec_read
Instrumenting Basic Block 0x401950 of spec_read
Instrumenting Basic Block 0x401973 of spec_read
Instrumenting Basic Block 0x40197c of spec_read
Instrumenting Basic Block 0x401997 of spec_read
Instrumenting Basic Block 0x40199b of spec_read
Instrumenting Basic Block 0x4019b9 of spec_read
Instrumenting Basic Block 0x4019c8 of spec_read
Instrumenting Basic Block 0x4019d6 of spec_read
Instrumenting Basic Block 0x4019f0 of spec_read
Instrumenting Basic Block 0x401a03 of spec_read
Instrumenting Basic Block 0x401a10 of spec_read
Instrumenting Basic Block 0x401a19 of spec_read
Instrumenting Basic Block 0x401a20 of spec_read
Instrumenting Basic Block 0x401a2a of spec_read
Instrumenting Basic Block 0x401a2c of spec_read
Instrumenting Basic Block 0x401a41 of spec_read
Inserting instrumention at function entry of spec_random_load
Instrumenting Basic Block 0x401a50 of spec_random_load
Instrumenting Basic Block 0x401a6d of spec_random_load
Instrumenting Basic Block 0x401a77 of spec_random_load
Instrumenting Basic Block 0x401a7d of spec_random_load
Instrumenting Basic Block 0x401a90 of spec_random_load
Instrumenting Basic Block 0x401aa0 of spec_random_load
Instrumenting Basic Block 0x401aa7 of spec_random_load
Instrumenting Basic Block 0x401abf of spec_random_load
Instrumenting Basic Block 0x401ad0 of spec_random_load
Instrumenting Basic Block 0x401adb of spec_random_load
Instrumenting Basic Block 0x401aea of spec_random_load
Instrumenting Basic Block 0x401aec of spec_random_load
Instrumenting Basic Block 0x401af5 of spec_random_load
Instrumenting Basic Block 0x401aff of spec_random_load
Instrumenting Basic Block 0x401b0f of spec_random_load
Instrumenting Basic Block 0x401b14 of spec_random_load
Instrumenting Basic Block 0x401b1a of spec_random_load
Instrumenting Basic Block 0x401b21 of spec_random_load
Instrumenting Basic Block 0x401b53 of spec_random_load
Instrumenting Basic Block 0x401b5d of spec_random_load
Inserting instrumention at function entry of spec_reset
Instrumenting Basic Block 0x401b80 of spec_reset
Instrumenting Basic Block 0x401bb1 of spec_reset
Instrumenting Basic Block 0x401bb6 of spec_reset
Inserting instrumention at function entry of spec_init
Instrumenting Basic Block 0x401be0 of spec_init
Instrumenting Basic Block 0x401bef of spec_init
Instrumenting Basic Block 0x401bf8 of spec_init
Instrumenting Basic Block 0x401c21 of spec_init
Instrumenting Basic Block 0x401c2a of spec_init
Instrumenting Basic Block 0x401c30 of spec_init
Instrumenting Basic Block 0x401c38 of spec_init
Instrumenting Basic Block 0x401c3c of spec_init
Instrumenting Basic Block 0x401c4d of spec_init
Instrumenting Basic Block 0x401c5a of spec_init
Instrumenting Basic Block 0x401c63 of spec_init
Instrumenting Basic Block 0x401c6d of spec_init
Instrumenting Basic Block 0x401c6f of spec_init
Instrumenting Basic Block 0x401c79 of spec_init
Inserting instrumention at function entry of spec_ungetc
Instrumenting Basic Block 0x401c80 of spec_ungetc
Instrumenting Basic Block 0x401c93 of spec_ungetc
Instrumenting Basic Block 0x401c98 of spec_ungetc
Instrumenting Basic Block 0x401cb1 of spec_ungetc
Instrumenting Basic Block 0x401ccd of spec_ungetc
Instrumenting Basic Block 0x401cd6 of spec_ungetc
Instrumenting Basic Block 0x401ce4 of spec_ungetc
Instrumenting Basic Block 0x401cf0 of spec_ungetc
Instrumenting Basic Block 0x401cfc of spec_ungetc
Instrumenting Basic Block 0x401cfe of spec_ungetc
Instrumenting Basic Block 0x401d05 of spec_ungetc
Instrumenting Basic Block 0x401d13 of spec_ungetc
Instrumenting Basic Block 0x401d1a of spec_ungetc
Instrumenting Basic Block 0x401d35 of spec_ungetc
Instrumenting Basic Block 0x401d3c of spec_ungetc
Inserting instrumention at function entry of spec_load
Instrumenting Basic Block 0x401d50 of spec_load
Instrumenting Basic Block 0x401d72 of spec_load
Instrumenting Basic Block 0x401d7d of spec_load
Instrumenting Basic Block 0x401dab of spec_load
Instrumenting Basic Block 0x401db8 of spec_load
Instrumenting Basic Block 0x401dbe of spec_load
Instrumenting Basic Block 0x401dd4 of spec_load
Instrumenting Basic Block 0x401dec of spec_load
Instrumenting Basic Block 0x401df1 of spec_load
Instrumenting Basic Block 0x401df9 of spec_load
Instrumenting Basic Block 0x401e11 of spec_load
Instrumenting Basic Block 0x401e20 of spec_load
Instrumenting Basic Block 0x401e3a of spec_load
Instrumenting Basic Block 0x401e4a of spec_load
Instrumenting Basic Block 0x401e5d of spec_load
Instrumenting Basic Block 0x401e6b of spec_load
Instrumenting Basic Block 0x401e70 of spec_load
Instrumenting Basic Block 0x401e81 of spec_load
Instrumenting Basic Block 0x401e86 of spec_load
Instrumenting Basic Block 0x401e8d of spec_load
Instrumenting Basic Block 0x401e98 of spec_load
Instrumenting Basic Block 0x401ea6 of spec_load
Instrumenting Basic Block 0x401ead of spec_load
Instrumenting Basic Block 0x401eb2 of spec_load
Instrumenting Basic Block 0x401eb9 of spec_load
Inserting instrumention at function entry of main
Instrumenting Basic Block 0x401ed0 of main
Instrumenting Basic Block 0x401ef3 of main
Instrumenting Basic Block 0x401f00 of main
Instrumenting Basic Block 0x401f15 of main
Instrumenting Basic Block 0x401f2e of main
Instrumenting Basic Block 0x401f3b of main
Instrumenting Basic Block 0x401f47 of main
Instrumenting Basic Block 0x401f54 of main
Instrumenting Basic Block 0x401f5c of main
Instrumenting Basic Block 0x401f68 of main
Instrumenting Basic Block 0x401f6c of main
Instrumenting Basic Block 0x401f80 of main
Instrumenting Basic Block 0x401f98 of main
Instrumenting Basic Block 0x401fc3 of main
Instrumenting Basic Block 0x401fd0 of main
Instrumenting Basic Block 0x401fe3 of main
Instrumenting Basic Block 0x401ff0 of main
Instrumenting Basic Block 0x401ff7 of main
Instrumenting Basic Block 0x40200e of main
Instrumenting Basic Block 0x402024 of main
Instrumenting Basic Block 0x402031 of main
Instrumenting Basic Block 0x402035 of main
Instrumenting Basic Block 0x402049 of main
Instrumenting Basic Block 0x402058 of main
Instrumenting Basic Block 0x40207c of main
Instrumenting Basic Block 0x402080 of main
Instrumenting Basic Block 0x40208d of main
Instrumenting Basic Block 0x40209b of main
Instrumenting Basic Block 0x4020af of main
Instrumenting Basic Block 0x4020bd of main
Instrumenting Basic Block 0x4020d0 of main
Instrumenting Basic Block 0x4020e2 of main
Instrumenting Basic Block 0x4020f0 of main
Instrumenting Basic Block 0x4020fa of main
Instrumenting Basic Block 0x402100 of main
Instrumenting Basic Block 0x402112 of main
Instrumenting Basic Block 0x402120 of main
Instrumenting Basic Block 0x40212f of main
Instrumenting Basic Block 0x402138 of main
Instrumenting Basic Block 0x402142 of main
Instrumenting Basic Block 0x402147 of main
Instrumenting Basic Block 0x402157 of main
Instrumenting Basic Block 0x40215e of main
Instrumenting Basic Block 0x40217e of main
Instrumenting Basic Block 0x402186 of main
Instrumenting Basic Block 0x402198 of main
Instrumenting Basic Block 0x40219d of main
Instrumenting Basic Block 0x4021a7 of main
Instrumenting Basic Block 0x4021ac of main
Instrumenting Basic Block 0x4021b7 of main
Instrumenting Basic Block 0x4021c5 of main
Instrumenting Basic Block 0x4021cc of main
Instrumenting Basic Block 0x4021d6 of main
Instrumenting Basic Block 0x4021dd of main
Instrumenting module: decompress.c
Inserting instrumention at function entry of BZ2_decompress
Instrumenting Basic Block 0x406ee0 of BZ2_decompress
Instrumenting Basic Block 0x406f03 of BZ2_decompress
Instrumenting Basic Block 0x406fef of BZ2_decompress
Instrumenting Basic Block 0x406ffb of BZ2_decompress
Instrumenting Basic Block 0x407038 of BZ2_decompress
Instrumenting Basic Block 0x407138 of BZ2_decompress
Instrumenting Basic Block 0x407148 of BZ2_decompress
Instrumenting Basic Block 0x4072eb of BZ2_decompress
Instrumenting Basic Block 0x4072ee of BZ2_decompress
Instrumenting Basic Block 0x407304 of BZ2_decompress
Instrumenting Basic Block 0x407310 of BZ2_decompress
Instrumenting Basic Block 0x40731c of BZ2_decompress
Instrumenting Basic Block 0x40732a of BZ2_decompress
Instrumenting Basic Block 0x407352 of BZ2_decompress
Instrumenting Basic Block 0x407358 of BZ2_decompress
Instrumenting Basic Block 0x40735b of BZ2_decompress
Instrumenting Basic Block 0x407371 of BZ2_decompress
Instrumenting Basic Block 0x407380 of BZ2_decompress
Instrumenting Basic Block 0x40738c of BZ2_decompress
Instrumenting Basic Block 0x40739a of BZ2_decompress
Instrumenting Basic Block 0x4073c2 of BZ2_decompress
Instrumenting Basic Block 0x4073c8 of BZ2_decompress
Instrumenting Basic Block 0x4073cb of BZ2_decompress
Instrumenting Basic Block 0x4073e0 of BZ2_decompress
Instrumenting Basic Block 0x4073f0 of BZ2_decompress
Instrumenting Basic Block 0x4073fc of BZ2_decompress
Instrumenting Basic Block 0x40740c of BZ2_decompress
Instrumenting Basic Block 0x407436 of BZ2_decompress
Instrumenting Basic Block 0x40743c of BZ2_decompress
Instrumenting Basic Block 0x40743f of BZ2_decompress
Instrumenting Basic Block 0x40745b of BZ2_decompress
Instrumenting Basic Block 0x407468 of BZ2_decompress
Instrumenting Basic Block 0x407473 of BZ2_decompress
Instrumenting Basic Block 0x407481 of BZ2_decompress
Instrumenting Basic Block 0x4074a9 of BZ2_decompress
Instrumenting Basic Block 0x4074af of BZ2_decompress
Instrumenting Basic Block 0x4074b2 of BZ2_decompress
Instrumenting Basic Block 0x4074ce of BZ2_decompress
Instrumenting Basic Block 0x4074d8 of BZ2_decompress
Instrumenting Basic Block 0x4074e4 of BZ2_decompress
Instrumenting Basic Block 0x4074f2 of BZ2_decompress
Instrumenting Basic Block 0x40751a of BZ2_decompress
Instrumenting Basic Block 0x407520 of BZ2_decompress
Instrumenting Basic Block 0x407523 of BZ2_decompress
Instrumenting Basic Block 0x40753f of BZ2_decompress
Instrumenting Basic Block 0x407550 of BZ2_decompress
Instrumenting Basic Block 0x40755c of BZ2_decompress
Instrumenting Basic Block 0x40756a of BZ2_decompress
Instrumenting Basic Block 0x407592 of BZ2_decompress
Instrumenting Basic Block 0x407598 of BZ2_decompress
Instrumenting Basic Block 0x40759b of BZ2_decompress
Instrumenting Basic Block 0x4075b7 of BZ2_decompress
Instrumenting Basic Block 0x4075c0 of BZ2_decompress
Instrumenting Basic Block 0x4075cc of BZ2_decompress
Instrumenting Basic Block 0x4075dc of BZ2_decompress
Instrumenting Basic Block 0x407606 of BZ2_decompress
Instrumenting Basic Block 0x40760c of BZ2_decompress
Instrumenting Basic Block 0x40760f of BZ2_decompress
Instrumenting Basic Block 0x40762b of BZ2_decompress
Instrumenting Basic Block 0x407638 of BZ2_decompress
Instrumenting Basic Block 0x407644 of BZ2_decompress
Instrumenting Basic Block 0x407652 of BZ2_decompress
Instrumenting Basic Block 0x40767a of BZ2_decompress
Instrumenting Basic Block 0x407680 of BZ2_decompress
Instrumenting Basic Block 0x407683 of BZ2_decompress
Instrumenting Basic Block 0x40769f of BZ2_decompress
Instrumenting Basic Block 0x4076b0 of BZ2_decompress
Instrumenting Basic Block 0x4076bc of BZ2_decompress
Instrumenting Basic Block 0x4076cc of BZ2_decompress
Instrumenting Basic Block 0x4076f6 of BZ2_decompress
Instrumenting Basic Block 0x4076fc of BZ2_decompress
Instrumenting Basic Block 0x4076ff of BZ2_decompress
Instrumenting Basic Block 0x40771b of BZ2_decompress
Instrumenting Basic Block 0x407728 of BZ2_decompress
Instrumenting Basic Block 0x407734 of BZ2_decompress
Instrumenting Basic Block 0x407742 of BZ2_decompress
Instrumenting Basic Block 0x40776a of BZ2_decompress
Instrumenting Basic Block 0x407770 of BZ2_decompress
Instrumenting Basic Block 0x407780 of BZ2_decompress
Instrumenting Basic Block 0x407788 of BZ2_decompress
Instrumenting Basic Block 0x407798 of BZ2_decompress
Instrumenting Basic Block 0x4077c2 of BZ2_decompress
Instrumenting Basic Block 0x4077c8 of BZ2_decompress
Instrumenting Basic Block 0x4077cb of BZ2_decompress
Instrumenting Basic Block 0x4077db of BZ2_decompress
Instrumenting Basic Block 0x4077e8 of BZ2_decompress
Instrumenting Basic Block 0x4077f4 of BZ2_decompress
Instrumenting Basic Block 0x407802 of BZ2_decompress
Instrumenting Basic Block 0x40782a of BZ2_decompress
Instrumenting Basic Block 0x407830 of BZ2_decompress
Instrumenting Basic Block 0x407847 of BZ2_decompress
Instrumenting Basic Block 0x407850 of BZ2_decompress
Instrumenting Basic Block 0x407862 of BZ2_decompress
Instrumenting Basic Block 0x407865 of BZ2_decompress
Instrumenting Basic Block 0x407870 of BZ2_decompress
Instrumenting Basic Block 0x407877 of BZ2_decompress
Instrumenting Basic Block 0x407885 of BZ2_decompress
Instrumenting Basic Block 0x4078ad of BZ2_decompress
Instrumenting Basic Block 0x4078b3 of BZ2_decompress
Instrumenting Basic Block 0x4078ca of BZ2_decompress
Instrumenting Basic Block 0x4078d3 of BZ2_decompress
Instrumenting Basic Block 0x4078e5 of BZ2_decompress
Instrumenting Basic Block 0x4078e8 of BZ2_decompress
Instrumenting Basic Block 0x4078f0 of BZ2_decompress
Instrumenting Basic Block 0x4078f7 of BZ2_decompress
Instrumenting Basic Block 0x407907 of BZ2_decompress
Instrumenting Basic Block 0x407931 of BZ2_decompress
Instrumenting Basic Block 0x407937 of BZ2_decompress
Instrumenting Basic Block 0x40794e of BZ2_decompress
Instrumenting Basic Block 0x407957 of BZ2_decompress
Instrumenting Basic Block 0x407969 of BZ2_decompress
Instrumenting Basic Block 0x40796c of BZ2_decompress
Instrumenting Basic Block 0x407978 of BZ2_decompress
Instrumenting Basic Block 0x40797f of BZ2_decompress
Instrumenting Basic Block 0x40798f of BZ2_decompress
Instrumenting Basic Block 0x4079b7 of BZ2_decompress
Instrumenting Basic Block 0x4079bd of BZ2_decompress
Instrumenting Basic Block 0x4079e5 of BZ2_decompress
Instrumenting Basic Block 0x4079f0 of BZ2_decompress
Instrumenting Basic Block 0x4079fc of BZ2_decompress
Instrumenting Basic Block 0x407a0c of BZ2_decompress
Instrumenting Basic Block 0x407a34 of BZ2_decompress
Instrumenting Basic Block 0x407a3a of BZ2_decompress
Instrumenting Basic Block 0x407a48 of BZ2_decompress
Instrumenting Basic Block 0x407a53 of BZ2_decompress
Instrumenting Basic Block 0x407a61 of BZ2_decompress
Instrumenting Basic Block 0x407a89 of BZ2_decompress
Instrumenting Basic Block 0x407a8f of BZ2_decompress
Instrumenting Basic Block 0x407aa0 of BZ2_decompress
Instrumenting Basic Block 0x407aac of BZ2_decompress
Instrumenting Basic Block 0x407aba of BZ2_decompress
Instrumenting Basic Block 0x407ae4 of BZ2_decompress
Instrumenting Basic Block 0x407aea of BZ2_decompress
Instrumenting Basic Block 0x407aed of BZ2_decompress
Instrumenting Basic Block 0x407afd of BZ2_decompress
Instrumenting Basic Block 0x407b0c of BZ2_decompress
Instrumenting Basic Block 0x407b2e of BZ2_decompress
Instrumenting Basic Block 0x407b3d of BZ2_decompress
Instrumenting Basic Block 0x407b47 of BZ2_decompress
Instrumenting Basic Block 0x407b50 of BZ2_decompress
Instrumenting Basic Block 0x407b5c of BZ2_decompress
Instrumenting Basic Block 0x407b6a of BZ2_decompress
Instrumenting Basic Block 0x407b92 of BZ2_decompress
Instrumenting Basic Block 0x407b98 of BZ2_decompress
Instrumenting Basic Block 0x407b9b of BZ2_decompress
Instrumenting Basic Block 0x407bab of BZ2_decompress
Instrumenting Basic Block 0x407bb8 of BZ2_decompress
Instrumenting Basic Block 0x407bc4 of BZ2_decompress
Instrumenting Basic Block 0x407bd4 of BZ2_decompress
Instrumenting Basic Block 0x407bfe of BZ2_decompress
Instrumenting Basic Block 0x407c04 of BZ2_decompress
Instrumenting Basic Block 0x407c07 of BZ2_decompress
Instrumenting Basic Block 0x407c17 of BZ2_decompress
Instrumenting Basic Block 0x407c20 of BZ2_decompress
Instrumenting Basic Block 0x407c2c of BZ2_decompress
Instrumenting Basic Block 0x407c3a of BZ2_decompress
Instrumenting Basic Block 0x407c62 of BZ2_decompress
Instrumenting Basic Block 0x407c68 of BZ2_decompress
Instrumenting Basic Block 0x407c6b of BZ2_decompress
Instrumenting Basic Block 0x407c7b of BZ2_decompress
Instrumenting Basic Block 0x407c85 of BZ2_decompress
Instrumenting Basic Block 0x407c90 of BZ2_decompress
Instrumenting Basic Block 0x407c9c of BZ2_decompress
Instrumenting Basic Block 0x407caa of BZ2_decompress
Instrumenting Basic Block 0x407cd2 of BZ2_decompress
Instrumenting Basic Block 0x407cd8 of BZ2_decompress
Instrumenting Basic Block 0x407cdb of BZ2_decompress
Instrumenting Basic Block 0x407ceb of BZ2_decompress
Instrumenting Basic Block 0x407cf8 of BZ2_decompress
Instrumenting Basic Block 0x407d04 of BZ2_decompress
Instrumenting Basic Block 0x407d12 of BZ2_decompress
Instrumenting Basic Block 0x407d3a of BZ2_decompress
Instrumenting Basic Block 0x407d40 of BZ2_decompress
Instrumenting Basic Block 0x407d43 of BZ2_decompress
Instrumenting Basic Block 0x407d53 of BZ2_decompress
Instrumenting Basic Block 0x407d60 of BZ2_decompress
Instrumenting Basic Block 0x407d6c of BZ2_decompress
Instrumenting Basic Block 0x407d7c of BZ2_decompress
Instrumenting Basic Block 0x407da6 of BZ2_decompress
Instrumenting Basic Block 0x407dac of BZ2_decompress
Instrumenting Basic Block 0x407daf of BZ2_decompress
Instrumenting Basic Block 0x407dbf of BZ2_decompress
Instrumenting Basic Block 0x407dd0 of BZ2_decompress
Instrumenting Basic Block 0x407ddc of BZ2_decompress
Instrumenting Basic Block 0x407dea of BZ2_decompress
Instrumenting Basic Block 0x407e12 of BZ2_decompress
Instrumenting Basic Block 0x407e18 of BZ2_decompress
Instrumenting Basic Block 0x407e1b of BZ2_decompress
Instrumenting Basic Block 0x407e2b of BZ2_decompress
Instrumenting Basic Block 0x407e38 of BZ2_decompress
Instrumenting Basic Block 0x407e44 of BZ2_decompress
Instrumenting Basic Block 0x407e52 of BZ2_decompress
Instrumenting Basic Block 0x407e7a of BZ2_decompress
Instrumenting Basic Block 0x407e80 of BZ2_decompress
Instrumenting Basic Block 0x407e90 of BZ2_decompress
Instrumenting Basic Block 0x407e9c of BZ2_decompress
Instrumenting Basic Block 0x407ea9 of BZ2_decompress
Instrumenting Basic Block 0x407eda of BZ2_decompress
Instrumenting Basic Block 0x407ee2 of BZ2_decompress
Instrumenting Basic Block 0x407ee5 of BZ2_decompress
Instrumenting Basic Block 0x407ef5 of BZ2_decompress
Instrumenting Basic Block 0x407f00 of BZ2_decompress
Instrumenting Basic Block 0x407f0c of BZ2_decompress
Instrumenting Basic Block 0x407f19 of BZ2_decompress
Instrumenting Basic Block 0x407f49 of BZ2_decompress
Instrumenting Basic Block 0x407f51 of BZ2_decompress
Instrumenting Basic Block 0x407f7c of BZ2_decompress
Instrumenting Basic Block 0x407f9b of BZ2_decompress
Instrumenting Basic Block 0x407fa8 of BZ2_decompress
Instrumenting Basic Block 0x407fb4 of BZ2_decompress
Instrumenting Basic Block 0x407fc2 of BZ2_decompress
Instrumenting Basic Block 0x407fea of BZ2_decompress
Instrumenting Basic Block 0x407ff0 of BZ2_decompress
Instrumenting Basic Block 0x407ff3 of BZ2_decompress
Instrumenting Basic Block 0x408003 of BZ2_decompress
Instrumenting Basic Block 0x408010 of BZ2_decompress
Instrumenting Basic Block 0x40801c of BZ2_decompress
Instrumenting Basic Block 0x408029 of BZ2_decompress
Instrumenting Basic Block 0x408059 of BZ2_decompress
Instrumenting Basic Block 0x408061 of BZ2_decompress
Instrumenting Basic Block 0x408064 of BZ2_decompress
Instrumenting Basic Block 0x408074 of BZ2_decompress
Instrumenting Basic Block 0x408080 of BZ2_decompress
Instrumenting Basic Block 0x40808c of BZ2_decompress
Instrumenting Basic Block 0x40809c of BZ2_decompress
Instrumenting Basic Block 0x4080c6 of BZ2_decompress
Instrumenting Basic Block 0x4080cc of BZ2_decompress
Instrumenting Basic Block 0x4080cf of BZ2_decompress
Instrumenting Basic Block 0x4080df of BZ2_decompress
Instrumenting Basic Block 0x4080e7 of BZ2_decompress
Instrumenting Basic Block 0x4080f0 of BZ2_decompress
Instrumenting Basic Block 0x4080fc of BZ2_decompress
Instrumenting Basic Block 0x40810a of BZ2_decompress
Instrumenting Basic Block 0x408132 of BZ2_decompress
Instrumenting Basic Block 0x408138 of BZ2_decompress
Instrumenting Basic Block 0x408159 of BZ2_decompress
Instrumenting Basic Block 0x40816b of BZ2_decompress
Instrumenting Basic Block 0x40816e of BZ2_decompress
Instrumenting Basic Block 0x408178 of BZ2_decompress
Instrumenting Basic Block 0x40817f of BZ2_decompress
Instrumenting Basic Block 0x40818f of BZ2_decompress
Instrumenting Basic Block 0x4081b9 of BZ2_decompress
Instrumenting Basic Block 0x4081bf of BZ2_decompress
Instrumenting Basic Block 0x4081d1 of BZ2_decompress
Instrumenting Basic Block 0x4081dc of BZ2_decompress
Instrumenting Basic Block 0x4081e6 of BZ2_decompress
Instrumenting Basic Block 0x4081ed of BZ2_decompress
Instrumenting Basic Block 0x4081f0 of BZ2_decompress
Instrumenting Basic Block 0x408200 of BZ2_decompress
Instrumenting Basic Block 0x408203 of BZ2_decompress
Instrumenting Basic Block 0x408214 of BZ2_decompress
Instrumenting Basic Block 0x408217 of BZ2_decompress
Instrumenting Basic Block 0x40821d of BZ2_decompress
Instrumenting Basic Block 0x408228 of BZ2_decompress
Instrumenting Basic Block 0x408233 of BZ2_decompress
Instrumenting Basic Block 0x408241 of BZ2_decompress
Instrumenting Basic Block 0x408269 of BZ2_decompress
Instrumenting Basic Block 0x40826f of BZ2_decompress
Instrumenting Basic Block 0x408280 of BZ2_decompress
Instrumenting Basic Block 0x40828c of BZ2_decompress
Instrumenting Basic Block 0x408299 of BZ2_decompress
Instrumenting Basic Block 0x4082ca of BZ2_decompress
Instrumenting Basic Block 0x4082d2 of BZ2_decompress
Instrumenting Basic Block 0x4082f5 of BZ2_decompress
Instrumenting Basic Block 0x408309 of BZ2_decompress
Instrumenting Basic Block 0x408317 of BZ2_decompress
Instrumenting Basic Block 0x408328 of BZ2_decompress
Instrumenting Basic Block 0x408341 of BZ2_decompress
Instrumenting Basic Block 0x408359 of BZ2_decompress
Instrumenting Basic Block 0x408364 of BZ2_decompress
Instrumenting Basic Block 0x4083ce of BZ2_decompress
Instrumenting Basic Block 0x4083d8 of BZ2_decompress
Instrumenting Basic Block 0x4083e3 of BZ2_decompress
Instrumenting Basic Block 0x4083f1 of BZ2_decompress
Instrumenting Basic Block 0x40841b of BZ2_decompress
Instrumenting Basic Block 0x408421 of BZ2_decompress
Instrumenting Basic Block 0x408433 of BZ2_decompress
Instrumenting Basic Block 0x408441 of BZ2_decompress
Instrumenting Basic Block 0x40844f of BZ2_decompress
Instrumenting Basic Block 0x408469 of BZ2_decompress
Instrumenting Basic Block 0x40846b of BZ2_decompress
Instrumenting Basic Block 0x408476 of BZ2_decompress
Instrumenting Basic Block 0x40848f of BZ2_decompress
Instrumenting Basic Block 0x408498 of BZ2_decompress
Instrumenting Basic Block 0x4084a0 of BZ2_decompress
Instrumenting Basic Block 0x4084aa of BZ2_decompress
Instrumenting Basic Block 0x4084b8 of BZ2_decompress
Instrumenting Basic Block 0x4084c4 of BZ2_decompress
Instrumenting Basic Block 0x4084d2 of BZ2_decompress
Instrumenting Basic Block 0x4084fc of BZ2_decompress
Instrumenting Basic Block 0x408502 of BZ2_decompress
Instrumenting Basic Block 0x408505 of BZ2_decompress
Instrumenting Basic Block 0x408524 of BZ2_decompress
Instrumenting Basic Block 0x408534 of BZ2_decompress
Instrumenting Basic Block 0x408540 of BZ2_decompress
Instrumenting Basic Block 0x40854b of BZ2_decompress
Instrumenting Basic Block 0x40855b of BZ2_decompress
Instrumenting Basic Block 0x408583 of BZ2_decompress
Instrumenting Basic Block 0x408589 of BZ2_decompress
Instrumenting Basic Block 0x40858c of BZ2_decompress
Instrumenting Basic Block 0x40858f of BZ2_decompress
Instrumenting Basic Block 0x4085a0 of BZ2_decompress
Instrumenting Basic Block 0x4085ab of BZ2_decompress
Instrumenting Basic Block 0x4085b9 of BZ2_decompress
Instrumenting Basic Block 0x4085e1 of BZ2_decompress
Instrumenting Basic Block 0x4085e7 of BZ2_decompress
Instrumenting Basic Block 0x4085fd of BZ2_decompress
Instrumenting Basic Block 0x408612 of BZ2_decompress
Instrumenting Basic Block 0x408619 of BZ2_decompress
Instrumenting Basic Block 0x408624 of BZ2_decompress
Instrumenting Basic Block 0x408643 of BZ2_decompress
Instrumenting Basic Block 0x40865a of BZ2_decompress
Instrumenting Basic Block 0x408667 of BZ2_decompress
Instrumenting Basic Block 0x40866b of BZ2_decompress
Instrumenting Basic Block 0x40866f of BZ2_decompress
Instrumenting Basic Block 0x408680 of BZ2_decompress
Instrumenting Basic Block 0x40868b of BZ2_decompress
Instrumenting Basic Block 0x408699 of BZ2_decompress
Instrumenting Basic Block 0x4086c1 of BZ2_decompress
Instrumenting Basic Block 0x4086c7 of BZ2_decompress
Instrumenting Basic Block 0x4086cb of BZ2_decompress
Instrumenting Basic Block 0x4086d8 of BZ2_decompress
Instrumenting Basic Block 0x4086e3 of BZ2_decompress
Instrumenting Basic Block 0x4086f1 of BZ2_decompress
Instrumenting Basic Block 0x408719 of BZ2_decompress
Instrumenting Basic Block 0x408720 of BZ2_decompress
Instrumenting Basic Block 0x40872b of BZ2_decompress
Instrumenting Basic Block 0x40873d of BZ2_decompress
Instrumenting Basic Block 0x40874c of BZ2_decompress
Instrumenting Basic Block 0x408750 of BZ2_decompress
Instrumenting Basic Block 0x40875e of BZ2_decompress
Instrumenting Basic Block 0x408761 of BZ2_decompress
Instrumenting Basic Block 0x408792 of BZ2_decompress
Instrumenting Basic Block 0x408795 of BZ2_decompress
Instrumenting Basic Block 0x4087a8 of BZ2_decompress
Instrumenting Basic Block 0x4087b2 of BZ2_decompress
Instrumenting Basic Block 0x4087b5 of BZ2_decompress
Instrumenting Basic Block 0x4087c7 of BZ2_decompress
Instrumenting Basic Block 0x4087d5 of BZ2_decompress
Instrumenting Basic Block 0x4087da of BZ2_decompress
Instrumenting Basic Block 0x4087e8 of BZ2_decompress
Instrumenting Basic Block 0x4087fd of BZ2_decompress
Instrumenting Basic Block 0x408851 of BZ2_decompress
Instrumenting Basic Block 0x40885f of BZ2_decompress
Instrumenting Basic Block 0x40886d of BZ2_decompress
Instrumenting Basic Block 0x408890 of BZ2_decompress
Instrumenting Basic Block 0x4088a8 of BZ2_decompress
Instrumenting Basic Block 0x4088f8 of BZ2_decompress
Instrumenting Basic Block 0x408930 of BZ2_decompress
Instrumenting Basic Block 0x408933 of BZ2_decompress
Instrumenting Basic Block 0x408943 of BZ2_decompress
Instrumenting Basic Block 0x408951 of BZ2_decompress
Instrumenting Basic Block 0x408954 of BZ2_decompress
Instrumenting Basic Block 0x40896c of BZ2_decompress
Instrumenting Basic Block 0x40897c of BZ2_decompress
Instrumenting Basic Block 0x4089a3 of BZ2_decompress
Instrumenting Basic Block 0x4089c2 of BZ2_decompress
Instrumenting Basic Block 0x4089e6 of BZ2_decompress
Instrumenting Basic Block 0x4089f4 of BZ2_decompress
Instrumenting Basic Block 0x4089f7 of BZ2_decompress
Instrumenting Basic Block 0x408a06 of BZ2_decompress
Instrumenting Basic Block 0x408a2e of BZ2_decompress
Instrumenting Basic Block 0x408a3b of BZ2_decompress
Instrumenting Basic Block 0x408a64 of BZ2_decompress
Instrumenting Basic Block 0x408a85 of BZ2_decompress
Instrumenting Basic Block 0x408adb of BZ2_decompress
Instrumenting Basic Block 0x408ae2 of BZ2_decompress
Instrumenting Basic Block 0x408b0a of BZ2_decompress
Instrumenting Basic Block 0x408b2e of BZ2_decompress
Instrumenting Basic Block 0x408b52 of BZ2_decompress
Instrumenting Basic Block 0x408b56 of BZ2_decompress
Instrumenting Basic Block 0x408b65 of BZ2_decompress
Instrumenting Basic Block 0x408b75 of BZ2_decompress
Instrumenting Basic Block 0x408b91 of BZ2_decompress
Instrumenting Basic Block 0x408b98 of BZ2_decompress
Instrumenting Basic Block 0x408ba0 of BZ2_decompress
Instrumenting Basic Block 0x408bb4 of BZ2_decompress
Instrumenting Basic Block 0x408bbf of BZ2_decompress
Instrumenting Basic Block 0x408bd0 of BZ2_decompress
Instrumenting Basic Block 0x408be6 of BZ2_decompress
Instrumenting Basic Block 0x408bf0 of BZ2_decompress
Instrumenting Basic Block 0x408c0f of BZ2_decompress
Instrumenting Basic Block 0x408c1f of BZ2_decompress
Instrumenting Basic Block 0x408c29 of BZ2_decompress
Instrumenting Basic Block 0x408c3b of BZ2_decompress
Instrumenting Basic Block 0x408c44 of BZ2_decompress
Instrumenting Basic Block 0x408c49 of BZ2_decompress
Instrumenting Basic Block 0x408c62 of BZ2_decompress
Instrumenting Basic Block 0x408c70 of BZ2_decompress
Instrumenting Basic Block 0x408c7e of BZ2_decompress
Instrumenting Basic Block 0x408c89 of BZ2_decompress
Instrumenting Basic Block 0x408c9e of BZ2_decompress
Instrumenting Basic Block 0x408ca9 of BZ2_decompress
Instrumenting Basic Block 0x408cb1 of BZ2_decompress
Instrumenting Basic Block 0x408cba of BZ2_decompress
Instrumenting Basic Block 0x408cbe of BZ2_decompress
Instrumenting Basic Block 0x408cc7 of BZ2_decompress
Instrumenting Basic Block 0x408ce0 of BZ2_decompress
Instrumenting Basic Block 0x408cf7 of BZ2_decompress
Instrumenting Basic Block 0x408d2c of BZ2_decompress
Instrumenting Basic Block 0x408d3b of BZ2_decompress
Instrumenting Basic Block 0x408d43 of BZ2_decompress
Instrumenting Basic Block 0x408d4c of BZ2_decompress
Instrumenting Basic Block 0x408d64 of BZ2_decompress
Instrumenting Basic Block 0x408dbc of BZ2_decompress
Instrumenting Basic Block 0x408dca of BZ2_decompress
Instrumenting Basic Block 0x408dda of BZ2_decompress
Instrumenting Basic Block 0x408e16 of BZ2_decompress
Instrumenting Basic Block 0x408e22 of BZ2_decompress
Instrumenting Basic Block 0x408e28 of BZ2_decompress
Instrumenting Basic Block 0x408e7e of BZ2_decompress
Instrumenting Basic Block 0x408e89 of BZ2_decompress
Instrumenting Basic Block 0x408e9f of BZ2_decompress
Instrumenting Basic Block 0x408ed2 of BZ2_decompress
Instrumenting Basic Block 0x408ed5 of BZ2_decompress
Instrumenting Basic Block 0x408efa of BZ2_decompress
Instrumenting Basic Block 0x408eff of BZ2_decompress
Instrumenting Basic Block 0x408f04 of BZ2_decompress
Instrumenting Basic Block 0x408f0b of BZ2_decompress
Instrumenting Basic Block 0x408f3e of BZ2_decompress
Instrumenting Basic Block 0x408f60 of BZ2_decompress
Instrumenting Basic Block 0x408f67 of BZ2_decompress
Instrumenting Basic Block 0x408f7b of BZ2_decompress
Instrumenting Basic Block 0x408fa9 of BZ2_decompress
Instrumenting Basic Block 0x408fc1 of BZ2_decompress
Instrumenting Basic Block 0x408fc6 of BZ2_decompress
Instrumenting Basic Block 0x408fcf of BZ2_decompress
Instrumenting Basic Block 0x408fdb of BZ2_decompress
Instrumenting Basic Block 0x408ff2 of BZ2_decompress
Instrumenting Basic Block 0x408ff5 of BZ2_decompress
Instrumenting Basic Block 0x40900f of BZ2_decompress
Instrumenting Basic Block 0x409015 of BZ2_decompress
Instrumenting Basic Block 0x409023 of BZ2_decompress
Instrumenting Basic Block 0x40902c of BZ2_decompress
Instrumenting Basic Block 0x40903d of BZ2_decompress
Instrumenting Basic Block 0x40905f of BZ2_decompress
Instrumenting Basic Block 0x409089 of BZ2_decompress
Instrumenting Basic Block 0x409098 of BZ2_decompress
Instrumenting Basic Block 0x4090a2 of BZ2_decompress
Instrumenting Basic Block 0x4090a4 of BZ2_decompress
Instrumenting Basic Block 0x4090be of BZ2_decompress
Instrumenting Basic Block 0x4090c3 of BZ2_decompress
Instrumenting Basic Block 0x4090e4 of BZ2_decompress
Instrumenting Basic Block 0x409101 of BZ2_decompress
Instrumenting Basic Block 0x409115 of BZ2_decompress
Instrumenting Basic Block 0x409150 of BZ2_decompress
Instrumenting Basic Block 0x40918c of BZ2_decompress
Instrumenting Basic Block 0x4091a0 of BZ2_decompress
Instrumenting Basic Block 0x4091aa of BZ2_decompress
Instrumenting Basic Block 0x4091c0 of BZ2_decompress
Instrumenting Basic Block 0x4091d6 of BZ2_decompress
Instrumenting Basic Block 0x4091e9 of BZ2_decompress
Instrumenting Basic Block 0x409241 of BZ2_decompress
Instrumenting Basic Block 0x409253 of BZ2_decompress
Instrumenting Basic Block 0x409279 of BZ2_decompress
Instrumenting Basic Block 0x409291 of BZ2_decompress
Instrumenting Basic Block 0x409298 of BZ2_decompress
Instrumenting Basic Block 0x4092b8 of BZ2_decompress
Instrumenting Basic Block 0x409309 of BZ2_decompress
Instrumenting Basic Block 0x40932a of BZ2_decompress
Instrumenting Basic Block 0x409351 of BZ2_decompress
Instrumenting Basic Block 0x409358 of BZ2_decompress
Instrumenting Basic Block 0x40936a of BZ2_decompress
Instrumenting Basic Block 0x4093ca of BZ2_decompress
Instrumenting Basic Block 0x4093e6 of BZ2_decompress
Instrumenting Basic Block 0x409414 of BZ2_decompress
Instrumenting Basic Block 0x409424 of BZ2_decompress
Instrumenting Basic Block 0x409431 of BZ2_decompress
Instrumenting Basic Block 0x40944a of BZ2_decompress
Instrumenting Basic Block 0x409459 of BZ2_decompress
Instrumenting Basic Block 0x409461 of BZ2_decompress
Instrumenting Basic Block 0x40946b of BZ2_decompress
Instrumenting Basic Block 0x409483 of BZ2_decompress
Instrumenting Basic Block 0x40948e of BZ2_decompress
Instrumenting Basic Block 0x409497 of BZ2_decompress
Instrumenting Basic Block 0x4094a1 of BZ2_decompress
Instrumenting Basic Block 0x4094bb of BZ2_decompress
Instrumenting module: crtstuff.c
Inserting instrumention at function entry of __do_global_dtors_aux
Instrumenting Basic Block 0x4009b0 of __do_global_dtors_aux
Instrumenting Basic Block 0x4009c2 of __do_global_dtors_aux
Instrumenting Basic Block 0x4009e2 of __do_global_dtors_aux
Instrumenting Basic Block 0x4009e8 of __do_global_dtors_aux
Instrumenting Basic Block 0x4009fa of __do_global_dtors_aux
Instrumenting Basic Block 0x400a06 of __do_global_dtors_aux
Instrumenting Basic Block 0x400a0d of __do_global_dtors_aux
Inserting instrumention at function entry of frame_dummy
Instrumenting Basic Block 0x400a20 of frame_dummy
Instrumenting Basic Block 0x400a2e of frame_dummy
Instrumenting Basic Block 0x400a38 of frame_dummy
Instrumenting Basic Block 0x400a40 of frame_dummy
Inserting instrumention at function entry of __do_global_ctors_aux
Instrumenting Basic Block 0x40b770 of __do_global_ctors_aux
Instrumenting Basic Block 0x40b786 of __do_global_ctors_aux
Instrumenting Basic Block 0x40b790 of __do_global_ctors_aux
Instrumenting Basic Block 0x40b796 of __do_global_ctors_aux
Instrumenting Basic Block 0x40b79f of __do_global_ctors_aux
Instrumenting module: bzip2.c
Inserting instrumention at function entry of uInt64_toAscii
Instrumenting Basic Block 0x400a50 of uInt64_toAscii
Instrumenting Basic Block 0x400a80 of uInt64_toAscii
Instrumenting Basic Block 0x400a88 of uInt64_toAscii
Instrumenting Basic Block 0x400aaa of uInt64_toAscii
Instrumenting Basic Block 0x400ac0 of uInt64_toAscii
Instrumenting Basic Block 0x400ac5 of uInt64_toAscii
Instrumenting Basic Block 0x400ace of uInt64_toAscii
Instrumenting Basic Block 0x400ae0 of uInt64_toAscii
Instrumenting Basic Block 0x400afa of uInt64_toAscii
Instrumenting Basic Block 0x400b00 of uInt64_toAscii
Inserting instrumention at function entry of showFileNames
Instrumenting Basic Block 0x400b10 of showFileNames
Instrumenting Basic Block 0x400b19 of showFileNames
Instrumenting Basic Block 0x400b20 of showFileNames
Inserting instrumention at function entry of myfeof
Instrumenting Basic Block 0x400b40 of myfeof
Instrumenting Basic Block 0x400b48 of myfeof
Instrumenting Basic Block 0x400b54 of myfeof
Instrumenting Basic Block 0x400b5f of myfeof
Instrumenting Basic Block 0x400b61 of myfeof
Inserting instrumention at function entry of configError
Instrumenting Basic Block 0x400b70 of configError
Instrumenting Basic Block 0x400b8f of configError
Inserting instrumention at function entry of outOfMemory
Instrumenting Basic Block 0x400ba0 of outOfMemory
Instrumenting Basic Block 0x400bbe of outOfMemory
Instrumenting Basic Block 0x400bc3 of outOfMemory
Inserting instrumention at function entry of panic
Instrumenting Basic Block 0x400be0 of panic
Instrumenting Basic Block 0x400c01 of panic
Instrumenting Basic Block 0x400c06 of panic
Inserting instrumention at function entry of ioError
Instrumenting Basic Block 0x400c20 of ioError
Instrumenting Basic Block 0x400c3e of ioError
Instrumenting Basic Block 0x400c4a of ioError
Instrumenting Basic Block 0x400c4f of ioError
Inserting instrumention at function entry of uncompressStream
Instrumenting Basic Block 0x400c60 of uncompressStream
Instrumenting Basic Block 0x400c9e of uncompressStream
Instrumenting Basic Block 0x400cb9 of uncompressStream
Instrumenting Basic Block 0x400cc5 of uncompressStream
Instrumenting Basic Block 0x400cd4 of uncompressStream
Instrumenting Basic Block 0x400cd8 of uncompressStream
Instrumenting Basic Block 0x400ceb of uncompressStream
Instrumenting Basic Block 0x400cfb of uncompressStream
Instrumenting Basic Block 0x400d04 of uncompressStream
Instrumenting Basic Block 0x400d0c of uncompressStream
Instrumenting Basic Block 0x400d16 of uncompressStream
Instrumenting Basic Block 0x400d26 of uncompressStream
Instrumenting Basic Block 0x400d31 of uncompressStream
Instrumenting Basic Block 0x400d40 of uncompressStream
Instrumenting Basic Block 0x400d53 of uncompressStream
Instrumenting Basic Block 0x400d60 of uncompressStream
Instrumenting Basic Block 0x400d72 of uncompressStream
Instrumenting Basic Block 0x400d7d of uncompressStream
Instrumenting Basic Block 0x400d8c of uncompressStream
Instrumenting Basic Block 0x400d9b of uncompressStream
Instrumenting Basic Block 0x400db0 of uncompressStream
Instrumenting Basic Block 0x400db4 of uncompressStream
Instrumenting Basic Block 0x400dbc of uncompressStream
Instrumenting Basic Block 0x400dc0 of uncompressStream
Instrumenting Basic Block 0x400dc8 of uncompressStream
Instrumenting Basic Block 0x400dd5 of uncompressStream
Instrumenting Basic Block 0x400ddd of uncompressStream
Instrumenting Basic Block 0x400de5 of uncompressStream
Instrumenting Basic Block 0x400df4 of uncompressStream
Instrumenting Basic Block 0x400e0d of uncompressStream
Instrumenting Basic Block 0x400e1f of uncompressStream
Instrumenting Basic Block 0x400e32 of uncompressStream
Instrumenting Basic Block 0x400e3e of uncompressStream
Instrumenting Basic Block 0x400e47 of uncompressStream
Instrumenting Basic Block 0x400e4c of uncompressStream
Instrumenting Basic Block 0x400e59 of uncompressStream
Instrumenting Basic Block 0x400e6a of uncompressStream
Instrumenting Basic Block 0x400e72 of uncompressStream
Instrumenting Basic Block 0x400e78 of uncompressStream
Instrumenting Basic Block 0x400e80 of uncompressStream
Instrumenting Basic Block 0x400e84 of uncompressStream
Instrumenting Basic Block 0x400e99 of uncompressStream
Instrumenting Basic Block 0x400e9d of uncompressStream
Instrumenting Basic Block 0x400eb0 of uncompressStream
Instrumenting Basic Block 0x400eb8 of uncompressStream
Instrumenting Basic Block 0x400ebc of uncompressStream
Instrumenting Basic Block 0x400ecf of uncompressStream
Instrumenting Basic Block 0x400eea of uncompressStream
Instrumenting Basic Block 0x400ef4 of uncompressStream
Instrumenting Basic Block 0x400efc of uncompressStream
Instrumenting Basic Block 0x400f04 of uncompressStream
Instrumenting Basic Block 0x400f10 of uncompressStream
Instrumenting Basic Block 0x400f1f of uncompressStream
Instrumenting Basic Block 0x400f2e of uncompressStream
Instrumenting Basic Block 0x400f3a of uncompressStream
Instrumenting Basic Block 0x400f47 of uncompressStream
Instrumenting Basic Block 0x400f51 of uncompressStream
Instrumenting Basic Block 0x400f6b of uncompressStream
Instrumenting Basic Block 0x400f77 of uncompressStream
Instrumenting Basic Block 0x400f7c of uncompressStream
Instrumenting Basic Block 0x400f89 of uncompressStream
Instrumenting Basic Block 0x400fa4 of uncompressStream
Instrumenting Basic Block 0x400fa9 of uncompressStream
Instrumenting Basic Block 0x400fb5 of uncompressStream
Instrumenting Basic Block 0x400fcf of uncompressStream
Instrumenting Basic Block 0x400fd4 of uncompressStream
Instrumenting Basic Block 0x400fe1 of uncompressStream
Instrumenting Basic Block 0x400fe3 of uncompressStream
Instrumenting Basic Block 0x400ff5 of uncompressStream
Instrumenting Basic Block 0x401012 of uncompressStream
Inserting instrumention at function entry of compressStream
Instrumenting Basic Block 0x401020 of compressStream
Instrumenting Basic Block 0x401057 of compressStream
Instrumenting Basic Block 0x401067 of compressStream
Instrumenting Basic Block 0x401070 of compressStream
Instrumenting Basic Block 0x401081 of compressStream
Instrumenting Basic Block 0x401090 of compressStream
Instrumenting Basic Block 0x401098 of compressStream
Instrumenting Basic Block 0x4010a0 of compressStream
Instrumenting Basic Block 0x4010b5 of compressStream
Instrumenting Basic Block 0x4010b9 of compressStream
Instrumenting Basic Block 0x4010c9 of compressStream
Instrumenting Basic Block 0x4010d6 of compressStream
Instrumenting Basic Block 0x4010f6 of compressStream
Instrumenting Basic Block 0x4010fe of compressStream
Instrumenting Basic Block 0x401118 of compressStream
Instrumenting Basic Block 0x401124 of compressStream
Instrumenting Basic Block 0x401129 of compressStream
Instrumenting Basic Block 0x40112e of compressStream
Instrumenting Basic Block 0x401142 of compressStream
Instrumenting Basic Block 0x401158 of compressStream
Instrumenting Basic Block 0x401160 of compressStream
Instrumenting Basic Block 0x401170 of compressStream
Instrumenting Basic Block 0x401180 of compressStream
Instrumenting Basic Block 0x4011a0 of compressStream
Instrumenting Basic Block 0x4011ba of compressStream
Instrumenting Basic Block 0x4011cb of compressStream
Instrumenting Basic Block 0x4011e3 of compressStream
Instrumenting Basic Block 0x4011f2 of compressStream
Instrumenting Basic Block 0x4011f9 of compressStream
Instrumenting Basic Block 0x4012f8 of compressStream
Instrumenting Basic Block 0x4012ff of compressStream
Instrumenting Basic Block 0x401317 of compressStream
Instrumenting Basic Block 0x401348 of compressStream
Instrumenting Basic Block 0x40134f of compressStream
Instrumenting Basic Block 0x401367 of compressStream
Instrumenting Basic Block 0x401377 of compressStream
Instrumenting Basic Block 0x40138b of compressStream
Instrumenting Basic Block 0x401396 of compressStream
Instrumenting Basic Block 0x4013f9 of compressStream
Instrumenting Basic Block 0x4013fe of compressStream
Instrumenting Basic Block 0x40140d of compressStream
Instrumenting Basic Block 0x401428 of compressStream
Instrumenting module: compress.c
Inserting instrumention at function entry of BZ2_bsInitWrite
Instrumenting Basic Block 0x404b60 of BZ2_bsInitWrite
Inserting instrumention at function entry of bsW
Instrumenting Basic Block 0x404b80 of bsW
Instrumenting Basic Block 0x404b8d of bsW
Instrumenting Basic Block 0x404ba0 of bsW
Instrumenting Basic Block 0x404bde of bsW
Instrumenting Basic Block 0x404bf9 of bsW
Inserting instrumention at function entry of bsPutUInt32
Instrumenting Basic Block 0x404c10 of bsPutUInt32
Instrumenting Basic Block 0x404c26 of bsPutUInt32
Instrumenting Basic Block 0x404c3e of bsPutUInt32
Instrumenting Basic Block 0x404c51 of bsPutUInt32
Inserting instrumention at function entry of bsPutUChar
Instrumenting Basic Block 0x404c70 of bsPutUChar
Inserting instrumention at function entry of BZ2_compressBlock
Instrumenting Basic Block 0x404c80 of BZ2_compressBlock
Instrumenting Basic Block 0x404ca8 of BZ2_compressBlock
Instrumenting Basic Block 0x404cd4 of BZ2_compressBlock
Instrumenting Basic Block 0x404cdb of BZ2_compressBlock
Instrumenting Basic Block 0x404ce4 of BZ2_compressBlock
Instrumenting Basic Block 0x404cfd of BZ2_compressBlock
Instrumenting Basic Block 0x404d05 of BZ2_compressBlock
Instrumenting Basic Block 0x404d08 of BZ2_compressBlock
Instrumenting Basic Block 0x404d1f of BZ2_compressBlock
Instrumenting Basic Block 0x404d29 of BZ2_compressBlock
Instrumenting Basic Block 0x404d39 of BZ2_compressBlock
Instrumenting Basic Block 0x404d46 of BZ2_compressBlock
Instrumenting Basic Block 0x404d53 of BZ2_compressBlock
Instrumenting Basic Block 0x404d60 of BZ2_compressBlock
Instrumenting Basic Block 0x404d6d of BZ2_compressBlock
Instrumenting Basic Block 0x404d7a of BZ2_compressBlock
Instrumenting Basic Block 0x404d88 of BZ2_compressBlock
Instrumenting Basic Block 0x404d97 of BZ2_compressBlock
Instrumenting Basic Block 0x404da7 of BZ2_compressBlock
Instrumenting Basic Block 0x404dd0 of BZ2_compressBlock
Instrumenting Basic Block 0x404dd3 of BZ2_compressBlock
Instrumenting Basic Block 0x404ddf of BZ2_compressBlock
Instrumenting Basic Block 0x404de3 of BZ2_compressBlock
Instrumenting Basic Block 0x404def of BZ2_compressBlock
Instrumenting Basic Block 0x404df8 of BZ2_compressBlock
Instrumenting Basic Block 0x404dff of BZ2_compressBlock
Instrumenting Basic Block 0x404e0b of BZ2_compressBlock
Instrumenting Basic Block 0x404e1f of BZ2_compressBlock
Instrumenting Basic Block 0x404e22 of BZ2_compressBlock
Instrumenting Basic Block 0x404e2a of BZ2_compressBlock
Instrumenting Basic Block 0x404e33 of BZ2_compressBlock
Instrumenting Basic Block 0x404e38 of BZ2_compressBlock
Instrumenting Basic Block 0x404e46 of BZ2_compressBlock
Instrumenting Basic Block 0x404e4e of BZ2_compressBlock
Instrumenting Basic Block 0x404e5c of BZ2_compressBlock
Instrumenting Basic Block 0x404e65 of BZ2_compressBlock
Instrumenting Basic Block 0x404e71 of BZ2_compressBlock
Instrumenting Basic Block 0x404e93 of BZ2_compressBlock
Instrumenting Basic Block 0x404e97 of BZ2_compressBlock
Instrumenting Basic Block 0x404e9b of BZ2_compressBlock
Instrumenting Basic Block 0x404ea6 of BZ2_compressBlock
Instrumenting Basic Block 0x404ec2 of BZ2_compressBlock
Instrumenting Basic Block 0x404ec7 of BZ2_compressBlock
Instrumenting Basic Block 0x404ecc of BZ2_compressBlock
Instrumenting Basic Block 0x404ee8 of BZ2_compressBlock
Instrumenting Basic Block 0x404ef1 of BZ2_compressBlock
Instrumenting Basic Block 0x404f09 of BZ2_compressBlock
Instrumenting Basic Block 0x404f10 of BZ2_compressBlock
Instrumenting Basic Block 0x404f13 of BZ2_compressBlock
Instrumenting Basic Block 0x404f22 of BZ2_compressBlock
Instrumenting Basic Block 0x404f4c of BZ2_compressBlock
Instrumenting Basic Block 0x404f58 of BZ2_compressBlock
Instrumenting Basic Block 0x404f67 of BZ2_compressBlock
Instrumenting Basic Block 0x404fa7 of BZ2_compressBlock
Instrumenting Basic Block 0x404fbe of BZ2_compressBlock
Instrumenting Basic Block 0x404fd5 of BZ2_compressBlock
Instrumenting Basic Block 0x404fec of BZ2_compressBlock
Instrumenting Basic Block 0x405003 of BZ2_compressBlock
Instrumenting Basic Block 0x40501a of BZ2_compressBlock
Instrumenting Basic Block 0x405031 of BZ2_compressBlock
Instrumenting Basic Block 0x405048 of BZ2_compressBlock
Instrumenting Basic Block 0x40505f of BZ2_compressBlock
Instrumenting Basic Block 0x405076 of BZ2_compressBlock
Instrumenting Basic Block 0x40508d of BZ2_compressBlock
Instrumenting Basic Block 0x4050a4 of BZ2_compressBlock
Instrumenting Basic Block 0x4050bb of BZ2_compressBlock
Instrumenting Basic Block 0x4050d2 of BZ2_compressBlock
Instrumenting Basic Block 0x4050e9 of BZ2_compressBlock
Instrumenting Basic Block 0x405100 of BZ2_compressBlock
Instrumenting Basic Block 0x405117 of BZ2_compressBlock
Instrumenting Basic Block 0x40512e of BZ2_compressBlock
Instrumenting Basic Block 0x405145 of BZ2_compressBlock
Instrumenting Basic Block 0x40515c of BZ2_compressBlock
Instrumenting Basic Block 0x405173 of BZ2_compressBlock
Instrumenting Basic Block 0x40518a of BZ2_compressBlock
Instrumenting Basic Block 0x4051a1 of BZ2_compressBlock
Instrumenting Basic Block 0x4051b8 of BZ2_compressBlock
Instrumenting Basic Block 0x4051cf of BZ2_compressBlock
Instrumenting Basic Block 0x4051e6 of BZ2_compressBlock
Instrumenting Basic Block 0x4051fd of BZ2_compressBlock
Instrumenting Basic Block 0x405214 of BZ2_compressBlock
Instrumenting Basic Block 0x40522b of BZ2_compressBlock
Instrumenting Basic Block 0x405242 of BZ2_compressBlock
Instrumenting Basic Block 0x405259 of BZ2_compressBlock
Instrumenting Basic Block 0x405270 of BZ2_compressBlock
Instrumenting Basic Block 0x405287 of BZ2_compressBlock
Instrumenting Basic Block 0x40529e of BZ2_compressBlock
Instrumenting Basic Block 0x4052b5 of BZ2_compressBlock
Instrumenting Basic Block 0x4052cc of BZ2_compressBlock
Instrumenting Basic Block 0x4052e3 of BZ2_compressBlock
Instrumenting Basic Block 0x4052fa of BZ2_compressBlock
Instrumenting Basic Block 0x405311 of BZ2_compressBlock
Instrumenting Basic Block 0x405328 of BZ2_compressBlock
Instrumenting Basic Block 0x40533f of BZ2_compressBlock
Instrumenting Basic Block 0x405356 of BZ2_compressBlock
Instrumenting Basic Block 0x40536d of BZ2_compressBlock
Instrumenting Basic Block 0x405384 of BZ2_compressBlock
Instrumenting Basic Block 0x40539b of BZ2_compressBlock
Instrumenting Basic Block 0x4053b2 of BZ2_compressBlock
Instrumenting Basic Block 0x4053c9 of BZ2_compressBlock
Instrumenting Basic Block 0x4053e0 of BZ2_compressBlock
Instrumenting Basic Block 0x4053f7 of BZ2_compressBlock
Instrumenting Basic Block 0x40540e of BZ2_compressBlock
Instrumenting Basic Block 0x40542c of BZ2_compressBlock
Instrumenting Basic Block 0x405436 of BZ2_compressBlock
Instrumenting Basic Block 0x405440 of BZ2_compressBlock
Instrumenting Basic Block 0x405449 of BZ2_compressBlock
Instrumenting Basic Block 0x405463 of BZ2_compressBlock
Instrumenting Basic Block 0x40546d of BZ2_compressBlock
Instrumenting Basic Block 0x40547f of BZ2_compressBlock
Instrumenting Basic Block 0x4054a0 of BZ2_compressBlock
Instrumenting Basic Block 0x4054ad of BZ2_compressBlock
Instrumenting Basic Block 0x4054ba of BZ2_compressBlock
Instrumenting Basic Block 0x4054cf of BZ2_compressBlock
Instrumenting Basic Block 0x4054d4 of BZ2_compressBlock
Instrumenting Basic Block 0x4054e1 of BZ2_compressBlock
Instrumenting Basic Block 0x4054ee of BZ2_compressBlock
Instrumenting Basic Block 0x4054fb of BZ2_compressBlock
Instrumenting Basic Block 0x405508 of BZ2_compressBlock
Instrumenting Basic Block 0x405515 of BZ2_compressBlock
Instrumenting Basic Block 0x405522 of BZ2_compressBlock
Instrumenting Basic Block 0x405530 of BZ2_compressBlock
Instrumenting Basic Block 0x405539 of BZ2_compressBlock
Instrumenting Basic Block 0x405552 of BZ2_compressBlock
Instrumenting Basic Block 0x40555a of BZ2_compressBlock
Instrumenting Basic Block 0x405586 of BZ2_compressBlock
Instrumenting Basic Block 0x40558a of BZ2_compressBlock
Instrumenting Basic Block 0x40558f of BZ2_compressBlock
Instrumenting Basic Block 0x405597 of BZ2_compressBlock
Instrumenting Basic Block 0x40559f of BZ2_compressBlock
Instrumenting Basic Block 0x4055a3 of BZ2_compressBlock
Instrumenting Basic Block 0x4055a6 of BZ2_compressBlock
Instrumenting Basic Block 0x4055b1 of BZ2_compressBlock
Instrumenting Basic Block 0x4055bf of BZ2_compressBlock
Instrumenting Basic Block 0x4055cb of BZ2_compressBlock
Instrumenting Basic Block 0x4055d0 of BZ2_compressBlock
Instrumenting Basic Block 0x4055d5 of BZ2_compressBlock
Instrumenting Basic Block 0x4055e5 of BZ2_compressBlock
Instrumenting Basic Block 0x40560a of BZ2_compressBlock
Instrumenting Basic Block 0x405623 of BZ2_compressBlock
Instrumenting Basic Block 0x405627 of BZ2_compressBlock
Instrumenting Basic Block 0x40562f of BZ2_compressBlock
Instrumenting Basic Block 0x40564c of BZ2_compressBlock
Instrumenting Basic Block 0x405653 of BZ2_compressBlock
Instrumenting Basic Block 0x405668 of BZ2_compressBlock
Instrumenting Basic Block 0x405674 of BZ2_compressBlock
Instrumenting Basic Block 0x405683 of BZ2_compressBlock
Instrumenting Basic Block 0x405691 of BZ2_compressBlock
Instrumenting Basic Block 0x4056af of BZ2_compressBlock
Instrumenting Basic Block 0x4056bd of BZ2_compressBlock
Instrumenting Basic Block 0x4056ca of BZ2_compressBlock
Instrumenting Basic Block 0x405700 of BZ2_compressBlock
Instrumenting Basic Block 0x405719 of BZ2_compressBlock
Instrumenting Basic Block 0x405723 of BZ2_compressBlock
Instrumenting Basic Block 0x405728 of BZ2_compressBlock
Instrumenting Basic Block 0x40572e of BZ2_compressBlock
Instrumenting Basic Block 0x405741 of BZ2_compressBlock
Instrumenting Basic Block 0x405746 of BZ2_compressBlock
Instrumenting Basic Block 0x40574d of BZ2_compressBlock
Instrumenting Basic Block 0x405754 of BZ2_compressBlock
Instrumenting Basic Block 0x40575f of BZ2_compressBlock
Instrumenting Basic Block 0x405769 of BZ2_compressBlock
Instrumenting Basic Block 0x4057b8 of BZ2_compressBlock
Instrumenting Basic Block 0x4057c2 of BZ2_compressBlock
Instrumenting Basic Block 0x4057ca of BZ2_compressBlock
Instrumenting Basic Block 0x4057e0 of BZ2_compressBlock
Instrumenting Basic Block 0x4057e5 of BZ2_compressBlock
Instrumenting Basic Block 0x4057f3 of BZ2_compressBlock
Instrumenting Basic Block 0x4057f7 of BZ2_compressBlock
Instrumenting Basic Block 0x405805 of BZ2_compressBlock
Instrumenting Basic Block 0x405818 of BZ2_compressBlock
Instrumenting Basic Block 0x40581c of BZ2_compressBlock
Instrumenting Basic Block 0x405826 of BZ2_compressBlock
Instrumenting Basic Block 0x405839 of BZ2_compressBlock
Instrumenting Basic Block 0x405847 of BZ2_compressBlock
Instrumenting Basic Block 0x405887 of BZ2_compressBlock
Instrumenting Basic Block 0x405899 of BZ2_compressBlock
Instrumenting Basic Block 0x4058aa of BZ2_compressBlock
Instrumenting Basic Block 0x4058ac of BZ2_compressBlock
Instrumenting Basic Block 0x4058b3 of BZ2_compressBlock
Instrumenting Basic Block 0x4058d0 of BZ2_compressBlock
Instrumenting Basic Block 0x4058e2 of BZ2_compressBlock
Instrumenting Basic Block 0x4058e9 of BZ2_compressBlock
Instrumenting Basic Block 0x4058f2 of BZ2_compressBlock
Instrumenting Basic Block 0x405902 of BZ2_compressBlock
Instrumenting Basic Block 0x405906 of BZ2_compressBlock
Instrumenting Basic Block 0x405930 of BZ2_compressBlock
Instrumenting Basic Block 0x405948 of BZ2_compressBlock
Instrumenting Basic Block 0x405958 of BZ2_compressBlock
Instrumenting Basic Block 0x405961 of BZ2_compressBlock
Instrumenting Basic Block 0x405966 of BZ2_compressBlock
Instrumenting Basic Block 0x405970 of BZ2_compressBlock
Instrumenting Basic Block 0x405988 of BZ2_compressBlock
Instrumenting Basic Block 0x4059a0 of BZ2_compressBlock
Instrumenting Basic Block 0x4059ad of BZ2_compressBlock
Instrumenting Basic Block 0x4059b6 of BZ2_compressBlock
Instrumenting Basic Block 0x4059d0 of BZ2_compressBlock
Instrumenting Basic Block 0x4059d9 of BZ2_compressBlock
Instrumenting Basic Block 0x4059e3 of BZ2_compressBlock
Instrumenting Basic Block 0x4059eb of BZ2_compressBlock
Instrumenting Basic Block 0x4059f5 of BZ2_compressBlock
Instrumenting Basic Block 0x405a18 of BZ2_compressBlock
Instrumenting Basic Block 0x405a1d of BZ2_compressBlock
Instrumenting Basic Block 0x405a30 of BZ2_compressBlock
Instrumenting Basic Block 0x405a4c of BZ2_compressBlock
Instrumenting Basic Block 0x405a50 of BZ2_compressBlock
Instrumenting Basic Block 0x405a5d of BZ2_compressBlock
Instrumenting Basic Block 0x405a6a of BZ2_compressBlock
Instrumenting Basic Block 0x405a77 of BZ2_compressBlock
Instrumenting Basic Block 0x405a95 of BZ2_compressBlock
Instrumenting Basic Block 0x405abd of BZ2_compressBlock
Instrumenting Basic Block 0x405ad1 of BZ2_compressBlock
Instrumenting Basic Block 0x405ae4 of BZ2_compressBlock
Instrumenting Basic Block 0x405af6 of BZ2_compressBlock
Instrumenting Basic Block 0x405b00 of BZ2_compressBlock
Instrumenting Basic Block 0x405b08 of BZ2_compressBlock
Instrumenting Basic Block 0x405b0d of BZ2_compressBlock
Instrumenting Basic Block 0x405b1a of BZ2_compressBlock
Instrumenting Basic Block 0x405b25 of BZ2_compressBlock
Instrumenting Basic Block 0x405b40 of BZ2_compressBlock
Instrumenting Basic Block 0x405b4f of BZ2_compressBlock
Instrumenting Basic Block 0x405b58 of BZ2_compressBlock
Instrumenting Basic Block 0x405b6b of BZ2_compressBlock
Instrumenting Basic Block 0x405b7f of BZ2_compressBlock
Instrumenting Basic Block 0x405b8b of BZ2_compressBlock
Instrumenting Basic Block 0x405b99 of BZ2_compressBlock
Instrumenting Basic Block 0x405f6d of BZ2_compressBlock
Instrumenting Basic Block 0x405f78 of BZ2_compressBlock
Instrumenting Basic Block 0x405f86 of BZ2_compressBlock
Instrumenting Basic Block 0x4068ed of BZ2_compressBlock
Instrumenting Basic Block 0x40690e of BZ2_compressBlock
Instrumenting Basic Block 0x40692c of BZ2_compressBlock
Instrumenting Basic Block 0x406937 of BZ2_compressBlock
Instrumenting Basic Block 0x406948 of BZ2_compressBlock
Instrumenting Basic Block 0x40694d of BZ2_compressBlock
Instrumenting Basic Block 0x406954 of BZ2_compressBlock
Instrumenting Basic Block 0x40696b of BZ2_compressBlock
Instrumenting Basic Block 0x406976 of BZ2_compressBlock
Instrumenting Basic Block 0x406998 of BZ2_compressBlock
Instrumenting Basic Block 0x4069ae of BZ2_compressBlock
Instrumenting Basic Block 0x4069b5 of BZ2_compressBlock
Instrumenting Basic Block 0x4069d1 of BZ2_compressBlock
Instrumenting Basic Block 0x4069d9 of BZ2_compressBlock
Instrumenting Basic Block 0x4069db of BZ2_compressBlock
Instrumenting Basic Block 0x4069f6 of BZ2_compressBlock
Instrumenting Basic Block 0x406a17 of BZ2_compressBlock
Instrumenting Basic Block 0x406a1f of BZ2_compressBlock
Instrumenting Basic Block 0x406a28 of BZ2_compressBlock
Instrumenting Basic Block 0x406a38 of BZ2_compressBlock
Instrumenting Basic Block 0x406a3b of BZ2_compressBlock
Instrumenting Basic Block 0x406a43 of BZ2_compressBlock
Instrumenting Basic Block 0x406a52 of BZ2_compressBlock
Instrumenting Basic Block 0x406a64 of BZ2_compressBlock
Instrumenting Basic Block 0x406a76 of BZ2_compressBlock
Instrumenting Basic Block 0x406a81 of BZ2_compressBlock
Instrumenting Basic Block 0x406a88 of BZ2_compressBlock
Instrumenting Basic Block 0x406a97 of BZ2_compressBlock
Instrumenting Basic Block 0x406a99 of BZ2_compressBlock
Instrumenting Basic Block 0x406aa5 of BZ2_compressBlock
Instrumenting Basic Block 0x406ac4 of BZ2_compressBlock
Instrumenting Basic Block 0x406ad0 of BZ2_compressBlock
Instrumenting Basic Block 0x406ad6 of BZ2_compressBlock
Instrumenting Basic Block 0x406adb of BZ2_compressBlock
Instrumenting Basic Block 0x406af1 of BZ2_compressBlock
Instrumenting Basic Block 0x406af7 of BZ2_compressBlock
Instrumenting Basic Block 0x406afc of BZ2_compressBlock
Instrumenting Basic Block 0x406b08 of BZ2_compressBlock
Instrumenting Basic Block 0x406b1b of BZ2_compressBlock
Instrumenting Basic Block 0x406b21 of BZ2_compressBlock
Instrumenting Basic Block 0x406b30 of BZ2_compressBlock
Instrumenting Basic Block 0x406b41 of BZ2_compressBlock
Instrumenting Basic Block 0x406b5b of BZ2_compressBlock
Instrumenting Basic Block 0x406b76 of BZ2_compressBlock
Instrumenting Basic Block 0x406b87 of BZ2_compressBlock
Instrumenting Basic Block 0x406b8e of BZ2_compressBlock
Instrumenting Basic Block 0x406b9b of BZ2_compressBlock
Instrumenting Basic Block 0x406ba0 of BZ2_compressBlock
Instrumenting Basic Block 0x406bb2 of BZ2_compressBlock
Instrumenting Basic Block 0x406bc3 of BZ2_compressBlock
Instrumenting Basic Block 0x406bd6 of BZ2_compressBlock
Instrumenting Basic Block 0x406be1 of BZ2_compressBlock
Instrumenting Basic Block 0x406bea of BZ2_compressBlock
Instrumenting Basic Block 0x406c04 of BZ2_compressBlock
Instrumenting Basic Block 0x406c28 of BZ2_compressBlock
Instrumenting Basic Block 0x406c45 of BZ2_compressBlock
Instrumenting Basic Block 0x406c4e of BZ2_compressBlock
Instrumenting Basic Block 0x406c68 of BZ2_compressBlock
Instrumenting Basic Block 0x406c71 of BZ2_compressBlock
Instrumenting Basic Block 0x406c78 of BZ2_compressBlock
Instrumenting Basic Block 0x406c8a of BZ2_compressBlock
Instrumenting Basic Block 0x406c97 of BZ2_compressBlock
Instrumenting Basic Block 0x406c9c of BZ2_compressBlock
Instrumenting Basic Block 0x406ca0 of BZ2_compressBlock
Instrumenting Basic Block 0x406cb2 of BZ2_compressBlock
Instrumenting Basic Block 0x406cba of BZ2_compressBlock
Instrumenting Basic Block 0x406cbf of BZ2_compressBlock
Instrumenting Basic Block 0x406cd5 of BZ2_compressBlock
Instrumenting Basic Block 0x406cda of BZ2_compressBlock
Instrumenting Basic Block 0x406cf2 of BZ2_compressBlock
Instrumenting Basic Block 0x406d09 of BZ2_compressBlock
Instrumenting Basic Block 0x406d23 of BZ2_compressBlock
Instrumenting Basic Block 0x406d40 of BZ2_compressBlock
Instrumenting Basic Block 0x406d4c of BZ2_compressBlock
Instrumenting Basic Block 0x406d70 of BZ2_compressBlock
Instrumenting Basic Block 0x406d7b of BZ2_compressBlock
Instrumenting Basic Block 0x406d8b of BZ2_compressBlock
Instrumenting Basic Block 0x406d90 of BZ2_compressBlock
Instrumenting Basic Block 0x406dcf of BZ2_compressBlock
Instrumenting Basic Block 0x406dd4 of BZ2_compressBlock
Instrumenting Basic Block 0x406dd9 of BZ2_compressBlock
Instrumenting Basic Block 0x406dee of BZ2_compressBlock
Instrumenting Basic Block 0x406df6 of BZ2_compressBlock
Instrumenting Basic Block 0x406e04 of BZ2_compressBlock
Instrumenting Basic Block 0x406e16 of BZ2_compressBlock
Instrumenting Basic Block 0x406e21 of BZ2_compressBlock
Instrumenting Basic Block 0x406e30 of BZ2_compressBlock
Instrumenting Basic Block 0x406e88 of BZ2_compressBlock
Instrumenting Basic Block 0x406e8d of BZ2_compressBlock
Instrumenting Basic Block 0x406e97 of BZ2_compressBlock
Instrumenting Basic Block 0x406eb0 of BZ2_compressBlock
Instrumenting Basic Block 0x406ebf of BZ2_compressBlock
Instrumenting module: huffman.c
Inserting instrumention at function entry of __libc_csu_init
Instrumenting Basic Block 0x40b6e0 of __libc_csu_init
Instrumenting Basic Block 0x40b725 of __libc_csu_init
Instrumenting Basic Block 0x40b72a of __libc_csu_init
Instrumenting Basic Block 0x40b730 of __libc_csu_init
Instrumenting Basic Block 0x40b73d of __libc_csu_init
Instrumenting Basic Block 0x40b746 of __libc_csu_init
Inserting instrumention at function entry of _fini
Instrumenting Basic Block 0x40b7a8 of _fini
Instrumenting Basic Block 0x40b7b1 of _fini
Inserting instrumention at function entry of _init
Instrumenting Basic Block 0x4007f0 of _init
Instrumenting Basic Block 0x4007f9 of _init
Instrumenting Basic Block 0x4007fe of _init
Instrumenting Basic Block 0x400803 of _init
Inserting instrumention at function entry of _start
Instrumenting Basic Block 0x400960 of _start
Instrumenting Basic Block 0x400989 of _start
Inserting instrumention at function entry of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b070 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b075 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b079 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b088 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b093 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b098 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b0a5 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b0ae of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b0c2 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b0c9 of BZ2_hbAssignCodes
Instrumenting Basic Block 0x40b0ce of BZ2_hbAssignCodes
Inserting instrumention at function entry of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b0e0 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b0f3 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b0f8 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b101 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b108 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b113 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b11c of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b132 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b13a of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b140 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b151 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b155 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b160 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b171 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b178 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b189 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b190 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1a1 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1a6 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1c0 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1dc of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1e5 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b1f8 of BZ2_hbCreateDecodeTables
Instrumenting Basic Block 0x40b213 of BZ2_hbCreateDecodeTables
Inserting instrumention at function entry of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b220 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b242 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b25e of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b27a of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b2ad of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b2d6 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b2f0 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b322 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b330 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b334 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b358 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b36e of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b37c of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b387 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b398 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b3c3 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b3d8 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b3ee of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b3f3 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b3f6 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b406 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b40a of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b40d of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b43c of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b449 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b450 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b484 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4a0 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4b6 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4bb of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4be of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4ce of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4d2 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b4d5 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b504 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b511 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b518 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b596 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5a0 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5a4 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5c8 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5df of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5e3 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5ea of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5f4 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b5ff of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b61f of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b62d of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b630 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b63d of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b63f of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b656 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b65b of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b663 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b670 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b690 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b695 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b69c of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6a5 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6b4 of BZ2_hbMakeCodeLengths
Instrumenting Basic Block 0x40b6c6 of BZ2_hbMakeCodeLengths
Inserting instrumention at function entry of __libc_csu_fini
Instrumenting Basic Block 0x40b6d0 of __libc_csu_fini
Skipping library: ld-linux-x86-64.so.2
Skipping library: libc.so.6
insertInitCallback on huffman.c
insertFiniCallback on huffman.c
 createSymbolTables for »»»»»»»»»»»»»»»»Q 
::driver for emitElf64
Emitting to temporary file bzipsfJyqC
section .interp addr = 400200 off = 238 size = 1c
section .note.ABI-tag addr = 40021c off = 121c size = 20
section .note.gnu.build-id addr = 40023c off = 123c size = 24
section .gnu.hash addr = 400260 off = 1260 size = 24
section .dynsym addr = 400288 off = 1288 size = 228
section .dynstr addr = 4004b0 off = 14b0 size = d1
section .gnu.version addr = 400582 off = 1582 size = 2e
section .gnu.version_r addr = 4005b0 off = 15b0 size = 30
section .rela.dyn addr = 4005e0 off = 15e0 size = 30
section .rela.plt addr = 400610 off = 1610 size = 1e0
section .init addr = 4007f0 off = 17f0 size = 18
section .plt addr = 400808 off = 1808 size = 150
section .text addr = 400960 off = 1960 size = ae48
section .fini addr = 40b7a8 off = c7a8 size = e
section .rodata addr = 40b7c0 off = c7c0 size = 1398
section .eh_frame_hdr addr = 40cb58 off = db58 size = 25c
section .eh_frame addr = 40cdb8 off = ddb8 size = c94
section .ctors addr = 60da50 off = ea50 size = 10
section .dtors addr = 60da60 off = ea60 size = 10
section .jcr addr = 60da70 off = ea70 size = 8
section .dynamic addr = 60da78 off = ea78 size = 190
section .got addr = 60dc08 off = ec08 size = 8
section .got.plt addr = 60dc10 off = ec10 size = b8
section .data addr = 60dce0 off = ece0 size = c20
section .bss addr = 60e900 off = f900 size = 1168
new section .dyninstInst addr = 700000 off = 10000 size = 108720
new section .gnu.hash addr = 808720 off = 118720 size = 148
new section .dynsym addr = 808868 off = 118868 size = 498
new section .dynstr addr = 808d00 off = 118d00 size = 2c4
new section .gnu.version addr = 808fc4 off = 118fc4 size = 62
new section .gnu.version_r addr = 809026 off = 119026 size = 30
new section .rela.dyn addr = 809056 off = 119056 size = c0
new section .rela.plt addr = 809116 off = 119116 size = 1e0
new section .dynamic addr = 8092f6 off = 1192f6 size = 1a0
section .comment addr = 0 off = 119496 size = 2c
section .debug_aranges addr = 0 off = 1194c2 size = 150
section .debug_pubnames addr = 0 off = 119612 size = 6a9
section .debug_info addr = 0 off = 119cbb size = 7f63
section .debug_abbrev addr = 0 off = 121c1e size = 1557
section .debug_line addr = 0 off = 123175 size = 1f38
section .debug_str addr = 0 off = 1250ad size = 1245
section .debug_loc addr = 0 off = 1262f2 size = e9a7
section .debug_pubtypes addr = 0 off = 134c99 size = 561
section .debug_ranges addr = 0 off = 1351fa size = 1360
section .symtab addr = 0 off = 137096 size = 1c38
section .strtab addr = 0 off = 138cce size = 1232
Existing program header: type 6, offset 0x40, addr 0x3ff040
Existing program header: type 3, offset 0x238, addr 0x400200
Existing program header: type 1, offset 0x0, addr 0x3ff000
Added New program header : offset 0x700000,addr 0x700000 file Size 0x109496 memsize 0x109496 
Existing program header: type 1, offset 0x10000, addr 0x700000
Existing program header: type 2, offset 0x1192f6, addr 0x8092f6
Existing program header: type 4, offset 0x121c, addr 0x40021c
Existing program header: type 1685382480, offset 0xdb58, addr 0x40cb58
Existing program header: type 1685382481, offset 0x0, addr 0x0
[← Prev in Thread] Current Thread [Next in Thread→]