Charlie Turner
2015-Jan-16 20:02 UTC
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
Cheers Lang! You were right, I was testing this on Linux. I was planning on committing these changes with the corresponding changes to the Kaleidoscope tutorial walk-through. Might be a bit of a surprise to have no explanation of what MCJITHelper and friends is doing. I'll try and make time to prepare some patches along these lines, as well as updating future chapters with the same fix. Thanks for taking a look :) Charlie. On 16 January 2015 at 19:46, Lang Hames <lhames at gmail.com> wrote:> Committed in r226308. Thanks Charlie! > > - Lang. > > On Thu, Jan 15, 2015 at 4:41 PM, Lang Hames <lhames at gmail.com> wrote: >> >> Oh - I know what this is. You were running this on Linux, right? >> >> On MacOS I think the symbol is getting double mangled while going through >> MCJIT::getSymbolAddress, hence the failure: The IR level foo function gets >> compiled to "_foo" in the object file, and then "_foo" gets mangled to >> "__foo" when we look it up. Linux doesn't do assembly level name-mangling, >> so this bug doesn't show up there. >> >> Since applying this fixes Linux, and leaves MacOS no more broken than >> before, I'll put it in. Hopefully I can figure out a fix for MacOS soon. >> >> Thanks again Charlie. >> >> - Lang. >> >> >> On Thu, Jan 15, 2015 at 4:34 PM, Lang Hames <lhames at gmail.com> wrote: >>> >>> Hi Charlie, >>> >>> Thanks for working on this. Sorry it took me so long to get around to >>> looking at it. >>> >>> I've just tested the patch out on Top-of-tree and I see: >>> >>> ready> def foo(x y) x+y; >>> ready> Read function definition: >>> define double @foo(double %x, double %y) { >>> entry: >>> %addtmp = fadd double %x, %y >>> ret double %addtmp >>> } >>> >>> ready> foo(1,2); >>> ready> Evaluated to 3.000000 >>> ready> foo(3,4); >>> ready> LLVM ERROR: Program used extern function '_foo' which could not be >>> resolved! >>> >>> Have you seen the same thing? If not, can you describe your system config >>> and I'll dig in and try to see what's causing this to behave differently for >>> me. >>> >>> - Lang. >>> >>> On Fri, Dec 26, 2014 at 9:09 AM, Charlie Turner >>> <charlesturner7c5 at gmail.com> wrote: >>>> >>>> Hi all, >>>> >>>> Starting from Chapter 4 of the Kaleidoscope tutorial (where the JIT >>>> support is added), there's some strange behaviour, >>>> >>>> ready> def foo(x y) x+y; >>>> ready> Read function definition: >>>> define double @foo(double %x, double %y) { >>>> entry: >>>> %addtmp = fadd double %x, %y >>>> ret double %addtmp >>>> } >>>> >>>> ready> foo(1, 2); >>>> ready> Evaluated to 3.000000 >>>> ready> foo(3, 4); >>>> ready> Evaluated to 3.000000 >>>> >>>> You can see that foo(3, 4) is not being computed correctly. Well >>>> actually, it appears to not be getting compiled. It seems like the >>>> Kaleidoscope tutorial has slipped a bit with the recent JIT changes in >>>> LLVM. >>>> >>>> I have attached a patch which gets the above working. I found a blog >>>> post about getting Kaleidoscope working with MCJIT >>>> >>>> (http://blog.llvm.org/2013/07/using-mcjit-with-kaleidoscope-tutorial.html) >>>> which most of the code comes from. Unfortunately that didn't >>>> completely work, it was using a deprecated API >>>> "RTDyldMemoryManager::getPointerToNamedFunction" which was failing to >>>> find function symbols for reasons I didn't have time to track down. I >>>> changed it to use the recommended getSymbolAddress, and now it works. >>>> >>>> If the attached seems reasonable, there's more to do, >>>> >>>> * Updating the Kaleidoscope tutorial to explain all this. Andy >>>> Kaylor's blog post [1] is good place to start. There are other methods >>>> of using MCJIT in Kaleidoscope explained on that blog, but the >>>> attached method is perhaps the most straightforward one. >>>> * Update all future chapter code to fix this bug. >>>> * Updating the Kaleidoscope/MCJIT example code. This code doesn't >>>> get built when you request examples to be built, so it has suffered >>>> bit rot (doesn't compile at the moment, I have local patches for this >>>> but can submit those in the future). Should we be building this code >>>> more regularly? >>>> * .... Bonus: Add unit tests to Kaleidoscope so it doesn't slip like >>>> this in the future? >>>> >>>> Am I on the right track with these fixes? If so I'll try and get to >>>> the points above, or at least raise a PR for it. Maybe in the meantime >>>> a note should be added to the tutorial that this is a known bug? >>>> >>>> Thanks for your time! >>>> Charlie. >>>> >>>> _______________________________________________ >>>> LLVM Developers mailing list >>>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >>>> >>> >> >
Per Mildner
2015-Apr-21 14:26 UTC
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
Charlie Turner <charlesturner7c5 <at> gmail.com> writes:> I was planning on committing these changes with the corresponding > changes to the Kaleidoscope tutorial walk-through. Might be a bit of a > surprise to have no explanation of what MCJITHelper and friends is > doing. > > I'll try and make time to prepare some patches along these lines, as > well as updating future chapters with the same fix. > > Thanks for taking a look :)Any progress on fixing the tutorial? I am about to dive into LLVM and after some hair-pulling found that the Kaleidoscope tutorials (from part 5 onwards), are broken. Obviously this is not a good first impression. (even a note in the source code, #error "currently does not work", would be a huge improvement, since it would avoid a lot of wasted time for the beginner.) PS. On OS X 10.8.5, the compile command for part 4 of the tutorial needs -fno-rtti, presumably because the code now inherits from a LLVM class. Regards, Per Mildner
Charlie Turner
2015-Apr-21 15:07 UTC
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
Hi Per, After feedback from other places, I wasn't sure if committing what is admittedly a hack to the rest of the tutorial code was a better choice than waiting for Orc to take a shape, and to see if we can't revamp the tutorial presentation to use the new APIs. Furthermore, the "workaround" really needs to be weaved into the tutorial text, to explain to the reader what this gob of code is even doing there. I've dropped the ball on chasing this up. I can't commit to fixing this myself, sorry. I've lost track of the Orc progress. - Charlie.
David Blaikie
2015-Apr-21 16:16 UTC
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
On Tue, Apr 21, 2015 at 7:26 AM, Per Mildner <Per.Mildner at sics.se> wrote:> Charlie Turner <charlesturner7c5 <at> gmail.com> writes: > > > I was planning on committing these changes with the corresponding > > changes to the Kaleidoscope tutorial walk-through. Might be a bit of a > > surprise to have no explanation of what MCJITHelper and friends is > > doing. > > > > I'll try and make time to prepare some patches along these lines, as > > well as updating future chapters with the same fix. > > > > Thanks for taking a look :) > > > Any progress on fixing the tutorial? > > I am about to dive into LLVM and after some hair-pulling found that the > Kaleidoscope tutorials (from part 5 onwards), are broken. > > Obviously this is not a good first impression. > > (even a note in the source code, #error "currently does not work", would be > a huge improvement, since it would avoid a lot of wasted time for the > beginner.) > > PS. On OS X 10.8.5, the compile command for part 4 of the tutorial needs > -fno-rtti, presumably because the code now inherits from a LLVM class. >Lang - recall what the state is here?> > Regards, > > Per Mildner > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150421/e3176640/attachment.html>