summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/armv7m-exception-default.c
blob: fbd1039028462906c64710251952fb3c9191ee10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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 <rtems/score/armv7m.h>

#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 */