Displaying 1 result from an estimated 1 matches for "gettruncatedelementvectortype".
2011 Nov 23
3
[LLVMdev] [llvm-commits] Vectors of Pointers and Vector-GEP
...ntrinsics.
one of the issues with vectors-of-pointers is then you can no longer say what
the size of a vector is without target data, since you don't know what the size
of a pointer is without target data. Methods like VectorType::getBitWidth will
have to be deleted. Methods like VectorType::getTruncatedElementVectorType,
VectorType::getExtendedElementVectorType and VectorType::getInteger will need to
either be removed, or changed to take a target data parameter (which is probably
a layering violation, so they would need to be moved elsewhere). The PtrToInt
and IntToPtr operations will need to be enhanced to work...