Displaying 3 results from an estimated 3 matches for "irbuiler".
Did you mean:
irbuilder
2017 Apr 08
2
How to insert vector type input parameter for function in C/C++ API?
...y C/C++ API from
LLVM framework. I am using LLVM3.8.
Basically, I want to generate TARGET (Refer to below) LLVM-IR code for
SOURCE function by C/C++ API.
As you see below, the AVX2 data type is __m256i which is vector type. How
can I indicate vector type (function return type, input parameters) for
IRBuiler by C/C++ APIs?
I don't see any example online and please let me know if anybody has
examples.
SOURCE:
#include "immintrin.h"
__m256i sum(__m256i a, __m256i b) {
return a+b;
}
TARGET:
michael at michael-Precision-Tower-3420:~/Year_2017/work_DEMO$ cat avx2_add2.ll
; ModuleID =...
2017 Apr 08
2
How to insert vector type input parameter for function in C/C++ API?
...LVM3.8.
>> Basically, I want to generate TARGET (Refer to below) LLVM-IR code for
>> SOURCE function by C/C++ API.
>> As you see below, the AVX2 data type is __m256i which is vector type. How
>> can I indicate vector type (function return type, input parameters) for
>> IRBuiler by C/C++ APIs?
>>
>> I don't see any example online and please let me know if anybody has
>> examples.
>>
>>
>>
>> SOURCE:
>> #include "immintrin.h"
>> __m256i sum(__m256i a, __m256i b) {
>> return a+b;
>> }
>>...
2017 Apr 08
3
How to insert vector type input parameter for function in C/C++ API?
...nt to generate TARGET (Refer to below) LLVM-IR code for
>>>> SOURCE function by C/C++ API.
>>>> As you see below, the AVX2 data type is __m256i which is vector type.
>>>> How can I indicate vector type (function return type, input parameters) for
>>>> IRBuiler by C/C++ APIs?
>>>>
>>>> I don't see any example online and please let me know if anybody has
>>>> examples.
>>>>
>>>>
>>>>
>>>> SOURCE:
>>>> #include "immintrin.h"
>>>> __m256i...