search for: signless

Displaying 20 results from an estimated 26 matches for "signless".

2007 May 08
2
[LLVMdev] Problems with 'make check'
I am getting problems with 'make check' on Linux x86. Several instances of 'couldn't execute "-emit-llvm": no such file or directory' :- FAIL: /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c Failed with posix(ENOENT,no such file or directory) at line 1 while running: -emit-llvm -S /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c -o - | llvm-as | llc -march=c | grep {(unsigned short} couldn't execute "-emit-llvm": no such file or directory 'ma...
2007 May 08
0
[LLVMdev] Problems with 'make check'
> Several instances of 'couldn't execute "-emit-llvm": no such file or directory' :- > > FAIL: /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c > Failed with posix(ENOENT,no such file or directory) at line 1 > while running: -emit-llvm -S /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c -o - | llvm-as | llc -march=c | grep {(unsigned short} > couldn't execute "-emit-llvm": no such file or direct...
2007 May 08
2
[LLVMdev] Problems with 'make check'
>> Several instances of 'couldn't execute "-emit-llvm": no such file or >> directory' :- >> >> FAIL: /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c >> Failed with posix(ENOENT,no such file or directory) at line 1 >> while running: -emit-llvm -S >> /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c -o - | llvm-as >> | llc -march=c | grep {(unsigned short} >> couldn't execute "-emit-ll...
2007 Jun 26
2
[LLVMdev] LLVM 2.0 and integer signedness
Hello, Alberto. > I'm using llvm for instrumenting code, and I need to know if there's a way to > difference between signed and unsigned Values of integer type during an > optimization pass. Types are signless in LLVM 2, operations are not. So, you should probably inspect insts itself, not their operands. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2006 Nov 24
4
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
Reid Spencer schrieb: > Note that C and LLVM types are *not* the same things (despite the > similar names). We are in the process of making this abundantly clear. > The LLVM IR will soon use names like i8, i16, i32, and i64 (signless > integer quantities of specific sizes, regardless of platform). I had explicitly specified the size in the input code using a uint32_t type, the resulting C code used short, which is smaller on my target platform. Philipp
2007 Jun 26
2
[LLVMdev] LLVM 2.0 and integer signedness
...> >> Hello, Alberto. >> >>> I'm using llvm for instrumenting code, and I need to know if >>> there's a way to >>> difference between signed and unsigned Values of integer type >>> during an >>> optimization pass. >> Types are signless in LLVM 2, operations are not. So, you should >> probably inspect insts itself, not their operands. >> >> -- >> With best regards, Anton Korobeynikov. >> >> Faculty of Mathematics & Mechanics, Saint Petersburg State University. >> >> >> ____...
2020 May 20
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...ter, I'm at this commit: commit 2f8b4545f4960778e37114c024073d208751ca89 Author: Adam Straw <adam.d.straw at intel.com<mailto:adam.d.straw at intel.com>> Date: Tue Apr 14 22:49:18 2020 +0300 [mlir] Fix assert on signed integer type in EDSC Integer type in Std dialect is signless so we should be checking for signless integer type instead of signed integer type in EDSC. Differential Revision: https://reviews.llvm.org/D78144 Thanks in advance for the help. Adam Note: I am out of office this Fri and the following Mon but otherwise should be prompt with email repli...
2012 Jul 26
2
[LLVMdev] ccc.c
Does anybody know the purpose of test: projects/test-suite/SingleSource/UnitTests/SignlessTypes/ccc.c
2012 Jul 26
0
[LLVMdev] ccc.c
>From the comment at the top of the file: /* * This file is used to the C calling conventions with signless * LLVM. Integer arguments in this convention are promoted to at * least a 32-bit size. Consequently signed values must be * sign extended and unsigned values must be zero extended to * at least a 32-bit integer type. */ :-) -Gordon > -----Original Message----- > From: llvmdev-bounces...
2006 Nov 24
0
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
...0:09 +0100, Philipp Klaus Krause wrote: > Reid Spencer schrieb: > > > Note that C and LLVM types are *not* the same things (despite the > > similar names). We are in the process of making this abundantly clear. > > The LLVM IR will soon use names like i8, i16, i32, and i64 (signless > > integer quantities of specific sizes, regardless of platform). > > I had explicitly specified the size in the input code using a uint32_t > type, the resulting C code used short, which is smaller on my target > platform. One would think that it should result in a 32-bit unsi...
2007 May 08
0
[LLVMdev] Problems with 'make check'
>>> FAIL: /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c >>> Failed with posix(ENOENT,no such file or directory) at line 1 >>> while running: -emit-llvm -S >>> /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c -o - | llvm-as >>> | llc -march=c | grep {(unsigned short} >>> couldn't exec...
2007 Jun 26
0
[LLVMdev] LLVM 2.0 and integer signedness
...3, Anton Korobeynikov escribió: > Hello, Alberto. > >> I'm using llvm for instrumenting code, and I need to know if >> there's a way to >> difference between signed and unsigned Values of integer type >> during an >> optimization pass. > Types are signless in LLVM 2, operations are not. So, you should > probably inspect insts itself, not their operands. > > -- > With best regards, Anton Korobeynikov. > > Faculty of Mathematics & Mechanics, Saint Petersburg State University. > > > _______________________________________...
2012 Jul 26
1
[LLVMdev] ccc.c
But read the code and then answer the question. :) On 07/25/2012 06:19 PM, Gordon Keiser wrote: > From the comment at the top of the file: > > /* > * This file is used to the C calling conventions with signless > * LLVM. Integer arguments in this convention are promoted to at > * least a 32-bit size. Consequently signed values must be > * sign extended and unsigned values must be zero extended to > * at least a 32-bit integer type. > */ > > :-) > > -Gordon > >&gt...
2011 Sep 28
1
Negative Quartile
...the lower percentiles, which are usually understanded as the best cases, since we are working with an error. My question is, what is the usual thing done in this cases? keep the sign, and read the lower percentiles as bad cases also (being the optimal ones the center ones) or try to somehow get the signless distribution keeping the signs somehow? And if this is the case, how can this be done? Thanks for your time, Best regards
2006 Nov 23
0
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
.... > I already noticed some problems (resulting C code uses different data > types than input). Note that C and LLVM types are *not* the same things (despite the similar names). We are in the process of making this abundantly clear. The LLVM IR will soon use names like i8, i16, i32, and i64 (signless integer quantities of specific sizes, regardless of platform). > Philipp Hope that helps, Phillip. Reid. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailm...
2006 Nov 23
3
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
Reid Spencer schrieb: > On Thu, 2006-11-23 at 19:10 +0100, Philipp Klaus Krause wrote: >> Pertti Kellomäki schrieb: >>> Chris Lattner wrote: >>>> Many aspects of the target compiler can leak through. >>> So if one wants to use the LLVM system as a cross compiler, one >>> has to configure llvm-gcc as a cross compiler? Fair enough, I guess. >> I
2020 May 21
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...d208751ca89 >> >> Author: Adam Straw <adam.d.straw at intel.com> >> >> Date: Tue Apr 14 22:49:18 2020 +0300 >> >> >> >> [mlir] Fix assert on signed integer type in EDSC >> >> >> >> Integer type in Std dialect is signless so we should be checking >> >> for signless integer type instead of signed integer type in EDSC. >> >> >> >> Differential Revision: https://reviews.llvm.org/D78144 >> >> >> >> Thanks in advance for the help. >> >> >&...
2007 Jun 26
0
[LLVMdev] LLVM 2.0 and integer signedness
.... >>> >>>> I'm using llvm for instrumenting code, and I need to know if >>>> there's a way to >>>> difference between signed and unsigned Values of integer type >>>> during an >>>> optimization pass. >>> Types are signless in LLVM 2, operations are not. So, you should >>> probably inspect insts itself, not their operands. >>> >>> -- >>> With best regards, Anton Korobeynikov. >>> >>> Faculty of Mathematics & Mechanics, Saint Petersburg State >>> Univ...
2007 Jun 26
2
[LLVMdev] LLVM 2.0 and integer signedness
...gt;>> I'm using llvm for instrumenting code, and I need to know if >>>>> there's a way to >>>>> difference between signed and unsigned Values of integer type >>>>> during an >>>>> optimization pass. >>>> Types are signless in LLVM 2, operations are not. So, you should >>>> probably inspect insts itself, not their operands. >>>> >>>> -- >>>> With best regards, Anton Korobeynikov. >>>> >>>> Faculty of Mathematics & Mechanics, Saint Petersburg S...
2020 May 26
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...master, I’m at this commit: commit 2f8b4545f4960778e37114c024073d208751ca89 Author: Adam Straw <adam.d.straw at intel.com<mailto:adam.d.straw at intel.com>> Date: Tue Apr 14 22:49:18 2020 +0300 [mlir] Fix assert on signed integer type in EDSC Integer type in Std dialect is signless so we should be checking for signless integer type instead of signed integer type in EDSC. Differential Revision: https://reviews.llvm.org/D78144 Thanks in advance for the help. Adam Note: I am out of office this Fri and the following Mon but otherwise should be prompt with email repli...