[llvm] [ARM][FPEnv] Lowering of fpmode intrinsics (PR #74054)
Serge Pavlov via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 12 09:26:32 PST 2023
================
@@ -375,6 +375,14 @@ class VectorType;
// Bit position of rounding mode bits in FPSCR.
const unsigned RoundingBitsPos = 22;
+
+ // Bits of floating-point status. These are NZCV flags, QC bit and cumulative
+ // FP exception bits.
+ const unsigned FPStatusBits = 0xf800009f;
+
+ // Some bits in the FPSCR are not yet defined. They must be preserved when
+ // modifying the contents.
+ const unsigned FPReservedBits = 0x00086060;
----------------
spavloff wrote:
You are right, thank you!
https://github.com/llvm/llvm-project/pull/74054
More information about the llvm-commits
mailing list