Displaying 20 results from an estimated 20000 matches similar to: "[LLVMdev] Online opt style code pass / profiling possible in LLVM JIT?"
2010 Feb 17
1
[LLVMdev] Need help getting LLVM JIT running on ARM
Is this the configuration you would give for an iphone?
-Puyan
----- Original Message -----
From: "Jim Grosbach" <grosbach at apple.com>
To: "Puyan Lotfi" <puyan at gatech.edu>
Cc: llvmdev at cs.uiuc.edu
Sent: Wednesday, February 17, 2010 4:42:37 PM GMT -05:00 US/Canada Eastern
Subject: Re: [LLVMdev] Need help getting LLVM JIT running on ARM
Specifying --host,
2010 Feb 17
0
[LLVMdev] Need help getting LLVM JIT running on ARM
Specifying --host, --build and --target should work. For example,
$ configure --host=arm-apple-darwin10 --build=i686-apple-darwin10 --target=arm-apple-darwin10 --enable-targets=arm
-Jim
On Feb 17, 2010, at 12:26 PM, Puyan Lotfi wrote:
> Does anyone know what I should be doing if I want to cross compile LLVM for the ARM architecture?
> I want to use the LLVM JIT on ARM for a class
2010 Feb 17
2
[LLVMdev] Need help getting LLVM JIT running on ARM
Does anyone know what I should be doing if I want to cross compile LLVM for
the ARM architecture?
I want to use the LLVM JIT on ARM for a class project this semester.
I have built and/or installed a few different gcc arm (arm-linux, and also
one that is arm-elf) toolchains, and have had trouble getting LLVM 2.6 to
configure and compile using the --host and --build switches of the config.
If there
2010 Feb 21
0
[LLVMdev] Possibly using a broken version of GCC to build LLVM (file won't finish compiling).
Puyan,
There is a doc on the document page which describe the list of broken GCCs.
You'll need to check it once the docs are online.
Rajika
On Sun, Feb 21, 2010 at 11:33 AM, Puyan Lotfi <puyan at gatech.edu> wrote:
> Hi
>
> Does there exist a list of relative compile times for source files in LLVM?
> I am doing a build for ARM on an actual ARM device, and
>
2010 Feb 21
1
[LLVMdev] Possibly using a broken version of GCC to build LLVM (file won't finish compiling).
>From a cached version of the Getting Started Guide, I have found:
"GCC 3.4.4 (CodeSourcery ARM 2005q3-2): this compiler miscompiles LLVM
when building with optimizations enabled. It appears to work with
"make ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O1" or build a debug build."
I'm trying that now.
-Puyan
On Sun, Feb 21, 2010 at 1:22 AM, Rajika Kumarasiri <rajika at
2010 Feb 21
3
[LLVMdev] Possibly using a broken version of GCC to build LLVM (file won't finish compiling).
Hi
Does there exist a list of relative compile times for source files in LLVM?
I am doing a build for ARM on an actual ARM device, and
CodeGenDAGPatterns.cpp is taking a really long time to compile (it's been
like 20 minutes or more).
I don't even get an error. All the files before it compile pretty quickly
but this file in particular just won't finish.
The version of gcc I have on
2017 Aug 15
5
[RFC] mir-canon: A new tool for canonicalizing MIR for cleaner diffing.
Hi,
My name is Puyan and I've been exploring ways to improve the state of
instruction level diffing using llvm and MIR. Below is a proposal for a new
llvm tool meant to address issues encountered when diffing at the machine
level. I'm eager to hear the community's feedback.
Thanks
PL
mir-canon: A new tool for canonicalizing MIR for cleaner diffing.
Problem Statement and
2010 Mar 27
2
[LLVMdev] PTX target for LLVM?
Hi
I am interested to know: are there are any LLVM targets in the works
for Nvidia's PTX ISA?
Also if anyone knows about Ocelot (a project done by some students at
my school): it does the opposite of what I am trying to do (translates
PTX to LLVM IR to run Cuda kernels on the CPU).
Thanks in advance.
-Puyan
2010 Mar 27
0
[LLVMdev] PTX target for LLVM?
On Mar 26, 2010, at 11:28 PM, Puyan Lotfi wrote:
> Hi
>
> I am interested to know: are there are any LLVM targets in the works
> for Nvidia's PTX ISA?
>
> Also if anyone knows about Ocelot (a project done by some students at
> my school): it does the opposite of what I am trying to do (translates
> PTX to LLVM IR to run Cuda kernels on the CPU).
I don't know of
2017 Aug 22
5
[RFC] mir-canon: A new tool for canonicalizing MIR for cleaner diffing.
Patch for review.
On Mon, Aug 21, 2017 at 11:45 PM Puyan Lotfi <puyan.lotfi.llvm at gmail.com>
wrote:
> Ping.
>
> Still working on preparing code for review. Will have a patch for review
> ready in the coming days.
>
> PL
>
> On Tue, Aug 15, 2017 at 12:06 PM Puyan Lotfi <puyan.lotfi.llvm at gmail.com>
> wrote:
>
>> Hi,
>>
>>
>>
2018 Jan 08
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
When we discussed this our line of thought was like this:
- LLVM IR already uses %name for SSA values which is closer to what a vreg is than to what a physreg is. It would be neat to draw that parallel to llvm IR.
- We wanted another sigil for physregs so they are easy to differentiate from vregs to allow people to differentiate vregs/physregs even if they don't know all the physreg names of
2017 Dec 26
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
Can we use %% for vregs? Seems slightly easier to remember %/%% than $/%.
Also, %eax and $some_symbol are already familiar from typical assembly
syntax and we probably don't want to break that association.
It's all a bikeshed, but being more consistent with assembly is probably a
win.
-- Sean Silva
On Dec 25, 2017 11:31 AM, "Puyan Lotfi via llvm-dev" <
llvm-dev at
2018 Jan 08
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
On Mon, Jan 8, 2018 at 2:27 PM, Matthias Braun <mbraun at apple.com> wrote:
> When we discussed this our line of thought was like this:
>
> - LLVM IR already uses %name for SSA values which is closer to what a vreg
> is than to what a physreg is. It would be neat to draw that parallel to
> llvm IR.
> - We wanted another sigil for physregs so they are easy to differentiate
2017 Dec 25
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
Hi
A few of us have discussed enhancing the MIR vregs to include support for
named-vregs. At the moment named regs are only supported for physical
registers and number regs are reserved for vregs.
We've decided that to properly implement a syntax for MIR named vregs we
first need to reorganized the sigils used for physical registers and
external symbols so our proposal is to swap the sigil
2010 Mar 28
4
[LLVMdev] PTX target for LLVM?
To the list:<br />
<br />
Tons of LLVM research is being done that is damn near worthless to anyone but the person who did it because the team doesn't publish supporting code or even describe at a high level description of the algorithms they're using. And the excuse is always, ALWAYS the same: "we need to clean up the code before we release it."<br />
<br
2018 Jul 24
3
profiling JIT compiled code with perf
Hi,
On 2018-07-19 14:57:42 +0200, Frank Tetzel via llvm-dev wrote:
> > Have you seen https://reviews.llvm.org/D44892? we are using it in
> > Julia to use perf on jitted code.
>
> No, I did not see this patch before. Thanks a lot for the pointer.
>
> It seems to be doing exactly what I want. Let's see if I get it working.
FWIW, I just merged this. Did you have any
2008 Jan 30
3
[LLVMdev] How to use profiling runtime for program profiling?
Hi, all
I have a question about how to profile program with LLVM. When I tried
to compile the
instrumented version of program after using "-insert-block-profiling", I got
error complaining
" undefined reference to `llvm_start_block_profiling'.
I found that there is a "runtime"directory in llvm source directory
but in the Makefile, it said
llvm gcc 4 and above
2008 Jan 30
0
[LLVMdev] How to use profiling runtime for program profiling?
Hi Haifeng
> I have a question about how to profile program with LLVM. When I tried
> to compile the instrumented version of program after using "-insert-
> block-profiling", I got
> error complaining " undefined reference to
> `llvm_start_block_profiling'.
>
> I found that there is a "runtime"directory in llvm source directory
> but in the
2011 Jan 20
0
[LLVMdev] Linking an opt optimization pass to clang?
Hi
I am trying to figure out how to link an opt pass to llvm-gcc or clang.
Is there a document on how to do this?
-Puyan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110120/05d5499c/attachment.html>
2006 Nov 17
1
[LLVMdev] dump profiling data
Hi,
On Nov 1, 2006, at 7:31 PM, Chris Lattner wrote:
> On Wed, 1 Nov 2006, Nico Moser wrote:
>> sorry but I can't found where the profiling data (llvmprof.out[?]) is
>> generated. Perhaps soembody has a hint for me?
>
> Take a look at how the llvm/utils/profile.pl script works.
In this script the lli command get the load-argument "somewhere/
profile_rt.so".