aboutsummaryrefslogtreecommitdiff
path: root/sim/v850/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
1999-04-16Initial creation of sourceware repositorygdb-4_18-branchpointStan Shebs1-0/+142
1999-04-16Initial creation of sourceware repositoryStan Shebs1-140/+0
1998-11-25Fix --enable-build-warnings=-Werror failures.Andrew Cagney1-26/+6
v850/simops.c, d10v/simops.c, v850/Makefile.in, d10v/Makefile.in: Include targ-vals.h instead of syscall.h. Replace SYS_* with TARGET_SYS_*. Add dependency. z8k/support.c: Include <errno.h> v850/simops.c: Replace long with portable signed32. mips/interp.c: Make sim_monitor global - needed by sky.
1997-09-16Smooth some of ALU tracing's rough edges.Andrew Cagney1-1/+1
Fix switch insn.
1997-09-16Use trace_one_insn in trace functions. Buffer up trace data so thatAndrew Cagney1-1/+1
it is displayed in a single block.
1997-09-16Add v850e version of breakpoint instruction.Andrew Cagney1-0/+2
1997-09-15For instructions moved into v850.igen was computing (wrong) NIA whenAndrew Cagney1-0/+1
this wasn't needed.
1997-09-12Check reserved bits before executing instructions.Andrew Cagney1-1/+3
Make v850[eq] the the default simulator. Report illegal instructions. Include v850e instructions in v850eq.
1997-09-12Add profiling support to v850*.Andrew Cagney1-5/+5
1997-09-08Add multi-sim support to v850/v850e/v850eq simulators.Andrew Cagney1-15/+97
1997-09-04Replace memory model with one from sim/common directory.Andrew Cagney1-0/+2
1997-09-03Pacify gcc-current -Wall.Andrew Cagney1-1/+1
1997-09-03Add real SIM_DESC arg to v850 simulator.Andrew Cagney1-4/+28
Add --enable-sim-warnings, use/fix errors. Add --enable-sim-endian, don't use. Add common modules. Don't yet use most.
1997-01-23 * configure configure.in Makefile.in: Update to new configureStu Grossman1-121/+19
scheme which is more compatible with WinGDB builds. * configure.in: Improve comment on how to run autoconf. * configure: Re-run autoconf to get new ../common/aclocal.m4. * Makefile.in: Use autoconf substitution to install common makefile fragment.
1996-08-29 * interp.c (hash): Update to be more accurate.Jeff Law1-1/+1
(lookup_hash): Call hash rather than computing the hash code here. (do_format_1_2): Handle format 1 and format 2 instructions. Get operands correctly and call the target function. (do_format_6): Get operands correctly and call the target function. (do_formats_9_10): Rough cut so shift ops will work. (sim_resume): Tweak to deal with format 1 and format 2 handling in a single funtion. Don't update the PC for format 3 insns. Fix typos. * simops.c: Slightly reorganize. Add condition code handling to "add", "addi", "and", "andi", "or", "ori", "xor", "xori" and "not" instructions. * v850_sim.h (reg_t): Registers are 32bits. (_state): The V850 has 32 general registers. Add a 32bit psw and pc register too. Add accessor macros Fixing lots of stuff. Starting to add condition code support. Basically check pointing the work to date.
1996-08-29 * ChangeLog, Makefile.in, configure, configure.in, v850_sim.h,Jeff Law1-0/+149
gencode.c, interp.c, simops.c: Created. So we've got something to hack on.