How to create a callback tree for a Delphi project?

Is there a way to quickly find a complete list of code paths to one specific function in my project, to find out if any particular function calls the top link, directly or indirectly? For example, some possible output to determine if it is available MyLowLevelFunctionfrom TargetFunction:

Code Path 1

ModuleA2.TopLevelFunction
| --ModuleA1.SomeFunction
| ---- Utility.MyLowLevelFunction

Code Path 2

ModuleB2.TopLevelFunction
| --TargetModule.TargetFunction <- This calls MyLowLevelFunction indirectly
| ---- ModuleB1.SomeFunction
| ------ Utility.MyLowLevelFunction
+5
source share
1 answer

Pascal Peganza . , , ref, .

, , .

+6

All Articles