HomeSort by relevance Sort by last modified time
    Searched refs:v7m (Results 1 - 5 of 5) sorted by null

  /external/qemu/target-arm/
machine.c 99 qemu_put_be32(f, env->v7m.other_sp);
100 qemu_put_be32(f, env->v7m.vecbase);
101 qemu_put_be32(f, env->v7m.basepri);
102 qemu_put_be32(f, env->v7m.control);
103 qemu_put_be32(f, env->v7m.current_sp);
104 qemu_put_be32(f, env->v7m.exception);
215 env->v7m.other_sp = qemu_get_be32(f);
216 env->v7m.vecbase = qemu_get_be32(f);
217 env->v7m.basepri = qemu_get_be32(f);
218 env->v7m.control = qemu_get_be32(f)
    [all...]
cpu.h 43 #define EXCP_EXCEPTION_EXIT 8 /* Return from v7M exception. */
167 } v7m; member in struct:CPUARMState
302 | env->v7m.exception;
327 env->v7m.exception = val & 0x1ff;
529 privmode = !((env->v7m.exception == 0) && (env->v7m.control & 1));
helper.c 705 /* Switch to V7M main or process stack pointer. */
709 if (env->v7m.current_sp != process) {
710 tmp = env->v7m.other_sp;
711 env->v7m.other_sp = env->regs[13];
713 env->v7m.current_sp = process;
723 if (env->v7m.exception != 0)
724 armv7m_nvic_complete_irq(env->nvic, env->v7m.exception);
755 if (env->v7m.current_sp)
757 if (env->v7m.exception == 0)
789 env->v7m.exception = armv7m_nvic_acknowledge_irq(env->nvic)
    [all...]
  /external/llvm/test/MC/ARM/
thumb2-mclass.s 6 @ These tests test instruction encodings specific to v7m & v7m (FeatureMClass).
  /external/qemu/hw/
armv7m_nvic.c 188 return cpu_single_env->v7m.vecbase;
321 cpu_single_env->v7m.vecbase = value & 0xffffff80;

Completed in 1132 milliseconds