[v3,0/2] LoongArch D support

Message ID 20231208100942.344748-1-yangyujie@loongson.cn
Headers
Series LoongArch D support |

Message

Yang Yujie Dec. 8, 2023, 10:09 a.m. UTC
  This patchset is based on Zixing Liu's initial support patch:
https://gcc.gnu.org/pipermail/gcc-patches/2023-September/631260.html

Updates
v1 -> v2: Rebased onto the dmd/druntime upstream state.
v2 -> v3: Dropped unnecessary changes.

Regtested on loongarch64-linux-gnu with the following result:

                === libphobos Summary ===

FAIL: libphobos.config/test22523.d -- --DRT-testmode=run-main execution test
FAIL: libphobos.gc/precisegc.d execution test
FAIL: libphobos.phobos/std/datetime/systime.d (test for excess errors)
UNRESOLVED: libphobos.phobos/std/datetime/systime.d compilation failed to produce executable
UNSUPPORTED: libphobos.phobos/std/net/curl.d: skipped test
UNSUPPORTED: libphobos.phobos_shared/std/net/curl.d: skipped test
FAIL: libphobos.shared/loadDR.c -ldl -pthread -g execution test (out-of-tree testing)

# of expected passes            1024
# of unexpected failures        4
# of unresolved testcases       1
# of unsupported tests          2

                === gdc Summary ===

FAIL: gdc.test/runnable/testaa.d   execution test
FAIL: gdc.test/runnable/testaa.d -fPIC   execution test

# of expected passes            10353
# of unexpected failures        2
# of unsupported tests          631


Yang Yujie (2):
  libruntime: Add fiber context switch code for LoongArch.
  libphobos: Update build scripts for LoongArch64.

 libphobos/configure                           |  21 ++-
 libphobos/libdruntime/Makefile.am             |   3 +
 libphobos/libdruntime/Makefile.in             |  98 ++++++++-----
 .../config/loongarch/switchcontext.S          | 133 ++++++++++++++++++
 libphobos/m4/druntime/cpu.m4                  |   5 +
 5 files changed, 220 insertions(+), 40 deletions(-)
 create mode 100644 libphobos/libdruntime/config/loongarch/switchcontext.S
  

Comments

chenglulu Dec. 18, 2023, 2:25 a.m. UTC | #1
Pushed to r14-6648 r14-6649 and r14-6650.

Thanks.

在 2023/12/8 下午6:09, Yang Yujie 写道:
> This patchset is based on Zixing Liu's initial support patch:
> https://gcc.gnu.org/pipermail/gcc-patches/2023-September/631260.html
>
> Updates
> v1 -> v2: Rebased onto the dmd/druntime upstream state.
> v2 -> v3: Dropped unnecessary changes.
>
> Regtested on loongarch64-linux-gnu with the following result:
>
>                  === libphobos Summary ===
>
> FAIL: libphobos.config/test22523.d -- --DRT-testmode=run-main execution test
> FAIL: libphobos.gc/precisegc.d execution test
> FAIL: libphobos.phobos/std/datetime/systime.d (test for excess errors)
> UNRESOLVED: libphobos.phobos/std/datetime/systime.d compilation failed to produce executable
> UNSUPPORTED: libphobos.phobos/std/net/curl.d: skipped test
> UNSUPPORTED: libphobos.phobos_shared/std/net/curl.d: skipped test
> FAIL: libphobos.shared/loadDR.c -ldl -pthread -g execution test (out-of-tree testing)
>
> # of expected passes            1024
> # of unexpected failures        4
> # of unresolved testcases       1
> # of unsupported tests          2
>
>                  === gdc Summary ===
>
> FAIL: gdc.test/runnable/testaa.d   execution test
> FAIL: gdc.test/runnable/testaa.d -fPIC   execution test
>
> # of expected passes            10353
> # of unexpected failures        2
> # of unsupported tests          631
>
>
> Yang Yujie (2):
>    libruntime: Add fiber context switch code for LoongArch.
>    libphobos: Update build scripts for LoongArch64.
>
>   libphobos/configure                           |  21 ++-
>   libphobos/libdruntime/Makefile.am             |   3 +
>   libphobos/libdruntime/Makefile.in             |  98 ++++++++-----
>   .../config/loongarch/switchcontext.S          | 133 ++++++++++++++++++
>   libphobos/m4/druntime/cpu.m4                  |   5 +
>   5 files changed, 220 insertions(+), 40 deletions(-)
>   create mode 100644 libphobos/libdruntime/config/loongarch/switchcontext.S
>