K
kwikius
Does anyone know what a C99 dynamic array is, and if it will be
useable in C++?
regards
Andy Little
useable in C++?
regards
Andy Little
Does anyone know what a C99 dynamic array is,
and if it will be
useable in C++?
kwikius said:Does anyone know what a C99 dynamic array is
, and if it will be useable in C++?
kwikius said:Does anyone know what a C99 dynamic array is
A variable-length array, i.e. an array whose size can be set by a
run-time variable.
<C>
#include <stdlib.h>
void f(size_t z) {
typedef enum some_t { some_value } some_type;
some_type a[5] = { some_value }; // always ok
// some_type b[z] = { some_value }; // always illegal
some_type c[z]; // ok in c99 only}
</C>
The std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage.
kwikius said:A variable-length array, i.e. an array whose size can be set by akwikius said:Does anyone know what a C99 dynamic array is
run-time variable.
<C>
#include <stdlib.h>
void f(size_t z) {
typedef enum some_t { some_value } some_type;
some_type a[5] = { some_value }; // always ok
// some_type b[z] = { some_value }; // always illegal
some_type c[z]; // ok in c99 only}
</C>
The std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage.
Ah ha yes, but does the dynamic array actually just look like a
std::vector underneath (use heap allocation) or is there some other
magic.
Its a sort of holy grail isnt it, that you can create a dynamically
sized array without the heap, so if C99 dynamic array does use another
method to allocate, would be interesting.
(my guess is that it woud have same performance as std::vector. There
is no "magic")
I believe VLAs use the stack, just like traditional arrays.
kwikius said:kwikius wrote:
Does anyone know what a C99 dynamic array is
A variable-length array, i.e. an array whose size can be set by a
run-time variable.
<C>
#include <stdlib.h>
void f(size_t z) {
typedef enum some_t { some_value } some_type;
some_type a[5] = { some_value }; // always ok
// some_type b[z] = { some_value }; // always illegal
some_type c[z]; // ok in c99 only}
</C>
The std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage.
Ah ha yes, but does the dynamic array actually just look like a
std::vector underneath (use heap allocation) or is there some other
magic.
Its a sort of holy grail isnt it, that you can create a dynamically
sized array without the heap, so if C99 dynamic array does use another
method to allocate, would be interesting.
(my guess is that it woud have same performance as std::vector. There
is no "magic")
I believe VLAs use the stack, just like traditional arrays. The "magic"
is that the compiler doesn't know a priori how big the function's stack
frame will be; in fact, multiple invocations of the same function might
need frames of different sizes. It would be interesting to know what
kinds of complications this creates for compiler implementers, and how
those problems have been worked around.
Erik said:I believe VLAs use the stack, just like traditional arrays. The "magic"kwikius said:kwikius wrote:
Does anyone know what a C99 dynamic array is
A variable-length array, i.e. an array whose size can be set by a
run-time variable.
<C>
#include <stdlib.h>
void f(size_t z) {
typedef enum some_t { some_value } some_type;
some_type a[5] = { some_value }; // always ok
// some_type b[z] = { some_value }; // always illegal
some_type c[z]; // ok in c99 only}
</C>
<...>
The std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage.
Ah ha yes, but does the dynamic array actually just look like a
std::vector underneath (use heap allocation) or is there some other
magic.
Its a sort of holy grail isnt it, that you can create a dynamically
sized array without the heap, so if C99 dynamic array does use another
method to allocate, would be interesting.
(my guess is that it woud have same performance as std::vector. There
is no "magic")
is that the compiler doesn't know a priori how big the function's stack
frame will be; in fact, multiple invocations of the same function might
need frames of different sizes. It would be interesting to know what
kinds of complications this creates for compiler implementers, and how
those problems have been worked around.
There should be little trouble to create the actual frame, nor to use
VLAs, you just have to remember the size of each VLA and use it to
calculate the offsets. Which means that some operations (probably all
that accesses elements in an VLA) will require one or more additional
computations to calculate the offset from the stack-pointer.
Pete said:They're not required to.
<C>
#include <stdlib.h>
void f(size_t z) {
some_type c[z]; // ok in c99 only}
There is also one potentially crippling problem with VLAs: no indicationkwikius said:<C>
#include <stdlib.h>
void f(size_t z) {
some_type c[z]; // ok in c99 only}
Ah I think I get it. As far as the array is concerned z is a constant,
so it cant resize after its created. Thats quite neat, if you can grab
an arbitrary amount of space on the stack in a function.
As observed later, it then raises questions about how this affects
optimisations, as you have a runtime constant.
some_type c[z]; // ok in c99 only}Ah I think I get it. As far as the array is concerned z is a constant,
so it cant resize after its created. Thats quite neat, if you can grab
an arbitrary amount of space on the stack in a function.As observed later, it then raises questions about how this affects
optimisations, as you have a runtime constant.
There is also one potentially crippling problem with VLAs: no indication
of failure. You can bugger your stack without realising.
Another complication is the incompatibility with C caused by the
different interpretation of const,
void f() {
const size_t s = 42;
int bla;
}
requires a VLA in C, but not in C++.
There is also one potentially crippling problem with VLAs:kwikius said:On Feb 13, 4:52 am, Jeff Schwab <[email protected]>
wrote:
<C>
#include <stdlib.h>
void f(size_t z) {
<..>
some_type c[z]; // ok in c99 only}
Ah I think I get it. As far as the array is concerned z is
a constant, so it cant resize after its created. Thats
quite neat, if you can grab an arbitrary amount of space
on the stack in a function.
As observed later, it then raises questions about how this
affects optimisations, as you have a runtime constant.
no indication of failure. You can bugger your stack without
realising.
Another complication is the incompatibility with C caused by
the different interpretation of const,
void f() {
const size_t s = 42;
int bla;
}
requires a VLA in C, but not in C++.
My current opinion is:
Looks cool but only on paper. Essentially its a local optimisation,
but in practise gives the optimiser one more extremely heavyweight
variable to deal with, the stack pointer, and so probably causes major
problems in wider optimisations, such as inlining. OTOH I don't know
much about optimisation, but they do seem to run a mile from runtime
constants and especially pointers which this looks likely to create in
abundance.
So in practise I would guess most implementations would end up using
the heap to solve this, unless they are specifically not allowed to,
which apparently isnt the case.
True, but I was drawing a comparison with the idiomatic C++ solutionJames said:You can do that very well without VLA's as well. Stack overflow
is undefined behavior in both C and C++.
Not AFAIK, although C++0x will incorporate some features of C99. The
std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage. Chances are excellent
that whatever you're doing, std::vector is a better choice than a raw array.
Jerry said:[ ... ]
Not AFAIK, although C++0x will incorporate some features of C99. The
std::vector is preferable in most respects, anyway. The down-side of
vector is that it uses dynamic storage, which may incur more performance
overhead than automatic (stack-based) storage. Chances are excellent
that whatever you're doing, std::vector is a better choice than a raw array.
C++ 0x also includes std::array, which is really much closer to a VLA --
i.e. the size is constant once it's created. The only major difference
that occurs to me offhand is that std::array has explicit support for
zero-sized arrays, whereas C99 requires the size of a VLA to be greater
than zero.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.