arc-ext.h
来自「基于4个mips核的noc设计」· C头文件 代码 · 共 63 行
H
63 行
/* ARC target-dependent stuff. Extension data structures. Copyright 1995, 1997, 2000, 2001 Free Software Foundation, Inc.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#ifndef ARCEXT_H#define ARCEXT_Henum {EXT_INSTRUCTION = 0};enum {EXT_CORE_REGISTER = 1};enum {EXT_AUX_REGISTER = 2};enum {EXT_COND_CODE = 3};enum {NUM_EXT_INST = (0x1f-0x10+1) + (0x3f-0x09+1)};enum {NUM_EXT_CORE = 59-32+1};enum {NUM_EXT_COND = 0x1f-0x10+1};struct ExtInstruction { char flags; char *name;}; struct ExtAuxRegister { long address; char *name; struct ExtAuxRegister *next; };struct arcExtMap { struct ExtAuxRegister *auxRegisters; struct ExtInstruction *instructions[NUM_EXT_INST]; unsigned char *coreRegisters[NUM_EXT_CORE]; unsigned char *condCodes[NUM_EXT_COND];};extern int arcExtMap_add(void*, unsigned long);extern const char *arcExtMap_coreRegName(int);extern const char *arcExtMap_auxRegName(long);extern const char *arcExtMap_condCodeName(int);extern const char *arcExtMap_instName(int, int, int*);extern void build_ARC_extmap(bfd *);#define IGNORE_FIRST_OPD 1#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?