naver / scavenger

A runtime dead code analysis tool
Apache License 2.0
400 stars 43 forks source link

implement method call stack #109

Open taeyeon-Kim opened 10 months ago

taeyeon-Kim commented 10 months ago

For deeper analysis of dead code (for example, to recognize that a method you've thought was dead is being called and you want to know what it is), we also support the feature that enables you to see the method call stack.

taeyeon-Kim commented 9 months ago

Which one to use to record the call stack?

current performance : 15ns

  1. thread local
    • performance: 18ns
  2. https://github.com/raphw/weak-lock-free
    • performance: 50ns
  3. ....