Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1716392

[PATCH v2 0/6] MIPS: math-emu: FP emulation fixes and improvements

From Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
Newsgroups linux.kernel
Subject [PATCH v2 0/6] MIPS: math-emu: FP emulation fixes and improvements
Date 2017-08-21 14:30 +0200
Message-ID <ugU0a-4jm-5@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>

v1->v2:

   - corrected a number of spelling and other minor mistakes in commit
     messages
   - rebased to the latest code

This series includes:

  - a fix for certain SIGILL program crashes on issuing a valid CMP
    instruction
  - a fix for RINT emulation inaccuracies
  - a fix for the output of CLASS.D instruction emulation
  - several FP emulation debugfs statistics improvements

The patches in this series are logically and physically independent on
the patches previously sent in "Misc" series. This means that these
two series can be applied independently, in any order.

Aleksandar Markovic (6):
  MIPS: math-emu: CMP.Sxxx.<D|S>: Prevent occurrences of SIGILL crashes
  MIPS: math-emu: RINT.<D|S>: Fix several problems by reimplementation
  MIPS: math-emu: CLASS.D: Zero bits 32-63 of the result
  MIPS: math-emu: Add FP emu debugfs statistics for branches
  MIPS: math-emu: Add FP emu debugfs clear functionality
  MIPS: math-emu: Add FP emu debugfs stats for individual instructions

 MAINTAINERS                          |   7 +
 arch/mips/include/asm/fpu_emulator.h | 116 +++++++++++++
 arch/mips/math-emu/Makefile          |   6 +-
 arch/mips/math-emu/cp1emu.c          | 272 +++++++++++++++++++++++++++++-
 arch/mips/math-emu/dp_rint.c         |  89 ++++++++++
 arch/mips/math-emu/ieee754.h         |   2 +
 arch/mips/math-emu/me-debugfs.c      | 318 ++++++++++++++++++++++++++++++++++-
 arch/mips/math-emu/sp_rint.c         |  90 ++++++++++
 8 files changed, 888 insertions(+), 12 deletions(-)
 create mode 100644 arch/mips/math-emu/dp_rint.c
 create mode 100644 arch/mips/math-emu/sp_rint.c

-- 
2.9.3

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/6] MIPS: math-emu: FP emulation fixes and improvements Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:30 +0200
  [PATCH v2 2/6] MIPS: math-emu: RINT.<D|S>: Fix several problems by reimplementation Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:30 +0200
  [PATCH v2 1/6] MIPS: math-emu: CMP.Sxxx.<D|S>: Prevent occurrences of SIGILL crashes Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:30 +0200
  [PATCH v2 3/6] MIPS: math-emu: CLASS.D: Zero bits 32-63 of the result Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:40 +0200
  [PATCH v2 4/6] MIPS: math-emu: Add FP emu debugfs statistics for branches Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:40 +0200
  [PATCH v2 5/6] MIPS: math-emu: Add FP emu debugfs clear functionality Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:40 +0200
  [PATCH v2 6/6] MIPS: math-emu: Add FP emu debugfs stats for individual instructions Aleksandar Markovic <aleksandar.markovic@rt-rk.com> - 2017-08-21 14:40 +0200

csiph-web