Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upJit on PC platform? #371
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
minirop
Jun 17, 2016
Contributor
Not to my knowledge. and the language is not mature, so it may be too soon yet for JIT.
|
Not to my knowledge. and the language is not mature, so it may be too soon yet for JIT. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
munificent
Jun 17, 2016
Owner
would a Jit ever be considered?
I'm certainly not opposed to other implementations of Wren that JIT, but it's probably unlikely that the the implementation I maintain will. I don't have the expertise to write and maintain a JIT.
I'm certainly not opposed to other implementations of Wren that JIT, but it's probably unlikely that the the implementation I maintain will. I don't have the expertise to write and maintain a JIT. |
munificent
closed this
Jun 17, 2016
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
feliwir
Feb 11, 2017
Question: I usually use Asmjit when it comes to JIT and I'd gladly try to add that to Wren, but as far as i know Wren should stay C Compliant? Is it maybe possible to add that as optional module?
feliwir
commented
Feb 11, 2017
•
|
Question: I usually use Asmjit when it comes to JIT and I'd gladly try to add that to Wren, but as far as i know Wren should stay C Compliant? Is it maybe possible to add that as optional module? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
kirbyfan64
commented
Feb 11, 2017
|
@feliwir If you want something in C, you could try DynAsm... |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
feliwir
Feb 11, 2017
@refi64 DynAsm requires Lua during the build stage, if this is prefered i can also go that route i guess. But it should be a seperate module or something like this
feliwir
commented
Feb 11, 2017
•
|
@refi64 DynAsm requires Lua during the build stage, if this is prefered i can also go that route i guess. But it should be a seperate module or something like this |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
munificent
Feb 12, 2017
Owner
I'd gladly try to add that to Wren, but as far as i know Wren should stay C Compliant?
Yes, the core Wren implementation is plain and should be plain C. I also think it should avoid the complexity of a JIT. If you'd like to fork Wren and add it there, that would be totally great. I just want to ensure that this implementation of Wren stays pretty simple and hackable.
Yes, the core Wren implementation is plain and should be plain C. I also think it should avoid the complexity of a JIT. If you'd like to fork Wren and add it there, that would be totally great. I just want to ensure that this implementation of Wren stays pretty simple and hackable. |
paulsapps commentedJun 17, 2016
I know a core idea behind this language is that it should be fast without a Jit since native code gen on Consoles/mobile is forbidden. However on Windows/OSX/Linux it is not forbidden.
Are there any forks which implement a Jit - would a Jit ever be considered?