aboutsummaryrefslogtreecommitdiff
path: root/sim/moxie/interp.c
AgeCommit message (Collapse)AuthorFilesLines
2014-12-24Add support for moxie's mul.x and umul.x instructionsAnthony Green1-2/+24
2014-12-12Add zex instruction support for moxie portAnthony Green1-2/+18
2014-04-02Add support for two new moxie sign-extension instructionsAnthony Green1-2/+18
2014-03-10sim: constify arg to sim_do_commandMike Frysinger1-1/+1
It is rare for people to want to modify the cmd arg. In general, they really shouldn't be, but a few still do. For those who misbehave, dupe the string locally so they can bang on it.
2014-03-05sim: constify prog_nameMike Frysinger1-1/+1
There's no need for the prog_name handed down to the core to be mutable, so add const markings to it and all the related funcs.
2014-02-17sim: delete duplicate SIGINT handlingMike Frysinger1-10/+0
Many of the simulators change the SIGINT handler. E.g., moxie/interp.c: sigsave = signal (SIGINT, interrupt); However, this is unnecessary. remote-sim.h already provides an API for asynchronously stopping a sim; and both gdb and the drivers (run.c and nrun.c at least, I didn't check the others) install a SIGINT handler which calls this method. URL: https://sourceware.org/bugzilla/show_bug.cgi?id=16450 Reported-by: Tom Tromey <tromey@redhat.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2014-01-01Update Copyright year range in all files maintained by GDB.Joel Brobecker1-1/+1
2013-01-17Remove debug outputAnthony Green1-1/+0
2013-01-01Update years in copyright notice for the GDB files.Joel Brobecker1-1/+1
Two modifications: 1. The addition of 2013 to the copyright year range for every file; 2. The use of a single year range, instead of potentially multiple year ranges, as approved by the FSF.
2012-09-08Adjust for branch target encoding changeAnthony Green1-10/+10
2012-06-17sim: moxie: fix build by including config.h firstMike Frysinger1-0/+2
2012-01-04Copyright year update in most files of the GDB Project.Joel Brobecker1-1/+1
gdb/ChangeLog: Copyright year update in most files of the GDB Project.
2011-01-01run copyright.sh for 2011.Joel Brobecker1-1/+1
2010-04-14sim: constify sim_write source buffer (part 2)Mike Frysinger1-1/+1
As pointed out by Sandra Loosemore, a bunch of targets define sim_write themselves instead of using the common/ code. So constify them too. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2010-02-27sim/moxie/Jan Kratochvil1-2/+3
* interp.c (sim_create_inferior): Fix crashes on zero PROG_BFD or ARGV.
2010-02-03Fix nop insn for moxieAnthony Green1-11/+15
2010-01-13Add period to sentence in comment.Anthony Green1-1/+1
2010-01-13Initialize SIM_DESC properly.Anthony Green1-0/+16
2010-01-01Update copyright notices to add year 2010.Joel Brobecker1-1/+1
2009-09-10Use common memory infrastructure and introduce device tree supportAnthony Green1-279/+157
2009-07-31Increase simulated memory size. Support new system call ABI. Support ↵Anthony Green1-10/+27
exception processing for Linux system calls.
2009-06-11Add PC-relative branch support to moxie sim.Anthony Green1-122/+98
2009-05-10Add missing break statemenets.Anthony Green1-0/+2
2009-05-01Add moxie simulatorAnthony Green1-0/+1481