Tagged Questions
Reservation of a chunk of memory on heap or on stack. Stack memory allocations are usually hidden in high-level languages while heap allocations should be performed explicitly but can be freed (unallocated) either explicitly or implicitly by means of memory/garbage collector.
210
votes
14answers
11k views
In C++, why should `new` be used as little as possible?
I stumbled upon the Stack Overflow question Memory leak with std::string when using std::list?. One of the first posters says:
Stop using new so much. I can't see
any reason you used new ...
45
votes
5answers
1k views
Does dynamic memory allocation differ in C and C++ in popular implementations?
As far as the respective language standards go, C offers dynamic memory allocation only through the malloc() family, while in C++ the most common form of allocation is performed by ::operator new(). ...
44
votes
4answers
6k views
C++ new int[0] — will it allocate memory?
A simple test app:
cout << new int[0] << endl;
outputs:
0x876c0b8
So it looks like it works. What does the standard say about this? Is it always legal to "allocate" empty block of ...
37
votes
10answers
1k views
Why are stack overflows still a problem?
This question is mystifying me for years and considering this site's name, this is the place to ask.
Why do we, programmers, still have this StackOverflow problem?
Why in every major language does ...
29
votes
5answers
836 views
Why do I need std::get_temporary_buffer?
For what purpose I should use std::get_temporary_buffer? Standard says the following:
Obtains a pointer to storage sufficient to store up to n adjacent T objects.
I thought that the buffer will ...
29
votes
11answers
715 views
How does it know where my value is in memory?
When I write a program and tell it int c=5, it puts the value 5 into a little bit of it's memory, but how does it remember which one? The only way I could think of would be to have another bit of ...
26
votes
1answer
1k views
Memory footprint of Haskell data types
How to find the actual amount of memory required to store a value of some data type in Haskell (mostly with GHC)? Is it possible to evaluate it in runtime (e.g. in GHCi) or is it possible to estimate ...
22
votes
4answers
357 views
Array placement-new requires unspecified overhead in the buffer?
5.3.4 [expr.new] of the C++11 Feb draft gives the example:
new(2,f) T[5] results in a call of operator new[](sizeof(T)*5+y,2,f).
Here, x and y are non-negative unspecified values ...
22
votes
5answers
556 views
At what moment is memory typically allocated for local variables in C++?
I'm debugging a rather weird stack overflow supposedly caused by allocating too large variables on stack and I'd like to clarify the following.
Suppose I have the following function:
void function()
...
22
votes
4answers
656 views
std::string with no free store memory allocation
I have a question very similar to
How do I allocate a std::string on the stack using glibc's string implementation?
but I think it's worth asking again.
I want an std::string with local ...
22
votes
8answers
2k views
Can memory be cleaned up?
I am working in Delphi 5 (with FastMM installed) on a Win32 project, and have recently been trying to drastically reduce the memory usage in this application. So far, I have cut the usage nearly in ...
22
votes
7answers
5k views
Compelling examples of custom C++ STL allocators?
What are some really good reasons to ditch the standard STL allocators for a custom solution? Have you run across any situations where it was absolutely necessary for correctness, performance, ...
18
votes
7answers
410 views
Burst memory usage in Java
I am trying to get a handle on proper memory usage and garbage collection in Java. I'm not a novice programmer by any means, but it always seems to me that once Java touches some memory, it will never ...
18
votes
10answers
53k views
How can I create a dynamically sized array of structs?
I know how to create an array of structs but with a predefined size. However is there a way to create a dynamic array of structs such that the array could get bigger?
For example:
typedef struct
...
17
votes
4answers
349 views
Why can't the runtime environment decide to apply delete or delete[] instead of the programmer?
I've read that the delete[] operator is needed because the runtime environment does not keep information about if the allocated block is an array of objects that require destructor calls or not, but ...
17
votes
8answers
563 views
How Are C Arrays Represented In Memory?
I believe I understand how normal variables and pointers are represented in memory if you are using C.
For example, it's easy to understand that a pointer Ptr will have an address, and its value ...
17
votes
4answers
9k views
How to give more memory to IntelliJ Idea 9
I am using IntelliJ IDEA 9.
In the IDEA window On the bottom right corner I see the current memory usage, typically "224M of 254M" How do I give more memory to Idea so it may read like "224M of 512M" ...
17
votes
10answers
1k views
At what point is it worth reusing arrays in Java?
How big does a buffer need to be in Java before it's worth reusing?
Or, put another way: I can repeatedly allocate, use, and discard byte[] objects OR run a pool to keep and reuse them. I might ...
16
votes
11answers
925 views
Is it better to allocate memory in the power of two?
When we use malloc() to allocate memory, should we give the size which is in power of two? Or we just give the exact size that we need?
Like
//char *ptr= malloc( 200 );
char *ptr= malloc( 256 ...
16
votes
7answers
472 views
Static variables within functions in C++ - allocated even if function doesn't run?
I've been reading up on C++ on the Internet, and here's one thing that I haven't been quite able to find an answer to.
I know that static variables used within functions are akin to globals, and that ...
15
votes
1answer
282 views
Dynamic memory allocation - default-initialization of primitive types in c++
If I allocate an array of some primitive type e.g.
double *v = new double[10];
I need to know, what the inital value of the array entries will be.
Is it specified in the standard or compiler ...
15
votes
5answers
658 views
Is memory allocation in linux non-blocking?
I am curious to know if the allocating memory using a default new operator is a non-blocking operation.
e.g.
struct Node {
int a,b;
};
...
Node foo = new Node();
If multiple threads tried ...
15
votes
17answers
2k views
C : Why do you specify the size when using malloc?
Take the following code :
int *p = malloc(2 * sizeof *p);
p[0] = 10; //Using the two spaces I
p[1] = 20; //allocated with malloc before.
p[2] = 30; //Using another space that I didn't allocate ...
15
votes
8answers
5k views
Global memory management in C++ in stack or heap?
If I declare a data structure globally in a C++ application , does it consume stack memory or heap memory ?
For eg
struct AAA
{
.../.../.
../../..
}arr[59652323];
14
votes
4answers
4k views
Java Runtime.getRuntime().exec() alternatives
I have a collection of webapps that are running under tomcat. Tomcat is configured to have as much as 2 GB of memory using the -Xmx argument.
Many of the webapps need to perform a task that ends up ...
14
votes
5answers
944 views
C#. Struct design. Why 16 byte is recommended size?
I read Cwalina book (recommendations on development and design of .NET apps).
He says that good designed struct has to be less than 16 bytes in size (for performance purpose).
My questions is - why ...
14
votes
8answers
2k views
When you exit a C application, is the malloc-ed memory automatically freed?
Let's say I have the following C code:
int main () {
int *p = malloc(10 * sizeof *p);
*p = 42;
return 0; //Exiting without freeing the allocated memory
}
When I compile and execute that C ...
14
votes
5answers
1k views
Linux optimistic malloc: will new always throw when out of memory?
I have been reading about out of memory conditions on Linux, and the following paragraph from the man pages got me thinking:
By default, Linux follows an optimistic memory allocation strategy. ...
14
votes
2answers
6k views
Maximum Memory a .NET process can allocate
What is the maximum memory the garbage collector can allocate for a .NET process? When i compile to x64, Process.GetCurrentProcess.MaxWorkingSet returns about 1,4GB, but when i compile to AnyCPU (x64) ...
13
votes
1answer
274 views
A “killer adversary” for memory allocators?
After reading this question about seemingly degenerate behavior for the Windows memory allocator, and remembering back to this paper about constructing worst-case inputs to quicksort implementations, ...
13
votes
3answers
267 views
new[] doesn't decrease available memory until populated
This is in C++ on CentOS 64bit using G++ 4.1.2.
We're writing a test application to load up the memory usage on a system by n Gigabytes. The idea being that the overall system load gets monitored ...
13
votes
4answers
2k views
Which memory allocation algorithm suits best for performance and time critical c++ applications?
I ask this question to determine which memory allocation algorithm gives better results with performance critical applications, like game engines, or embedded applications. Results are actually ...
13
votes
3answers
623 views
C++: allocate block of T without calling constructor
I don't want constructor called. I am using placement new.
I just want to allocate a block of T.
My standard approach is:
T* data = malloc(sizeof(T) * num);
however, I don't know if (data+i) is ...
13
votes
5answers
7k views
Perl memory usage profiling and leak detection?
I wrote a persistent network service in Perl that runs on Linux.
Unfortunately, as it runs, its Resident Stack Size (RSS) just grows, and grows, and grows, slowly but surely.
This is despite ...
12
votes
3answers
435 views
Why is the return value of malloc(0) implementation-defined?
ISO/IEC 9899:TC2 (i.e. the C99 standard), ยง7.20.3 states:
If the size of the space requested is zero, the behavior is implementation-defined:
either a null pointer is returned, or the behavior ...
12
votes
10answers
467 views
Memory Allocation Problem
This question was asked in the written round of a job interview:
#include<alloc.h>
#define MAXROW 3
#define MAXCOL 4
main()
{
int (*p)[MAXCOL];
p = (int (*)[MAXCOL]) ...
12
votes
4answers
460 views
why call operator new explicitly
I saw code like this:
void *NewElts = operator new(NewCapacityInBytes);
And matching call explicitly operator delete is used consequent later.
Why do this instead of:
void *NewElts = new ...
12
votes
5answers
394 views
What's the purpose of having a separate “operator new[]”?
Looks like operator new and operator new[] have exactly the same signature:
void* operator new( size_t size );
void* operator new[]( size_t size );
and do exactly the same: either return a pointer ...
11
votes
1answer
162 views
size of double and float objects in a list are equal?
I am wondering if the size of float and double objects are equal from std::list point of view?
I've allocated 5-million Real(alias float or double) objects in a std::list and used Valgrind to monitor ...
11
votes
2answers
330 views
What happens to malloc'ed memory after exec() changes the program image?
I know that when I call one of the exec() system calls in Linux that it will replace the currently running process with a new image. So when I fork a new process and run exec(), the child will be ...
11
votes
9answers
3k views
C++ string memory management
Last week I wrote a few lines of code in C# to fire up a large text file (300,000 lines) into a Dictionary. It took ten minutes to write and it executed in less than a second.
Now I'm converting ...
10
votes
5answers
275 views
C# - Is it possible to pool boxes?
Boxing converts a value type to an object type. Or as MSDN puts it, boxing is an "operation to wrap the struct inside a reference type object on the managed heap."
But if you try to drill into that ...
10
votes
3answers
311 views
Is object creation a bottleneck in Java in multithreaded environment?
Based on the understanding from the following:
Where is allocated variable reference, in stack or in the heap ?
I was wondering since all the objects are created on the common heap. If multiple ...
10
votes
3answers
751 views
Custom memory allocator/manager in C ? which approach?
I looking for some (custom) memory managers/allocator written in c and went through some articles, -
Some Links :
IBM - Inside memory management
Valgrind - How to Shadow Every Byte of Memory Used ...
10
votes
8answers
1k views
C vs. C++ for performance in memory allocation
I am planning to participate in development of a code written in C language for Monte Carlo analysis of complex problems. This codes allocates huge data arrays in memory to speed up its performance, ...
10
votes
5answers
378 views
At what exact moment is a local variable allocated storage?
Suppose we have the following:
void print()
{
int a; // declaration
a = 9;
cout << a << endl;
}
int main ()
{
print();
}
Is the storage for variable a allocated at ...
9
votes
2answers
139 views
What are exact requirements on automatic storage duration?
Depending on the compiler the following code:
int main()
{
srand( 0 );
if( rand() ) {
char buffer[600 * 1024] = {};
printf( buffer );
} else {
char buffer[500 * 1024] = {};
...
9
votes
4answers
270 views
Why would a C++ program allocate more memory for local variables than it would need in the worst case?
Inspired by this question.
Apparently in the following code:
#include <Windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
if( GetTickCount() > 1 ) {
char buffer[500 * 1024];
...
9
votes
4answers
133 views
Is explicitly clearing/zeroing sensitive variables after use sensible?
I have noticed some programs explicitly zero sensitive memory allocations after use. For example, OpenSSL has a method to clear the memory occupied by an RSA key:
"Frees the RSA structure rsa. This ...
9
votes
4answers
381 views
Is it good practice to free a NULL pointer in C? [closed]
Possible Duplicate:
Does free(ptr) where ptr is NULL corrupt memory?
I'm writing a C function that frees a pointer if it was malloc()ed. The pointer can either be NULL (in the case that an ...