What is the advantage of zeroing out memory (i.e. calloc over malloc)? Won't you change the value to something else anyways?
-Chris
|
What is the advantage of zeroing out memory (i.e. calloc over malloc)? Won't you change the value to something else anyways? -Chris
| |||
|
feedback
|
|
There are two camps: one says that initializing variables when they are declared helps find bugs. The people in this camp make sure everything they declare is initialized. They initialize pointers to The other camp says that initializing variables at declaration makes things harder to debug, because now a compiler can't warn you about variables "used without being set". Without telling you my personal preference1: if you belong to the first camp, you would want to Now there are two exceptions:
1 You can see my answers to many of the questions here on SO to see which camp I belong to :-). | |||||||||||||||
feedback
|
In a realtime process control system I worked on long ago, we settled on having the power-on logic initialize all of RAM to 0xCC, the 8086's I don't recall if we ever found a runaway program, but the values corresponding to 0xCC in various values: 52,428 (unsigned 16 bit), -19,660 (signed 16 bits), -107374176 (32-bit float), and -9.25596313493e+61 (64-bit float) popped up in a lot of unexpected places. Also, some code expecting characters to be 7 bit ASCII—that is, a bug—alerted us to its presence when it tried to process 0xCC. | |||||||||||||||
feedback
|
|
Assume you want to write a counting sort implementation, or depth first search a graph and keep track of visited vertices. You'll update your memory as the algorithm runs (rather than assigning a value just once). You need to initialize it to zero at the beginning. If you didn't have | |||||||||||
feedback
|
|
It's good to know that whatever you're allocating is initialized to zero. Many bugs have come about from code that uses uninitialized memory. Plus, some default values in structs / classes might be fine as zero so you don't need to change all values after the malloc. For instance, allocate a struct that has some pointers in it w/ malloc. NULL checks aren't always going to work unless they are set to NULL. If you calloc, you don't have to do the extra initialization steps for pointer values. | |||
feedback
|
|
In addition to the benefits of initializing variables calloc also helps track down bugs. If you accidently use a bit of the allocated memory without properly initializing it the application will always fail the same way. For example with a access violation from a null pointer. With malloc the memory has random values and this can cause the program to fail in random ways. Random failures are very hard to track down and calloc helps avoid those. | |||
|
feedback
|
|
No one has touched on the aspect of performance so I guess I'll have to. If you need to write a very fast program malloc with a "just in case" integrated memset is not a good way to go. It doesn't matter how fast the memset is, it will always be too slow. Sometimes you must initialize a vector or an array so the real issue is having control of your clock cycles (i e not wasting them). I heard a quote once "you should never give up performance accidentally" which means that from a performance standpoint you must always know why you have chosen to implement code in one way or another (what the pros and cons are and how they are weighed against each other in the specific case). If you have a buffer that will be filled with a string it might be "nice to have" to initialize it before the string is filled in but most will agree it's a complete waste of clock cycles. If you're writing a new str* function you might want to - for debugging purposes - fill the buffer with a value that typically shouldn't appear but this will have been removed come distribution time. As others have mentioned the compiler will warn if an uninitialized variable is being accessed so as I see it the bottom line is that there really is no excuse for initializing "just in case." | |||
|
feedback
|
|
First of all you cannot calloc pointers, at least not if you want to follow standard C. Second, bugs just becoming masked when you clobber the member with all zeros. It is much better practice to have a debug version of malloc that initialises the memory to something that will always crash, such as 0xCDCDCDCD. Then when you see an Access voilation you know the problem straight away. It is also beneficial to have debug free function that will whip thje memory with a different pattern so those who touch the memory after it is freed get an unexpected surprise. Working on an embedded system, callocing just to "be sure" is usually not an option. You typically allocate and populate in one go so calloc just mens you are double touching memory. | |||
|
feedback
|