(old) htmldiff from-(new)

AXFlag

Convert floating-point condition flags from ARM to external format. This instruction converts the state of the PSTATE.{N,Z,C,V} flags from a form representing the result of an ARM floating-point scalar compare instruction to an alternative representation required by some software.

System
(ARMv8.5)

313029282726252423222120191817161514131211109876543210
11010101000000000100(0)(0)(0)(0)01011111
CRm

System

AXFlag

if !HaveFlagFormatExt() then UNDEFINED;

Operation

bit N = '0'; bit Z = PSTATE.Z OR PSTATE.V; bit C = PSTATE.C AND NOT(PSTATE.V); bit V = '0'; PSTATE.N = N; PSTATE.Z = Z; PSTATE.C = C; PSTATE.V = V;


Internal version only: isa v30.25, AdvSIMD v27.01, pseudocode v85-xml-00bet8_rc3 ; Build timestamp: 2018-09-13T13:2504

Copyright © 2010-2018 ARM Limited or its affiliates. All rights reserved. This document is Non-Confidential.

(old) htmldiff from-(new)