Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

59
votes
14answers
12k views

Why is alloca not considered good practice?

Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically ...
20
votes
5answers
4k views

Multithreaded Memory Allocators for C/C++

Hi I currently have heavily multithreaded server application, and I'm shopping around for a good multithreaded memory allocator. So far I'm torn between: -Sun's umem -Google's tcmalloc -Intel's ...
16
votes
6answers
2k views

What's a good C memory allocator for embedded systems?

I have an single threaded, embedded application that allocates and deallocates lots and lots of small blocks (32-64b). The perfect scenario for a cache based allocator. And although I could TRY to ...
15
votes
1answer
293 views

Correct way to cap Mathematica memory use?

Under a 32-bit operating system, where maximum memory allocated to any one program is limited, Mathematica gracefully terminates the kernel and returns a max memory allocation error. On a 64-bit OS ...
11
votes
3answers
279 views

how to properly allocate memory in C++ in low memory conditions

I have seen resources show two ways of allocating memory while ensuring that there was enough memory to complete the operation. 1) wrap the 'new' operation in a try/catch since it'll return ...
10
votes
3answers
233 views

Tracking object allocation in python

Is there any method I can override that will allow me to use print statements / pdb / etc. to keep track of every time an instance of my class is allocated? While unpickling some objects I am seeming ...
10
votes
4answers
553 views

How to implement a memory heap

Wasn't exactly sure how to phrase the title, but the question is: I've heard of programmers allocating a large section of contiguous memory at the start of a program and then dealing it out as ...
10
votes
6answers
492 views

How to avoid long chain of free's (or deletes) after every error check in C?

Suppose I write my code very defensively and always check the return types from all the functions that I call. So I go like: char* function() { char* mem = get_memory(100); // first allocation ...
10
votes
11answers
10k views

C++ Multi-dimensional Arrays on the Heap

I went looking for this the other day, and thought it should probably be added to StackOverflow's reservoir of questions. How would I go about dynamically allocating a multi-dimensional array?
9
votes
1answer
193 views

Placing Python objects in shared memory

Is there a Python module that would enable me to place instances of non-trivial user classes into shared memory? By that I mean allocating directly in shared memory as opposed to pickling into and ...
9
votes
2answers
3k views

Escape analysis in Java

As far as I know the JVM uses escape analysis for some performance optimisations like lock coarsening and lock elision. I'm interested if there is a possibility for the JVM to decide that any ...
8
votes
2answers
751 views

Android: Track number of objects created

I'm porting a game to Android (there's a lot of code and very little of it is mine), and DalvikVM is telling me (through LogCat) all about the garbage collection. At some point in the code, I get a ...
7
votes
5answers
276 views

Does any operating system implement buffering for malloc()?

A lot of c/malloc()'s in a for/while/do can consume a lot of time so I am curious if any operating system buffers memory for fast mallocs. I have been pondering if I could speed up malloc's by ...
7
votes
5answers
310 views

Allocation latency seems high, why?

I have a (java) application that runs in a low latency environment, it typically processes instructions in ~600micros (+/- 100). Naturally as we've moved further into the microsecond space the things ...
7
votes
11answers
4k views

determine size of dynamically allocated memory in c

Is there a way in c to find out the size of dynamically allocated memory? For e.g., Suppose I say char* p = malloc(sizeof(char)*100); Now is there a way to find out the size of memory associated ...
7
votes
9answers
831 views

Possible NP-complete problem?

I'd just like someone to verify whether the following problem is NP-complete or if there is actually a better/easier solution to it than simple brute-force combination checking. We have a sort-of ...
7
votes
9answers
1k views

Getting a stack overflow exception when declaring a large array

The following code is generating a stack overflow error for me int main(int argc, char* argv[]) { int sieve[2000000]; return 0; } How do I get around this? I am using Turbo C++ but would ...
6
votes
1answer
3k views

Xcode 4: How to profile memory usage & performance with Instruments?

Of all the Instruments Trace Templates, I love using: Zombies to detect where an object is getting over-released, great for debugging EXEC_BAD_ACCESS errors. Leaks to detect memory leaks. Core ...
6
votes
5answers
939 views

Does STL Vector use 'new' and 'delete' for memory allocation by default?

I am working on a plugin for an application, where the memory should be allocated by the Application and keep track of it. Hence, memory handles should be obtained from the host application in the ...
6
votes
3answers
260 views

Stack-based object instantiation in D

I'm learning D, and am confused by an error I'm getting. Consider the following: module helloworld; import std.stdio; import std.perf; ptrdiff_t main( string[] args ) { auto t = new ...
6
votes
9answers
735 views

To “new” or not to “new”

Is there a rule of thumb to follow when to use the new keyword and when not to when declaring objects? List<MyCustomClass> listCustClass = GetList(); OR List<MyCustomClass> ...
6
votes
4answers
4k views

Why doesn't this C++ STL allocator allocate?

I'm trying to write a custom STL allocator that is derived from std::allocator, but somehow all calls to allocate() go to the base class. I have narrowed it down to this code: template <typename ...
5
votes
3answers
204 views

Why is there a stack and a heap?

Why do assembly languages use both a stack and a heap? They seem redundant.
5
votes
4answers
101 views

Why would a VC++ program that is storing 5MB of data consume 64MB of system memory?

I have been working on trying to figure out why my program is consuming so much system RAM. I'm loading a file from disk into a vector of structs of several dynamically allocated arrays. A 16MB file ...
5
votes
7answers
132 views

where exactly in memory is count of allocated memory thats being used by delete?

int* Array; Array = new int[10]; delete[] Array; The delete knows the count of allocated memory. I Googled that it stores it in memory, but it's compiler dependent. Is there anyway to use get this ...
5
votes
2answers
105 views

C++ templates and header allocations

I recently encountered problems with memory allocations made in one DLL (or *.so - portable code) and deallocation done in another DLL. The errors I encountered so far are: It just doesn't work - ...
5
votes
4answers
173 views

Python function slows down with presence of large list

I was testing the speeds of a few different ways to do complex iterations over some of my data, and I found something weird. It seems that having a large list local to some function slows down that ...
5
votes
2answers
130 views

How does the Instruments stop working automatically?

I try to monitor the allocation through Instruments. However, when I run to a point, sending some jabber msg, the Instruments stop working automatically. I wonder how does it stop. Is there any ...
5
votes
5answers
640 views

using alloc and init

We know about the complete pattern of alloc/init that alloc and init must be combined. NSObject *myObj = [[NSObject alloc] init]; 1- init method receives the object from another source(not from a ...
5
votes
6answers
256 views

Freeing dynamically allocated memory

In C++, when you make a new variable on the heap like this: int* a = new int; you can tell C++ to reclaim the memory by using delete like this: delete a; However, when your program closes, does ...
5
votes
9answers
731 views

What happens when you deallocate a pointer twice or more in C++?

int main(){ Employee *e = new Employee(); delete e; delete e; ... delete e; return 0; }
5
votes
4answers
6k views

C++ Static array vs. Dynamic array?

What is the difference between a static array and a dynamic array in C++? I have to do an assignment for my class and it says not to use static arrays, only dynamic arrays. I've looked in the book ...
5
votes
3answers
1k views

Retain, alloc, properties … Topic to make your Obj-c life easier !

The more I code, the more I get lost ... so I decided to create a topic entirely dedicated to the memory management for me (and others) not to waste hours understanding obj-c basics ... I'll update it ...
5
votes
2answers
516 views

Memory allocation while insertion into a map

#include <stdio.h> #include <stdlib.h> #include <memory.h> #include <vector> #include <string> #include <iostream> #include <map> #include <utility> ...
5
votes
1answer
980 views

Objective-C memory management (alloc and autorelease)

When you allocate and initialize and object, and then want to return that object, how are you supposed to return it? I have the following code: NSXMLDocument* fmdoc = [[NSXMLDocument alloc] ...
5
votes
7answers
1k views

Custom malloc() implementation header design

I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the First Fit Algorithm. ...
5
votes
4answers
591 views

Proof that Fowler's money allocation algorithm is correct

Martin Fowler has a Money class that has a money allocation routine. This routine allocates money according to a given list of ratios without losing any value through rounding. It spreads any ...
5
votes
4answers
862 views

Is there an alternative way to free dynamically allocated memory in C - not using the free() function?

I am studying for a test, and I was wondering if any of these are equivalent to free(ptr): malloc(NULL); calloc(ptr); realloc(NULL, ptr); calloc(ptr, 0); realloc(ptr, 0); From what I ...
4
votes
1answer
93 views

Run-time error on 2D array dynamic arrays

I have the following code: int **arr = new int*[5]; for(int i = 0; i < 5; ++i) arr[i] = new int[]; for(int i = 0; i < 5; ++i) delete [] arr[i]; delete [] arr; Now it compiles and ...
4
votes
2answers
80 views

What does this statement mean?

When reading the Improving .NET Application Performance and Scalability I have bumped into this under "Improving Managed Code Performance/Garbage Collector Guidlines: Avoid preallocating and chunking ...
4
votes
6answers
147 views

Understanding concept of free

Tried the following code : #include<stdio.h> int main() { int *p,*q; p = (int *)malloc(sizeof(int)); *p =10; q = p; printf("%u \n",p); ...
4
votes
6answers
2k views

Bad allocation exceptions in C++

In a school project of mine I was requested to create a program not using STL. In the program I use alot of Pointer* = new Something; if (Pointer == NULL) throw AllocationError(); My question ...
4
votes
4answers
686 views

Memory Allocation for a Map with a fixed number of insertions

I want to insert n elements into a map where n is known ahead of time. I do not want memory allocation at each insertion. I want all memory allocation at the beginning. Is there a way to do this? If ...
4
votes
6answers
198 views

Pointer allocation vs normal declaration

sometimes I see in various C++ programs, objects declared and used like so: object *obj = new object; obj->action(); obj->moreAction(); //etc... Is there any benefit of doing that, instead of ...
4
votes
3answers
2k views

How to write a thread-safe and efficient, lock-free memory allocator in C?

How to write a thread-safe and efficient, lock-free memory allocator in C? By efficient I mean: Fast allocation & deallocation Optimal memory usage (minimal wastage and no external ...
4
votes
14answers
3k views

Uninitialized memory blocks in VC++

As everyone knows, the Visual C++ runtime marks uninitialized or just freed memory blocks with special non-zero markers. Is there any way to disable this behavior entirely without manually setting all ...
4
votes
2answers
589 views

Is it possible to track allocation/deallocation in C#?

As far as I can tell, this is isn't possible, so I'm really just hoping for a left field undocumented allocation hook function. I want a way to track allocations like in _CrtSetAllocHook, but for ...
3
votes
2answers
75 views

Allocating arrays of the same size

I'd like to allocate an array B to be of the same shape and have the same lower and upper bounds as another array A. For example, I could use allocate(B(lbound(A,1):ubound(A,1), ...
3
votes
1answer
96 views

Working with a vector of a class

I am a newbie at C++, and I am just starting to work with the container called classes. I am working on a program where an object is defined, and is stored inside a vector. The program is as ...
3
votes
4answers
169 views

C++: Adding automatically allocated objects to a std::vector

I wrote the following code: #include <iostream> #include <vector> using namespace std; class AClass { public: int data; AClass() { data = -333; cout ...

1 2 3 4 5