Displaying 5 results from an estimated 5 matches for "liuyu11".
2014 Aug 28
2
[LLVMdev] how to test the correct of the llvm backend
Hi,everyone
I am a beginner for llvm , now I am writing a llvm backend,I want to know how to test the correctness of llvm backend .
Thank you
liuyu11 at ict.ac.cn
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140828/7fab3104/attachment.html>
2016 Dec 28
0
why clang compile local to global
> On Dec 27, 2016, at 11:09 PM, liuyu11 at ict.ac.cn via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Hello,everyone:
> I want to known how to let clang compile my local array to local variables:
> I have the code :
> int main()
> {
> int a[3]={1,2,3};
>
> int b=7;
> int c...
2018 Apr 24
0
Help: How to define vector element type bool (v8i1) in C builtin function
..._(8 * sizeof(_Bool)))) _Bool' (vector of 8 '_Bool' values)
v4i32_r1 = __builtin_dongxin_add_32(v4i32_r2,v4i32_r2,vm_1);
I searched online ,bool is sizeof 1 byte,and Bool size is also bigger than 1bit. Is there a way I can define a variable which type is v8i1 .
Thanks
YuLiu
liuyu11 at ict.ac.cn
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180424/68242f46/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: bg.jpg
Type: image/jpe...
2016 Dec 28
3
why clang compile local to global
Hello,everyone:
I want to known how to let clang compile my local array to local variables:
I have the code :
int main()
{
int a[3]={1,2,3};
int b=7;
int c=8;
int d=9;
int e=10;
int f=11;
test(b,c,d,e,f,a);
return 0;
}
I use clang command:clang --target=mipsel -emit-llvm -S a.c -o a.ll
The a.ll is:
@main.a = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3],
2018 Apr 22
0
Subject: How to define vector element type bool in builtin function
...eter of incompatible type '__attribute__((__vector_size__(8 * sizeof(_Bool)))) _Bool' (vector of 8 '_Bool' values)
v4i32_r1 = __builtin_dongxin_add_32(v4i32_r2,v4i32_r2,vm_1);
I really do not know how to define a vector type whose element type is bool .Appreciate for your help
liuyu11 at ict.ac.cn
From: via llvm-dev
Date: 2018-04-22 03:00
To: llvm-dev
Subject: llvm-dev Digest, Vol 166, Issue 63
Send llvm-dev mailing list submissions to
llvm-dev at lists.llvm.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev...