Skip to main content

Questions tagged [memory-management]

For questions related to managing memory in programming languages, whether manually or automatically.

16 votes
3 answers
453 views

What was the rationale for making realloc(ptr, 0) have UB in C23

This is the first breaking change that C made, which was making realloc(ptr, 0) have UB instead of being roughly equivalent to ...
2 votes
1 answer
391 views

Are there actual languages using fat pointers to store types?

In the normal implementations of C++, while not guaranteed by the standard, there is a vtable pointer as the header of every inherited class that needs a vtable pointer. There will be multiple vtable ...
3 votes
0 answers
203 views

Is there a downside to using offsets instead of raw pointers in a virtual machine?

Say I'm designing a virtual machine for a bytecode compiler/interpreter, using C as the implementation language. Some kind of “tagged” representation of values is simplest for this language, where ...
4 votes
4 answers
350 views

Approaches for implementing weak references

How can weak references (weakrefs) be implemented, and how do the different approaches compare? The most important considerations for implementing weakrefs are: Safety ─ a weakref shouldn't allow ...
12 votes
2 answers
571 views

Why did Objective-C remove `NSZone`?

NSZone is a type representing a memory allocation. NSObject implements the allocWithZone: ...
3 votes
6 answers
498 views

Are there languages or compilers having optimizations to deallocate variables early?

In a scope that defines two variables a and b, the code firstly does things only on a. Then <...
6 votes
4 answers
594 views

If garbage collection always sacrifice performance in multi-threaded languages, then how do some languages approch this problem?

Mark-and-Sweep garbage collection need to work over the graph of all objects in the process, and would stall threads to make the operation safe with regard to threads. I can think of no way to work ...
21 votes
2 answers
4k views

To box or not to box? (how to determine if a value can be more efficiently passed by value or by reference)

I want to remove explicit addressing from my type system. In low level languages like C or Rust, you always have a choice whether to store some data by value or by reference. There are some advantages ...
2 votes
1 answer
250 views

Are there languages making addresses to have other significant meaning?

Some examples: To support checking whether an object is of a subclass of a specific class in constant time, in a language using single inheritance, the compiler could arrange the vtables of classes ...
16 votes
6 answers
3k views

Possible to mix garbage collection and manual memory management?

Do you think it is possible to have a language that uses garbage collection (GC) by default, but allows you take more control with manual memory management like C++ or Rust, in areas of the software ...
12 votes
3 answers
1k views

Is it possible to extend C to have the Rust concept of ownership for memory safety?

Rust has a number of memory safety features. Is it possible to extend or enhance C or C++ to also provide similar memory safety features instead of using workarounds such as the Valgrind tool suite?
6 votes
3 answers
828 views

Why might a language avoid reallocation?

In Java, the size of arrays are immutable. However, to my understanding, they are still allocated on the heap, because Java allocates almost everything on the heap. Even then, Java arrays are still ...
3 votes
1 answer
355 views

X86-64 Assembly for Recursive Functions

A compiler I'm writing generates the following x86-64 assembly (AT&T syntax) for a recursive factorial function. I convert the assembly into an ELF executable using ...
3 votes
1 answer
148 views

Memory layout from a native class

I think there are languages where most of the standard library is written in themselves, however with most things marked as native or ...
15 votes
2 answers
465 views

Could ownership be inferred?

Rust famously has the concept of ownership vs. borrowing as part of its type system. This allows some level of automatic memory management ─ that is, heap allocations are freed when their owner goes ...