>From 8fab455a5ac5508d06cc69f778e926ad098fbe5b Mon Sep 17 00:00:00 2001 From: Chen Gang <gang.chen.5...@gmail.com> Date: Sun, 8 Nov 2015 09:28:16 +0800 Subject: [PATCH 0/4] Implment fpu floating point instructions
It passes gcc testsuite: get the same result like the original floating point implementation has done (original implementation is temporary). Chen Gang (4): target-tilegx: Add fpu header file target-tilegx: Implement fpu single floating point instructions target-tilegx: Implement fpu fdouble floating point instructions target-tilegx: Let fpu implementation code can be built and used target-tilegx/Makefile.objs | 3 +- target-tilegx/cpu.h | 2 + target-tilegx/fdouble_helper.c | 290 +++++++++++++++++++++++++++++++++++++++++ target-tilegx/fpu.h | 228 ++++++++++++++++++++++++++++++++ target-tilegx/fsingle_helper.c | 168 ++++++++++++++++++++++++ target-tilegx/helper.h | 12 ++ target-tilegx/translate.c | 68 ++++++++-- 7 files changed, 761 insertions(+), 10 deletions(-) create mode 100644 target-tilegx/fdouble_helper.c create mode 100644 target-tilegx/fpu.h create mode 100644 target-tilegx/fsingle_helper.c -- 1.9.3