vote up 7 vote down star

Are there any downsides to passing structs by value in C, rather than passing a pointer?

If the struct is large, the there is obviously the performancd aspect of copying lots of data, but for a smaller struct, it should basically be the same as passing several values to a function.

It is maybe even more interesting when used as return values. C only has single return values from functions, but you often need several. So a simple solution is to put them in a struct and return that.

Are there any reasons for or against this?

ADDED

Since it might not be obvious to everyone what I'm talking about here, I'll give a simple example.

If you're programming in C, you'll sooner or later start writing functions that look like this:

void examine_data(const char *ptr, size_t len)
{
    ...
}

char *p = ...;
size_t l = ...;
examine_data(p, l);

This isn't a problem. The only issue is that you have to agree with your coworker in which the order the parameters should be so you use the same convention in all functions.

But what happens when you want to return the same kind of information? You typically get something like this:

char *get_data(size_t *len);
{
    ...
    *len = ...datalen...;
    return ...data...;
}
size_t len;
char *p = get_data(&len);

This works fine, but is much more problematic. A return value is a return value, except that in this implementation it isn't. There is no way to tell from the above that the function get_data isn't allowed to look at what len points to. And there is nothing that makes the compiler check that a value is actually returned through that pointer. So next month, when someone else modifies the code without understanding it properly (because he didn't read the documentation?) it gets broken without anyone noticing, or it starts crashing randomly.

So, the solution I propose is the simple struct

struct blob { char *ptr; size_t len; }

The examples can be rewritten like this:

void examine_data(const struct blob)
{
    ... use blob.tr and blob.len ...
}

struct blob = { .ptr = ..., .len = ... };
examine_data(blob);

struct blob get_data(void);
{
    ...
    return (struct blob){ .ptr = ...data..., .len = ...len... };
}
struct blob data = get_data();

For some reason, I think that most people would instinctively make examine_data take a pointer to a struct blob, but I don't see why. It still gets a pointer and an integer, it's just much clearer that they go together. And in the get_data case it is impossible to mess up in the way I described before, since there is no input value for the lenght, and there must be a returned length.

This became a bit long, maybe I should have put it in some kind of comment, but I'm new here.

flag

6 Answers

vote up 13 vote down

For small structs (eg point, rect) passing by value is perfectly acceptable. But, apart from speed, there is one other reason why you should be careful passing/returning large structs by value: Stack space.

A lot of C programming is for embedded systems, where memory is at a premium, and stack sizes may be measured in KB or even Bytes... If you're passing or returning structs by value, copies of those structs will get placed on the stack, potentially causing the situation that this site is named after...

If I see an application that seems to have excessive stack usage, structs passed by value is one of the things I look for first.

link|flag
Great reference to this site! – zooropa Apr 29 at 12:15
vote up 6 vote down

Simple solution will be return an error code as a return value and everything else as a parameter in the function,
This parameter can be a struct of course but don't see any particular advantage passing this by value, just sent a pointer.
Passing structure by value is dangerous, you need to be very careful what are you passing are, remember there is no copy constructor in C, if one of structure parameters is a pointer the pointer value will be copied it might be very confusing and hard to maintain.

Just to complete the answer (full credit to Roddy ) the stack usage is another reason not pass structure by value, believe me debugging stack overflow is real PITA.

Replay to comment:

Passing struct by pointer meaning that some entity has an ownership on this object and have a full knowledge of what and when should be released. Passing struct by value create a hidden references to the internal data of struct (pointers to another structures etc .. ) at this is hard to maintain (possible but why ?) .

link|flag
But passing a pointer isn't more "dangerous" just because you put it in a struct, so I don't buy it. – dkagedal Oct 2 '08 at 11:47
Great point on copying a structure that contains a pointer. This point may not be very obvious. For those who don't know what he is referring to, do a search on deep copy vs shallow copy. – zooropa Apr 29 at 12:21
One of the C function conventions is to have output parameters be listed first before input parameters, e.g. int func(char* out, char *in); – zooropa Apr 29 at 12:29
vote up 5 vote down

I'd say passing (not-too-large) structs by value, both as parameters and as return values, is a perfectly legitimate technique. One has to take care, of course, that the struct is either a POD type, or the copy semantics are well-specified.

Update: Sorry, I had my C++ thinking cap on. I recall a time when it was not legal in C to return a struct from a function, but this has probably changed since then. I would still say it's valid as long as all the compilers you expect to use support the practice.

link|flag
Note that my question was about C, not C++. – dkagedal Oct 2 '08 at 11:30
It's valid to return struct from function just not useful :) – Ilya Oct 2 '08 at 11:45
I like llya's suggestion to use the return as an error code and parameters for returning data from the function. – zooropa Apr 29 at 12:26
vote up 3 vote down

One reason not to do this which has not been mentioned is that this can cause an issue where binary compatibility matters.

Depending on the compiler used, structures can be passed via the stack or registers depending on compiler options/implementation

See: http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html

-fpcc-struct-return

-freg-struct-return

If two compilers disagree, things can blow up. Needless to say the main reasons not to do this are illustrated are stack consumption and performance reasons.

link|flag
This was the kind of answer I was looking for. – dkagedal Oct 3 '08 at 22:13
vote up 2 vote down

I think that your question has summed things up pretty well.

One other advantage of passing structs by value is that memory ownership is explicit. There is no wondering about if the struct is from the heap, and who has the responsibility for freeing it.

link|flag
vote up 2 vote down

One thing people here have forgotten to mention so far (or I overlooked it) is that structs usually have a padding!

struct {
  short a;
  char b;
  short c;
  char d;
}

Every char is 1 byte, every short is 2 bytes. How large is the struct? Nope, it's not 6 bytes. At least not on any more commonly used systems. On most systems it will be 8. The problem is, the alignment is not constant, it's system dependent, so the same struct will have different alignment and different sizes on different systems.

Not only that padding will further eat up your stack, it also adds the insecurity to not be able to predict the padding in advance, unless you know how your system pads and then look at every single struct you have in your app and calculate the size for it. Passing a pointer adds no insecurity. The size of a pointer is known for the system, it is always equal, regardless of what the struct looks like and pointer sizes are always chosen in a way that they are aligned and need no padding.

link|flag
Yea, but the padding exists with no dependency on passing the structure by value or by reference. – Ilya Oct 2 '08 at 13:17
If you had tested your example, you would have found that your example struct is indeed four bytes, so your argument is moot. But it had no relevance for the question anyway. – dkagedal Oct 2 '08 at 14:01
@dkagedal: Which part of "different sizes on different systems" didn't you understand? Just because it is that way on your system, you assume it must be the same for any other one - that's exactly why you should not pass by value. Changed sample so it fails on your system as well. – Mecki Oct 2 '08 at 14:19
@llya: Yeah, but padding consumes stack space for what? Right, nothing. And without knowing the padding for any single struct, there is no way to predict how much stack space a call to you function "costs", while it is absolutely clear when you pass a pointer. – Mecki Oct 2 '08 at 14:22
I think Mecki's comments about struct padding are relevant especially for embedded systems where stack size may be an issue. – zooropa Apr 29 at 12:55

Your Answer

Get an OpenID
or

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