search for: _7exception

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

2020 May 06
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
...a link to that new bug report available, and meanwhile thank you very much for your time and efforts on this issue! Have a great day! Cheers, Emmanuel. Le mer. 6 mai 2020 à 02:32, Lang Hames <lhames at gmail.com> a écrit : > Hi Emmanuel, > > I see the problem: > > $"??_7exception at std@@6B@" = comdat largest > > The JIT knows how to honor linkages, but it does not know about > comdats yet except in limited circumstances, so it sees these as > conflicting definitions. > > Adding support for comdats will be non-trivial as their selection rules > are...
2020 May 05
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
...les are attached to this email too. > > => So, I can load for instance the module corresponding to test_func1.bc > in my main JITDylib, but then, if I try to load the test_func2 IR module in > the same Dylib, I get the following error: > > *Duplicate definition of symbol '??_7exception at std@@6B@'* > > In all the .ll files you will find multiple references of that symbol... > but unfortunately, my skills won't get me any further than that [=> ie. I > have no idea what to think about the content of those files :-)]. > > But anyway, if you notice anyth...
2020 Apr 27
2
C++ JIT Compiler with LLVM on Windows 10 - part 5
I was just reading the blog post -- very cool! Regarding Globals construction & destruction: There definitely has been a lot of churn in that area. There will probably be more before LLVM 11 is released, but I can see light at the end of the tunnel. I think the Right Way to run initializers in a JITDylib is to treat it as equivalent to a dlopen operation (with extra allowances for the fact