summaryrefslogtreecommitdiffstats
path: root/c/src/librdbg/src/i386/rdbg_cpu_asm.S
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-08-02 15:00:07 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-08-02 15:00:07 +0000
commit261f99bdac9a995f8b2740b7ae52c8ad81001132 (patch)
tree2a5006b2c876e801a11527f6b20f47c312370b2f /c/src/librdbg/src/i386/rdbg_cpu_asm.S
parent2007-08-02 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-261f99bdac9a995f8b2740b7ae52c8ad81001132.tar.bz2
2007-08-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* configure.ac, wrapup/Makefile.am: Remove RDBG. * aclocal/check-rdbg.m4, aclocal/enable-rdbg.m4, librdbg/.cvsignore, librdbg/Makefile.am, librdbg/preinstall.am, librdbg/include/rdbg/rdbg.h, librdbg/include/rdbg/servrpc.h, librdbg/include/rdbg/i386/rdbg_f.h, librdbg/include/rdbg/i386/reg.h, librdbg/include/rdbg/m68k/rdbg_f.h, librdbg/include/rdbg/m68k/reg.h, librdbg/include/rdbg/powerpc/rdbg_f.h, librdbg/include/rdbg/powerpc/reg.h, librdbg/src/_servtgt.c, librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c, librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c, librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c, librdbg/src/servtsp.c, librdbg/src/servutil.c, librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_cpu_asm.S, librdbg/src/i386/rdbg_f.c, librdbg/src/i386/any/remdeb.h, librdbg/src/i386/any/remdeb_f.x, librdbg/src/i386/any/remdeb_svc.c, librdbg/src/i386/any/remdeb_xdr.c, librdbg/src/m68k/excep_f.c, librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c, librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_f.x, librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c, librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_cpu_asm.S, librdbg/src/powerpc/rdbg_f.c, librdbg/src/powerpc/new_exception_processing/remdeb.h, librdbg/src/powerpc/new_exception_processing/remdeb_f.x, librdbg/src/powerpc/new_exception_processing/remdeb_svc.c, librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed.
Diffstat (limited to 'c/src/librdbg/src/i386/rdbg_cpu_asm.S')
-rw-r--r--c/src/librdbg/src/i386/rdbg_cpu_asm.S72
1 files changed, 0 insertions, 72 deletions
diff --git a/c/src/librdbg/src/i386/rdbg_cpu_asm.S b/c/src/librdbg/src/i386/rdbg_cpu_asm.S
deleted file mode 100644
index 523ba1173e..0000000000
--- a/c/src/librdbg/src/i386/rdbg_cpu_asm.S
+++ /dev/null
@@ -1,72 +0,0 @@
-/* cpu_asm.s
- *
- * This file contains all assembly code for the Intel i386 implementation
- * of RDBG.
- *
- * $Id$
- *
- */
-
-#include <rtems/asm.h>
-
- BEGIN_CODE
-
-/*
- * void copyback_data_cache_and_invalidate_instr_cache(addr, size)
- *
- * This routine performs a copy of the data cache
- * and invalidate the instruction cache
- */
-
- .p2align 1
- PUBLIC (copyback_data_cache_and_invalidate_instr_cache)
-
-SYM (copyback_data_cache_and_invalidate_instr_cache):
- wbinvd
- ret
-
-
-
-/*
- * void enterRdbg(void)
- *
- * This function perform a call to the exception 19
- * It is used :
- * 1 - in the user code, to simulate a Breakpoint.
- * (with justSaveContext = 0)
- * 2 - in the RDBG code, to push a ctx in the list.
- * (with justSaveContext = 1)
- *
- * In most of case, it will be use as described in 1.
- * The 2nd possibility will be used by RDBG to obtain
- * its own ctx
- */
-
- PUBLIC (enterRdbg)
-
-SYM (enterRdbg):
- int $50
- ret
-
-
-/*
- * void rtems_exception_prologue_50(void)
- *
- * Exception 50 is used to enter Rdbg
- *
- */
-
- .p2align 4
-
- PUBLIC (rtems_exception_prologue_50)
- PUBLIC (_Exception_Handler)
-
-SYM (rtems_exception_prologue_50):
- pushl $ 0
- pushl $ 50
- jmp SYM(_Exception_Handler) ;
-
-
-END_CODE
-
-END