search for: llvmperfjithead

Displaying 3 results from an estimated 3 matches for "llvmperfjithead".

Did you mean: llvmperfjitheader
2018 Mar 26
0
Interest in integrating a linux perf JITEventListener?
...lt;< 16 | (uint32_t) 'T' << 8 | (uint32_t) 'D') > +#define LLVM_PERF_JIT_VERSION 2 > + > +/* bit 0: set if the jitdump file is using an architecture-specific timestamp clock source */ > +#define JITDUMP_FLAGS_ARCH_TIMESTAMP (1ULL << 0) > + > +struct LLVMPerfJitHeader; > + > +class PerfJITEventListener : public JITEventListener { > +public: > + PerfJITEventListener(); > + ~PerfJITEventListener() { > + if (MarkerAddr) > + CloseMarker(); > + } > + > + void NotifyObjectEmitted(const ObjectFile &Obj, > +...
2016 Dec 29
1
Interest in integrating a linux perf JITEventListener?
Having something like this available in tree would definitely be useful. For simplicity, why don't we start with support for the second style? This is the long term useful one and would be a good starting point for getting the code in tree. Can you give a pointer to the patch so that I can assess the rough complexity? If it's simple enough, I'd be happy to help get it reviewed
2017 Feb 02
0
Interest in integrating a linux perf JITEventListener?
Hi, On 2016-12-29 13:17:50 -0800, Philip Reames wrote: > Having something like this available in tree would definitely be > useful. Cool. > For simplicity, why don't we start with support for the second style? This > is the long term useful one and would be a good starting point for getting > the code in tree. Works for me. > Can you give a pointer to the patch so that