RE: [EXTERNAL] Re: [PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-26 Thread Evgeny Karpov
Wednesday, June 26, 2024 5:56 PM Andrew Pinski wrote: > > I think this caused profilebootstrap failure on x86_64-linux-gnu. > I notice the definition of GOT_ALIAS_SET for all non mingw targets is > now just -1. That seems very wrong to me. > It was originally: > ``` > alias_set_type > x86_GOT_ali

Re: [PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-26 Thread Andrew Pinski
On Fri, Jun 7, 2024 at 2:45 AM Evgeny Karpov wrote: > > Hello, > > Thank you for reviewing v1! > v2 addresses all comments on v1. > > Changes in v2: > - Move winnt.h and winnt-dll.h to config.gcc. > - Resolve the issue with GCC GC in winnt-dll.cc. > - Add definitions for GOT_ALIAS_SET, > PE_COFF_

[PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-10 Thread Evgeny Karpov
The patch series has been successfully verified by patchwork, after resolving the issue with the mailing client. https://patchwork.sourceware.org/project/gcc/list/?series=34865 The x86_64-w64-mingw32 build has been tested, and no regressions have been detected after applying the patch series. htt

[PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-08 Thread Evgeny Karpov
I am resubmitting the patch series without changes to the patchwork due to an issue with the mail client in the previous submission. https://gcc.gnu.org/pipermail/gcc-patches/2024-June/653894.html https://gcc.gnu.org/pipermail/gcc-patches/2024-June/653952.html Regards, Evgeny Evgeny Karpov (6):

[PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-08 Thread Evgeny Karpov
I am resubmitting the patch series without changes to the patchwork due to an issue with the mail client in the previous submission. https://gcc.gnu.org/pipermail/gcc-patches/2024-June/653894.html https://gcc.gnu.org/pipermail/gcc-patches/2024-June/653952.html Regards, Evgeny Evgeny Karpov (6):

[PATCH v2 0/6] Add DLL import/export implementation to AArch64

2024-06-07 Thread Evgeny Karpov
Hello, Thank you for reviewing v1! v2 addresses all comments on v1. Changes in v2: - Move winnt.h and winnt-dll.h to config.gcc. - Resolve the issue with GCC GC in winnt-dll.cc. - Add definitions for GOT_ALIAS_SET, PE_COFF_EXTERN_DECL_SHOULD_BE_LEGITIMIZED, and HAVE_64BIT_POINTERS to cygming.h.