search for: test_o3

Displaying 1 result from an estimated 1 matches for "test_o3".

Did you mean: test_3
2017 Jun 21
2
AVX 512 Assembly Code Generation issues
...; > > int a[256], b[256], c[256]; > foo () { > int i; > for (i=0; i<256; i++) { > a[i] = b[i] + c[i]; > } > } > > i first generated its .ll file via clang > > clang -S -emit-llvm test.c -o test.ll > > then i optimized it; > > opt -S -O3 test.ll -o test_o3.ll > > then i used llc for code generation > > llc -mcpu=skylake-avx512 -mattr=+avx512f test_o3.ll -o test_o3.s > > llc -mcpu=knl -mattr=+avx512f test_o3.ll -o test_o3.s > > > here is my generated code; > > > > .text > .file "filer_o3.ll" > .gl...