Home | History | Annotate | Line # | Download | only in unwind
      1 // Exception handling and frame unwind runtime interface routines.
      2 // Copyright (C) 2011-2022 Free Software Foundation, Inc.
      3 
      4 // GCC is free software; you can redistribute it and/or modify it under
      5 // the terms of the GNU General Public License as published by the Free
      6 // Software Foundation; either version 3, or (at your option) any later
      7 // version.
      8 
      9 // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
     10 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
     11 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
     12 // for more details.
     13 
     14 // Under Section 7 of GPL version 3, you are granted additional
     15 // permissions described in the GCC Runtime Library Exception, version
     16 // 3.1, as published by the Free Software Foundation.
     17 
     18 // You should have received a copy of the GNU General Public License and
     19 // a copy of the GCC Runtime Library Exception along with this program;
     20 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     21 // <http://www.gnu.org/licenses/>.
     22 
     23 module gcc.unwind;
     24 
     25 import gcc.config;
     26 
     27 static if (GNU_ARM_EABI_Unwinder)
     28 {
     29     version (ARM)
     30         public import gcc.unwind.arm;
     31     else version (TIC6X)
     32         public import gcc.unwind.c6x;
     33     else
     34         static assert(false, "Unsupported target for ARM_EABI_UNWINDER");
     35 }
     36 else
     37     public import gcc.unwind.generic;
     38