I just wonder if there is some overhead of using variable-length arrays? Can the size of array could be passed via command line argument at run time? Why is it introduced, compared to automatic and dynamically allocating an array?
Thanks!
|
I just wonder if there is some overhead of using variable-length arrays? Can the size of array could be passed via command line argument at run time? Why is it introduced, compared to automatic and dynamically allocating an array? Thanks!
| |||
|
feedback
|
|
VLA does have some overhead (compared to "ordinary" named compile-time-sized array). Firstly, it has run-time length and yet the language provides you with means to obtain the actual size of the array at run-time (using Secondly, VLA is normally allocated on stack, but because of its variable size, in general case its exact location in memory is not known at compile time. For this reason the underlying implementation usually has to implement it as a pointer to a memory block. This introduces some additional memory overhead (for the pointer), which is again completely insignificant for the reasons described above. This also introduces slight performance overhead, since we have to read the pointer value in order to find the actual array. This is the same overhead you get when accessing Since the size of the VLA is a run-time integer value, it can, of course, be passed as a command-line argument. VLA doesn't care where its size comes from. VLA were introduced as variable-sized arrays with low allocation-deallocation cost. They fit between "ordinary" named compile-time-sized arrays (which have virtually zero allocation-deallocation cost, but fixed size) and VLA obey the same lifetime rules as automatic objects, which means that in general case they can't replace | ||||
feedback
|
|
There is some run-time overhead with variable-length arrays, but you would have to be working fairly hard to measure it. Note that The size of the array can be passed to a function at run-time. If you choose to take the size from a command line argument and convert that into an integer and pass that to the function at run-time, so be it -- it will work. Variable-length arrays are used because the variables are automatically allocated to the correct size and automatically freed on exit from the function. This avoids over-allocating space (allocating enough space for the maximum possible size when you mostly work with minimal sizes), and avoids problems with memory clean up. Additionally, with multi-dimensional arrays, AFAIK it behaves more like Fortran - you can dynamically configure all the dimensions, rather than being stuck with fixed sizes for all but the leading dimension of the array. Concrete evidence of some run-time overhead for VLA - at least with GCC 4.4.2 on SPARC (Solaris 10). Consider the two files below: vla.c - using a variable-length array
fla.c - using a fixed-length array
Compilation and object file sizesFor comparison purposes, the names of the local array are different ( I compiled using:
The object file sizes are somewhat different - as measured both by 'ls' and by 'size':
I've not done extensive testing to see how much of the overhead is fixed and how much is variable, but there is overhead in using a VLA. | |||||||
feedback
|
Nope
Yes.
Automatic allocated only allows a fixed size known at compile time. Dynamically allocating ( VLA works by placing the array in the stack. This makes allocation and access extremely fast, but the stack is usually small (of a few KB), and when the VLA overflowed the stack, it's indistinguishable from an infinite recursion. | |||||||||
feedback
|
|
There should be very little overhead for VLAs (At most it should result in an addition to the stack pointer). Dynamic allocation requires manual memory management and is slower than stack-based allocation of a VLA, and "automatic" declaration of an array requires a compile-time expression for the array size. However, keep in mind that if a stack overflow occurs, it will cause undefined behavior, so keep VLAs relatively small. You could pass the size of an array via a command-line argument, but you would have to write the code to handle that yourself. | |||
|
feedback
|