vec_cmplt: Vector Compare Less Than

d = vec_cmplt(a, b)

Returns a vector containing the results of a less-than comparison between each set of corresponding elements of the given vectors. For each element of the result, the value of each bit is 1 if the value of the corresponding element of a is less than the value of the corresponding element of b. Otherwise, the value of each bit is 0.

This operation emulates the operation on the integer vectors.

Table 1. Vector Compare Less Than
d a b MIN ARCH
vector bool char vector signed char vector signed char ARCH(11) 1
vector unsigned char vector unsigned char ARCH(11) 1
vector bool short vector signed short vector signed short ARCH(11) 1
vector unsigned short vector unsigned short ARCH(11) 1
vector bool int vector signed int vector signed int ARCH(11) 1
vector unsigned int vector unsigned int ARCH(11) 1
vector float vector float ARCH(12) 1
vector bool long long vector signed long long vector signed long long ARCH(11) 1
vector unsigned long long vector unsigned long long ARCH(11) 1
vector double vector double ARCH(11) 1
Note:
1. This prototype has the exact same semantics as that in the OpenPOWER ABI for Linux Supplement for the Power Architecture® 64-bit ELF V2 ABI, Revision 1.4.