diff options
author | Trevor Saunders <tsaunders@mozilla.com> | 2014-09-09 02:11:06 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2014-09-09 02:11:06 +0000 |
commit | 157e859ffe3b5d43db1e19475711c1a3d21ab57a (patch) | |
tree | 80c8154f269c0eeb0bc93c7b691cfaee43d17f1d /gcc/config/picochip/constraints.md | |
parent | b9e76e8054e356b5bbf35eaf36255e939b1a8d06 (diff) | |
download | gcc-157e859ffe3b5d43db1e19475711c1a3d21ab57a.tar.gz |
remove picochip
contrib/ChangeLog:
2014-09-08 Trevor Saunders <tsaunders@mozilla.com>
* compare-all-tests: Don't test picochip.
* config-list.mk: Likewise.
gcc/ChangeLog:
2014-09-08 Trevor Saunders <tsaunders@mozilla.com>
* common/config/picochip/picochip-common.c: Remove.
* config.gcc: Remove support for picochip.
* config/picochip/constraints.md: Remove.
* config/picochip/dfa_space.md: Remove.
* config/picochip/dfa_speed.md: Remove.
* config/picochip/picochip-protos.h: Remove.
* config/picochip/picochip.c: Remove.
* config/picochip/picochip.h: Remove.
* config/picochip/picochip.md: Remove.
* config/picochip/picochip.opt: Remove.
* config/picochip/predicates.md: Remove.
* config/picochip/t-picochip: Remove.
* doc/md.texi: Don't document picochi.
libgcc/ChangeLog:
2014-09-08 Trevor Saunders <tsaunders@mozilla.com>
* config.host: Remove picochip support.
* config/picochip/adddi3.S: Remove.
* config/picochip/ashlsi3.S: Remove.
* config/picochip/ashlsi3.c: Remove.
* config/picochip/ashrsi3.S: Remove.
* config/picochip/ashrsi3.c: Remove.
* config/picochip/clzsi2.S: Remove.
* config/picochip/cmpsi2.S: Remove.
* config/picochip/divmod15.S: Remove.
* config/picochip/divmodhi4.S: Remove.
* config/picochip/divmodsi4.S: Remove.
* config/picochip/lib1funcs.S: Remove.
* config/picochip/longjmp.S: Remove.
* config/picochip/lshrsi3.S: Remove.
* config/picochip/lshrsi3.c: Remove.
* config/picochip/parityhi2.S: Remove.
* config/picochip/popcounthi2.S: Remove.
* config/picochip/setjmp.S: Remove.
* config/picochip/subdi3.S: Remove.
* config/picochip/t-picochip: Remove.
* config/picochip/ucmpsi2.S: Remove.
* config/picochip/udivmodhi4.S: Remove.
* config/picochip/udivmodsi4.S: Remove.
From-SVN: r215039
Diffstat (limited to 'gcc/config/picochip/constraints.md')
-rw-r--r-- | gcc/config/picochip/constraints.md | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/gcc/config/picochip/constraints.md b/gcc/config/picochip/constraints.md deleted file mode 100644 index ba7eb747552..00000000000 --- a/gcc/config/picochip/constraints.md +++ /dev/null @@ -1,64 +0,0 @@ -;; GCC machine description for picochip -;; Copyright (C) 2008-2014 Free Software Foundation, Inc. -;; Contributed by Picochip Ltd (http://www.picochip.com) -;; Maintained by Daniel Towner (dant@picochip.com) and Hariharan -;; Sandanagobalane (hariharan@picochip.com) -;; -;; This file is part of GCC. -;; -;; GCC is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 3, or (at your option) -;; any later version. -;; -;; GCC is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. -;; -;; You should have received a copy of the GNU General Public License -;; along with GCC; see the file COPYING3. If not, see -;; <http://www.gnu.org/licenses/>. - -(define_constraint "I" - "4-bits signed value" - (and (match_code "const_int") - (match_test " ival >= -8 && ival< 8"))) - -(define_constraint "J" - "4-bits unsigned value" - (and (match_code "const_int") - (match_test "ival>=0 && ival < 16"))) - -(define_constraint "K" - "8-bits signed value" - (and (match_code "const_int") - (match_test " ival >= -128 && ival < 128"))) - -(define_constraint "M" - "4-bits magnitude" - (and (match_code "const_int") - (match_test " abs(ival) < 16"))) - -(define_constraint "N" - "10-bits signed value" - (and (match_code "const_int") - (match_test "ival >= -512 && ival < 512"))) - -(define_constraint "O" - "16-bits signed value" - (and (match_code "const_int") - (match_test " ival >= -32768 && ival < 32768 "))) - -(define_constraint "a" - "See if this is an absolute address in memory" - (and (match_code "mem") - (match_test "picochip_absolute_memory_operand(op,mode) == 1"))) - -(define_register_constraint "k" "FRAME_REGS" - "Frame regs") -(define_register_constraint "f" "PTR_REGS" - "Pointer regs") -(define_register_constraint "t" "TWIN_REGS" - "Twin regs") - |