Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C Programming (http://www.velocityreviews.com/forums/f42-c-programming.html)
-   -   freeing memory in shortest time (http://www.velocityreviews.com/forums/t596175-freeing-memory-in-shortest-time.html)

vivek 03-05-2008 08:47 AM

freeing memory in shortest time
 
Hello,

I have a pointer to a main structure which again consists of
structures, enums, char, int, float and again complex structures.

When i free all the contents of the main structure, it takes me a lot
of time (since i have to loop determining the data type and freeing
it). Is there any idea to free all the contents of the structure in
shortest possible time.

vivek 03-05-2008 08:49 AM

Re: freeing memory in shortest time
 
Or probably should i switch to static memory instead??? In that case
what care should be taken.

Pl advice

santosh 03-05-2008 08:56 AM

Re: freeing memory in shortest time
 
vivek wrote:

> Hello,
>
> I have a pointer to a main structure which again consists of
> structures, enums, char, int, float and again complex structures.
>
> When i free all the contents of the main structure, it takes me a lot
> of time (since i have to loop determining the data type and freeing
> it). Is there any idea to free all the contents of the structure in
> shortest possible time.


You might try making the structure static. Or you might try having a
separate cache of all the pointers to dynamic memory for each structure
element. This will consume additional memory, but will eliminate the
need to traverse the structure to free all it's components.

In anycase, I doubt that traversing the structure is going to be your
most serious bottleneck, particularly if you do it all at once.


vivek 03-05-2008 09:04 AM

Re: freeing memory in shortest time
 
Oh, it is for an embedded system, where that freeing the structure
takes about 0.4 ms, which is a lot of time for an embedded
system...Thats why!!!

Richard Heathfield 03-05-2008 09:05 AM

Re: freeing memory in shortest time
 
vivek said:

> Hello,
>
> I have a pointer to a main structure which again consists of
> structures, enums, char, int, float and again complex structures.
>
> When i free all the contents of the main structure, it takes me a lot
> of time (since i have to loop determining the data type and freeing
> it). Is there any idea to free all the contents of the structure in
> shortest possible time.


Well, exit(0) will do it. But I'm curious to know why you think it's taking
a lot of time. Computers are pretty fast nowadays. Is this really the
bottleneck for your program? What did profiling tell you?

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999

vivek 03-05-2008 09:08 AM

Re: freeing memory in shortest time
 
"you might try having a
> separate cache of all the pointers to dynamic memory for each structure
> element. This will consume additional memory, but will eliminate the
> need to traverse the structure to free all it's components.
>
> In anycase, I doubt that traversing the structure is going to be your
> most serious bottleneck, particularly if you do it all at once"


Can you explain in detail about the caching, please? I could not
follow that part.


santosh 03-05-2008 09:12 AM

Re: freeing memory in shortest time
 
vivek wrote:

> Oh, it is for an embedded system, where that freeing the structure
> takes about 0.4 ms, which is a lot of time for an embedded
> system...Thats why!!!


Okay. Some of your options are:

1. Don't free anything. Obviously this might not be feasible.
2. Use static or automatic objects. Static objects will persist
throughout the program lifetime while auto objects will be destroyed
once their scope is exited.
3. Use something like alloca. See the recent threads on this. Objects
allocated with alloca persist throughout the function and need no
explicit call to free.
4. Modify your data structures so that dynamic memory is minimised
or "clumped" together, thus minimising the number calls to free.

There may be other strategies too, though we can't tell you which one
might be suitable since the choice depends on various factors of your
program and it's host machine and what's expected of them.

Generally speaking, if you want realtime performance then malloc/free is
pretty much ruled out, but I would suggest that you actually verify
that they *are* the problem and that the time consumed *is*
unacceptable before considering other strategies.


vivek 03-05-2008 09:25 AM

Re: freeing memory in shortest time
 
Of course everything else is ok with the program
functionalities...except for the time...If time is ok...thats
it..project over...

and thank u so much santhosh

Nick Keighley 03-05-2008 09:54 AM

Re: freeing memory in shortest time
 
On 5 Mar, 08:47, vivek <gvivek2...@gmail.com> wrote:

> I have a pointer to a main structure which again consists of
> structures, enums, char, int, float and again complex structures.


are these nested structures or pointed to?

/* headers ommitted */

struct Main1_s
{
struct Nested_s nested;
};

struct Main2_s
{
struct Pointed_s *pointed;
};

void func (void)
{
struct Main1_s *main1_s;
struct Main2_s *main2_s;

/* should check for malloc() failures */
main1_s = malloc(sizeof *main1_s);
main2_s = malloc(sizeof *main2_s);
main2_s->pointed = malloc(sizeof (*main2_s->pointed));

/* do stuff */

/* cleanup */
delete (main1_s);
/* nested freed automatically */

delete (main2_s->pointed);
delete (main2_s);
}



> When i free all the contents of the main structure, it takes me a lot
> of time (since i have to loop determining the data type and freeing
> it).


what sort of time? Do you mean the program takes a long time?
How do you know, have you timed it? Or is it taking a long
time to write the program? Why do you need a loop to determine the
data type. We need to see some code!

> Is there any idea to free all the contents of the structure in
> shortest possible time.


not sure what you mean. Could you use automatic storage?

void func (void)
{
struct Main1_s main1_s;

/* do stuff */
}

no mallocs therefore no deletes



and then vivek wrote:
> Or probably should i switch to static memory instead??? In that case
> what care should be taken.


I'm not sure. What lifetime does your structure need? Statics can
occupy storage unnecessarily (they go away only when the program
ends).
You may make them accessible from too much of the program.
You might have problems that there is only one copy of the struct
when logically you need many.

I need to know more about what you are doing.
Can you post a simpified example?


--
Nick Keighley

The Dinosaurs have come and gone, we Theriodonts remain

vivek 03-05-2008 10:20 AM

Re: freeing memory in shortest time
 
The structures are nested.

I have measured the time taken for this specific code section to run.

The lifetime of the structures would be like this.

Receive some communication data, use these structures to decode data -
allot memory...after decoding, process it ..then free memory..

then prepare a reply, encode the date(create these structures-allot
memory), send the data and free memory.


All times are GMT. The time now is 09:54 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57