Re: [RFC] Confusing fall through BB pc in conditional jump

2019-06-28 Thread Segher Boessenkool
Hi Kewen, On Fri, Jun 28, 2019 at 09:56:58AM +0800, Kewen.Lin wrote: > > It's probably a good idea to spend a line on this even in slim mode, it's > > really easy to miss and get confused and waste time without it. Nice :-) > > > >> The dumping will look like: > >> 6: NOTE_INSN_BASIC_BLOCK 2

Re: [AArch64 ELF ABI] Vector calls and lazy binding on AArch64

2019-06-28 Thread Szabolcs Nagy
On 22/05/2019 15:42, Szabolcs Nagy wrote: > [AAELF64]: ELF for the Arm 64-bit Architecture (AArch64) >https://developer.arm.com/docs/ihi0056/latest > [VABI64]: Vector Function ABI Specification for AArch64 > > https://developer.arm.com/tools-and-software/server-and-hpc/arm-

Threadsafe Garbage Collection allocation

2019-06-28 Thread Giuliano Belinassi
Hi, *** Question: What are all the possible ways to allocate and deallocate memory through the Garbage Collector? *** Context: I am parallelizing GCC internals and I am facing problems with the GCC Garbage Collector, and therefore I need to make it threadsafe to continue with the project. Curren

Re: Threadsafe Garbage Collection allocation

2019-06-28 Thread Jeff Law
On 6/28/19 2:48 PM, Giuliano Belinassi wrote: > Hi, > > *** > Question: What are all the possible ways to allocate and deallocate memory > through the Garbage Collector? > *** > > Context: I am parallelizing GCC internals and I am facing problems with the > GCC > Garbage Collector, and therefore

gcc-8-20190628 is now available

2019-06-28 Thread gccadmin
Snapshot gcc-8-20190628 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/8-20190628/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches/gcc-8

Re: Threadsafe Garbage Collection allocation

2019-06-28 Thread Richard Biener
On June 28, 2019 10:48:51 PM GMT+02:00, Giuliano Belinassi wrote: >Hi, > >*** >Question: What are all the possible ways to allocate and deallocate >memory >through the Garbage Collector? >*** > >Context: I am parallelizing GCC internals and I am facing problems with >the GCC >Garbage Collector, a