Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Heap memory allocation"
2011 Jul 25
2
[LLVMdev] Stack implementation
I'm translating the source of stack-based virtual machine into LLVM IR and
my plan is to implement the stack in LLVM IR (using alloca/load/store) in
order to emulate the VM's stack and then use the optimization phase
"mem2reg". Therefore I'm going to have a stack pointer that points to the
top of my stack. I'm curious whether I will have to implement that in a
2011 Jul 25
0
[LLVMdev] Stack implementation
Piotr Kaleta <piotrek.kaleta at gmail.com> writes:
> I'm translating the source of stack-based virtual machine into LLVM IR and
> my plan is to implement the stack in LLVM IR (using alloca/load/store) in
> order to emulate the VM's stack and then use the optimization phase
> "mem2reg". Therefore I'm going to have a stack pointer that points to the
> top
2003 Sep 26
1
Anyone tried windows binaries from www.gaztronics.net/rsync.php?
[I'm not subscribed to this list, please CC me on replies]
Hi,
well, the topic says it all ;)
I want to know if it's safe to use them (yes, i know it's not safe,
but if someone says 'they fucked my computer' i will know i can't use
them. If noone says anything i will find someone to test them ;))
Thanks.
--
Piotrek
irc: #debian.pl
Mors Drosophilis melanogastribus!
2014 Feb 12
2
Connection from host to lxc container dbus
Hi,
I am unsuccessfully trying to connect from host to containers dbus.
Inside container dbus socket file is visible as /run/dbus/system_bus_socket.
The problem is that /run is mounted as tmpfs in container (by systemd on
container) and thus the directory content is not visible outside the
container.
Is there any way to make this file visible also outside the container?
Regards,
Piotrek
2015 Sep 18
2
is R syntax closed?
hi,
i'm new to R and i discovered that for years people are complaining
about lacking of very basic and hopefully simple things, like multiline
comment, some marker for 'command doesn't end at this line' etc.
so my question is why some of those things are still not implemented? is
it because of compatibility/policy reasons? is R syntax done and any
extensions are forbidden?
2014 Mar 19
2
[LLVMdev] getElapsedWallTime unnecessary heap allocation and memory leak
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Bryan Keiren
> Subject: [LLVMdev] getElapsedWallTime unnecessary heap allocation and memory leak
> In the file \lib\Support\Process.cpp on line 60, it seems as though an
> unnecessary heap allocation and memory leak occurs.
> static TimeValue getElapsedWallTime() {
> static
2007 Apr 29
1
[debug] package - Error in all.levs (PR#9638)
Dear All,
I encountered the following problem:
fun1 <- function(x){
2*cos(x)
}
>library(debug)
> mtrace(fun1)
> fun1(0.1)
Error in all.levs[[j]] : subscript out of bounds
> sessionInfo()
R version 2.5.0 (2007-04-23)
i386-pc-mingw32
locale:
LC_COLLATE=Polish_Poland.1250;LC_CTYPE=Polish_Poland.1250;
LC_MONETARY=Polish_Poland.1250;LC_NUMERIC=C;LC_TIME=Polish_Poland.1250
attached
2014 Mar 19
2
[LLVMdev] getElapsedWallTime unnecessary heap allocation and memory leak
On Wed, Mar 19, 2014 at 6:18 PM, Bryan Keiren <
bryan.keiren at guerrilla-games.com> wrote:
> We are indeed trying to completely clean the heap before exiting main().
>
Which means that you either don't have threads, or you join all threads
before main exits.
Is that the case?
Good for you if so!
>
>
> -----Original Message-----
> From: Caldarale, Charles R
2014 Mar 19
3
[LLVMdev] getElapsedWallTime unnecessary heap allocation and memory leak
In the file \lib\Support\Process.cpp on line 60, it seems as though an unnecessary heap allocation and memory leak occurs.
This is the offending code:
static TimeValue getElapsedWallTime() {
static TimeValue &StartTime = *new TimeValue(TimeValue::now());
return TimeValue::now() - StartTime;
}
The issue is that the StartTime variable's value is allocated on the heap, after which a
2004 Jun 14
4
[LLVMdev] Memory Alignment, Heap allocation.
Hi,
1.
A small question: How do I ensure memory alignment? I want all malloced
memory, globals and functions to be 4-byte aligned. Does llvm have any
".align" keyword?
I'm currently implementing a small scheme toy-compiler, and want to use
the lowest 2 bits for type tags. It's Currently 380 lines of
scheme-code[1], quite similar to the compiler in SICP[2], which I hope to
get
2004 Jun 14
0
[LLVMdev] Memory Alignment, Heap allocation.
Tobias Nurmiranta wrote:
> Hi,
Chris and others can give you better ideas on the ideal ways to
implement what you want, but I'll give some ideas/answers for now.
>
> 1.
>
> A small question: How do I ensure memory alignment? I want all malloced
> memory, globals and functions to be 4-byte aligned. Does llvm have any
> ".align" keyword?
No, LLVM does not
2015 Jul 22
9
[LLVMdev] Clang devirtualization proposal
Hi folks,
this summer I will work with Richard Smith on clang devirtualization. Check
out our proposal:
https://docs.google.com/document/d/1f2SGa4TIPuBGm6y6YO768GrQsA8awNfGEJSBFukLhYA/edit?usp=sharing
And modified LangRef
http://reviews.llvm.org/D11399
You can also check out previous disscussion that was started before our
proposal was ready -
2018 Aug 22
2
LLVM and heap-allocated thread stacks
In some language implementations, such as the Glasgow Haskell Compiler
(GHC) and the reference implementation of Go, a thread’s stack is
allocated as a data structure on the garbage-collected heap. The
garbage collector is free to move this data structure whenever it is
invoked.
Currently, GHC’s LLVM backend does not use the C stack. However, there
have been discussions about whether using the
2000 Mar 03
1
tapply, sorting and the heap
howdy gurus,
I'm new and green and I was hoping for a tiny bit of your expertise.
I'm running out of virtual memory (heap?) when summing using tapply. I've
already used --vsize=90M on my hpux machine. (details below)
Can I pre-sort or something to prevent my error?
thanks,
John Strumila
john.strumila at corpmail.telstra.com.au
> gc()["Vcells","total"]
[1]
2003 Apr 08
2
[Patch] Require extra --stats to emit heap statistics
Since the heap statistics were added, I have viewed thousands of rsync
reports (with --verbose and --stats), and not once have I had a need
for them. So for me, they're just noise.
Here is a 3-part patch to v2.5.6 that treats --stats in a similar
fashion to --verbose in that additional --stats will get you more
statistics. For this initial case, there's only one additional level
of
2018 Mar 21
2
[PATCH] tests: regressions: make test-big-heap use a temporary empty file
Newer versions of qemu use file locking for the images by default, and
apparently that does not work with /dev/null. Since this test just
calls qemu-img to get the format of an empty image, create a temporary
one instead.
---
tests/regressions/test-big-heap.c | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/tests/regressions/test-big-heap.c
2004 Jun 14
0
[LLVMdev] Memory Alignment, Heap allocation.
On Mon, 14 Jun 2004, Tobias Nurmiranta wrote:
> A small question: How do I ensure memory alignment? I want all malloced
> memory, globals and functions to be 4-byte aligned. Does llvm have any
> ".align" keyword?
In the medium term, we plan to add alignment requirements to the
alloca/malloc instructions and to globals (vars/functions) but we do not
have this yet. Currently
2003 Nov 19
1
heap error while trying to run TrueSync Dekstop
Hello,
I'm trying to run the "TrueSync Desktop" app (the equivalent of Hotsync
for non-Palm handhelds, but without any Linux port, unfortunately), and
I get the following error:
err:heap:HEAP_ValidateInUseArena Heap 40360000: in-use arena 403e7eb8
next block has PREV_FREE flag
wine: Unhandled exception (thread 0009), starting debugger...
The loading screen "TrueSync
2017 Dec 16
2
Replace call stack with an equivalent on the heap?
Hello,
I'm implementing a custom Haskell-to-LLVM compiler, and in my
experimentation, noticed that GHC is much slower than clang certain
examples, such as the ackermann function. However, from reading their
respective IRs (Cmm for GHC and LLVM for clang), I don't really see much of
a difference. Here is a link to the numbers. (n, m) are the parameters to
the ackermann function
1999 Apr 16
1
Heap size
Hi,
I am trying to create a matrix 8000x8000 but cannot
make R work properly with:
rgui --vsize 30 --nsize 1000000
I can't pass an nsize value more than 1000000.
What are the limits uder windows 98 ?
Best,
Costas
--
-------------------------------------------------------------------------
Konstantinos E. Vorloou | Tel: +44 (0)191 374 1821
Department of Economics &