search for: garbage

Displaying 20 results from an estimated 3834 matches for "garbage".

2012 Jan 18
7
[LLVMdev] [RFC] Module Flags Metadata
...t have the same value or an error will be issued. Objective-C Metadata -------------------- To correctly link two or more Objective-C modules, the linker needs to know quite a bit of information about the language and how the modules were compiled. These flags are concerned with ABI versions and garbage collection, since they cannot conflict. The MachO writer uses these values to generate the "image info" section, and merges the values from different modules in an "intelligent" fashion rather than append them together. The supported names are: * Objective-C Version - The v...
2012 Jan 19
1
[LLVMdev] [cfe-dev] [RFC] Module Flags Metadata
...l be issued. > > > Objective-C Metadata > -------------------- > > To correctly link two or more Objective-C modules, the linker needs to know > quite a bit of information about the language and how the modules were > compiled. These flags are concerned with ABI versions and garbage collection, > since they cannot conflict. The MachO writer uses these values to generate the > "image info" section, and merges the values from different modules in an > "intelligent" fashion rather than append them together. > > The supported names are: > >...
2000 Jun 24
1
Garbage Collecting
Dear all, Me and the Garbage Collector doesn't understand each other... I'm on R-1.0.1 (I have requested an upgrade to the right local people), an osf1 system with an alphaev6 CPU. I have fair amounts of memory to use, but it seems to be used up pretty fast nevertheless. I'm now trying to see what the garbage col...
2012 Jan 19
0
[LLVMdev] [cfe-dev] [RFC] Module Flags Metadata
...t;> Objective-C Metadata >> -------------------- >> >> To correctly link two or more Objective-C modules, the linker needs to know >> quite a bit of information about the language and how the modules were >> compiled. These flags are concerned with ABI versions and garbage collection, >> since they cannot conflict. The MachO writer uses these values to generate the >> "image info" section, and merges the values from different modules in an >> "intelligent" fashion rather than append them together. >> >> The supported...
2017 Jul 04
0
Unable to install packages in R: Error in if (any(diff)) { : missing .....
...*********************************************************** c:\Program Files\R\R-3.4.1\bin\x64>R.exe --vanilla --verbose 'verbose' and 'quietly' are both true; being verbose then .. now dyn.load("c:/Program Files/R/R-3.4.1/library/methods/libs/x64/methods.dll") ... Garbage collection 1 = 0+0+1 (level 2) ... 5.8 Mbytes of cons cells used (31%) 1.6 Mbytes of vectors used (25%) R version 3.4.1 (2017-06-30) -- "Single Candle" Copyright (C) 2017 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 (64-bit) R is free software and co...
2013 Jul 31
0
[LLVMdev] New ideas about how to improve garbage collection support
Hi, I currently write a LLVM backend for RPython, a programming language and toolchain to write dynamic language interpreters. For example, this toolchain powers PyPy, a fast Python interpreter. In the moment the implementation uses a shadowstack to manage garbage collection stack roots. To improve performance, I experimented with LLVM's garbage collection support. It works by marking a stack slot as containing a garbage collection root. This enables easy code generation for frontends which use the mem2reg pass to construct the SSA form. Such frontends...
2018 Feb 06
4
rJava garbage collect
Hi Does rJava offer a way to instruct the JVM to perform a garbage collection? Regards Ben
2010 Sep 17
0
[LLVMdev] Accurate garbage collection
On Fri, 2010-09-17 at 12:16 +0100, David Given wrote: > On 17/09/10 09:55, Pedro Ferreira wrote: > > As I understand it, LLVM simply gives you support for garbage collectors > > that you have to implement yourself and link into the final binary, > > similar to what C's malloc does (it's a library call). The issue with > > GC's is that they need to be provided info about the stack, thats where > > LLVM's support comes i...
2010 Sep 17
6
[LLVMdev] Accurate garbage collection
On 17/09/10 09:55, Pedro Ferreira wrote: > As I understand it, LLVM simply gives you support for garbage collectors > that you have to implement yourself and link into the final binary, > similar to what C's malloc does (it's a library call). The issue with > GC's is that they need to be provided info about the stack, thats where > LLVM's support comes in. Are there any st...
2015 Jan 27
3
[LLVMdev] [lld] Overloaded Layout references
Hi, I think we are overloading the Layout references for garbage collection. If you are creating a reference (kindLayoutAfter) from A to B, that may not mean that you cannot garbage collect B for the end user. My thought on Layout references was that it only guarantees that atoms appear in Layout reference order. Why are we overloading this for Garbage collec...
2010 Aug 22
1
[LLVMdev] How start with LLVM garbage collector?
LLVM has GC possibility (llvm_gc_allocate). What compiler uses it? I try ldc D compiler but it not uses LLVM garbage collection but own in Tango library. -- View this message in context: http://old.nabble.com/How-start-with-LLVM-garbage-collector--tp29505874p29505874.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2012 Jan 24
0
[LLVMdev] [RFC] Module Flags Metadata
...l be issued. > > > Objective-C Metadata > -------------------- > > To correctly link two or more Objective-C modules, the linker needs to know > quite a bit of information about the language and how the modules were > compiled. These flags are concerned with ABI versions and garbage collection, > since they cannot conflict. The MachO writer uses these values to generate the > "image info" section, and merges the values from different modules in an > "intelligent" fashion rather than append them together. > > The supported names are: > >...
2009 Jan 27
1
Return values from .Call and garbage collection [Additional information added]
...MB in a highly condensed format) and the tools to return values from the data. The functionality has been tested call by call and using valgrind and works fine, with no memory leaks. After retrieval, I process the data in R. A specific function is causing a problem that appears to be related to the garbage collector (judging by symptoms). In the C code, a Matrix is created using PROTECT(retVal = allocMatrix(INTSXP, x, y)); Values are written into this matrix using INTEGER(retVal)[translatedOffset]=z; where "translatedOffset" is a conversion from a row/column pair to an offset as shown...
1999 Nov 25
1
segfault in garbage collection (PR#344)
The following statements yield a seg.fault: R --vanilla --nsize 500K x <- rep(letters,10000) f <- function(x) {z<-paste("\"",x,"\"",sep=""); z} y <- f(x) Segmentation fault If a turn gcinfo on, I get Garbage collection [nr. 1]... 387529 cons cells free (75%) 3807 Kbytes of heap free (62%) Garbage collection [nr. 2]... 273868 cons cells free (53%) 1015 Kbytes of heap free (17%) Garbage collection [nr. 3]... 208857 cons cells free (40%) 0 Kbytes of heap free (0%) Garbage collection [nr. 4]... 208857 cons...
2008 Feb 05
4
[LLVMdev] 2.2 garbage collector questions
> LLVM currently lacks working examples demonstrating the use of garbage > collection... Hello, if anybody has time, I would recommend putting a big disclaimer at the top of the garbage collection page that explains that, for the most part, garbage collection falls outside of LLVM's domain. Right now LLVM advertises itself as "supporting garbage collecti...
2009 Jan 27
1
Return values from .Call and garbage collection
...MB in a highly condensed format) and the tools to return values from the data. The functionality has been tested call by call and using valgrind and works fine, with no memory leaks. After retrieval, I process the data in R. A specific function is causing a problem that appears to be related to the garbage collector (judging by symptoms). In the C code, a Matrix is created using PROTECT(retVal = allocMatrix(INTSXP, x, y)); Values are written into this matrix using INTEGER(retVal)[translatedOffset]=z; where "translatedOffset" is a conversion from a row/column pair to an offset as shown...
2012 Jun 05
0
Memory leak during instantiation of a reference class?
...str(training_data) num [1:501, 1:62, 1:579] -10.4 -11.3 -12.1 -12.8 -13.3 ... - attr(*, "dimnames")=List of 3 ..$ : NULL ..$ : NULL ..$ : NULL Browse[1]> str(true_class) num [1:1002] 1 1 1 1 1 1 1 1 1 1 ... Browse[1]> str(h5_df) Dotted pair list of 11 $ avg.txt.lp :Garbage collection 135 = 44+18+73 (level 2) ... 49.4 Mbytes of cons cells used (63%) 2840.0 Mbytes of vectors used (30%) num [1:501, 1:62, 1:607] -10.4 -11.3 -12.1 -12.8 -13.3 ... $ avg.tls.txt.lp: num [1:501, 1:62, 1:281] -10.4 -11.3 -12.1 -12.8 -13.3 ... $ avg.tls.pic.lp: num [1:501, 1:62, 1:305] -2....
2016 Feb 13
1
Question about CHARSXP and garbage collection
Hi, I had a technical question about CHARSXP and garbage collection and couldn't find the answer in the R manual. The question is this. Are CHARSXP garbage collected like any other object, despite being part of the CHARSXP cache? i.e. is the cache being cleaned by garbage collection regularly and therefore, when I am in C code, do I need to protect...
2010 Feb 14
0
Garbage Reference Sites.
Danila Sentiabov I am just as stuck as you. There is no way for Forum and Mailing list to PM each other. So that leaves me 1 option start a thread about it. I don't mind if other people chip in. All the things I call garbage reference sites have 1 thing in common. Failure to give credit to source of the information their instructions are based off. Lot are rewritten as if they are the source of the information. Result is people are no longer able to find the source. I would 100 percent prefer people don't re...
2018 Feb 06
0
rJava garbage collect
On 6 February 2018 at 04:34, Benjamin Tyner <btyner at gmail.com> wrote: > Hi > > Does rJava offer a way to instruct the JVM to perform a garbage collection? Do you really, really need to run the garbage collector? Consider reading: https://stackoverflow.com/questions/5086800/java-garbage-collection Regards Martin