<div dir="ltr">Figured out how to make it work, thanks to example in <a href="https://reviews.llvm.org/rG39253a50f0f33e491e2d021f94cd3a87ee773f2d">https://reviews.llvm.org/rG39253a50f0f33e491e2d021f94cd3a87ee773f2d</a><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><i><br></i></div><div><i>auto objectLayer = std::make_unique<RTDyldObjectLinkingLayer>(</i></div><div><div><i>        session, []() { return std::make_unique<SectionMemoryManager>(); });</i></div></div><div><div><i>objectLayer->registerJITEventListener(*llvm::JITEventListener::createPerfJITEventListener());</i></div></div></blockquote><div><br></div><div>Previously I was forwarding to JITEventListener::notifyObjectLoaded from objectLayer->setNotifyLoaded callback.</div><div><br></div><div>Eugene</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Apr 17, 2020 at 10:58 PM Eugene Zhulenev <<a href="mailto:ezhulenev@google.com">ezhulenev@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">I'm trying to use PerfJITEventListener with llvm::orc::LLJITBuilder:<div><br><div>1. perf record -o /tmp/perf.data -- <my_binary_with_event_listener></div><div>2. perf inject -j -v -i /tmp/perf.data -o /tmp/perf.data.jit</div><div><br></div></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div><i>jit marker found: ~.debug/jit/llvm-IR-jit-20200417-3c2242/jit-149849.dump</i></div></div><div><div><i>injecting: ~/.debug/jit/llvm-IR-jit-20200417-3c2242/jit-149849.dump</i></div></div><div><div><i>write ELF image ~/.debug/jit/llvm-IR-jit-20200417-3c2242/jitted-149849-1.so</i></div></div><div><div><i>write ELF image ~/.debug/jit/llvm-IR-jit-20200417-3c2242/jitted-149849-2.so</i></div></div><div><div><i>injected: ~/.debug/jit/llvm-IR-jit-20200417-3c2242/jit-149849.dump (0)</i></div></div></blockquote><div><div><br></div><div>Generated ELF files have correct .text sections.</div><div><br></div><div>However perf report can't find these generated so files:</div><div><br></div><div>+   69.50%    23.82%  my_binary  [JIT] tid 149849    [.] 0x00007f9c34d5106a<br>+   51.78%    45.69%  my_binary  [JIT] tid 149849    [.] 0x00007f9c34d51065<br>+   27.71%     6.09%  my_binary  [JIT] tid 149849     [.] 0x00007f9c34d51060<br></div><div><br></div><div>It seems that perf report is looking for a shared object in /tmp/perf-149849.map, but that file doesn't exist.</div><div><br></div><div>Looking at examples in the original LLVM change (<a href="https://reviews.llvm.org/D44892?" target="_blank">https://reviews.llvm.org/D44892?</a>), I don't see any mentions of perf.map file.</div></div><div><br></div><div>Do I miss something? Are there any examples of how to use perf listener?</div><div><br></div><div>Thanks,</div><div>Eugene</div></div>
</blockquote></div>