aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/emul_chirp.c
AgeCommit message (Collapse)AuthorFilesLines
2023-01-16sim: formally assume unistd.h always exists (via gnulib)Mike Frysinger1-2/+0
We have many uses of unistd.h that are unprotected by HAVE_UNISTD_H, so this is more formalizing the reality that we require this header. Since we switched to gnulib, it guarantees that a unistd.h exists for us to include, so we're doubly OK.
2022-10-12sim/ppc: fixes for arguments to printf style functionsAndrew Burgess1-1/+3
After the recent series of fixes to mark more functions in the simulator with ATTRIBUTE_PRINTF, there were some build failures in the ppc sim due, in some cases, to bugs with the arguments being passed, and in other cases, the issues were (maybe) less serious, with arguments being the wrong size, or type, for the printf format being used. This commit fixes all of the issues that I ran into. In each case I selected the easiest solution to the problem, which is usually just casting the argument to the correct type. If anyone later on thinks the print format should change, please feel free to do that. What we have here should keep the simulator basically working as it does currently, which is my goal with this commit.
2022-05-13sim: remove use of PTRAlan Modra1-1/+1
PTR will soon disappear from ansidecl.h. Remove uses in sim. Where a PTR cast is used in assignment or function args to a void* I've simply removed the unnecessary (in C) cast rather than replacing with (void *).
2022-01-06sim: ppc: migrate to standard uintXX_t typesMike Frysinger1-16/+16
Drop the sim-specific unsignedXX types and move to the standard uintXX_t types that C11 provides.
2021-10-31sim: ppc: clean up printf format handlingMike Frysinger1-42/+42
Don't blindly cast every possible type to (long). Change to the right printf format specifier whether it be a 64-bit type or a pointer.
2021-05-15sim: ppc: clean up various warningsMike Frysinger1-2/+3
A random grab bag of minor fixes to enable -Werror for this port. Cast address vars to long when the format was using %l. Use %zu with sizeof operations. Add const to a bunch of strings. Trim unused variables. Fix sizeof call to calculate target storage and not the pointer itself.
2021-01-11sim: clean up C11 header includesMike Frysinger1-7/+0
Since we require C11 now, we can assume many headers exist, and clean up all of the conditional includes. It's not like any of this code actually accounted for the headers not existing, just whether we could include them. The strings.h cleanup is a little nuanced: it isn't in C11, but every use of it in the codebase will include strings.h only if string.h doesn't exist. Since we now assume the C11 string.h exists, we'll never include strings.h, so we can delete it.
2012-12-19[sim] Update old contact info in GPL license noticesJoel Brobecker1-2/+1
sim/ChangeLog: Update old contact info in GPL license notices.
2012-12-19Update sim copyright headers from GPLv2-or-later to GPLv3-or-later.Joel Brobecker1-1/+1
gdb/sim/ChangeLog: Update the non-FSF-copyrighted files in sim to GPLv3 or later.
2003-06-222003-06-22 Andrew Cagney <cagney@redhat.com>Andrew Cagney1-7/+20
Problems reported by Joshua LeVasseur. * emul_chirp.c: Update copyright. (chirp_emul_nextprop): Return the first property. * hw_htab.c: Update copyright. (htab_decode_hash_table): Fix check for htab size.
2001-10-26Chirp fixes:Andrew Cagney1-1/+13
* hw_htab.c (htab_map_binary): Don't try to map the text section when it is empty. * emul_chirp.c (map_over_chirp_note): Default load-base to -1 not CHIRP_LOAD_BASE. (emul_chirp_create): Map in the interrupt table.
1999-04-16Initial creation of sourceware repositorygdb-4_18-branchpointStan Shebs1-0/+2010
1999-04-16Initial creation of sourceware repositoryStan Shebs1-2007/+0
1997-01-27January 23rd mergeMichael Meissner1-546/+1314
1996-01-10Latest changes from AndrewMichael Meissner1-232/+530
1996-01-08Latest cagney updateMichael Meissner1-39/+450
1995-12-15Changes from AndrewMichael Meissner1-0/+530