Tom Short
Tom Short
This is more of an inquiry. Is it possible to customize language-gfm locally to add languages used with fenced code blocks? I see the code here: https://github.com/leipert/language-pfm/blob/dist/grammars/pfm.cson#L1444 I'd like to...
It'd be nice to override methods and functions. For example, I've been adding functionality over the last week, but it's running less code, because I'm pushing deeper into call trees....
Here are known things that need work: - [x] Rename functions to support multiple dispatch - [x] Support recursion - [ ] Support global variables - [ ] Support Union...
New branch started at: https://github.com/tshort/ExportWebAssembly.jl/tree/rework This is a trial to see if some of the earlier limitations can be removed. Some results are promising: * `ccall` and `cglobal`--Raw addresses are...
During code generation, Julia inserts calls to `jl_get_ptls_states`. These are for handling threading. During optimization, Julia has an LLVM pass that turns this into an assembly-language incantation. We don't want...
For some functions, `export_bitcode` fails with a stack overflow. Here is an example. If the same function call is run again, it seems to work fine. It looks like codegen...
This looks like the most challenging issue. Right now, Julia converts a `ccall` directly to a call to a memory address during code generation. I think this will require a...
I was intrigued by the use of `ht_keyindex`, so I compared timings of `freqtable` to some new DataFrames code I'm experimenting with (see https://github.com/JuliaStats/DataFrames.jl/issues/894). Feel free to close this issue;...
Should we leave room for metadata on structures? Frank Harrell's Hmisc package allows units and labels to be attached to data.frame columns. People may want to attach other metadata like...