in reply to Re^2: Hex numbers (e.g. memory addresses) pseudonymising for comparable logging output
in thread Hex numbers (e.g. memory addresses) pseudonymising for comparable logging output

IOW he's identifying identical addresses by the order given in the trace's output to rename them consistently?

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

  • Comment on Re^3: Hex numbers (e.g. memory addresses) pseudonymising for comparable logging output

Replies are listed 'Best First'.
Re^4: Hex numbers (e.g. memory addresses) pseudonymising for comparable logging output
by hippo (Archbishop) on Feb 18, 2022 at 15:15 UTC

    Indeed. So if one trace had

    0xAAAABBBB 0x33333333 0xAAAABBBB

    and another trace had

    0xBEEFCAFE 0x99999999 0xBEEFCAFE

    They would both end up as

    ADDR1 ADDR2 ADDR1

    and thus not show up as false positives in the ensuing diff.


    🦛