Displaying 3 results from an estimated 3 matches for "uenoku".
Did you mean:
heroku
2019 Mar 10
2
GSoC2019 - Improve function attribute inference
...ct?
I have made toy ML-Like language compiler with some static analysis, and I
implemented llvm backend for my original architecture. So I’m really
interested in this project. I think these experiences will be helpful in
the project.
Please visit my website for more information about me.
https://uenoku.github.io/en/
Regards,
Hideto Ueno
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190310/7f9426a4/attachment.html>
2019 Dec 08
2
How to generate a .ll file with functions' parameter names
...deto,
thanks for your answer. Unfortunately I'm still using llvm 6.0 and in
llvm-dis I don't see that option. I tried reading the full list of options
but I didn't see an alternative.
Do you have any suggestions?
Thanks
Alberto
Il giorno dom 8 dic 2019 alle ore 08:50 Hideto Ueno <
uenoku.tokotoko at gmail.com> ha scritto:
> Hi Alberto,
>
> Variable names in LLVM IR are meaningless and only used for debugging.
> However, if you want to preserve the variable name, you can use
> `-fno-discard-value-names` option.
>
> Regards,
> Hideto
>
> 2019年12月8日(日...
2019 Dec 08
2
How to generate a .ll file with functions' parameter names
Hi all,
I'm trying to obtain a .ll with parameters name for every function. My
simple c C is the following:
int sum(int a, int b) {
return a+b;
}
int main() {
sum(1,2);
}
I obtain the .ll with the following commands:
clang -emit-llvm sum.c -c
llvm-dis-7 sum.bc
The obtained .ll is:
cat sum.ll
; ModuleID = 'sum.bc'
source_filename = "sum.c"
target datalayout =