Is it always equivalent to a same-named 32-bit instruction?
Not always. Some C/Zc instructions compress common 32-bit operations, while others have dedicated stack-frame or table-jump semantics.
Move two s0-s7 registers into a0 and a1 (may be the same)
CM.MVA01S (Zcmp) writes r1s' into a0 and r2s' into a1; the sources are UABI s0-s7. The two sources may be the same, and the two writes are atomically visible. On RV32E, encodings selecting s2-s7 for either specifier are reserved. It reuses c.fsdsp encodings, is incompatible with Zcd, and Zcmp depends on Zca.
Shows only official compressed fields, conditions, and architectural state; it does not model a pipeline, cache, or timing.
Zcmp depends on Zca and is incompatible with Zcd; RV32E reserves s2-s7 specifiers.
CM.MVA01S is a Zcmp 16-bit register-move instruction: two UABI s0-s7 sources, which may be the same, write a0/a1.
Understand this scenario with real code like «cm.mva01s s0, s1 # a0 = s0; a1 = s1».
Understand this scenario with real code like «cm.mva01s s0, s1 # a0 = s0; a1 = s1».
Understand this scenario with real code like «cm.mva01s s0, s1 # a0 = s0; a1 = s1».
Not always. Some C/Zc instructions compress common 32-bit operations, while others have dedicated stack-frame or table-jump semantics.
Many 16-bit encodings can represent only a compressed register subset or fixed registers such as sp, ra, a0/a1.