Tagged Questions
The dynamic-memory-allocation tag has no wiki summary.
17
votes
4answers
350 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 ...
16
votes
5answers
204 views
Mixing operator new[] and placement new with ordinary delete[]
Just out of curiosity, is the following legal?
X* p = static_cast<X*>(operator new[](3 * sizeof(X)));
new(p + 0) X();
new(p + 1) X();
new(p + 2) X();
delete[] p; // Am I allowed to use ...
9
votes
2answers
406 views
new operator for memory allocation on heap
I was looking at the signature of new operator. Which is:
void* operator new (std::size_t size) throw (std::bad_alloc);
But when we use this operator, we never use a cast. i.e
int *arr = new int;
...
9
votes
5answers
740 views
How are malloc and free implemented?
Hello
I want to implement my own dynamic memory management system in order to add new features that help to manage memory in C++.
I use Windows (XP) and Linux (Ubuntu).
What is needed to implement ...
8
votes
10answers
243 views
c++ what is “pointer = new type” as oppose to “pointer = new type []”?
in many turorials the first code samples about dynamic memory start along the lines of:
int * pointer;
pointer = new int; // version 1
//OR
pointer = new int [20] // version 2
they always ...
8
votes
6answers
470 views
Pimpl idiom without using dynamic memory allocation
we want to use pimpl idiom for certain parts of our project. These parts of the project also happen to be parts where dynamic memory allocation is forbidden and this decision is not in our control.
...
8
votes
11answers
1k views
Data structure to store huge amount of data?
Greetings all,
In my application,I have to load volumedata from set of images (MRC images) and keep the pixel data in memory.(images are grayscaled ,so one byte per pixel).
My development ...
7
votes
5answers
649 views
Why is deleted memory unable to be reused
I am using C++ on Windows 7 with MSVC 9.0, and have also been able to test and reproduce on Windows XP SP3 with MSVC 9.0.
If I allocate 1 GB of 0.5 MB sized objects, when I delete them, everything ...
7
votes
5answers
1k views
Can you declare a pointer on the heap?
This is the method for creating a variable on the heap in C++:
T *ptr = new T;
ptr refers to a pointer to the new T, obviously. My question is, can you do this:
T *ptr = new T*;
That seems like ...
6
votes
3answers
372 views
Alignment of Heap Arrays in C and C++ to Ease Compiler (GCC) Vectorization
I'm currently cooking up a wrapper container template class for std::vector that automatically creates a multi-resolution pyramid of the elements in its std::vector.
The key issue now is that I want ...
6
votes
6answers
432 views
Shouldn't this code crash
int *p;
while(true)
{
p = new int;
}
Due to running out of memory space, shouldn't this code crash. I have tried printing out the value of p, that is the address of memory located for p, and it ...
6
votes
3answers
987 views
How to Dynamically Allocate Memory Using Assembly and System Calls Under Linux
I'm looking for some good code examples of dynamic memory allocation using an assembly language under Linux and using system calls, not malloc and friends.
What are some of the simplest but effective ...
6
votes
5answers
221 views
What does this dynamic allocation do?
Today, I found out that you can write such code in C++ and compile it:
int* ptr = new int(5, 6);
What is the purpose of this? I know of course the dynamic new int(5) thing, but here i'm lost. Any ...
6
votes
1answer
798 views
posix_memalign for std::vector
Is there a way to posix_memalign a std::vector without creating a local instance of the vector first?
The problem I'm encountering is that I need to tell posix_memalign how much space to allocate and ...
6
votes
7answers
414 views
Dynamic memory allocation question
when you allocate dynamic memory on the heap using a pointer,
char *buffer_heap = new char[15];
it would be represented in memory as:
ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍýýýý««««««««þþþ
why doesn't there be a NULL ...
6
votes
8answers
2k views
How much memory should you be able to allocate?
Background: I am writing a C++ program working with large amounts of geodata, and wish to load large chunks to process at a single go. I am constrained to working with an app compiled for 32 bit ...
5
votes
4answers
96 views
The array is static, but the array size isn't know until runtime. How is this possible?
This has been troubling me for a while. It goes to the heart of my (lack of) understanding of the difference between static and dynamic memory allocation. The following array is an ordinary static ...
5
votes
3answers
164 views
Possible memory leak without a virtual destructor?
#include <iostream>
using namespace std;
class base
{
int a;
public:
base() {a =0;}
};
class derv :public base
{
int b;
public:
derv() {b =1;}
};
int main()
{
base *pb ...
5
votes
2answers
572 views
Small objects allocator
Has anybody used SmallObjectAllocator from Modern C++ Design by Andrei Alexandrescu in a big project? I want to implement this allocator but I need some opinions about it before using it in my ...
5
votes
6answers
6k views
Simple C implementation to track memory malloc/free?
programming language: C
platform: ARM
Compiler: ADS 1.2
I need to keep track of simple melloc/free calls in my project. I just need to get very basic idea of how much heap memory is required when the ...
4
votes
5answers
181 views
difference between two array declaration methods c++
These of 2 of the probably many ways of declaring arrays (and allocating memory for them) in c++
1. int a[3];
2. int *b = new int[3];
I want to understand how c++ is treating the two differently.
...
4
votes
2answers
64 views
How to schedule collection cycles for custom mark-sweep collector?
I've written a simple garbage collector for a Postscript virtual machine, and I'm having difficulty designing a decent set of rules for when to do a collection (when the free list is too short?) and ...
4
votes
5answers
160 views
Dynamically allocate or waste memory?
I have a 2d integer array used for a tile map.
The size of the map is unknown and read in from a file at runtime. currently the biggest file is 2500 items(50x50 grid).
I have a working method of ...
4
votes
4answers
516 views
Private member vector of vector dynamic memory allocation
I'm new to C++ (I learned programming with Fortran), and I would like to allocate dynamically the memory for a multidimensional table. This table is a private member variable :
class theclass{
...
4
votes
6answers
391 views
C++ - Allocating memory on heap using “new”
If I have the following statement:
int *x = new int;
In this case, I have allocated memory on the heap dynamically. In other words, I now have a reserved memory address for an int object.
Say after ...
4
votes
3answers
292 views
Need Memory Usage Tool per C++ function on Linux
I'm looking for a runtime memory debugger, capable of showing memory usage (not just leaks) per function or line of C++ code on Linux.
I am trying to track down a spike in my program memory usage.
I ...
4
votes
4answers
316 views
What are all the ways to allocate memory in C and how do they differ?
I'm aware of the following:
malloc
calloc
realloc
What are the differences between these? Why does malloc seem to be used almost exclusively? Are there behavioral differences between compilers?
4
votes
1answer
182 views
Shrinking with realloc
I encountered this small piece of code in this question, & wanted to know,
Can the realloc() function ever move a memory block to another location, when the memory space pointed to is shrinked?
...
4
votes
5answers
328 views
Where is dynamic memory allocated?
The question was asked to me in an interview and my answer was "computer memory". But where exactly..? is it the Random Access Memory or the hard drive?
4
votes
5answers
241 views
4
votes
1answer
616 views
ALLOCATABLE arrays or POINTER arrays?
I am writing a new code in Fortran and hesitating between using allocatable arrays or pointer arrays. I read somewhere that allocatable arrays have significant advantages over pointer arrays:
1) ...
3
votes
1answer
92 views
Allocate dynamic array with interdependent dimensions
This is a bit complicated; I'd welcome any comments on how to improve the clarity of the question.
Ok, say I have an array:
real, allocatable :: A(:,:,:)
and I want to allocate it before I use it. ...
3
votes
1answer
97 views
Should I check for nil in copyWithZone:?
In the Sketch example, in -[<NSCopying> copyWithZone:] is not checked if -[<NSObject> init] returns nil:
- (id)copyWithZone:(NSZone *)zone {
SKTGraphic *copy = [[[self class] alloc] ...
3
votes
7answers
103 views
Is there a way to distinguish between new's and new[]'s return value?
Consider this code:
int *p = new int;
cout << sizeof(*p);
delete p;
As expected the result is 4. Now, consider this other code:
int *p = new int[10];
cout << sizeof(*p);
delete[] p;
...
3
votes
1answer
80 views
C++, 'coupling' of member pointers in multiple objects copied from the same original object
#include <iostream>
#include <vector>
#include <cstdlib>
#include <cassert>
struct s_A {
bool bin;
s_A(): bin(0) {}
};
class c_A {
public:
s_A * p_struct;
...
3
votes
8answers
171 views
Can i allocate memory faster by using multiple threads?
If i make a loop that reserves 1kb integer arrays, int[1024], and i want it to allocate 10000 arrays, can i make it faster by running the memory allocations from multiple threads?
I want them to be ...
3
votes
8answers
170 views
C++ performance: checking a block of memory for having specific values in specific cells
I'm doing a research on 2D Bin Packing algorithms. I've asked similar question regarding PHP's performance - it was too slow to pack - and now the code is converted to C++.
It's still pretty slow. ...
3
votes
6answers
767 views
STL erase-remove idiom vs custom delete operation and valgrind
This is an attempt to rewrite some old homework using STL algorithms instead of hand-written loops and whatnot.
I have a class called Database which holds a Vector<Media *>, where Media * can ...
3
votes
6answers
483 views
C++ new memory allocation fragmentation
I was trying to look at the behavior of the new allocator and why it doesn't place data contiguously.
My code:
struct ci {
char c;
int i;
}
template <typename T>
void memTest()
{
...
3
votes
3answers
278 views
Where does memory dynamically allocated reside?
We know that malloc() and new operation allocate memory from heap dynamically, but where does heap reside? Does each process have its own private heap in the namespace for dynamic allocation or the OS ...
3
votes
1answer
157 views
Dynamic memory and inherited structs in C++
Say I have some structs like this:
struct A{
int someInt;
}
struct B : public A{
int someInt;
int someOtherInt;
}
And a class:
class C{
A *someAs;
void myFunc(A *someMoreAs){
delete [] ...
3
votes
5answers
156 views
Is it safe to pass (synchronously) stack-allocated memory to other thread?
Recently I heard that memory in the stack is not shared with other thread and memory in the heap is shared with other threads.
I normally do:
HWND otherThreadHwnd;
DWORD commandId;
// initialize ...
3
votes
5answers
1k views
dynamic memory in QList
I don't have much experience with QT and this problem came out today.
QList<int> memList;
const int large = 100000;
getchar();
for (int i=0; i<large; i++)
{
memList.append(i);
}
cout ...
2
votes
2answers
82 views
Dynamic memory allocation for character arrays
Okay, so I was trying to resize an array as follows :
if((editBufferCounter + 20) > editBufferSize)
{
char* temp;
temp = new char[editBufferSize + 5];
strcpy(temp, editBuffer);
...
2
votes
5answers
127 views
When should i use calloc over malloc
This is from Beej's guide to C
"The drawback to using calloc() is that it takes time to clear memory, and in most cases, you don't need it clear since you'll just be writing over it anyway. But if you ...
2
votes
2answers
100 views
Dynamically set array access pattern in C
I would like to do something like this in C(99):
int n = compute_size_of_matrices();
int T = compute_number_of_matrices();
float matrices[][n][n] = malloc( sizeof(float) * n*n* T ); //[sic!]
Watch ...
2
votes
4answers
183 views
Dynamic memory allocation question (in C)
Consider following codes:
#include <stdio.h>
#include <malloc.h>
void allocateMatrix(int **m, int l, int c)
{
int i;
m = (int**) malloc( sizeof(int*) * l );
for(i = 0; i ...
2
votes
3answers
163 views
memory manager that manages a pre allocated block
I'm trying to find a memory management library for C++ that would allocate from an pre-allocated memory block i give it in order to initialise it. After i'm done i will close the allocator (and ...
2
votes
4answers
266 views
MemoryMappedFiles: How much memory can be allocated for files
I'm having large CT rawdata files which can exceed the size of 20 to 30GB maximum. For most of our current computers in the department we have only 3GB maximum. But for processing the data we need to ...
2
votes
2answers
243 views
Why can't I call a parameterized constructor with new in c++?
If you know the issue,
Assume I have a class A whose CTOR receives an integer;
I cannot do the following :
A* arr = new A[3](A(2), A(3), A(5));
Or any other way to initialize several members of ...