Displaying 20 results from an estimated 500 matches similar to: "[LLVMdev] llvm-2.7: --with-udis86 failure"
2009 Feb 12
6
[LLVMdev] fastcc, tail calls, and gcc
Two related questions.
This is with LLVM 2.4 doing a JIT compile to x86-64. (I generate LLVM
IR using an IRBuilder instance, compile/optimize, and then call
getPointerToFunction() to get a "native" function pointer.)
(1) My reading of various mailing list messages seems to indicate
that a function marked as using the "fastcc" calling convention
2009 Aug 14
0
[LLVMdev] udis86 sse4.1 and 4.2?
To disassemble jit code I typically use the udis86 support. Are there
patches floating around to support SSE4.1 and SSE4.2 in this? I'd like to
use it on a nehalem based machine and investigate the llvm code generation
for SSE4.2 in a jit context.
thanks
bill
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2004 Nov 07
2
Flag file management techniques using rsync
G'day,
I am just getting into rsync and have been very impressed with performance
and reliability. There is one thing I haven't worked out how to do yet and
I haven't found much with several Google sessions or by way of consulting
the examples.
I am looking for a way to check for (or duplicate) single flag files to and
from a remote host (without any dummy spit errors when it is not
2009 Jan 10
2
Problem with compiling shared C/C++ library for loading into R (Linux)
I am using the .Call interface to call c++ code from R. For that, I am
trying to create a dynamic library (mylib.so)
using "R CMD SHLIB" by linking my own c++ code and an external c++
library (blitz++).
The makefile works fine on my Mac, produces mylib.so and I am able to
call .Call() from R, but on a linux
server (I think Debian), I got the following error:
----------
/usr/bin/ld:
2009 Jan 10
2
Problem with compiling shared C/C++ library for loading into R (Linux)
I am using the .Call interface to call c++ code from R. For that, I am
trying to create a dynamic library (mylib.so)
using "R CMD SHLIB" by linking my own c++ code and an external c++
library (blitz++).
The makefile works fine on my Mac, produces mylib.so and I am able to
call .Call() from R, but on a linux
server (I think Debian), I got the following error:
----------
/usr/bin/ld:
2009 Mar 02
2
[LLVMdev] Multiple copies of each mailing-list message?
Is anyone else receiving multiple (typically 2 or 3) copies of each mailing list message?
-- Jeff
2009 Feb 12
0
[LLVMdev] fastcc, tail calls, and gcc
On Thu, Feb 12, 2009 at 5:34 PM, Jeff Kuskin <jk500500 at yahoo.com> wrote:
> Two related questions.
> (2) Why does the x86-64 JIT backend generate a "ret $0x8" instruction
> to return from a fastcc function that is (a) marked as fastcc
> (CallingConv::Fast); but (b) takes no arguments and returns 'void'?
fastcc generated code ends with this:
> c20800
2010 Aug 11
3
Using command line --file or -f
*What I want to do:
*Create a windows shortcut that will start the R gui **and**
simultaneously source a file
*What I have already tried:
*This almost works, but it's not the interactive R GUI:
R --no-save --sdi -file="C:\SomePath\example.R"
These open the R GUI, but doesn't recognize -f --f --file -file
RGUI --no-save --sdi -file="C:\SomePath\example.R"
2016 Feb 08
3
strace clang refers files from lib/tls/x86_64 multiple times
Greetings!
Sample program:
int main(int argc, char **argv)
{
int myLocal=0xAA;
return 0;
}
Command: clang t.c -o a.o -c
With above simple program we are observing that clang is stat-ing and trying to open various files from lib/tls location. Eventually all calls to "lib/tls" leads to ENOENT (No such file or directory)!
<sample_strace>
2010 Jun 30
0
[LLVMdev] vmkit build problems
Hi again Nicolas,
Can you please tell me the output of your llvm-gcc -v
and llvm-config -version?
Mine is below, perhaps its because I built llvm with enable-jit?
Do you have users of vmkit? ie has anyone other than
the llvm team been successful at building and running
vmkit?
I tried on a core2 machine (albeit also karmic) and have
the same problem.
Can you build a fresh machine (virtual
2010 Jun 30
2
[LLVMdev] vmkit build problems
Hi Zoe,
Unfortunately, I don't have access to a x64 machine anymore, so I can't test
that architecture on vmkit. Could you install a virtual machine on your
machine that is x86_32? I know it has been successfully built and ran on
x86_32 on different systems.
Cheers,
Nicolas
On Wed, Jun 30, 2010 at 7:49 AM, Zoe Wolk <zoewolk at gmail.com> wrote:
> Hi again Nicolas,
>
>
2009 Oct 15
1
[LLVMdev] [Fwd: Re: strace for whole-program bitcodes]
>>> someone suggested me to use gold-plugin, I know nothing about it yet, I
>will
>>> have a try later. Does anyone have a good solution for this problem?
>>
>> Afaik gold does not help here. I tried it and managed to only generate
>> native code.
>
>"Just" gold isn't quite good enough, because at the last final link
>steps gold will
2010 Jul 05
0
[LLVMdev] vmkit build problems
Hi Zoe,
maybe you've already solved your problem with VMKit configuration, but here
you can find a mini-tutorial
that I've done to guide people on VMKit installation.
http://www2.dcc.ufmg.br/laboratorios/llp/wiki/doku.php?id=afpf
Best regards,
Alysson
On Wed, Jun 30, 2010 at 1:34 PM, nicolas geoffray <
nicolas.geoffray at gmail.com> wrote:
> Hi Zoe,
>
> Unfortunately, I
2002 Sep 17
1
Using rsync for two-waz-synchronisation
Hello,
is there any way to use rsync for two-way-syncronisation? I want to use
it to keep the data on two hosts consistent. Sometimes one of this hosts
(sometimes the first, sometimes the second) changes its location.
If the two hosts are at the same location I want automatically rsync them.
The data only changes at one hosts but it is not defined on which host
it changes.
For example:
I have
2013 Nov 25
4
question about file {} type
My class reads like:
class name1::name2 ($gidvariable) {
file { "somepath-to-file":
ensure => file,
mode => ''0640'',
gid => $gidvariable,
}
}
The problem is that the file isn''t getting set to the $gidvariable''s value
which is a string "abc".
The other things work (presence as file, mode).
Stuart
--
You
2007 Nov 21
1
[LLVMdev] tutorial
Hello
I recently discovered llvm and have been working my way through the
tutorial on implementing a little language. (Using llvm built from svn
on 64 bit x86 architecture).
I had two questions that would help me get kickstarted over the holidays.
Is there any easy way to get the jit to dump the assembly equivalent
of the generated machine code? In the documentation so far I've not
seen it
2015 May 03
3
Samba 4 fileserver perfomance
Here my samba conf file:
[global]
??? workgroup = MYGROUP
?? ?server string = Samba Server Version %v
?
??? interfaces = lo eth0 x.x.x.x/x #my ip and mask
?? ?hosts allow = 127. 10.0.
??? log file = /var/log/samba/log.%m
?? ?max log size = 50
# ----------------------- Standalone Server Options ------------------------
?? ?security = user
?? ?passdb backend = tdbsam
#
2007 Nov 09
1
[LLVMdev] Newbie JITter
Thanks Evan.
On 09/11/2007, at 6:50 PM, Evan Cheng wrote:
>> 1. What optimization passes, if any, should I run on the module
>> before I pass it to the ExecutionEngine.
>
> The default JIt driver, lli, runs everything.
My reading of the lli source indicates that it's not explicitly doing
any opt passes - is that happening implicitly in the ExecutionEngine?
I can see
2011 Jan 05
2
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
2011/1/5 Óscar Fuentes <ofv at wanadoo.es>:
> Ruben Van Boxem <vanboxem.ruben at gmail.com> writes:
>
>> And this is why I don't understand configure checks for windows... There's
>> only one/two header/library sets... The Windows SDK and MinGW. This info
>> should be built in IMHO...
>
> Although the panorama is not so diverse as the Unix world,
2006 Sep 03
1
Returning different values with stubs
Right now I''m working on adding tests to a method that looks like this:
def get_via_redirect(path, args={})
get path, args
follow_redirect! while redirect?
status
end
So, I want to confirm that get is called and that status is returned
but I also want to see that when the value of redirect? effects how
many times follow_redirect is called. Is there