ptizoom has asked for the wisdom of the Perl Monks concerning the following question:
in perl sub add_idle_callback($$) { printf("\nadd_idle_callback x%x , x%x \n", @_); &idle_callback_run(@_); # calls }
in .swg %typemap(in) void (* cb)(void *) { $1 = INT2PTR($1_ltype, SvUV($input)); printf(":: x%x to x%x\n", (unsigned long long)SvUV($input), $1); if(SvGMAGICAL($input)) mg_get($input); $1 = DPTR2FPTR($1_ltype, SvUV($input)); printf("::DPTR2FPTR x%x to x%x\n", SvIV($input), $1); }
log ... add_idle_callback x7ffb339f8040 , x0 <==== here in perl the pointer + to function is 64bits ... <=========== but then swig- SvUV() or SvIV() cast it to 32 bits :: x339f8040 to x339f8040 ::DPTR2FPTR x339f8040 to x339f8040 ....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: why SvUV() would crop to 32 bits?
by Anonymous Monk on Jan 03, 2015 at 21:13 UTC | |
by dave_the_m (Monsignor) on Jan 03, 2015 at 21:28 UTC | |
by ptizoom (Scribe) on Jan 04, 2015 at 10:42 UTC | |
by ikegami (Patriarch) on Jan 05, 2015 at 15:05 UTC |