Displaying 20 results from an estimated 700 matches similar to: "[LLVMdev] llc - generation of native machine code"
2009 Sep 01
1
[LLVMdev] llc - generation of native machine code
----- Original Message ----
> From aaronngray.lists at googlemail.com Mon Jul 27 15:14:40 2009
> From: aaronngray.lists at googlemail.com (Aaron Gray)
> Date: Mon, 27 Jul 2009 21:14:40 +0100
> Subject: [LLVMdev] llc - generation of native machine code
>
> > On Mon, Jul 27, 2009 at 8:25 AM, Rudskyy<tema13tema at yahoo.de> wrote:
> > > But now I am looking for
2009 Jul 27
0
[LLVMdev] llc - generation of native machine code
On Mon, Jul 27, 2009 at 8:25 AM, Rudskyy<tema13tema at yahoo.de> wrote:
> But now I am looking for generation of machine code for my target. I have
> seen, that “llc” has option "-filetype".
>
> It has default value "-filetype=asm", but has more values, as
> "-filetype=obj" and "-filetype=dynlib".
>
> “obj” is very interesting, but
2009 Jun 28
1
[LLVMdev] LLVM Compiler Infrastructure and GDB debugger
Hallo, LLVMdev!
I have found you in LLVM Developers page (http://llvm.org/developers.cgi).
First thank you for all of your work with LLVM.
About:
I work with the LLVM Compiler Infrastructure to implement a backend for
specific processor xPEC of chip NetX (http://hilscher.com/netx.html).
So C-code already possible compile to the native xPEC assembly code (works
perfect! LLWM a big
2009 Jun 29
3
[LLVMdev] About debug in LLVM!!!
Hi all LLVMdev!
Here is a question:
I try to understand how I can realize a debugging in LLVM!?
I have written a back end for my target and now I need a debug.
I asked developers Chris Lattner and Robert L. Bocchino. They recommend me
ask the LLVMdev.
Is there a tool like "llvm-db" about Robert said?
Here a mail from Robert:
On Jun 29, 2009, at 17:14 PM, Robert L. Bocchino
2009 Jun 29
0
[LLVMdev] About debug in LLVM!!!
Do you want to debug the native executables generated by your back-end?
What debug info format your native executables support?
In general, this is how it works for that case.
1. clang-cc -g generates required debug info in the .bc file.
2. The backend (llc) converts that to Dwarf (or something else as
desired by that back-end).
3. Native debuggers like (gdb) understands Dwarf and provide source
2009 Jun 26
0
[LLVMdev] LLVM Compiler Infrastructure and GDB debugger
Hi Artem,
GDB only works with native applications. If you compile your code to
a native executable with -g, then debug info should work for you.
However, if you've built your own backend, then you may need to add
the debug info hooks etc. If you have further questions, please email
the llvmdev mailing list instead of me directly, thanks!
-Chris
On Jun 26, 2009, at 11:11 AM,
2009 Feb 02
1
[LLVMdev] LLVM and backend
Hallo!
I have found the LLVM-project and hope it can be useful for me in my work.
There is a processor with a simple assembly code (http://hilscher.com/
xPEC- processor).
The task is that I need a "translator" from C/C++ to native assembly code.
And understand, that I need to write a backend specifying my target
(convertion a llvm-IR code to assembly).
Can you help, suggest to
2018 Mar 01
1
Repeated use of dyn.load().
Good question Rolf.
Rui, thanks for pointing out dyn.unload.
When I started using Rcpp a couple of years ago I got burned by stale .so
enough times that I adopted a policy of recompile-then-start new R session.
My workflow does not include Rolf's "brazillion" repeats, so the overhead
of this approach has not been too painful.
The documentation for dyn.unload (via ?dyn.unload)
2011 Apr 20
1
FW: [Rcpp-devel] Question on 5.6 Interfacing C++ code
Hi, apparently I sent my question about using R and C++ to the wrong list,
ironically seeing as that list was called Rcpp. Anyway, I was directed to
post my question here. To summarize my current question, I have found two
commands that I want to be able to put into a package. The commands are 'R
CMD SHLIB X.cc X_main.cc' and
2005 Sep 16
1
corr.test -- use a different null hypothesis
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
First of all, I'm a physicist and therefore I'm not much used to use
statistics. So, please forgive me if this is a FAQ or stupid, but I
failed to find the answer by myself.
I want to use corr.test to test for the correlation of two data sets
(actually I have a lot of data set and perform pairwise testing). But I
wanted to find sets where the
2019 Sep 12
2
Fw: Calling a LAPACK subroutine from R
On 11/09/2019 21:38, Berend Hasselman wrote:
> The Lapack library is loaded automatically by R itself when it needs it for doing some calculation.
> You can force it to do that with a (dummy) solve for example.
> Put this at start of your script:
>
> <code>
> # dummy code to get LAPACK library loaded
> X1 <- diag(2,2)
> x1 <- rep(2,2)
> # X1;x1
> z <-
2010 Feb 20
2
R logo as SVG ?
Hi,
does anybody have the R logo in a vector format preferable SVG?
Need it for Freedesktop (GNOME desktop) integration of Rcmdr ...
Thanx,
jel.
--
Otto-von-Guericke University http://www.cs.uni-magdeburg.de/
Department of Computer Science Geb. 29 R 027, Universitaetsplatz 2
39106 Magdeburg, Germany Tel: +49 391 67 12768
2009 Dec 31
1
readCitationFile encoding
Hi,
does anybody know, how to enforce a certain encoding for
readCitationFile()? Haven't found any usable documentation for this :(
E.g.:
basecit <- system.file("CITATION", package="base")
source(basecit, echo=TRUE, encoding="8859-1")
readCitationFile(basecit)
BTW: 'make check' is a relativ long running task and if one changes
a source file, all
2009 Jan 30
0
[LLVMdev] Writing an LLVM Compiler Backend
Hi Rudskyy,
The place to ask LLVM-related questions is llvmdev at cs.uiuc.edu -- I've cc'd
the list.
2009/1/30 Rudskyy <tema13tema at yahoo.de>
> I need some help in subject: "Writing an LLVM Compiler Backend"!
>
> There is a processor with a simple assembly code (http://hilscher.com/ xPEC- processor). I understand, that I need to convert a llvm-IR code to
2009 Jun 11
0
[LLVMdev] Output to a DLL
On Thu, Jun 11, 2009 at 7:34 AM, Nicolas Capens<nicolas at capens.net> wrote:
> I’d like to be able to write JIT-compiled code to a Windows DLL. I have no
> idea where to start though. Does LLVM already offer some support for this?
You can't use the JIT to compile code for a DLL; it simply isn't
designed for that.
> Or would it be straightforward to write my own DLL writer
2010 Jul 22
6
Xen EOF?
Hi,
just found:
PSARC/2010/250 EOF of Solaris xVM dom0 approved.
So does this mean, Xen is officially dead on Solaris?
Regards,
jel.
--
Otto-von-Guericke University http://www.cs.uni-magdeburg.de/
Department of Computer Science Geb. 29 R 027, Universitaetsplatz 2
39106 Magdeburg, Germany Tel: +49 391 67 12768
2009 Feb 12
1
strange ''too many errors'' msg
Hi,
just found on a X4500 with S10u6:
fmd: [ID 441519 daemon.error] SUNW-MSG-ID: ZFS-8000-GH, TYPE: Fault, VER: 1, SEVERITY: Major
EVENT-TIME: Wed Feb 11 16:03:26 CET 2009
PLATFORM: Sun Fire X4500, CSN: 00:14:4F:20:E0:2C , HOSTNAME: peng
SOURCE: zfs-diagnosis, REV: 1.0
EVENT-ID: 74e6f0ec-b1e7-e49b-8d71-dc1c9b68ad2b
DESC: The number of checksum errors associated with a ZFS device exceeded
2008 Oct 12
3
blue screen: clock interrupt win2008
Hi,
when installing windows server 2008 Std hvm I get always a blue screen
telling me:
''a clock interrupt was not received on a secondary processor within the
allocated time interval''
I googled around and found, that this occured with vista as well:
http://lists.xensource.com/archives/html/xen-changelog/2007-01/msg00170.html
Config is:
+ virt-install --name=win2008ss
2007 Aug 03
2
How to properly finalize external pointers?
Dear R .Call() insiders,
Can someone enlighten me how to properly finalize external pointers in C code (R-2.5.1 win)? What is the relation between R_ClearExternalPtr and the finalizer set in R_RegisterCFinalizer?
I succeeded registering a finalizer that works when an R object containing an external pointer is garbage collected. However, I have some difficulties figuring out how to do that in an
2009 Jun 11
5
[LLVMdev] Output to a DLL
Hi all,
I'd like to be able to write JIT-compiled code to a Windows DLL. I have no
idea where to start though. Does LLVM already offer some support for this?
Or would it be straightforward to write my own DLL writer (no advanced
features needed)? Or maybe I could use an external linker? All help highly
appreciated!
Cheers,
Nicolas
-------------- next part --------------
An HTML