search for: t_integ

Displaying 6 results from an estimated 6 matches for "t_integ".

Did you mean: integ
2012 Oct 10
3
[LLVMdev] Inconsistency in the LLVM docs
http://llvm.org/docs/LangRef.html#i_inttoptr The 'inttoptr' instruction takes an integer<http://llvm.org/docs/LangRef.html#t_integer> value to cast, and a type to cast it to, which must be a pointer<http://llvm.org/docs/LangRef.html#t_pointer> type. The final example is: %Z = inttoptr <4 x i32> %G to <4 x i8*>; yields truncation of vector G to four pointers The result is not a pointer type, but a vector...
2017 Nov 29
3
RFC: Adding 'no-overflow' keyword to 'sdiv'\'udiv' instructions
...Overview: """"""""" The '``udiv``' instruction returns the quotient of its two operands. Arguments: """""""""" The two arguments to the '``udiv``' instruction must be :ref:`integer <t_integer>` or :ref:`vector <t_vector>` of integer values. Both arguments must have identical types. Semantics: """""""""" The value produced is the unsigned integer quotient of the two operands. Note that unsigned integer division and signed in...
2008 Jun 18
1
[LLVMdev] [PATCH] Insert a missing comma in documentation
...n --- docs/LangRef.html | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index eba4e5a..5bc81cc 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1045,7 +1045,7 @@ classifications:</p> <td><a href="#t_integer">integer</a>, <a href="#t_floating">floating point</a>, <a href="#t_pointer">pointer</a>, - <a href="#t_vector">vector</a> + <a href="#t_vector">vector</a>...
2012 Oct 10
0
[LLVMdev] Inconsistency in the LLVM docs
Hi Micah, We need to fix the documentation here. We want to be able to convert vectors of integers to vectors of pointers and back. There are a few tests such as (/InstCombine/vector_gep1.ll) that check for these conversions. Nadav On Oct 10, 2012, at 11:11 AM, "Villmow, Micah" <Micah.Villmow at amd.com> wrote: > http://llvm.org/docs/LangRef.html#i_inttoptr > >
2008 Sep 05
3
[LLVMdev] Integer questions
First off, most of my information about the integer representation in LLVM is from http://llvm.org/docs/LangRef.html#t_integer and I could use some things cleared up. First, I guess that smaller integer sizes, say, i1 (boolean) are stuffed into a full word size for the cpu it is compiled on (so 8bits, or 32 bits or whatever). What if someone made an i4 and compiled it on 32/64 bit windows/nix/bsd on a standard x86 or x6...
2012 Oct 10
1
[LLVMdev] Inconsistency in the LLVM docs
...these conversions. Nadav On Oct 10, 2012, at 11:11 AM, "Villmow, Micah" <Micah.Villmow at amd.com<mailto:Micah.Villmow at amd.com>> wrote: http://llvm.org/docs/LangRef.html#i_inttoptr The 'inttoptr' instruction takes an integer<http://llvm.org/docs/LangRef.html#t_integer> value to cast, and a type to cast it to, which must be a pointer<http://llvm.org/docs/LangRef.html#t_pointer> type. The final example is: %Z = inttoptr <4 x i32> %G to <4 x i8*>; yields truncation of vector G to four pointers The result is not a pointer type, but a vector...