Displaying 3 results from an estimated 3 matches for "test_clang_out".
2017 Dec 19
4
MemorySSA question
...*restrict a, int *restrict b, int *restrict c, int *restrict
d, int *restrict e) {
int i;
for (i = 0; i < N; i = i + 5) {
a[i] = b[i] + c[i];
}
for (i = 0; i < N - 5; i = i + 5) {
e[i] = a[i] * d[i];
}
}
I compiled this program using the following commands:
clang -c -o test_clang_out.ll -emit-llvm -O3 test.c
opt -o test_opt_out.ll -O3 -passes='print<memoryssa>' -disable-output
test_clang_out.ll > out 2>&1
The relevant parts of the file "out" are shown below:
.
....
2017 Dec 19
2
MemorySSA question
...or (i = 0; i < N; i = i + 5) {
>> a[i] = b[i] + c[i];
>> }
>>
>> for (i = 0; i < N - 5; i = i + 5) {
>> e[i] = a[i] * d[i];
>> }
>> }
>>
>> I compiled this program using the following commands:
>>
>> clang -c -o test_clang_out.ll -emit-llvm -O3 test.c
>> opt -o test_opt_out.ll -O3 -passes='print<memoryssa>' -disable-output
>> test_clang_out.ll > out 2>&1
>>
>> The relevant parts of the file "out" are shown below:
>> .
>>...
2020 Aug 25
9
[Proposal][Debuginfo] dsymutil-like tool for ELF.
Hi,
We propose llvm-dwarfutil - a dsymutil-like tool for ELF.
Any thoughts on this?
Thanks in advance, Alexey.
======================================================================
llvm-dwarfutil(Apndx A) - is a tool that is used for processing debug
info(DWARF)
located in built binary files to improve debug info quality,
reduce debug info size and accelerate debug info processing.