/* * Copyright (c) 2013 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Obere Lagerstr. 30 * 82178 Puchheim * Germany * * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #ifdef ARM_MULTILIB_ARCH_V7M void __attribute__((naked)) _ARMV7M_Exception_default( void ) { __asm__ volatile ( "sub sp, %[cpufsz]\n" "stm sp, {r0-r12}\n" "mov r2, lr\n" "mrs r1, msp\n" "mrs r0, psp\n" "cmn r2, #3\n" "itt ne\n" "movne r0, r1\n" "addne r0, %[cpufsz]\n" "add r2, r0, %[v7mlroff]\n" "add r1, sp, %[cpulroff]\n" "ldm r2, {r3-r5}\n" "stm r1, {r3-r5}\n" "mrs r1, ipsr\n" "str r1, [sp, %[cpuvecoff]]\n" "mov r0, sp\n" "b _ARM_Exception_default\n" : : [cpufsz] "i" (sizeof(CPU_Exception_frame)), [v7mfsz] "i" (sizeof(ARMV7M_Exception_frame)), [cpuspoff] "J" (offsetof(CPU_Exception_frame, register_sp)), [cpulroff] "i" (offsetof(CPU_Exception_frame, register_lr)), [v7mlroff] "i" (offsetof(ARMV7M_Exception_frame, register_lr)), [cpuvecoff] "J" (offsetof(CPU_Exception_frame, vector)) ); } #endif /* ARM_MULTILIB_ARCH_V7M */