Displaying 1 result from an estimated 1 matches for "ptr_float".
Did you mean:
bptc_float
2013 Oct 23
1
[LLVMdev] JIT functions' signature known only at runtime
...returned
by the JIT execution engine. The only circumstance that makes this case
a little problematic is that the function's signature is only available as
runtime state. More precisely the arguments to be passed are only
available as a vector of, e.g.,
union Types {
void *ptr;
float *ptr_float;
double *ptr_double;
float fl;
int in;
double db;
bool bl;
};
std::vector<std::pair<int,Types> > arguments;
where the first element of the pair would clearly identify of which type
the argument is.
I thought that I might not be the first having this problem and...