instrument-xrayThe tracking issue for this feature is: #102921.
Enable generation of NOP sleds for XRay function tracing instrumentation. For more information on XRay, read LLVM documentation, and/or the XRay whitepaper.
Set the -Z instrument-xray compiler flag in order to enable XRay instrumentation.
-Z instrument-xray – use the default settings-Z instrument-xray=skip-exit – configure a custom setting-Z instrument-xray=ignore-loops,instruction-threshold=300 – multiple settings separated by commasSupported options:
always – force instrumentation of all functionsnever – do no instrument any functionsignore-loops – ignore presence of loops, instrument functions based only on instruction countinstruction-threshold=10 – set a different instruction threshold for instrumentationskip-entry – do no instrument function entryskip-exit – do no instrument function exitThe default settings are:
Note that -Z instrument-xray only enables generation of NOP sleds which on their own don‘t do anything useful. In order to actually trace the functions, you will need to link a separate runtime library of your choice, such as Clang’s XRay Runtime Library.