61baf725ec
This applies the second part of GDB's End of Year Procedure, which updates the copyright year range in all of GDB's files. gdb/ChangeLog: Update copyright year range in all GDB files.
80 lines
2.3 KiB
C
80 lines
2.3 KiB
C
/* Simulator for Analog Devices Blackfin processors.
|
|
|
|
Copyright (C) 2005-2017 Free Software Foundation, Inc.
|
|
Contributed by Analog Devices, Inc.
|
|
|
|
This file is part of simulators.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 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 of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef _BFIN_MAIN_SIM_H_
|
|
#define _BFIN_MAIN_SIM_H_
|
|
|
|
#include "sim-basics.h"
|
|
#include "sim-signal.h"
|
|
#include "arch.h"
|
|
#include "sim-base.h"
|
|
|
|
#include "bfin-sim.h"
|
|
|
|
#include "machs.h"
|
|
|
|
struct _sim_cpu {
|
|
/* ... simulator specific members ... */
|
|
struct bfin_cpu_state state;
|
|
sim_cpu_base base;
|
|
};
|
|
#define BFIN_CPU_STATE ((cpu)->state)
|
|
|
|
struct sim_state {
|
|
sim_cpu *cpu[MAX_NR_PROCESSORS];
|
|
|
|
/* ... simulator specific members ... */
|
|
struct bfin_board_data board;
|
|
#define STATE_BOARD_DATA(sd) (&(sd)->board)
|
|
sim_state_base base;
|
|
};
|
|
|
|
#include "sim-config.h"
|
|
#include "sim-types.h"
|
|
#include "sim-engine.h"
|
|
#include "sim-options.h"
|
|
#include "dv-bfin_trace.h"
|
|
|
|
#undef CLAMP
|
|
#undef ALIGN
|
|
#define CLAMP(a, b, c) min (max (a, b), c)
|
|
#define ALIGN(addr, size) (((addr) + ((size)-1)) & ~((size)-1))
|
|
|
|
/* TODO: Move all this trace logic to the common code. */
|
|
#define BFIN_TRACE_CORE(cpu, addr, size, map, val) \
|
|
do { \
|
|
TRACE_CORE (cpu, "%cBUS %s %i bytes @ 0x%08x: 0x%0*x", \
|
|
map == exec_map ? 'I' : 'D', \
|
|
map == write_map ? "STORE" : "FETCH", \
|
|
size, addr, size * 2, val); \
|
|
PROFILE_COUNT_CORE (cpu, addr, size, map); \
|
|
} while (0)
|
|
#define BFIN_TRACE_BRANCH(cpu, oldpc, newpc, hwloop, fmt, ...) \
|
|
do { \
|
|
TRACE_BRANCH (cpu, fmt " to %#x", ## __VA_ARGS__, newpc); \
|
|
if (STATE_ENVIRONMENT (CPU_STATE (cpu)) == OPERATING_ENVIRONMENT) \
|
|
bfin_trace_queue (cpu, oldpc, newpc, hwloop); \
|
|
} while (0)
|
|
|
|
/* Default memory size. */
|
|
#define BFIN_DEFAULT_MEM_SIZE (128 * 1024 * 1024)
|
|
|
|
#endif
|