search for: getbasepoint

Displaying 2 results from an estimated 2 matches for "getbasepoint".

Did you mean: getbasepointer
2008 Sep 29
0
[LLVMdev] Architecture Dependency of LLVM bitcode (was Re: compile linux kernel)
...ses where you want to perform arithmetic and comparisons on pointers that the semantics of GEP make illegal so the only way to do so in a target independent way is to either cast to an int you hope is >= than any pointer, or violate the GEP semantics (which is generally works). GBP instruction (GetBasePointer). The inverse of a GEP. A GEP selects an offset into a object in a target independent way based on the type. What GBP would do would be to get a pointer to the base of an object based on a pointer to field, a type, and the same specifier as the GEP would use to get the field. x == GBP (GEP x,...
2008 Sep 29
5
[LLVMdev] Architecture Dependency of LLVM bitcode (was Re: compile linux kernel)
On 29.09.2008, at 11:53, Jonathan S. Shapiro wrote: > Watching this thread, it occurs to me that the "V" in "LLVM" is > creating > confusion. So far as I know, LLVM is the first project to use > "virtual" > to refer to the instruction set of the intermediate form. I understand > why this labeling made sense (sort of), but it was unfortunate. The