Skip to content

Commit e858984

Browse files
authored
Revert "Libunwind1.5rc2 (#36027)" (#36909)
This reverts commit 8c6c765.
1 parent 1ed5476 commit e858984

File tree

125 files changed

+528
-4077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+528
-4077
lines changed

src/coreclr/src/pal/src/exception/seh-unwind.cpp

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -111,22 +111,6 @@ static void WinContextToUnwindContext(CONTEXT *winContext, unw_context_t *unwCon
111111
unwContext->regs[13] = winContext->Sp;
112112
unwContext->regs[14] = winContext->Lr;
113113
unwContext->regs[15] = winContext->Pc;
114-
#elif defined(HOST_ARM64)
115-
unwContext->uc_mcontext.pc = winContext->Pc;
116-
unwContext->uc_mcontext.sp = winContext->Sp;
117-
unwContext->uc_mcontext.regs[29] = winContext->Fp;
118-
unwContext->uc_mcontext.regs[30] = winContext->Lr;
119-
120-
unwContext->uc_mcontext.regs[19] = winContext->X19;
121-
unwContext->uc_mcontext.regs[20] = winContext->X20;
122-
unwContext->uc_mcontext.regs[21] = winContext->X21;
123-
unwContext->uc_mcontext.regs[22] = winContext->X22;
124-
unwContext->uc_mcontext.regs[23] = winContext->X23;
125-
unwContext->uc_mcontext.regs[24] = winContext->X24;
126-
unwContext->uc_mcontext.regs[25] = winContext->X25;
127-
unwContext->uc_mcontext.regs[26] = winContext->X26;
128-
unwContext->uc_mcontext.regs[27] = winContext->X27;
129-
unwContext->uc_mcontext.regs[28] = winContext->X28;
130114
#endif
131115
}
132116

src/coreclr/src/pal/src/libunwind/.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,5 @@ tests/[GL]ia64-test-readonly
7575
tests/[GL]ia64-test-stack
7676
tests/ia64-test-dyn1
7777
tests/ia64-test-sig
78-
tests/[GL]x64-test-dwarf-expressions
79-
tests/x64-unwind-badjmp-signal-frame
8078
tests/*.log
8179
tests/*.trs

src/coreclr/src/pal/src/libunwind/.travis.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,10 @@ env:
99
- TARGET=mipsel-unknown-linux-gnu
1010
# Currently experiencing build failures here
1111
#- TARGET=powerpc64-linux-gnu
12-
13-
linux-s390x: &linux-s390x
14-
os: linux
15-
arch: s390x
16-
env: TARGET=s390x-linux-gnu
17-
script:
18-
- ./autogen.sh
19-
- ./configure
20-
- make -j32
21-
- ulimit -c unlimited
22-
- make check -j32
23-
2412
script:
2513
- ./autogen.sh
2614
- ./configure --target=$TARGET --host=$HOST
2715
- make -j32
2816
- sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
2917
- ulimit -c unlimited
3018
- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check -j32; fi
31-
32-
jobs:
33-
include:
34-
- <<: *linux-s390x

src/coreclr/src/pal/src/libunwind/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ elseif(CLR_CMAKE_HOST_ARCH_I386)
1313
endif()
1414

1515
set(PKG_MAJOR "1")
16-
set(PKG_MINOR "5")
17-
set(PKG_EXTRA "-rc2")
16+
set(PKG_MINOR "3")
17+
set(PKG_EXTRA "-rc1")
1818

1919
configure_file(include/libunwind-common.h.in ${CMAKE_CURRENT_BINARY_DIR}/include/libunwind-common.h)
2020
configure_file(include/libunwind.h.in ${CMAKE_CURRENT_BINARY_DIR}/include/libunwind.h)
2121
configure_file(include/tdep/libunwind_i.h.in ${CMAKE_CURRENT_BINARY_DIR}/include/tdep/libunwind_i.h)
22+

src/coreclr/src/pal/src/libunwind/Makefile.am

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ endif
4141
if ARCH_SH
4242
include_HEADERS += include/libunwind-sh.h
4343
endif
44-
if ARCH_S390X
45-
include_HEADERS += include/libunwind-s390x.h
46-
endif
4744

4845
if !REMOTE_ONLY
4946
include_HEADERS += include/libunwind.h include/unwind.h
@@ -87,8 +84,6 @@ noinst_HEADERS = include/dwarf.h include/dwarf_i.h include/dwarf-eh.h \
8784
include/tdep-ppc64/jmpbuf.h include/tdep-ppc64/libunwind_i.h \
8885
include/tdep-sh/dwarf-config.h \
8986
include/tdep-sh/jmpbuf.h include/tdep-sh/libunwind_i.h \
90-
include/tdep-s390x/dwarf-config.h \
91-
include/tdep-s390x/jmpbuf.h include/tdep-s390x/libunwind_i.h \
9287
include/tdep/libunwind_i.h \
9388
include/tdep/jmpbuf.h include/tdep/dwarf-config.h
9489

0 commit comments

Comments
 (0)