Displaying 2 results from an estimated 2 matches for "seekto".
Did you mean:
sekto
2010 Jul 18
0
[LLVMdev] Tool for run-time code generation?
...tation.
We're processing large amounts of data, so imagine something like a SQL
implementation. In one query I might want to JOIN on an int field. In
another query, I'm JOINing on a pair of fields of type unsigned &
double. For those two queries, I'd generate:
rightChildType_seekTo(rigtChild, left.getIntColumn3());
vs.
rightChildType_seekTo(rightChild, left.getUIntColumn9(),
left.getDoubleColumn23());
Is that possible in LLVM?
Best,
Martin
2010 Jul 17
1
[LLVMdev] Tool for run-time code generation?
Martin C. Martin wrote:
>
>
> On 7/16/2010 10:30 PM, Nick Lewycky wrote:
>> Vlad wrote:
>>
>> Instead, break the chunks of C you would generate into functions and
>> compile those ahead-of-time. At run time you use llvm only (no clang) to
>> generate a series of function calls into those functions.
>
> Compelling. I hadn't considered that.
>
>