public inbox for jit@gcc.gnu.org
 help / color / mirror / Atom feed
From: David Malcolm <dmalcolm@redhat.com>
To: jit@gcc.gnu.org, gcc-patches@gcc.gnu.org
Cc: dmalcolm@redhat.com
Subject: [PATCH 07/10] Testsuite for the JIT (Re: Patches 5-10 of jit merger (was: Re: [PATCH 0/5] Merger of jit branch (v2)))
Date: Wed, 01 Jan 2014 00:00:00 -0000	[thread overview]
Message-ID: <1413299909.9513.55.camel@surprise> (raw)
In-Reply-To: <1413299342.9513.50.camel@surprise>

[-- Attachment #1: Type: text/plain, Size: 2111 bytes --]

On Tue, 2014-10-14 at 11:09 -0400, David Malcolm wrote:
> On Mon, 2014-10-13 at 13:45 -0400, David Malcolm wrote:
> > I'd like to merge the JIT branch into trunk:
> >   https://gcc.gnu.org/wiki/JIT
> > 
> > This is "v2" since it incorporates fixes for the various issues
> > identified by Joseph in an earlier submission:
> >   https://gcc.gnu.org/ml/gcc-patches/2014-09/msg02056.html
> > 
> > I've split up the current diff between trunk and the branch into 5
> > areas for ease of review (and to allow for early merger of the
> > supporting work, if it's deemed ready):
> > 
> > patch 1: exposes an entrypoint in libiberty that I need
> > patch 2: configure and Makefile changes in "gcc"
> > patch 3: timevar.h: Add an auto_timevar class
> > patch 4: State cleanups in "gcc"
> > patch 5: Add the "jit" code itself
> > 
> > [this is a diff of trunk r215958 aka
> > e012cdc775868e9922f5fef9068a764546876d93 which is from 2014-10-06,
> > vs jit branch version 75b3ee7acdc6de55354d65bb7d619386463e50a1].
> > 
> > I've successfully bootstrapped and regression-tested the cumulative
> > result of all of the patches against a control build, building them
> > both with --enable-host-shared, and with
> >   --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto
> > adding ",jit" to the test build (both on x86_64-unknown-linux-gnu;
> > Fedora 20).
> > 
> > There were no regressions vs the control build, and the patched build
> > gains a jit.sum, with 4663 passes (and no failures).
> > 
> > OK for trunk?
> 
> Patch 5 seems to have been too large, even compressed, so I'm breaking
> it up into separate pieces and compressing, giving 10 patches in total
> 
> Patches 1-4 are as above.
> 
> Patch 5: remaining JIT-related changes outside of the gcc/jit/ subdir
> 
> Patch 6: the core of the JIT implementation: the gcc/jit subdir
> 
> Patch 7: the testsuite: gcc/testsuite/jit.dg

> Patch 8: sphinx-based documentation: the gcc/jit/docs subdir
> 
> Patch 9: texinfo documentation autogenerated from the sphinx sources.
> 
> Patch 10: the ChangeLog.jit logs from the branch.

Here's patch 7, the testsuite.


[-- Attachment #2: 0007-Testsuite-for-the-JIT.patch.gz --]
[-- Type: application/x-gzip, Size: 37628 bytes --]

  parent reply	other threads:[~2014-10-14 15:22 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-01  0:00 [PATCH 0/5] Merger of jit branch (v2) David Malcolm
2014-01-01  0:00 ` [PATCH 3/5] timevar.h: Add an auto_timevar class David Malcolm
2014-01-01  0:00   ` Richard Biener
2014-01-01  0:00     ` David Malcolm
2014-01-01  0:00       ` Richard Biener
2014-01-01  0:00 ` Patches 5-10 of jit merger (was: Re: [PATCH 0/5] Merger of jit branch (v2)) David Malcolm
2014-01-01  0:00   ` [PATCH 09/10] Prebuilt texinfo documentation for the JIT library (Re: Patches 5-10 of jit merger) David Malcolm
2014-01-01  0:00     ` Jeff Law
2014-01-01  0:00   ` [PATCH 10/10] ChangeLog files (Re: Patches 5-10 of jit merger (was: Re: [PATCH 0/5] Merger of jit branch (v2))) David Malcolm
2014-01-01  0:00     ` [PATCH 10/10] ChangeLog files (Re: Patches 5-10 of jit merger Jeff Law
2014-01-01  0:00   ` [PATCH 08/10] Documentation for the JIT library (Re: Patches 5-10 of jit merger) David Malcolm
2014-01-01  0:00     ` Jeff Law
2014-01-01  0:00       ` [jit] Update the docs David Malcolm
2014-01-01  0:00   ` David Malcolm [this message]
2014-01-01  0:00     ` [PATCH 07/10] Testsuite for the JIT (Re: Patches 5-10 of jit merger Jeff Law
2014-01-01  0:00       ` Mike Stump
2014-01-01  0:00   ` [PATCH 06/10] Heart of the JIT implementation (was: Re: [PATCH 0/5] Merger of jit branch (v2)) David Malcolm
2014-01-01  0:00     ` Joseph S. Myers
2014-01-01  0:00       ` [jit] Error-handling within gcc::jit::dump David Malcolm
2014-01-01  0:00         ` Joseph S. Myers
2014-01-01  0:00       ` [PATCH 06/10] Heart of the JIT implementation (was: Re: [PATCH 0/5] Merger of jit branch (v2)) David Malcolm
2014-01-01  0:00         ` Joseph S. Myers
2014-01-01  0:00           ` [PATCH 06/10] Heart of the JIT implementation Jeff Law
2014-01-01  0:00   ` [PATCH 05/10] JIT-related changes outside of jit subdir David Malcolm
2014-01-01  0:00     ` Jeff Law
2014-01-01  0:00     ` Joseph S. Myers
2014-01-01  0:00       ` [jit] Add Sphinx to install.texi David Malcolm
2014-01-01  0:00         ` Gerald Pfeifer
2014-01-01  0:00           ` David Malcolm
2014-01-01  0:00             ` [jit] Tweaks " David Malcolm
2014-01-01  0:00         ` [jit] Add Sphinx " Joseph S. Myers
2014-01-01  0:00 ` [PATCH 1/5] libiberty: Expose choose_tmpdir, and fix constness of return type David Malcolm
2014-01-01  0:00   ` Jeff Law
2014-01-01  0:00     ` David Malcolm
2014-01-01  0:00 ` [PATCH 2/5] gcc: configure and Makefile changes needed by jit David Malcolm
2014-01-01  0:00   ` Jeff Law
2014-01-01  0:00     ` David Malcolm
2014-01-01  0:00       ` Joseph S. Myers
2014-01-01  0:00       ` [jit] Drop libgccjit.pc David Malcolm
2014-01-01  0:00         ` Basile Starynkevitch
2014-01-01  0:00           ` David Malcolm
2014-01-01  0:00       ` [PATCH 2/5] gcc: configure and Makefile changes needed by jit Jeff Law
2014-01-01  0:00         ` David Malcolm
2014-01-01  0:00           ` [PATCH] Avoid the need to install when running the jit testsuite David Malcolm
2014-01-01  0:00             ` Joseph S. Myers
2014-01-01  0:00 ` [PATCH 4/5] State cleanups David Malcolm
2014-01-01  0:00   ` [PATCH 4/5] State cleanups -- also note for MPX work Jeff Law
2014-01-01  0:00     ` David Malcolm
2014-01-01  0:00       ` Jeff Law

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1413299909.9513.55.camel@surprise \
    --to=dmalcolm@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jit@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).