| 1 | 709 | jeremybenn | /* C6X ISA names.
 | 
      
         | 2 |  |  |    Copyright (C) 2011
 | 
      
         | 3 |  |  |    Free Software Foundation, Inc.
 | 
      
         | 4 |  |  |  
 | 
      
         | 5 |  |  |    This file is part of GCC.
 | 
      
         | 6 |  |  |  
 | 
      
         | 7 |  |  |    GCC is free software; you can redistribute it and/or modify it
 | 
      
         | 8 |  |  |    under the terms of the GNU General Public License as published by
 | 
      
         | 9 |  |  |    the Free Software Foundation; either version 3, or (at your option)
 | 
      
         | 10 |  |  |    any later version.
 | 
      
         | 11 |  |  |  
 | 
      
         | 12 |  |  |    GCC is distributed in the hope that it will be useful, but
 | 
      
         | 13 |  |  |    WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
      
         | 14 |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
      
         | 15 |  |  |    General Public License for more details.
 | 
      
         | 16 |  |  |  
 | 
      
         | 17 |  |  |    You should have received a copy of the GNU General Public License
 | 
      
         | 18 |  |  |    along with GCC; see the file COPYING3.  If not see
 | 
      
         | 19 |  |  |    .  */
 | 
      
         | 20 |  |  |  
 | 
      
         | 21 |  |  | /* Define ISAs for the -march option, used both in C6X.c and to
 | 
      
         | 22 |  |  |    generate c6x-tables.opt.  Before including this file, define a
 | 
      
         | 23 |  |  |    macro:
 | 
      
         | 24 |  |  |  
 | 
      
         | 25 |  |  |    C6X_ISA (NAME, ENUM_VALUE, FLAGS)
 | 
      
         | 26 |  |  |  
 | 
      
         | 27 |  |  |    where NAME is the name for use with -march=, ENUM_VALUE is an enum
 | 
      
         | 28 |  |  |    corresponding to this arch, and FLAGS is a combination of flags
 | 
      
         | 29 |  |  |    that together specify the available instructions.  */
 | 
      
         | 30 |  |  |  
 | 
      
         | 31 |  |  | C6X_ISA("c62x", C6X_CPU_C62X, C6X_INSNS_C62X)
 | 
      
         | 32 |  |  | C6X_ISA("c64x", C6X_CPU_C64X, C6X_INSNS_C62X | C6X_INSNS_C64X)
 | 
      
         | 33 |  |  | C6X_ISA("c64x+", C6X_CPU_C64XP, C6X_INSNS_C62X | C6X_INSNS_C64X | C6X_INSNS_C64XP)
 | 
      
         | 34 |  |  | C6X_ISA("c67x", C6X_CPU_C67X, C6X_INSNS_C62X | C6X_INSNS_C67X)
 | 
      
         | 35 |  |  | C6X_ISA("c67x+", C6X_CPU_C67XP, C6X_INSNS_C62X | C6X_INSNS_C67X | C6X_INSNS_C67XP)
 | 
      
         | 36 |  |  | C6X_ISA("c674x", C6X_CPU_C674X,
 | 
      
         | 37 |  |  |         (C6X_INSNS_C62X | C6X_INSNS_C64X | C6X_INSNS_C64XP | C6X_INSNS_C67X
 | 
      
         | 38 |  |  |          | C6X_INSNS_C67XP | C6X_INSNS_C674X))
 |