search for: alloc_func

Displaying 6 results from an estimated 6 matches for "alloc_func".

Did you mean: __alloc_func
2002 Nov 24
4
[LLVMdev] globals in DS graph
I have some questions regarding how globals are represented in DS graph. Specifically, I wrote the following simple program: List *g; void alloc_func(){ g = ( List* ) malloc( sizeof( List ) ); } void free_func(){ free( g ); } int main(){ alloc_func(); free_func(); } I noticed that the DSnode for g in alloc_func is different from that of free_func and NEITHER of them had GlobalNode bit set in their types. Only the malloc bit and the i...
2002 Nov 25
3
[LLVMdev] globals in DS graph
...dve > From: Chris Lattner <sabre at nondot.org> > Subject: Re: [LLVMdev] globals in DS graph > Sender: llvmdev-admin at cs.uiuc.edu > Date: Mon, 25 Nov 2002 01:34:14 -0600 (CST) > > > Specifically, I wrote the following simple program: > > List *g; > > void alloc_func(){ > > g = ( List* ) malloc( sizeof( List ) ); > > } > > void free_func(){ > > free( g ); > > } > > I don't have an LLVM tree available to me right now (as > tank/llvm.cs.uiuc.edu) is down, so take this with a grain of salt... > > > I notice...
2002 Nov 22
3
[LLVMdev] Re: calls to exit()
On Fri, 22 Nov 2002, lee white baugh wrote: > do calls to exit() always have a null target-function pointer? that is > what i think i am seeing. Currently, yes. What's actually happening is that the call gets moved to the "globals graph". Essentially, this is due to the fact that the function call cannot modify the local memory graph of the current function. In cases where
2002 Nov 25
0
[LLVMdev] globals in DS graph
> Specifically, I wrote the following simple program: > List *g; > void alloc_func(){ > g = ( List* ) malloc( sizeof( List ) ); > } > void free_func(){ > free( g ); > } I don't have an LLVM tree available to me right now (as tank/llvm.cs.uiuc.edu) is down, so take this with a grain of salt... > I noticed that the DSnode for g in alloc_func is different...
2002 Nov 25
0
[LLVMdev] globals in DS graph
...;sabre at nondot.org> > > Subject: Re: [LLVMdev] globals in DS graph > > Sender: llvmdev-admin at cs.uiuc.edu > > Date: Mon, 25 Nov 2002 01:34:14 -0600 (CST) > > > > > Specifically, I wrote the following simple program: > > > List *g; > > > void alloc_func(){ > > > g = ( List* ) malloc( sizeof( List ) ); > > > } > > > void free_func(){ > > > free( g ); > > > } > > > > I don't have an LLVM tree available to me right now (as > > tank/llvm.cs.uiuc.edu) is down, so take this with a gr...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address