⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 generic-stub.h

📁 ecos为实时嵌入式操作系统
💻 H
字号:
/* Definitions for the generic GDB remote stub * * Copyright (c) 1997, 1998, 1999 Cygnus Solutions * * The contents of this file are subject to the Cygnus eCos Public * License Version 1.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://sourceware.cygnus.com/ecos/ *  * Software distributed under the License is distributed on an * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing rights * and limitations under the License. *  * The Original Code is eCos - Embedded Cygnus Operating System, * released September 30, 1998. The Initial Developer of the Original * Code is Cygnus. Portions created by Cygnus are Copyright (C) 1998, 1999 * Cygnus Solutions. All Rights Reserved. */#ifndef GENERIC_STUB_H#define GENERIC_STUB_H/* Three typedefs must be provided before including this file.   target_register_t should correspond to the largest register value on   this target processor.   regnames_t corresponds to a type representing a register number.    uint32 must correspond to at least a 32-bit unsigned integer type   (it may be larger). */#ifndef ASM#ifndef __ECOS__#include "dbg-serial.h"#endif // __ECOS__struct gdb_packet{  /* The checksum calculated so far. */  uint32 checksum;  /* The checksum we've received from the remote side. */  uint32 xmitcsum;  /* Contents of the accumulated packet. */  char *contents;  /* Number of characters received. */  uint32 length;  /*   * state is the current state:   *  0 = looking for start of packet   *  1 = got start of packet, looking for # terminator   *  2 = looking for first byte of checksum   *  3 = looking for second byte of checksum (indicating end of packet)   */  char state;};/* Return the currently-saved value corresponding to register REG. */extern target_register_t get_register (regnames_t reg);/* Store VALUE in the register corresponding to WHICH. */extern void put_register (regnames_t which, target_register_t value);/* Set the next instruction to be executed when the user program resumes   execution to PC. */extern void set_pc (target_register_t pc);/* Set the return value of the currently-pending syscall to VALUE. */extern void set_syscall_value (target_register_t value);/* Return the Nth argument to the currently-pending syscall (starting from   0). */extern target_register_t get_syscall_arg (int n);/* Initialize the stub. This will also install any trap handlers needed by   the stub. */extern void initialize_stub (void);/* Initialize the hardware. */extern void initHardware (void);/* Skip the current instruction. */extern void __skipinst (void);/* If the address in the PC register corresponds to the breakpoint()   instruction, return a non-zero value. */extern int __is_breakpoint_function (void);/* Execute a breakpoint instruction. Restarting will cause the instruction   to be skipped. */extern void breakpoint (void);/* Return the syscall # corresponding to this system call. */extern int __get_syscall_num (void);/* Transfer exception event processing to the stub. */extern void __switch_to_stub (void);/* Send an exit packet containing the specified status. */extern void __send_exit_status (int status);/* Copy COUNT bytes of memory from ADDR to BUF.     ADDR is assumed to live in the user program's space.    Returns number of bytes successfully read    (caller must check to see if less than requested).  */extern int __read_mem_safe (unsigned char *buf,                             target_register_t addr,                             int count);/* Copy COUNT bytes of memory from BUF to ADDR.    ADDR is assumed to live in the user program's space.    Returns number of bytes successfully read    (caller must check to see if less than requested).  */extern int __write_mem_safe (unsigned char *buf,                              target_register_t addr,                              int count);/* Set to a non-zero value if a memory fault occurs while    __set_mem_fault_trap () is running. */extern volatile int __mem_fault;#ifndef __ECOS__#if 1#include "stub-tservice.h"  /* target dependent stub services */#else/* Flush the instruction cache. */extern void flush_i_cache (void);/* Flush the data cache. */extern void __flush_d_cache (void);typedef enum {  CACHE_NOOP, CACHE_ENABLE, CACHE_DISABLE, CACHE_FLUSH} cache_control_t;/* Perform the specified operation on the instruction cache.    Returns 1 if the cache is enabled, 0 otherwise. */extern int __instruction_cache (cache_control_t request);/* Perform the specified operation on the data cache.    Returns 1 if the cache is enabled, 0 otherwise. */extern int __data_cache (cache_control_t request);#endif#endif // __ECOS__/* Write the 'T' packet in BUFFER. SIGVAL is the signal the program   received. */extern void __build_t_packet (int sigval, char *buffer);/* Return 1 when a complete packet has been received, 0 if the packet   is not yet complete, or -1 if an erroneous packet was NAKed. */int __add_char_to_packet (unsigned character, struct gdb_packet *packet);typedef int (*__PFI)(int);typedef void (*__PFV)(void);/* When an exception occurs, __process_exception_vec will be invoked with   the signal number corresponding to the trap/exception. The function   should return zero if it wishes execution to resume from the saved   register values; a non-zero value indicates that the exception handler   should be reinvoked. */extern volatile __PFI __process_exception_vec;/* __process_exit_vec is invoked when a 'k' kill packet is received   from GDB. */extern volatile __PFV __process_exit_vec;/* If SIGSYSCALL is defined, and such a signal value is returned from    __computeSignal (), the function pointed to by this vector will   be invoked.   If the return value is negative, the user program is assumed to   have received the corresponding positive signal value, and an   exception will be processed.  Otherwise, the user program is   restarted from the next instruction. */extern volatile __PFI __process_syscall_vec;/* A continue packet was received from GDB with a signal value. The function   pointed to by __process_signal_vec will be invoked with this signal   value.    If a zero value is returned, we will ignore the signal, and proceed   with the continue request. Otherwise, the program will be killed   with the signal. */extern volatile __PFI __process_signal_vec;/* If non-NULL, __init_vec is called right before the user program is   resumed. */extern volatile __PFV __init_vec;/* if non-NULL, __cleanup_vec is called after the user program takes   an exception. */extern volatile __PFV __cleanup_vec;/* Send an 'O' packet to GDB containing STR. */extern int __output_gdb_string (target_register_t addr, int string_len);/* Request MAXLEN bytes of input from GDB to be stored in DEST. If BLOCK   is set, GDB should block until MAXLEN bytes are available to be   read; otherwise, it will return immediately with whatever data is   available.    The return value is the number of bytes written into DEST. */extern int __get_gdb_input (target_register_t dest, int maxlen, int block);/* Return the ASCII equivalent of C (C>=0 && C<=15). The result will be    lower-case. */extern char __tohex (int c);/* Convert COUNT bytes of the memory region in MEM to a hexadecimal   string in DEST.   The resulting string will contain 2*COUNT characters.   If MAY_FAULT is non-zero, memory faults are trapped; if a fault occurs,   a NULL value will be returned.   The value returned is one byte past the end of the string written. */extern char *__mem2hex (char *mem, char *dest, int count, int may_fault);/* Given a hexadecimal string in MEM, write the equivalent bytes to DEST.   The string is assumed to contain 2*COUNT characters.   If MAY_FAULT is non-zero, memory faults are trapped; if a fault occurs,   a NULL value will be returned.   Otherwise, the value returned is one byte past the last byte written. */extern char *__hex2mem (char *buf, char *mem, int count, int may_fault);/* Set the program arguments passed into the user program's main */extern void __set_program_args (int argc, char **argv);/* Return the user program arguments passed in from GDB (via an 'A'   packet). argcPtr is a pointer into the user program, which will hold   the number of arguments; the strings are returned. */extern char **__get_program_args (target_register_t argcPtr);/* Encode PACKET as a remote protocol packet and send it to GDB; this takes   care of sending the initial '$' character, as well as the trailing '#'   and checksum, and also waits for an ACK from the remote side, resending   as necessary. */extern void __putpacket (char *packet);/* Convert the hexadecimal string pointed to by *PTR into an integer,   and store it in the value pointed to by INTVALUE. The number of   characters read from *PTR will be returned; *PTR will point to the first   non-hexadecmial character encountered. */extern unsigned int __hexToInt (char **ptr, target_register_t *intValue);/* Convert the value in INTVALUE into a string of hexadecimal   characters stored in PTR. NUMBITS are the number of bits to use   in INTVALUE. The number of characters written to PTR will be returned. */extern unsigned int __intToHex (char *ptr,                                 target_register_t intValue,                                 int numBits);/* Handle an exception, usually some sort of hardware or software trap.   This is responsible for communicating the exception to GDB. */extern void __handle_exception (void);/* Send a 'X' packet with signal SIGVAL to GDB. */extern void __kill_program (int sigval);/* Given a packet pointed to by PACKETCONTENTS, decode it and respond to   GDB appropriately. */extern int __process_packet (char *packetContents);/* Write the C-style string pointed to by STR to the GDB comm port.   Used for printing debug messages. */extern void __putDebugStr (char *str);#ifdef NO_MALLOC#define MAX_BP_NUM 64 /* Maximum allowed # of breakpoints */#endif#endif /* ASM */#endif /* GENERIC_STUB_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -