public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Claudiu Zissulescu <Claudiu.Zissulescu@synopsys.com>
To: <gcc-patches@gcc.gnu.org>
Cc: <Claudiu.Zissulescu@synopsys.com>,	<Francois.Bedard@synopsys.com>,
	<andrew.burgess@embecosm.com>
Subject: [PATCH 0/6] [ARC] New baremetal features and fixes
Date: Thu, 02 Nov 2017 12:34:00 -0000	[thread overview]
Message-ID: <1509625835-22344-1-git-send-email-claziss@synopsys.com> (raw)

From: claziss <claziss@synopsys.com>

Hi,

This set of patches are adding support for:
     - JLI/SJLI instructions;
     - reduced register file 16 specific for particular ARC configurations;
     - 'uncached' attribute, used to toggle .di flag on variable basis;
     - 'aux' attribute, used to easily access auxiliary registers.

Also I've rework delegitimate address hook in a easier way.

Ok to apply?
Claudiu


Claudiu Zissulescu (3):
  [ARC] Add JLI support.
  [ARC] Add SJLI support.
  [ARC] Add support for "register file 16" reduced register set
  [ARC] Rework delegitimate_address hook
  [ARC] Add 'uncached' attribute.
  [ARC] Add 'aux' variable attribute.

 gcc/config/arc/arc-arches.def                     |   8 +-
 gcc/config/arc/arc-c.def                          |   1 +
 gcc/config/arc/arc-cpus.def                       |   1 +
 gcc/config/arc/arc-options.def                    |   2 +-
 gcc/config/arc/arc-protos.h                       |   4 +
 gcc/config/arc/arc-tables.opt                     |   3 +
 gcc/config/arc/arc.c                              | 645 ++++++++++++++++++++--
 gcc/config/arc/arc.h                              |   2 +-
 gcc/config/arc/arc.md                             | 138 ++---
 gcc/config/arc/arc.opt                            |   8 +
 gcc/config/arc/constraints.md                     |  13 +
 gcc/config/arc/elf.h                              |   7 +
 gcc/config/arc/fpx.md                             |  18 +-
 gcc/config/arc/genmultilib.awk                    |   2 +
 gcc/config/arc/linux.h                            |  10 +
 gcc/config/arc/predicates.md                      |   7 +-
 gcc/config/arc/simdext.md                         |   2 +-
 gcc/config/arc/t-multilib                         |   4 +-
 gcc/doc/extend.texi                               |  29 +
 gcc/doc/invoke.texi                               |  15 +-
 gcc/testsuite/gcc.dg/builtin-apply2.c             |   8 +-
 gcc/testsuite/gcc.target/arc/jli-1.c              |  19 +
 gcc/testsuite/gcc.target/arc/jli-2.c              |  19 +
 gcc/testsuite/gcc.target/arc/taux-1.c             |  38 ++
 gcc/testsuite/gcc.target/arc/taux-2.c             |  15 +
 gcc/testsuite/gcc.target/arc/tdelegitimize_addr.c |  23 +
 gcc/testsuite/gcc.target/arc/uncached.c           |  18 +
 libgcc/config/arc/lib1funcs.S                     |  22 +-
 28 files changed, 920 insertions(+), 161 deletions(-)
 create mode 100644 gcc/testsuite/gcc.target/arc/jli-1.c
 create mode 100644 gcc/testsuite/gcc.target/arc/jli-2.c
 create mode 100644 gcc/testsuite/gcc.target/arc/taux-1.c
 create mode 100644 gcc/testsuite/gcc.target/arc/taux-2.c
 create mode 100755 gcc/testsuite/gcc.target/arc/tdelegitimize_addr.c
 create mode 100644 gcc/testsuite/gcc.target/arc/uncached.c

-- 
1.9.1

             reply	other threads:[~2017-11-02 12:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-02 12:34 Claudiu Zissulescu [this message]
2017-11-02 12:34 ` [PATCH 5/6] [ARC] Add 'uncached' attribute Claudiu Zissulescu
2017-11-03  2:26   ` Sandra Loosemore
2017-11-03 11:24     ` Claudiu Zissulescu
2017-11-03 18:55       ` Sandra Loosemore
2017-11-09  9:13         ` Claudiu Zissulescu
2018-01-29 20:23   ` Andrew Burgess
2017-11-02 12:34 ` [PATCH 2/6] [ARC] Add SJLI support Claudiu Zissulescu
2018-01-16 10:37   ` Andrew Burgess
2017-11-02 12:34 ` [PATCH 3/6] [ARC] Add support for "register file 16" reduced register set Claudiu Zissulescu
2018-01-16 10:52   ` Andrew Burgess
2017-11-02 12:34 ` [PATCH 1/6] [ARC] Add JLI support Claudiu Zissulescu
2018-01-16 10:20   ` Andrew Burgess
2017-11-02 12:34 ` [PATCH 6/6] [ARC] Add 'aux' variable attribute Claudiu Zissulescu
2018-01-29 20:28   ` Andrew Burgess
2017-11-02 12:34 ` [PATCH 4/6] [ARC] Rework delegitimate_address hook Claudiu Zissulescu
2018-01-23 23:07   ` Andrew Burgess
2018-02-01 10:10 ` [PATCH 0/6] [ARC] New baremetal features and fixes Claudiu Zissulescu

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=1509625835-22344-1-git-send-email-claziss@synopsys.com \
    --to=claudiu.zissulescu@synopsys.com \
    --cc=Francois.Bedard@synopsys.com \
    --cc=andrew.burgess@embecosm.com \
    --cc=gcc-patches@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).