aboutsummaryrefslogtreecommitdiff
path: root/sim
AgeCommit message (Collapse)AuthorFilesLines
2024-01-03sim: ppc: switch to common endian codeMike Frysinger5-440/+0
The common sim-endian is a forked & updated version of the ppc code. Fortunately, they didn't diverge from the basic APIs, so they are still compatible, which means we can just delete the ppc version now that the build env is merged at the top-level.
2024-01-03sim: common: include sim-types.h in the endian header directlyMike Frysinger1-0/+2
This is a bit redundant for most ports as they go through sim-basics.h which always includes sim-types.h before including sim-endian.h, but in order to unify ppc's sim-endian code, we need this include here. Plus, it's the directly we generally want to go to get away from one header that defines all APIs and causes hard to untangle dependencies.
2024-01-03sim: ppc: rename local ALU SIGNED64 macrosMike Frysinger1-6/+6
The common/ code has macros with the same name but different behavior: it's for declaring integer constants as 64-bit, not for casting them. Rename ppc's local variant since it's only used in this file in order to avoid conflicts.
2024-01-03sim: ppc: sync WITH_TARGET_{ADDRESS,CELL}_BITSIZE with common/Mike Frysinger1-0/+8
This will make it easier to share common/ code that rely on these additional defines.
2024-01-03sim: cr16: cleanup unused variable compiler warningsMike Frysinger1-5/+3
2024-01-03sim: configure: switch to m4_mapMike Frysinger2-91/+63
Minor reduction in boilerplate here. No real functional changes.
2024-01-03sim: drop support for recursive makes entirelyMike Frysinger4-112/+4
Now that all ports have been merged to the top-level, we no longer need this framework to pass settings down to sub-makefiles. Delete it all.
2024-01-03sim: ppc: hoist compilation up to top-levelMike Frysinger5-602/+16
This removes all recursive makes from the ppc port.
2024-01-03sim: drop support for automatic subdir recursionMike Frysinger4-131/+44
No port relies on this anymore, so we can scrub it all.
2024-01-03sim: ppc: move libsim.a creation to top-levelMike Frysinger5-35/+141
The objects are still compiled in the subdir, but the creation of the archive itself is in the top-level. This is a required step before we can move compilation itself up, and makes it easier to review. The downside is that each object compile is a recursive make instead of a single one. It adds some overhead, so it's not great, but it shouldn't be a big deal. This will go away once compilation is hoisted up.
2024-01-03sim: ppc: move main.o compilation to top-levelMike Frysinger3-22/+33
2024-01-02sim: ppc: hoist pk.h creation to top-levelMike Frysinger4-35/+50
2024-01-02sim: ppc: hoist hw.[ch] creation to top-levelMike Frysinger3-47/+85
2024-01-02sim: ppc: hoist igen execution to top-levelMike Frysinger4-88/+153
Invoke ppc's igen from the top-level like we do for all other ports.
2024-01-02sim: ppc: merge configure logic into top-levelMike Frysinger7-3418/+457
Now that the ppc configure script is just namespaced options, we can move it to ppc/acinclude.m4 and include it directly in the top-level configure script and kill off the last subdir configure script.
2024-01-02sim: ppc: scope configure options to --enable-sim-ppc-xxxMike Frysinger3-395/+398
To prepare for moving these into the top-level configure, namespace then with the port name like we do with all other ports.
2024-01-02sim: ppc: standardize configure option processingMike Frysinger2-248/+161
Switch from ad-hoc $silent checks & echo calls to standard AC_MSG_CHECKING & AC_MSG_RESULT calls. Also delete pointless variable setting after calling AC_MSG_ERROR.
2024-01-02sim: ppc: switch to AS_HELP_STRING for automatic formattingMike Frysinger2-36/+51
2024-01-02sim: ppc: drop now unused config.inMike Frysinger1-19/+0
2024-01-02sim: ppc: move defines.h generation to the top-levelMike Frysinger3-14/+24
Since we rely on the top-level config.h now, the defines.h generation step should live here too.
2024-01-02sim: ppc: drop configure compiler checksMike Frysinger2-1118/+1
Now that the ppc script only checks configure options and sets up variables in the Makefile from those, delete all the compile related logic to greatly simplify the configure script.
2024-01-02sim: ppc: drop custom config.h headerMike Frysinger4-255/+50
Now that everything has moved to the top-level, we can drop the custom ppc config.h and reuse the common one.
2024-01-02sim: ppc: stop including headers from gdb/Mike Frysinger1-2/+1
The common sim code doesn't snoop in gdb/, and the ppc code doesn't need to either. Any common code we pull from gnulib/ now only.
2024-01-02sim: ppc: move termios probes to top-levelMike Frysinger6-275/+217
This is the last compile-time logic in the ppc subdir.
2024-01-02sim: ppc: switch to AC_CACHE_CHECKMike Frysinger2-61/+65
This macro replaces the AC_MSG_CHECKING+AC_CACHE_VAL+AC_MSG_RESULT which reduces the boilerplate in here a little bit.
2024-01-02sim: ppc: switch struct member checks to AC_CHECK_MEMBERMike Frysinger2-68/+99
This covers a lot of the AC_MSG_CHECKING+AC_TRY_COMPILE+AC_MSG_RESULT boilerplate and matches what we do in the top-level platform checks.
2024-01-02sim: ppc: move termio defines to config.hMike Frysinger4-15/+28
Move the defines from explicit -D options to config.h defines to simplify the build and make it easier to move to the top-level configure.
2024-01-02sim: ppc: move struct statfs to top-levelMike Frysinger6-73/+76
2024-01-02sim: ppc: move long long test to top-levelMike Frysinger6-653/+18
While the sim code doesn't utilize HAVE_LONG_LONG itself, other code (like libiberty) seem to, so check for it in the top-level for all ports to leverage.
2024-01-02sim: ppc: hoist sysv tests to top-levelMike Frysinger6-191/+195
Now that the sysv tests turn into config.h defines and everything checks that, we can move the tests to the top-level and out of the ppc subdir.
2024-01-02sim: ppc: always compile in the sysv sem & shm device filesMike Frysinger5-14/+46
Move the stub logic to the device files themselves. This makes the configure & build logic more static which will make it easier to move to the top-level build, and matches what we did with the common/ hw tree already. This also decouples the logic from the two -- in the past, you needed both sem & shm in order to enable the device models, but now each one is tied to its own independent knob. Practically speaking, this will probably not make a difference, but it simplifies the build a bit.
2024-01-02sim: ppc: change SysV sem & shm tests to compile-timeMike Frysinger2-110/+87
Instead of executing code to see if SysV semaphores & shared memory are available, switch to just a compile-time test. The system used to compile might not match the system used to run the code wrt the current kernel & OS settings, but the library APIs should. So move the failures from compile-time to runtime so the program is more portable, and works correctly even when cross-compiling.
2024-01-02sim: ppc: merge System V semaphores checksMike Frysinger2-83/+13
Compile tests can use earlier defines, so hoist the HAVE_UNION_SEMUN define to before the semaphore check, and use it in the test so that we can merge the 2 versions into one. This also defines HAVE_UNION_SEMUN even when ac_cv_sysv_sem is not set, but that's OK as this define is only about a type existing, not about whether the overall code is usable.
2024-01-02sim: ppc: fix bad AC_CACHE_CHECK call with semunMike Frysinger2-9/+4
The first arg is the cache var name, and this one was typoed relative to what the call actually set. We also don't need the manual call to AC_MSG_RESULT as the AC_CACHE_CHECK takes care of it for us.
2024-01-02sim: ppc: delete unused build compile & link settingsMike Frysinger1-3/+0
These should have been removed as part of the ppc/igen merging into the top-level, but they were missed. Clean up now.
2024-01-01sim: ppc: merge misc igen APIsMike Frysinger10-292/+82
The common igen code provides the same misc APIs as the ppc version, so delete the ppc code and pull in the common one. There is one minor difference: the ppc code has a unique dumpf function. The common code switched to lf_printf for the same functionality, but since that requires changes throughout the igen codebase, delay that cleanup for now so we can merge the rest.
2024-01-01sim: ppc: rework igen error to match commonMike Frysinger10-22/+25
Switch to an ERROR macro and tweak the error signature to match the common igen version in preparation for merging the two implementations.
2024-01-01sim: igen: extend error to take argumentsMike Frysinger1-2/+2
The ppc igen error helper allows arbitrary printf calls, so extend the common one to do the same.
2024-01-01sim: ppc: rename igen max_insn_bit_sizeMike Frysinger3-5/+5
We want to avoid conflicts with the common igen enums. This should get migrated over to the common parsing logic, but for now, switch the name to avoid redefinition.
2024-01-01sim: igen: minor constify logicMike Frysinger1-2/+2
Copy some improvements from the ppc igen code.
2024-01-01sim: ppc: unify igen filter_filename implementationsMike Frysinger7-91/+8
Now that both igen implementations are in the top-level, we can unify the filter_filename implementation between them since they're the same (literally the same code).
2024-01-01sim: ppc: replace filter_filename with lbasenameMike Frysinger2-15/+8
The lbasename function from libiberty provides the same API as this custom function. The common/ code already made the switch, so make the same change to the ppc code to avoid target duplication.
2024-01-01sim: ppc: hoist igen compilation into top-levelMike Frysinger3-153/+325
This simplifies the build a bit (especially for deps in port subdirs), and avoids recursive make. This in turn speeds up the build, and lets us reuse existing build-time vs host-time logic from Makefile.am.
2024-01-01sim: ppc: drop build-config.h usageMike Frysinger8-73/+0
This header is only used by the igen tool, and none of the igen code depends on the configure-time checks. Delete the logic to simplify to prepare for moving it to the local.mk code.
2024-01-01sim: ppc: simplify filter_host.c logicMike Frysinger2-7/+19
Switch this from a build-time generation to a static include. This makes the build rules a bit simpler, especially as we move them to Automake from hand-written makefiles.
2024-01-01sim: igen: remove libigen.a when cleaningMike Frysinger2-8/+8
2024-01-01sim: ppc: drop unused host bitsize settingsMike Frysinger3-5/+0
This is never set anywhere, so it's always empty. Scrub it.
2024-01-01sim: frv: fix cmpb uninitialized variable usageMike Frysinger1-0/+1
This code sets up the cc variable based on the comparison of other registers, but it does so incrementally with bit operations, and it never initializes the cc variable. Initialize it to 0 which the cmpba insn is already doing.
2024-01-01sim: arm: mark local read-only arrays as static constMike Frysinger1-2/+2
Move it into read-only data sections to avoid constructing them on the stack at runtime.
2024-01-01sim: warnings: enable -Wunused-variableMike Frysinger2-2/+2