vote up 0 vote down star
1

I know that converting a pointer to one int is unsafe, because the pointer can be bigger than the int in some architectures (for instance in x86_64).

But what about converting the pointer to several ints, an array of them? If the pointer size is 2 times bigger than int then convert pointer* to int[2].

The number of needed ints then is ceil(sizeof(pointer*)/sizeof(int)).

I need to do this because there is a function which takes ints as arguments and I want to pass a pointer to it.

flag

2  
Can you provide some sample code on why you need to do this? – Naveen Aug 17 at 11:24
man 3 makecontext <== this is the function I'm trying to call, it takes a series of integer (int) arguments which is stupid since most people want to pass pointers to it. – Helltone Aug 17 at 11:32
I think it's possible. Sketch of proof: It's possible to represent the pointer as a char[] && each char can be represented by an int, so a char[N] can be stored as an int[N]. Due to trap bits in integers, I don't think you can portably guarantee the ceil(sizeof(void*)/sizeof(int)) part. – MSalters Aug 17 at 13:53
What is a trap bit? – Helltone Aug 17 at 14:45
Trap bits are bits in an integer that should have specific values, and which cause Undefined Behavior if you cause them to have other values - e.g. by union abuse. The most common case were chips that merged floating-point and integer math; integers just had the exponent fixed at 0. – MSalters Aug 18 at 8:03

9 Answers

vote up -1 vote down

Why do you want to do this? Surely there has to be a better way. Please provide more detail.

link|flag
7  
Shouldn't this be a comment? – Neil Butterworth Aug 17 at 11:26
vote up -1 vote down

if a function takes an array of ints, then yes you can manually detect the size of void* versus the size of int on your machine and save your pointer to array[0] + array[1], etc.

It's a bit hard to tell what's really needed from your description. What will the function do? Will you have to handle big/little-endian difference, for example?

link|flag
vote up -1 vote down

I have macros for this:

#define DIM_ARR(arr) (sizeof(arr) / sizeof(arr[0]))

Even if array is empty - this construction (sizeof(arr[0])) resolved on compile time - that is why you will get correct size

link|flag
vote up 0 vote down

I can't think of a reason to do it like that, but thats up to you :).

Usually you should not do that in a generic way, so what I'd do is, coding the 2 or 3 ways the pointer has to be transformed.


if( sizeof(pointer) == sizeof(int16) ) //or short
{
    transformShortToInt(pointer);
}
else if( sizeof(pointer) == sizeof(Int32) )
{
    (int)pointer;
}
else if( sizeof(pointer) == sizeof(Int64) )
{
   int[2] ar = new int[2];
   ar[0] = (int)(pointer & 0x0000FFFF);
   ar[1] = (int)((pointer>>32) & 0x0000FFFF);
}

Although the generic code would also not be that complex.

edit: generic:

int arSize = sizeof(pointer)/sizeof(int);
if(arSize < 1) 
{
    arSize = 1;
}

int[] args = new int[arSize];

for( int i = 0; i < arSize; i++ )
{
  args[i] = (int)((pointer>>(i*32))&0x0000FFFF);
}

although I did not test what happens with pointer >> 0 i guess it should work :).

link|flag
Thanks, that's what I want to do. Anyone know of a generic version of this code? – Helltone Aug 17 at 11:37
now with generic also. edited. – StampedeXV Aug 17 at 11:41
hm. Large part of the edit is missing. repost as new answer. – StampedeXV Aug 17 at 11:43
vote up -1 vote down

you said you want to pass a pointer to a function with int as arguments.
If your pointer points to an integer or character or float you can always dereference it, caste it and pass by value.
Or, if you really want to pass by address, then modify the function definition to take pointer as argument.

Or, if you are using some library function then you are on the wrong way man.

And even you convert it to an array of ints, how are going to pass the array?, array are always passed by address.

link|flag
vote up 0 vote down

Doesn't your platform provide a intptr_t ?

link|flag
1  
Why the down vote? It's an appropriate question. If his compiler platform provides the intptr_t his question is moot. Otherwise the other responses he got are OK. – tristopia Aug 17 at 12:17
Yes I have intptr_t. – Helltone Aug 17 at 12:29
1  
So, if your platform has it, then you do not need to split your pointers on ints. The standard guarantees that it can hold a void *. That's what the standard says: 7.18.1.4 Integer types capable of holding object pointers 1 The following type designates a signed integer type with the property that any valid pointer to void can be converted to this type, then converted back to pointer to void, and the result will compare equal to the original pointer: intptr_t These types are optional. – tristopia Aug 17 at 13:14
Good answer, but not portable. And I understand portability is part of the issue. – Gorpik Aug 18 at 8:18
vote up 1 vote down

What about something like this:

void *pointer = (void*) 0x0123456789ABCDEFULL;

// 4 int's max, I don't know how to do it in a generic way
assert(sizeof(pointer) <= 4*sizeof(int));

int buffer[4]; // copy from pointer to buffer
memcpy(buffer, &pointer, sizeof(pointer));

// call the function
f(buffer[0], buffer[1], buffer[2], buffer[3]);

// how to recover the value of the pointer
void f(int b0, int b1, int b2, int b3) {
   int buffer[4] = {b0, b1, b2, b3};
   void *pointer; // copy from buffer to pointer
   memcpy(&pointer, buffer, sizeof(test_pointer));
}
link|flag
vote up 1 vote down

Fairly robust & portable:

void* p = foo();
std::vector<int> buf(sizeof(p));
std::copy(reinterpret_cast<char*>(&p),
          reinterpret_cast<char*>(&p) + sizeof(p),
          buf.begin());
link|flag
Can you explain what it does? lol – Helltone Aug 17 at 14:29
Please add some comments and explain what it does. – Helltone Aug 17 at 18:24
The reinterpret_cast treats the void* as a char[], typically a char[4] or char[8]. The std::copy copies these to a vector<int> with the same number of elements. The whole process can be reversed by swapping std::copy's source and destination. – MSalters Aug 18 at 8:05
vote up 0 vote down check

Yet another solution:

#define BIG_ENOUGH 4

typedef union {
   int buffer[BIG_ENOUGH];
   pointer_t* pointer;
} proxy_t;

static_assert(sizeof(pointer_t*) <= BIG_ENOUGH*sizeof(int));

// before calling the function

proxy_t proxy;
proxy.pointer = the_pointer;

// call to the function, cannot be generic here
f(proxy.buffer[0], proxy.buffer[1], proxy.buffer[2], proxy.buffer[3]);

// how to recover the value of the pointer
void f(int b0, int b1, int b2, int b3) {

  proxy_t proxy = { { b0, b1, b2, b3 } };

  the_pointer = proxy.pointer;

}
link|flag
This seems to be fairly portable. – Helltone Aug 19 at 12:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.