Displaying 20 results from an estimated 10000 matches similar to: "Garbage Reference Sites."
2019 Aug 16
2
How to best deal with undesirable Induction Variable Simplification?
Thanks. I've rebased this patch on top of the recent LLVM (it was straightforward) and applied it in my fork.
It seems to have solved one of the problems I was having. Would LLVM be interested if I submit the updated version for the review?
--
Danila
From: Philip Reames [mailto:listmail at philipreames.com]
Sent: Tuesday, August 13, 2019 19:01
To: Danila Malyutin <Danila.Malyutin at
2019 Aug 13
2
How to best deal with undesirable Induction Variable Simplification?
I've noticed that there was an attempt to mitigate ExitValues problem in https://reviews.llvm.org/D12494 that went nowhere. Were there particular issues with that approach?
--
Danila
From: Philip Reames [mailto:listmail at philipreames.com]
Sent: Saturday, August 10, 2019 02:05
To: Danila Malyutin <Danila.Malyutin at synopsys.com>; Finkel, Hal J. <hfinkel at anl.gov>
Cc: llvm-dev
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
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
2008 Feb 05
0
[LLVMdev] 2.2 garbage collector questions
Jaap Suter wrote:
>> 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
2018 Mar 05
0
garbage on serial console after pxelinux.0 is loaded
A little more info:
I was mistaken in saying that the garbage on the screen doesn't interfere with typed commands/stanzas; it does. If I can type the name of a stanza and hit enter quickly enough before the garbage is spat to the screen, it seems to start loading a kernel, but then it aborts.
And the garbage appears to be varying quantities of '[0n', as in sometimes there will be one
2011 Sep 16
2
[Bug 40938] New: Garbage on screen during "animations"
https://bugs.freedesktop.org/show_bug.cgi?id=40938
Summary: Garbage on screen during "animations"
Product: xorg
Version: unspecified
Platform: All
OS/Version: other
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
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 collector does, I have inserted a
gc(v=T)
call at a spot in my code.
I
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
2009 May 17
5
Dawn of War - Dark Crusade, graphics problem
Hello,
I have some graphics problems with Dark Crusade. I have tested both windowed and fullscreen with lowest settings, it makes no difference. It plays fine in highest settings in Windows, so my graphics card is not the problem. Maybe the drivers for linux is crappy or something, but i havent experienced anything like this before in any other game.
2009 Jun 24
1
[LLVMdev] Garbage Collection Project
Talin wrote:
> A while back there was a discussion thread about whether an accurate,
> concurrent garbage collector could be "generic" in the sense of being
> able to support multiple different languages efficiently. After having
> done some work on this, I now believe that this is the case
Very cool! I haven't worked on a system with good concurrent garbage
2018 Aug 07
0
Run garbage collector when too many open files
In my package [1] I open handles to temporary files from c++, pointer to
the objects containing those handles are returned to R as external
pointer objects. The files are deleted when the corresponding R-object
is deleted and the garbage collector runs:
a <- lvec(10, "integer")
rm(a)
Then when the garbage collector runs the file is deleted. However, on
some platforms (probably
2018 Apr 05
0
garbage on serial console after pxelinux.0 is loaded
-----Original Message-----
From: hpa at zytor.com [mailto:hpa at zytor.com]
Sent: Wednesday, April 04, 2018 4:26 PM
To: Scheie, Peter M
Subject: RE: [syslinux] garbage on serial console after pxelinux.0 is loaded
On April 4, 2018 2:08:12 PM PDT, "Scheie, Peter M" <Petre.Scheie at gd-ms.com> wrote:
>-----Original Message-----
>From: Syslinux [mailto:syslinux-bounces at
2019 Aug 09
4
How to best deal with undesirable Induction Variable Simplification?
Hi Hal,
I see. So LSR could theoretically counteract undesirable Ind Var transformations but it's not implemented at the moment?
I think I've managed to come up with a small reproducer that can also exhibit similar problem on x86, here it is: https://godbolt.org/z/_wxzut
As you can see, when rewriteLoopExitValues is not disabled Clang generates worse code due to additional spills,
2010 Apr 08
1
[LLVMdev] Garbage Collection
Thanks for the example code. Its gives a good idea how the shadow stack
works.
But I have another question. Using the shadow stack is a nice and simple
way to implement GC, but it might have a large runtime overhead per
function call. Is there another way to preserve garbage specific
information (gcroots) through the llvm optimizer and native code
generator? This information could be used to
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
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 a CHARSXP?
Thanks!
Holger
[[alternative
2010 Mar 25
1
[LLVMdev] Garbage Collection
Hello,
I want to add garbage collection support to a compiler with a llvm
backend, using the shadow-stack compiler plugin.
I read the GC tutorial in the LLVM documentation, and the paper about
shadow-stacks. Im currently adding intrinsics to my generated llvm code,
and trying to write code to connected it to my (existing) garbage
collector library. Im not sure yet how everything fits together.
2014 Jul 30
1
Centos 7: printing four copies with Libreoffice prints garbage
I have a Xerox Phaser 3250 printer
It worked perfectly under Centos 6 when I told cups that it was a Xerox Phaser 3150.
It works under Centos 7, too. I can print pdf files from evince and whatnot with no problems, and printing one, two or three copies of a document from libreoffice works as well.
However, if I tell libreoffice to print four copies of a document ("number of copies"
2020 Sep 12
0
Garbage collection of seemingly PROTECTed pairlist
Hi,
In line 5, you are allocating a vector of length nc. Then, in line 12, you
are using nr as a limit, so if nr goes beyond nc, which is happening in
line 39, you are in trouble.
I?aki
On Sat, 12 Sep 2020 at 03:30, Rory Nolan <rorynoolan at gmail.com> wrote:
> I want to write an R function using R's C interface that takes a 2-column
> matrix of increasing, non-overlapping