search for: addresssanitizermodul

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

Did you mean: addresssanitizermodule
2018 Sep 28
3
Porting Pass to New PassManager
...the >> `asan.module_ctor` that should get added to the global ctors list. >> What I'm not sure of is if I'm missing something when I made the new >> pass or it's something in the pipeline regarding which passes run >> first between both PMs. I could just make an AddressSanitizerModule >> pass for the new PM, but feel like this should still work even if >> AddressSanitizer is added in the new PM and AddressSanitizerModule is >> added in legacy. >> >> - Leo > >
2018 Sep 27
2
Porting Pass to New PassManager
...sing seems to be the > `asan.module_ctor` that should get added to the global ctors list. > What I'm not sure of is if I'm missing something when I made the new > pass or it's something in the pipeline regarding which passes run > first between both PMs. I could just make an AddressSanitizerModule > pass for the new PM, but feel like this should still work even if > AddressSanitizer is added in the new PM and AddressSanitizerModule is > added in legacy. > > - Leo > On Tue, Sep 25, 2018 at 4:09 AM Philip Pfaffe <philip.pfaffe at gmail.com> > wrote: > > > &...
2018 Sep 25
2
Porting Pass to New PassManager
Frontends _are_ using PassBuilder, but they need to hook into the default pipeline creation to insert the sanitizer passes. On Tue, Sep 25, 2018 at 12:15 PM Fedor Sergeev <fedor.sergeev at azul.com> wrote: > Hmm... frontends should be using PassBuilder anyway. > And if they are using PassBuilder then they are using PassRegistry.def as > well - all the >