Ternary move instructions

Programming, for all ages and all languages.
Post Reply
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Ternary move instructions

Post by linguofreak »

Is anyone aware of any ISA that implements the ternary conditional operator as an instruction? Basically, this would be a three operand instruction:

MOVcc x, y, z

That tests some condition, and moves x to z if the condition is true, and y to z if the condition is false?

Of course, conditional branches could be regarded as a special case of this:

jne offset

could be regarded as equivalent to something like the following in an ISA with a ternary move:

movne IP+offset, IP, IP

But I'm not aware of any ISA that has a more general implementation of this concept.
nullplan
Member
Member
Posts: 1766
Joined: Wed Aug 30, 2017 8:24 am

Re: Ternary move instructions

Post by nullplan »

So my first thought was "if any, it would be ARM". Not quite, but ARM has a two-operand move instruction and allows you to put conditions on all instructions, so you could

Code: Select all

MOVScc Rx, Ry
MOVSncc Rx, Rz
where cc and ncc are opposite conditions.

Come to think of it, you could do the same with CMOV in x86 as well.
Carpe diem!
Octocontrabass
Member
Member
Posts: 5512
Joined: Mon Mar 25, 2013 7:01 pm

Re: Ternary move instructions

Post by Octocontrabass »

Do AVX V(P)BLEND instructions count?
alexfru
Member
Member
Posts: 1111
Joined: Tue Mar 04, 2014 5:27 am

Re: Ternary move instructions

Post by alexfru »

The traditional MIPS ISA has a few conditional moves:
  • MOVN rd, rs, rt # if (rt != 0) rd = rs;
  • MOVZ rd, rs, rt # if (rt == 0) rd = rs;
  • MOVN.fmt fd, fs, rt # if (rt != 0) fd = fs;
  • MOVZ.fmt fd, fs, rt # if (rt == 0) fd = fs;
  • MOVT.fmt fd, fs, cc # if (FCC[cc] != 0) fd = fs;
  • MOVF.fmt fd, fs, cc # if (FCC[cc] == 0) fd = fs;
EDIT to add:
MIPS Release 6 has these instead:
  • SELNEZ rd, rs, rt # rd = rt ? rs : 0;
  • SELEQZ rd, rs, rt # rd = rt ? 0 : rs;
  • SEL.fmt fd, fs, ft # fd = fd.bit0 ? ft : fs;
t3
Posts: 2
Joined: Fri Mar 03, 2023 11:34 pm

Re: Ternary move instructions

Post by t3 »

ARMv8 A64's CSEL does pretty much exactly that:

CSEL Rdest, Rtrue, Rfalse, cond
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Re: Ternary move instructions

Post by linguofreak »

nullplan wrote:So my first thought was "if any, it would be ARM". Not quite, but ARM has a two-operand move instruction and allows you to put conditions on all instructions, so you could

Code: Select all

MOVScc Rx, Ry
MOVSncc Rx, Rz
where cc and ncc are opposite conditions.

Come to think of it, you could do the same with CMOV in x86 as well.
I'm specifically looking for ISAs that have a single instruction directly equivalent to the ternary operator. Mostly just out of curiousity.
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Re: Ternary move instructions

Post by linguofreak »

Octocontrabass wrote:Do AVX V(P)BLEND instructions count?
They are very much (in a bitwise fashion) in the same spirit as the type of instruction I'm looking for, but what I'm specifically looking for is instructions that test a one-bit condition and move one of two values to a destination based on that condition.
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Re: Ternary move instructions

Post by linguofreak »

alexfru wrote:The traditional MIPS ISA has a few conditional moves:
  • MOVN rd, rs, rt # if (rt != 0) rd = rs;
  • MOVZ rd, rs, rt # if (rt == 0) rd = rs;
  • MOVN.fmt fd, fs, rt # if (rt != 0) fd = fs;
  • MOVZ.fmt fd, fs, rt # if (rt == 0) fd = fs;
  • MOVT.fmt fd, fs, cc # if (FCC[cc] != 0) fd = fs;
  • MOVF.fmt fd, fs, cc # if (FCC[cc] == 0) fd = fs;
EDIT to add:
MIPS Release 6 has these instead:
  • SELNEZ rd, rs, rt # rd = rt ? rs : 0;
  • SELEQZ rd, rs, rt # rd = rt ? 0 : rs;
  • SEL.fmt fd, fs, ft # fd = fd.bit0 ? ft : fs;
SEL.fmt appears to be exactly the kind of instruction I'm looking for.
nullplan
Member
Member
Posts: 1766
Joined: Wed Aug 30, 2017 8:24 am

Re: Ternary move instructions

Post by nullplan »

linguofreak wrote:I'm specifically looking for ISAs that have a single instruction directly equivalent to the ternary operator. Mostly just out of curiousity.
Well, the only other thing I remember that sort-of fits is PowerPC's fsel instruction

Code: Select all

fsel fd,ft,fa,fb
which does:
fd = ft >= 0? fa : fb
But that is floating-point only, and an optional instruction.
Carpe diem!
Post Reply