On Wed, 26 Jul 2017, Alexander Monakov wrote:
> On Wed, 26 Jul 2017, Jeff Law wrote:
> > I'm not sure what you mean by extraneous compiler barriers -- isn't the
> > worst case scenario here that the target emits them as well? So there
> > would be an extraneous one in that case, but that ought to
On Sat, Jul 22, 2017 at 10:59 AM, Uros Bizjak wrote:
> Similar patch to the one for PPC [1].
>
> [1] https://gcc.gnu.org/ml/gcc-patches/2017-07/msg01334.html
>
> Tested on alphaev68-pc-linux-gnu.
Thanks. Committed to mainline.
Ian
On 07/22/2017 08:29 PM, David Edelsohn wrote:
This patch mirrors the earlier patch to copy debug_section_label into
dl_section_ref and append the adjustment when necessary. With this
patch, GDB is able to report correct macro information.
Bootstrapped on powerpc-ibm-aix7.2.0.0
Debug related p
On Sat, Jul 22, 2017 at 11:08 AM, Uros Bizjak wrote:
>> This patch to the gotools Makefile adds tests to `make check`. We now
>> test the runtime package using the newly built go tool, and test that
>> cgo works by running the misc/cgo/test and misc/cgo/testcarchive
>> tests. Bootstrapped and ra
On Wed, Jul 26, 2017 at 12:28:02AM -0400, Michael Meissner wrote:
> And not only the patches to the compiler, I forgot to include the testsuite
> patches:
>
> [gcc/testsuite]
> 2017-07-25 Michael Meissner
>
> * gcc.target/powerpc/vsx-himode.c: Delete -mvsx-small-integer
> option.
>
On 26 July 2017 at 21:14, Paolo Carlini wrote:
> Hi again,
>
> On 26/07/2017 16:27, Paolo Carlini wrote:
>>
>> Hi,
>>
>> On 26/07/2017 16:21, Andreas Schwab wrote:
>>>
>>> ERROR: 27_io/basic_fstream/53984.cc: unknown dg option:
>>> dg-require-file-io 18 {} for " dg-require-file-io 18 "" "
>>
>> Sh
On Jul 25, 2017, at 3:10 PM, Segher Boessenkool
wrote:
>
> On Tue, Jul 25, 2017 at 12:30:13PM +0100, Kyrill Tkachov wrote:
>> We sometimes use the __mode__ attribute to force certain sizes in C types.
>> For example: typedef int ditype __attribute__ ((mode (DI)));
>> Maybe you can do this to for
On Wed, Jul 26, 2017 at 03:02:15PM -0500, Segher Boessenkool wrote:
> Hi Mike,
>
> On Wed, Jul 26, 2017 at 12:24:17AM -0400, Michael Meissner wrote:
> > * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Delete
> > -mvsx-small-integer option.
> > (ISA_3_0_MASKS_IEEE): Likewise.
>
On Jul 26, 2017, at 7:50 AM, David Malcolm wrote:
>
> On Wed, 2017-07-26 at 23:35 +0900, Oleg Endo wrote:
>> On Mon, 2017-07-24 at 16:05 -0400, David Malcolm wrote:
>>>
>>> +
>>> +You should have received a copy of the GNU General Public License
>>> +along with GCC; see the file COPYING3. If no
On Jul 26, 2017, at 9:00 AM, Pierre-Marie de Rodat wrote:
> At the last GNU Cauldron, Richard Biener and I talked about DWARF output
> testing. Except for guality tests, which are disabled on several
> targets, the only way tests check the DWARF is scanning the annotated
> assembly (-dA), making i
On Wed, Jul 26, 2017 at 12:54 AM, REIX, Tony wrote:
> Description:
> * This patch fully enables XCOFF in libbacktrace on AIX.
>
> Tests:
> * Fedora25/x86_64 + GCC v7.1.0 : Configure/Build: SUCCESS
>- build made by means of gmake.
>
> ChangeLog:
> * configure.ac, filetype.awk: Separate AIX
Hi,
When I went and split the vectorizer cost model to support
thunderx2t99, I did not go back and fix up thunderx to be correct
after the split.
This patch fixes the problem by changing the vector cost for fp to be
the same as scalar fp cost which is good enough and brings us back to
where we we
I have no idea why this is necessary, but remove *.sent when running
make mostlyclean, for https://gcc.gnu.org/PR81548. Bootstrapped on
x86_64-pc-linux-gnu. Committed to mainline.
Ian
2017-07-26 Ian Lance Taylor
PR go/81548
* Makefile.am (MOSTLYCLEANFILES): Add *.sent.
* Makefile.in: Rebuil
On 26/07/17 20:14 +0200, Paolo Carlini wrote:
Hi again,
On 26/07/2017 16:27, Paolo Carlini wrote:
Hi,
On 26/07/2017 16:21, Andreas Schwab wrote:
ERROR: 27_io/basic_fstream/53984.cc: unknown dg option:
dg-require-file-io 18 {} for " dg-require-file-io 18 "" "
Should be already fixed, a trivia
On Wed, Jul 26, 2017 at 8:17 AM, REIX, Tony wrote:
> Description:
> * This patch enables libffi on AIX.
>
> Tests:
> * Fedora25/x86_64 + GCC trunk : Configure/Build: SUCCESS
>- build made by means of gmake.
>
> ChangeLog:
> * configure.ac, configure: Enable libffi for AIX
This is fine with
This is the final patch that I committed.
[gcc]
2017-07-26 Michael Meissner
* config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Delete
-mvsx-small-integer option.
(ISA_3_0_MASKS_IEEE): Likewise.
(OTHER_VSX_VECTOR_MASKS): Likewise.
(POWERPC_MASKS): Li
Jeff Law wrote:
> + if (required_align > MAX_SUPPORTED_STACK_ALIGNMENT)
> + {
> + extra = (required_align - MAX_SUPPORTED_STACK_ALIGNMENT)
> + / BITS_PER_UNIT;
> + size = plus_constant (Pmode, size, extra);
> + size = force_operand (size, NULL_RTX);
>
> - if (extra && siz
Looked into tuning the cost model for ThunderX 1 and I noticed I had
too high cost of the unaligned load/store. This reduces the cost
there and now the loops in linpack are able to vectorize and perform
the best.
Also tested on SPEC CPU 2006 to make sure we don't regress the vectorizer there.
Co
On 07/26/2017 02:03 PM, H.J. Lu wrote:
This patch caused:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81563
Yes, I discovered this flaw while working on PR 80969 but I hadn't found
an actual testcase where it caused a problem yet. I'm about to submit
my patchset for review, so sorry I didn
On Mon, Jul 24, 2017 at 04:05:12PM -0400, David Malcolm wrote:
> This patch adds an lsp::server abstract base class for implementing
> servers for the Language Server Protocol:
> https://github.com/Microsoft/language-server-protocol
>
> along with supporting classes mirroring those from the prot
On 26/07/17 19:56, Segher Boessenkool wrote:
On Tue, Jul 25, 2017 at 02:25:21PM +0200, Sebastian Huber wrote:
Add 64-bit support for RTEMS using the ELFv2 ABI with 64-bit long
double.
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 2ae0218b5fc..aab7f65c1df 100644
--- a/gcc/config.gcc
+++ b/
Hi,
Please consider this as a personal reminder to review the patch
at following link and let me know your comments on the same.
https://gcc.gnu.org/ml/gcc-patches/2017-03/msg00505.html
Thanks,
Naveen
101 - 122 of 122 matches
Mail list logo