473,398 Members | 2,088 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Reference count?

I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.


May 4 '06 #1
7 2418
Hi Fred,

I am not sure if such reference count exists for managed object as it did
exist for COM objects. Reference count is not needed for garbage collection;
instead, there is a list of allocated objects and the garbage collector
knows the object roots of your app and traverses them and its referenced
objects; when finished, the objects in the list that have not been reached
are considered dead and its memory subject to be reclaimed.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com

"Fred Hedges" <do******@spammuch.com> escribió en el mensaje
news:e3*******************@news.demon.co.uk...
I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.

May 4 '06 #2
CMM
There is absolutely no reference counting in .NET AFAIK. None! Reference
counting is the source of lots of problems (circular references, leaks,
performance, etc).

When the garbage collector kicks in, it does all sorts of magic, suspends
everything for a brief second, counts references for "newly" created objects
(because "New" objects are typically only needed briefly) and destroys them,
and puts older objects (that have survived for a while) for cleanup later
on.... all designed to lessen the impact of the garbage collection
performance hit. There may be ways to tell where a "dead" object lays in the
line to oblivion... but I don't know how. Perhaps using some of .NET
Diagnostics counters, WMI, or stuff like that.

--
-C. Moya
www.cmoya.com
"Fred Hedges" <do******@spammuch.com> wrote in message
news:e3*******************@news.demon.co.uk...
I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.

May 4 '06 #3
Just to verify the thoughts of previous posters: There is no reference
count in .NET. The heap doesn't work that way in .NET.

Fred Hedges wrote:
I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.

May 4 '06 #4

Hmmmmm. I've firmly removed my COM hat now. Thanks for the responses.

So the Garbage Collector can walk the reference list and see if anything in
that list is pointing to something in it's set of allocated "things". Now,
I wonder.... is it possible to find out which things are pointing to a
particular interesting thing, if you see what I mean? ;).

"Göran Andersson" <gu***@guffa.com> wrote in message
news:e7**************@TK2MSFTNGP03.phx.gbl...
Just to verify the thoughts of previous posters: There is no reference
count in .NET. The heap doesn't work that way in .NET.

Fred Hedges wrote:
I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.

May 4 '06 #5
Hi Fred,

See if there is something like that in the Compuware DevPartner product:

http://www.compuware.com/products/de...5_ENG_HTML.htm

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
"Fred Hedges" <do******@spammuch.com> escribió en el mensaje
news:e3*******************@news.demon.co.uk...

Hmmmmm. I've firmly removed my COM hat now. Thanks for the responses.

So the Garbage Collector can walk the reference list and see if anything
in that list is pointing to something in it's set of allocated "things".
Now, I wonder.... is it possible to find out which things are pointing to
a particular interesting thing, if you see what I mean? ;).


May 4 '06 #6
>So the Garbage Collector can walk the reference list and see if anything in
that list is pointing to something in it's set of allocated "things". Now,
I wonder.... is it possible to find out which things are pointing to a
particular interesting thing, if you see what I mean? ;).


I believe you can do that with the Sos.dll debugger extensions.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
May 4 '06 #7
Not feasible in any garbage collected system. Note I didn't say not
possible. Its simply that the overhead to do this would be so sever that
the system performance would noticibly suffer.

In VB 6 and COM, the system increments a counter in the object header every
time a reference is added to the object. Then the counter is decremented
whenever a reference is removed. When this counter reaches zero, the object
is removed, decrementing references in any objects it points to.

In .NET the system keeps track of memory roots. These are classically the
program stack and data segment. In .NET, there are additional roots such as
a stack and data segment for each thread in a program as well as other roots
that are maintained by the garbage collector itself. When the GC runs, it
starts with each root and sets a flag that uniquley identifies this GC run.
Any objects that aren't identified on this run are eligible for removal from
memory. After the mark pass, memory is compacted by the GC so that
available memory is consolidated at the end of the heap. Microsoft has a
rather extensive technet article on the .NET garbage collector, but this is
the fundamental description of all modern garbage collection systems. Thus,
there is no way to track the number of references to an object. All the
system needs is one reference and it stops looking.

Mike Ober.

"Fred Hedges" <do******@spammuch.com> wrote in message
news:e3*******************@news.demon.co.uk...
I'm wondering if a tool exists that will integrate with the VS 2005
debugger, such that when I set a breakpoint I can inspect a reference and
see how many other references exist to that object. I'm sure there is an
internal reference count somewhere but have no idea how to inspect it.



May 5 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Richard Cavell | last post by:
Hi, The point of using const on a parameter to a function should be to let your compiler know that the parameter shouldn't be modified during your program. This allows you to keep your code...
1
by: Tony Johansson | last post by:
Hello Experts! I reading a book called programming with design pattern revealed by Tomasz Muldner and here I read something that I don't understand completely. It says "A garbarage...
3
by: Poewood | last post by:
Okay here are four classes for a pocket pc program: Input, fpositional, ComboBoxArray and TextBoxArray. The "input" class is the form. I use the fpositional class to handle most of the functions...
3
by: BravesCharm | last post by:
BravesCharm Dec 7, 10:57 am show options Newsgroups: microsoft.public.dotnet.distributed_apps From: "BravesCharm" <mastrauc...@gmail.com> Date: 7 Dec 2004 10:57:40 -0800 Local: Tues, Dec...
5
by: raghu | last post by:
Hi All, I am a new user of Python and am having a bit of problem understanding the Reference counting and memory leakage issues. Requesting help from experienced users.... I wrote the...
1
by: ank | last post by:
Hi, all. I've come to think of the idea of automatic initialization/deinitialization of non-local reference count pointer. I've made an assumption that the user of the pointer only read...
2
by: ank | last post by:
Hi, all. I've come to think of the idea of automatic initialization/deinitialization of non-local reference count pointer. I've made an assumption that the user of the pointer only read...
1
by: oec.deepak | last post by:
Hi Cn any one telll me what is Reference counting in C++.
11
by: venkatagmail | last post by:
I have problem understanding pass by value and pass by reference and want to how how they are or appear in the memory: I had to get my basics right again. I create an array and try all possible...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.