Displaying 8 results from an estimated 8 matches for "chamith".
Did you mean:
chait
2018 Mar 25
0
[GSOC 2018] Improve function attribute inference
Hi All,
I have shared the draft now. Please check and comment if you get time.
Regards
Buddhika
On Sat, Mar 17, 2018 at 4:29 PM, buddhika chamith <chamibuddhika at gmail.com>
wrote:
> Hi All,
>
> I have attached a draft (somewhat incomplete yet) of my proposal herewith.
> Greatly appreciate any feed back on it (specially on the timeline bit since
> I am not yet quite sure on the work distribution of improving each
>...
2018 Mar 03
1
[GSOC 2018] Improve function attribute inference
...or optimization.
Finally, have a look at the email thread linked from the open projects page.
Oh, and a refresher on abstract interpretation / static analysis won't hurt
either.
Of course, feel free to ask questions about any of these things.
Nuno
-----Original Message-----
From: buddhika chamith
Sent: Friday, March 2, 2018 5:51 PM
Subject: Re: [llvm-dev] [GSOC 2018] Improve function attribute inference
Hi Nuno,
Thanks. Appreciate if I can get some specific pointers to related code or
documentation that I could start looking to to get myself oriented. I just
started looking to in to li...
2018 Mar 01
2
[GSOC 2018] Improve function attribute inference
...somehow missed this email.
Hi Buddhika,
Thanks for getting in touch and for your interest.
Please submit an application whenever the registration period opens and let
me/us know if you have any question regarding the project and/or GSoC.
Regards,
Nuno
On Sun, Feb 25, 2018 at 1:37 PM buddhika chamith via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
Hi Devs,
I am a PhD student at Indiana University. I am interested in working on the
project on function attribute inference. My current research direction
involves runtime binary optimization using JIT compilation from a lifted
LLVM IR....
2018 Aug 27
2
Testing LLVM XRay
Hi All,
I am trying to test run clang XRay tool. I was following the steps at [1].
But the log file does not seem to get generated. According to the
instructions I used 'fxray-instrument' switch when compiling and then
specified 'patch_premain=true' at XRAY_OPTIONS. Is there anything else that
I need to do? I am on a trunk build of clang. Could that be it? I am on
clang version
2018 Mar 02
0
[GSOC 2018] Improve function attribute inference
...; Thanks for getting in touch and for your interest.
> Please submit an application whenever the registration period opens and
> let me/us know if you have any question regarding the project and/or GSoC.
>
> Regards,
> Nuno
>
>
>
> On Sun, Feb 25, 2018 at 1:37 PM buddhika chamith via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
> Hi Devs,
>
> I am a PhD student at Indiana University. I am interested in working on
> the project on function attribute inference. My current research direction
> involves runtime binary optimization using JIT compi...
2018 Feb 28
0
[GSOC 2018] Improve function attribute inference
On Sun, Feb 25, 2018 at 1:37 PM buddhika chamith via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Hi Devs,
>
> I am a PhD student at Indiana University. I am interested in working on
> the project on function attribute inference. My current research direction
> involves runtime binary optimization using JIT compilation fr...
2018 Feb 25
2
[GSOC 2018] Improve function attribute inference
Hi Devs,
I am a PhD student at Indiana University. I am interested in working on the
project on function attribute inference. My current research direction
involves runtime binary optimization using JIT compilation from a lifted
LLVM IR. I am hoping various runtime information coupled with static
analysis on the IR can provide better avenues for runtime code JITTIng
(akin to PGO).
Anyway I think
2018 Feb 24
1
Parsing a bit code file
I am trying to parse LLVM IR from a bit code file. I went through the
following steps.
hello.cpp
#include <iostream>
int main() {
std::cout << "Hello world!" << "\n";
return 0;}
dump.cpp
#include <llvm/IR/Module.h>#include <llvm/IRReader/IRReader.h>#include
<llvm/IR/LLVMContext.h>#include <llvm/Support/SourceMgr.h>
using