How to access array of flexible arrays in cache friendly manner?

两盒软妹~` 提交于 2019-12-23 19:05:38

问题


I have records with flexible array member

typedef struct record {
    unsigned foo;
    signed bar;
    double number[];
} record;

I have multiple records with the same amount of numbers so I can arrange them in array. I would like to allocate them into one continuous memory space.

const unsigned numbers = ...;
const unsigned records = ...;
const size_t record_size = sizeof(record) + numbers*sizeof(double);
record *prec = malloc(records*record_size);

So now I know record_size and I can access it but what is best practice how to do it correctly and safely by given record index?

I can do it when I would separate header containing foo and bar and numbers, but I would like to keep record together for cache coherency.


回答1:


Since only you know the actual layout, the C compiler can't help you. Thus, you must do the address-calculation yourself. It will require some casts to do the pointer-arithmetic at byte level:

record * get_record(record *base, size_t numbers, size_t index)
{
  return (record *) ((unsigned char *) base +
                    index * (sizeof *base + numbers * sizeof *base->number));
}

Given the above (and your code); you can access the array like so:

record *first = get_record(base, numbers, 0);
first->foo = 4711;
record *second = get_record(base, numbers, 1);
second->foo = 17;

One obvious drawback is that you're going to have to keep the numbers value around. This can be improved by modelling the entire array with an explicit "base" structure, that holds the size of each element and the base pointer. Of course it can be co-allocated with the elements themselves to keep it all together and reduce the distances of the involved pointers.

Also, please don't cast the return value of malloc() in C.



来源:https://stackoverflow.com/questions/28718198/how-to-access-array-of-flexible-arrays-in-cache-friendly-manner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!