|
GDB (API)
|
#include "defs.h"#include "frame.h"#include "frame-unwind.h"#include "frame-base.h"#include "trad-frame.h"#include "dwarf2-frame.h"#include "symtab.h"#include "inferior.h"#include "gdbtypes.h"#include "gdbcore.h"#include "gdbcmd.h"#include "target.h"#include "dis-asm.h"#include "regcache.h"#include "value.h"#include "symfile.h"#include "arch-utils.h"#include "floatformat.h"#include "glibc-tdep.h"#include "infcall.h"#include "regset.h"#include "tramp-frame.h"#include "linux-tdep.h"#include "solib.h"#include "objfiles.h"#include "gdb_assert.h"#include "osabi.h"#include "tic6x-tdep.h"#include "language.h"#include "target-descriptions.h"#include "features/tic6x-c64xp.c"#include "features/tic6x-c64x.c"#include "features/tic6x-c62x.c"Go to the source code of this file.
Defines | |
| #define | TIC6X_OPCODE_SIZE 4 |
| #define | TIC6X_FETCH_PACKET_SIZE 32 |
| #define | INST_S_BIT(INST) ((INST >> 1) & 1) |
| #define | INST_X_BIT(INST) ((INST >> 12) & 1) |
Functions | |
| void | _initialize_tic6x_tdep (void) |
Variables | |
| const gdb_byte | tic6x_bkpt_illegal_opcode_be [] = { 0x56, 0x45, 0x43, 0x14 } |
| const gdb_byte | tic6x_bkpt_illegal_opcode_le [] = { 0x14, 0x43, 0x45, 0x56 } |
| initialize_file_ftype | _initialize_tic6x_tdep |
| #define INST_S_BIT | ( | INST | ) | ((INST >> 1) & 1) |
Definition at line 60 of file tic6x-tdep.c.
| #define INST_X_BIT | ( | INST | ) | ((INST >> 12) & 1) |
Definition at line 61 of file tic6x-tdep.c.
| #define TIC6X_FETCH_PACKET_SIZE 32 |
Definition at line 58 of file tic6x-tdep.c.
| #define TIC6X_OPCODE_SIZE 4 |
Definition at line 57 of file tic6x-tdep.c.
| void _initialize_tic6x_tdep | ( | void | ) |
Definition at line 1349 of file tic6x-tdep.c.
| const gdb_byte tic6x_bkpt_illegal_opcode_be[] = { 0x56, 0x45, 0x43, 0x14 } |
Definition at line 63 of file tic6x-tdep.c.
| const gdb_byte tic6x_bkpt_illegal_opcode_le[] = { 0x14, 0x43, 0x45, 0x56 } |
Definition at line 64 of file tic6x-tdep.c.
1.7.6.1