Displaying 2 results from an estimated 2 matches for "sym6000".
Did you mean:
sx6000
2013 Jul 13
2
[LLVMdev] Special case list files; a bug and a slowness issue
...I need to be able to use a special case list file containing thousands
of entries (namely, a list of libc symbols, to be used when using
DFSan with an uninstrumented libc). Initially I built the symbol
list like this:
fun:sym1=uninstrumented
fun:sym2=uninstrumented
fun:sym3=uninstrumented
...
fun:sym6000=uninstrumented
What I found was that, despite various bits of documentation [1,2],
the symbol names are matched as substrings, the root cause being that
the regular expressions built by the SpecialCaseList class do not
contain anchors. The attached unit test demonstrates the problem.
If I modify...
2013 Jul 16
0
[LLVMdev] Special case list files; a bug and a slowness issue
...file containing thousands
> of entries (namely, a list of libc symbols, to be used when using
> DFSan with an uninstrumented libc). Initially I built the symbol
> list like this:
>
> fun:sym1=uninstrumented
> fun:sym2=uninstrumented
> fun:sym3=uninstrumented
> ...
> fun:sym6000=uninstrumented
>
> What I found was that, despite various bits of documentation [1,2],
> the symbol names are matched as substrings, the root cause being that
> the regular expressions built by the SpecialCaseList class do not
> contain anchors. The attached unit test demonstrates t...