[Git][cmucl/cmucl][arm64-dev-1] 2 commits: Tell cmucl where the arm64 files are
Raymond Toy pushed to branch arm64-dev-1 at cmucl / cmucl Commits: 001fe8ba by Raymond Toy at 2026-03-21T08:02:10-07:00 Tell cmucl where the arm64 files are They're in the src/compiler/arm64, of course. - - - - - 54272c1b by Raymond Toy at 2026-03-21T08:06:22-07:00 Update insts.lisp A completely new version that seems more natural and probably closer to what I would do by hand. It's also much closer to arm/insts.lisp, and looks like spar/insts.lisp and ppc/insts.lisp. This file compiles and `(disassem::print-backend-inst-space)` shows no errors so that we can at least disassemble the instructions correctly. Printers are, of course, untested. Also created by Claude with lots of guidance from me. [skip-ci] - - - - - 2 changed files: - src/compiler/arm64/insts.lisp - src/tools/setup.lisp Changes: ===================================== src/compiler/arm64/insts.lisp ===================================== The diff for this file was not included because it is too large. ===================================== src/tools/setup.lisp ===================================== @@ -306,6 +306,7 @@ ((c:target-featurep :amd64) "amd64/") ((c:target-featurep :arm) "arm/") ((c:target-featurep :sparc64) "sparc64/") + ((c:target-featurep :arm64) "arm64/") (t (error "What machine is this?"))) (make-pathname :directory (pathname-directory f))))) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/d0312fc92acadffce490b41... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/d0312fc92acadffce490b41... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)