vote up 6 vote down star
2

For example, say one was to include a 'delete' keyword in C# 4. Would it be possible to guarantee that you'd never have wild pointers, but still be able to rely on the garbage collecter, due to the reference-based system?

The only way I could see it possibly happening is if instead of references to memory locations, a reference would be an index to a table of pointers to actual objects. However, I'm sure that there'd be some condition where that would break, and it'd be possible to break type safety/have dangling pointers.

EDIT: I'm not talking about just .net. I was just using C# as an example.

flag

55% accept rate
D does this, just fine. digitalmars.com/d – Rayne Oct 25 '08 at 12:27

7 Answers

vote up 0 vote down

It's possible, and already implemented, in non-managed languages such as C++. Basically, you implement or use an existing garbage collector: when you want manual memory management, you call new and delete as normal, and when you want garbage collection, you call GC_MALLOC or whatever the function or macro is for your garbage collector.

See http://www.hpl.hp.com/personal/Hans%5FBoehm/gc/ for an example.

Since you were using C# as an example, maybe you only had in mind implementing manual memory management in a managed language, but this is to show you that the reverse is possible.

link|flag
vote up 0 vote down

My first reaction was: Why not? I can't imagine that you want to do is something as obscure as just leave an unreferenced chunk out on the heap to find it again later on. As if a four-byte pointer to the heap were too much to maintain to keep track of this chunk.

So the issue is not leaving unreferenced memory allocated, but intentionally disposing of memory still in reference. Since garbage collection performs the function of marking the memory free at some point, it seems that we should just be able to call an alternate sequence of instructions to dispose of this particular chunk of memory.

However, the problem lies here:

String s = "Here is a string."; 
String t = s;
String u = s;
junk( s );

What do t and u point to? In a strict reference system, t and u should be null. So that means that you have to not only do reference counting, but perhaps tracking as well.

However, I can see that you should be done with s at this point in your code. So junk can set the reference to null, and pass it to the sweeper with a sort of priority code. The gc could be activated for a limited run, and the memory freed only if not reachable. So we can't explicitly free anything that somebody has coded to use in some way again. But if s is the only reference, then the chunk is deallocated.

So, I think it would only work with a limited adherence to the explicit side.

link|flag
vote up 0 vote down

Chris Sells also discussed this on .NET Rocks. I think it was during his first appearance but the subject might have been revisited in later interviews.

http://www.dotnetrocks.com/default.aspx?showNum=10

link|flag
vote up 0 vote down

It was done. Chris Sells and Chris Tavares did a study on adding deterministic finalization to the .NET runtime. The linked article isn't quite as explicit as Mr. Sells was in his blog, the experiment was an abysmal failure. After that, everybody stopped questioning the merits of the garbage collector implementation.

link|flag
Your search - cache:yui9gKic-2oJ:sellsbrothers.com/writing/refcount_rotor.doc chris sells rotor reference counting - did not match any documents. – Arafangion Mar 10 at 4:56
vote up 2 vote down

You can - kind of: make your object disposable, and then dispose it yourself.

A manual delete is unlikely to improve memory performance in a managed environment. It might help with unmanaged ressources, what dispose is all about.

I'd rather have implementing and consuming Disposable objects made easier. I have no consistent, complete idea how this should look like, but managing unmanaged ressources is a verbose pain under .NET.


An idea for implementing delete: delete tags an object for manual deletion. At the next garbage collection cycle, the object is removed and all references to it are set to null.

It sounds cool at first (at least to me), but I doubt it would be useful. This isn't particulary safe, either - e.g. another thread might be busy executing a member method of that object, such an methods needs to throw e.g. when accessing object data.

link|flag
The .Net IDisposable 'pattern' isn't used for memory management but for lifetime management of other unmanaged resources like file handles etc. Memorymanagement is always handled by the garbage-collector – Mendelt Oct 25 '08 at 13:14
While Mendelt is true technically, the .NET IDisposable pattern is exactly for the cases where you want deterministic destruction. So still a good answer in my opinion. – OregonGhost Oct 25 '08 at 13:19
vote up 1 vote down

The best you could get would be a partition into two “hemispheres” where one hemisphere is managed and can guarantee the absence of dangling pointers. The other hemisphere has explicit memory management and gives no guarantees. These two can coexist, but no, you can't give your strong guarantees to the second hemisphere. All you could do is to track all pointers. If one gets deleted, then all other pointers to the same instance could be set to zero. Needless to say, this is quite expensive. Your table would help, but introduce other costs (double indirection).

link|flag
Or use weak references for everything in the unmanaged hemisphere, and promote them automatically when they're dereferenced. Also expensive, but shifts some of the work away from deletion, so might conceivably be less expensive sometimes. – Steve Jessop Oct 25 '08 at 12:18
Ouch, pointer tracking would be nice to have, but probably to oexpensive (and useless if you already have garbage collection). – Gamecat Oct 25 '08 at 12:19
This model more of less exists already if you are using C++/CLI. You can allocate unmanaged objects on the C++ heap and managed objects on the managed heap, and have pointers between them. – Rob Walker Oct 25 '08 at 12:59
vote up 2 vote down

With garbage collection, as long as you have a referenced reference to the object, it stays alive. With manual delete you can't guarantee that.

Example (pseudocode):

obj1 = new instance;
obj2 = obj1;

// 

delete obj2;
// obj1 now references the twilightzone.

Just to be short, combining manual memory management with garbage collection defeats the purpose of GC. Besides, why bother? And if you really want to have control, use C++ and not C#. ;-).

link|flag
One way of combining mmm with gc in your above example (Did you mean obj2 = obj1 ?) is for the delete to simply mark the object for immediate deletion when the reference count goes to 0. – quamrana Oct 25 '08 at 12:25
@quamrana: Why then bother to call delete? It's not manual anymore if it still waits for the reference count to go to zero. – OregonGhost Oct 25 '08 at 13:18
Not for generational garbage collection. I think there is a case for converting an object from being subject to a generational gc to a reference counted gc. – quamrana Oct 25 '08 at 19:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.