Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the memory layout of a vector of arrays?

Tags:

arrays

rust

Are variables of type Vec<[f3; 5]> stored as one contiguous array (of Vec::len() * 5 * sizeof(f32) bytes) or is it stored as a Vec of pointers?

like image 583
user72961 Avatar asked Jul 13 '15 01:07

user72961


1 Answers

The contents of a Vec<T> is, regardless of T, a single heap allocation, of self.capacity() * std::mem::size_of::<T>() bytes. (Vec overallocates—that’s the whole point of Vec<T> instead of Box<[T]>—so it’s the capacity, not the length, that matter in this calculation.) The actual Vec<T> itself takes three words (24 bytes on a 64-bit machine).

[f32; 5] is just a chunk of memory containing five 32-bit floating-point numbers, with no indirection; this comes to twenty bytes (hence std::mem::size_of::<[f32; 5]>() == 20).

like image 133
Chris Morgan Avatar answered Oct 19 '22 08:10

Chris Morgan