📄 tm-hppa.h
字号:
/* Parameters for execution on a Hewlett-Packard PA-RISC machine. Copyright 1986, 1987, 1989, 1990, 1991, 1992 Free Software Foundation, Inc. Contributed by the Center for Software Science at the University of Utah (pa-gdb-bugs@cs.utah.edu).This file is part of GDB.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* Target system byte order. */#define TARGET_BYTE_ORDER BIG_ENDIAN/* Get at various relevent fields of an instruction word. */#define MASK_5 0x1f#define MASK_11 0x7ff#define MASK_14 0x3fff#define MASK_21 0x1fffff/* This macro gets bit fields using HP's numbering (MSB = 0) */#define GET_FIELD(X, FROM, TO) \ ((X) >> 31 - (TO) & (1 << ((TO) - (FROM) + 1)) - 1)/* Watch out for NaNs */#define IEEE_FLOAT/* Groan */#define ARGS_GROW_DOWN/* Define this if the C compiler puts an underscore at the front of external names before giving them to the linker. *//* #define NAMES_HAVE_UNDERSCORE *//* Offset from address of function to start of its code. Zero on most machines. */#define FUNCTION_START_OFFSET 0 /* Advance PC across any function entry prologue instructions to reach some "real" code. *//* skip (stw rp, -20(0,sp)); copy 4,1; copy sp, 4; stwm 1,framesize(sp) for gcc, or (stw rp, -20(0,sp); stwm 1, framesize(sp) for hcc */#define SKIP_PROLOGUE(pc) \{ if (read_memory_integer ((pc), 4) == 0x6BC23FD9) \ { if (read_memory_integer ((pc) + 4, 4) == 0x8040241) \ (pc) += 16; \ else if ((read_memory_integer (pc + 4, 4) & ~MASK_14) == 0x68810000) \ (pc) += 8;} \ else if (read_memory_integer ((pc), 4) == 0x8040241) \ (pc) += 12; \ else if ((read_memory_integer (pc, 4) & ~MASK_14) == 0x68810000) \ (pc) += 4;}/* Immediately after a function call, return the saved pc. Can't go through the frames for this because on some machines the new frame is not set up until the new function executes some instructions. */#define SAVED_PC_AFTER_CALL(frame) (read_register (RP_REGNUM) & ~3)/* Address of end of stack space. Who knows. */#define STACK_END_ADDR 0x80000000/* Stack grows upward */#define INNER_THAN >/* Sequence of bytes for breakpoint instruction. *//*#define BREAKPOINT {0x00, 0x00, 0x00, 0x00}*/#ifdef KERNELDEBUG /* XXX */#define BREAKPOINT {0x00, 0x00, 0xa0, 0x00}#else#define BREAKPOINT {0x00, 0x01, 0x00, 0x04}#endif/* Amount PC must be decremented by after a breakpoint. This is often the number of bytes in BREAKPOINT but not always. Not on the PA-RISC */#define DECR_PC_AFTER_BREAK 0/* return instruction is bv r0(rp) */#define ABOUT_TO_RETURN(pc) (read_memory_integer (pc, 4) == 0xE840C000)/* Return 1 if P points to an invalid floating point value. */#define INVALID_FLOAT(p, len) 0 /* Just a first guess; not checked *//* Largest integer type */#define LONGEST long/* Name of the builtin type for the LONGEST type above. */#define BUILTIN_TYPE_LONGEST builtin_type_long/* Say how long (ordinary) registers are. */#define REGISTER_TYPE long/* Number of machine registers */#define NUM_REGS 100/* Initializer for an array of names of registers. There should be NUM_REGS strings in this initializer. */#define REGISTER_NAMES \ {"flags", "r1", "rp", "r3", "r4", "r5", "r6", "r7", "r8", "r9", \ "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r18", "r19", \ "r20", "r21", "r22", "arg3", "arg2", "arg1", "arg0", "dp", "ret0", "ret1", \ "sp", "r31", "sar", "pcoqh", "pcsqh", "pcoqt", "pcsqt", \ "eiem", "iir", "isr", "ior", "ipsw", "goto", "sr4", "sr0", "sr1", "sr2", \ "sr3", "sr5", "sr6", "sr7", "cr0", "cr8", "cr9", "ccr", "cr12", "cr13", \ "cr24", "cr25", "cr26", "mpsfu_high", "mpsfu_low", "mpsfu_ovflo", "pad", \ "fpsr", "fpe1", "fpe2", "fpe3", "fpe4", "fpe5", "fpe6", "fpe7", \ "fp4", "fp5", "fp6", "fp7", "fp8", \ "fp9", "fp10", "fp11", "fp12", "fp13", "fp14", "fp15", \ "fp16", "fp17", "fp18", "fp19", "fp20", "fp21", "fp22", "fp23", \ "fp24", "fp25", "fp26", "fp27", "fp28", "fp29", "fp30", "fp31"}/* Register numbers of various important registers. Note that some of these values are "real" register numbers, and correspond to the general registers of the machine, and some are "phony" register numbers which are too large to be actual register numbers as far as the user is concerned but do serve to get the desired values when passed to read_register. */#define RP_REGNUM 2 /* return pointer */#define FP_REGNUM 4 /* Contains address of executing stack */ /* frame */#define SP_REGNUM 30 /* Contains address of top of stack */#define SAR_REGNUM 32 /* shift amount register */#define IPSW_REGNUM 41 /* processor status word. ? */#define PCOQ_HEAD_REGNUM 33 /* instruction offset queue head */#define PCSQ_HEAD_REGNUM 34 /* instruction space queue head */#define PCOQ_TAIL_REGNUM 35 /* instruction offset queue tail */#define PCSQ_TAIL_REGNUM 36 /* instruction space queue tail */#define FP0_REGNUM 64 /* floating point reg. 0 */#define FP4_REGNUM 72/* compatibility with the rest of gdb. */#define PC_REGNUM PCOQ_HEAD_REGNUM#define NPC_REGNUM PCOQ_TAIL_REGNUM/* When fetching register values from an inferior or a core file, clean them up using this macro. BUF is a char pointer to the raw value of the register in the registers[] array. */#define CLEAN_UP_REGISTER_VALUE(regno, buf) \ do { \ if ((regno) == PCOQ_HEAD_REGNUM || (regno) == PCOQ_TAIL_REGNUM) \ (buf)[3] &= ~0x3; \ } while (0)/* Define DO_REGISTERS_INFO() to do machine-specific formatting of register dumps. */#define DO_REGISTERS_INFO(_regnum, fp) pa_do_registers_info (_regnum, fp)/* PA specific macro to see if the current instruction is nullified. */#define INSTRUCTION_NULLIFIED ((int)read_register (IPSW_REGNUM) & 0x00200000)/* Total amount of space needed to store our copies of the machine's register state, the array `registers'. */#define REGISTER_BYTES (32 * 4 + 11 * 4 + 8 * 4 + 12 * 4 + 4 + 32 * 8)/* Index within `registers' of the first byte of the space for register N. */#define REGISTER_BYTE(N) \ ((N) >= FP4_REGNUM ? ((N) - FP4_REGNUM) * 8 + 288 : (N) * 4)/* Number of bytes of storage in the actual machine representation for register N. On the PA-RISC, all regs are 4 bytes except the floating point regs which are 8 bytes. */#define REGISTER_RAW_SIZE(N) ((N) < FP4_REGNUM ? 4 : 8)/* Number of bytes of storage in the program's representation for register N. */#define REGISTER_VIRTUAL_SIZE(N) REGISTER_RAW_SIZE(N)/* Largest value REGISTER_RAW_SIZE can have. */#define MAX_REGISTER_RAW_SIZE 8/* Largest value REGISTER_VIRTUAL_SIZE can have. */#define MAX_REGISTER_VIRTUAL_SIZE 8/* Nonzero if register N requires conversion from raw format to virtual format. */#define REGISTER_CONVERTIBLE(N) 0/* Convert data from raw format for register REGNUM to virtual format for register REGNUM. */#define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO) \{ bcopy ((FROM), (TO), (REGNUM) < FP4_REGNUM ? 4 : 8); }/* Convert data from virtual format for register REGNUM to raw format for register REGNUM. */#define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) \{ bcopy ((FROM), (TO), (REGNUM) < FP4_REGNUM ? 4 : 8); }/* Return the GDB type object for the "standard" data type of data in register N. */#define REGISTER_VIRTUAL_TYPE(N) \ ((N) < FP4_REGNUM ? builtin_type_int : builtin_type_double)/* Store the address of the place in which to copy the structure the subroutine will return. This is called from call_function. */#define STORE_STRUCT_RETURN(ADDR, SP) {write_register (28, (ADDR)); }/* Extract from an array REGBUF containing the (raw) register state a function return value of type TYPE, and copy that, in virtual format, into VALBUF. */#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \ bcopy ((REGBUF) + REGISTER_BYTE(TYPE_LENGTH(TYPE) > 4 ? \ FP4_REGNUM :28), VALBUF, TYPE_LENGTH (TYPE))/* Write into appropriate registers a function return value of type TYPE, given in virtual format. */#define STORE_RETURN_VALUE(TYPE,VALBUF) \ write_register_bytes (TYPE_LENGTH(TYPE) > 4 ? FP4_REGNUM :28, \ VALBUF, TYPE_LENGTH (TYPE))/* Extract from an array REGBUF containing the (raw) register state the address in which a function should return its structure value, as a CORE_ADDR (or an expression that can be used as one). */#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(int *)((REGBUF) + 28))/* This is a piece of magic that is given a register number REGNO and as BLOCKEND the address in the system of the end of the user structure and stores in ADDR the address in the kernel or core dump of that register. *//* Describe the pointer in each stack frame to the previous stack frame (its caller). *//* FRAME_CHAIN takes a frame's nominal address and produces the frame's chain-pointer. FRAME_CHAIN_COMBINE takes the chain pointer and the frame's nominal address and produces the nominal address of the caller frame. However, if FRAME_CHAIN_VALID returns zero, it means the given frame is the outermost one and has no caller. In that case, FRAME_CHAIN_COMBINE is not used. *//* In the case of the PA-RISC, the frame's nominal address is the address of a 4-byte word containing the calling frame's address (previous FP). */#define FRAME_CHAIN(thisframe) \
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -