Detect no matching elements, setting the condition flags
This instruction compares each active 8-bit or 16-bit character in the first source vector with all of the characters in the corresponding 128-bit segment of the second source vector. Where the first source element detects no matching characters in the second segment it places true in the corresponding element of the destination predicate, otherwise false. Inactive elements in the destination predicate register are set to zero. Sets the First (N), None (Z), !Last (C) condition flags based on the predicate result, and the V flag to zero.
This instruction is illegal when executed in Streaming SVE mode, unless FEAT_SME_FA64 is implemented and enabled.
Variants: FEAT_SVE2 (ARMv9.0)
31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | |||||||||||||||||||
size | Zm | Pg | Zn | op | Pd |
---|
NMATCH <Pd>.<T>, <Pg>/Z, <Zn>.<T>, <Zm>.<T>
if !IsFeatureImplemented(FEAT_SVE2) then EndOfDecode(Decode_UNDEF); if size IN {'1x'} then EndOfDecode(Decode_UNDEF); constant integer esize = 8 << UInt(size); constant integer g = UInt(Pg); constant integer d = UInt(Pd); constant integer n = UInt(Zn); constant integer m = UInt(Zm);
CheckNonStreamingSVEEnabled(); constant integer VL = CurrentVL; constant integer PL = VL DIV 8; constant integer elements = VL DIV esize; constant integer eltspersegment = 128 DIV esize; constant bits(PL) mask = P[g, PL]; constant bits(VL) operand1 = if AnyActiveElement(mask, esize) then Z[n, VL] else Zeros(VL); constant bits(VL) operand2 = if AnyActiveElement(mask, esize) then Z[m, VL] else Zeros(VL); bits(PL) result; constant integer psize = esize DIV 8; for e = 0 to elements-1 if ActivePredicateElement(mask, e, esize) then constant integer segmentbase = e - (e MOD eltspersegment); Elem[result, e, psize] = ZeroExtend('1', psize); constant bits(esize) element1 = Elem[operand1, e, esize]; for i = segmentbase to (segmentbase + eltspersegment) - 1 constant bits(esize) element2 = Elem[operand2, i, esize]; if element1 == element2 then Elem[result, e, psize] = ZeroExtend('0', psize); else Elem[result, e, psize] = ZeroExtend('0', psize); PSTATE.= PredTest(mask, result, esize); P[d, PL] = result;