public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug modula2/107630] runtime libs should be self-contained
Date: Thu, 16 Mar 2023 20:37:51 +0000	[thread overview]
Message-ID: <bug-107630-4-xm4jD3GQGV@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-107630-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107630

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Gaius Mulley <gaius@gcc.gnu.org>:

https://gcc.gnu.org/g:77924dff144cf934e7a73417d237a99f0d9d66ed

commit r13-6718-g77924dff144cf934e7a73417d237a99f0d9d66ed
Author: Gaius Mulley <gaiusmod2@gmail.com>
Date:   Thu Mar 16 20:34:32 2023 +0000

    PR 107630 runtime libs should be self-contained

    This is a patch to improve the layering of libgm2.
    It removes the m2cor Debug.{def,mod} (the codebase will use
    m2pim Debug instead).  It also layers SysStorage under
    both m2pim Storage and m2iso Storage.  SysStorage is now
    a dependant of m2pim Storage.mod.  Halt parameters for
    Debug.mod and M2RTS.mod now have the same order.

    gcc/m2/ChangeLog:

            * gm2-compiler/SymbolKey.mod (PutSymKey): Halt parameters
            reordered.
            (DelSymKey): Ditto.
            * gm2-compiler/ppg.mod (GetEpsilon): Ditto.
            (GetReachEnd): Ditto.
            (GetFollow): Ditto.
            (CodeCondition): Ditto.
            (CodeThenDo): Ditto.
            (CodeEnd): Ditto.
            (RecoverCondition): Ditto.
            (ConditionIndent): Ditto.
            * gm2-libs-ch/m2rts.h (M2RTS_Halt): Ditto.
            * gm2-libs-coroutines/Executive.mod (Assert): Ditto.
            (Resume): Remove redundant comments.
            (Wait): Remove redundant comments.
            * gm2-libs-coroutines/SYSTEM.mod (TRANSFER): Halt parameters
            reordered.
            (IOTransferHandler): Ditto.
            (Finished): Ditto.
            (localInit): Ditto.
            * gm2-libs-coroutines/TimerHandler.mod (WaitOn): Halt parameters
            reordered.
            (Cancel): Ditto.
            (ReArmEvent): Ditto.
            (OnActiveQueue): Ditto.
            * gm2-libs-iso/COROUTINES.mod (NEWCOROUTINE): Ditto.
            (Transfer): Ditto.
            (IOTRANSFER): Ditto.
            * gm2-libs-iso/EXCEPTIONS.mod (RAISE): Correct Halt parameters.
            * gm2-libs-iso/M2RTS.def (Halt): Halt parameters reordered.
            (HaltC): Ditto.
            * gm2-libs-iso/M2RTS.mod: Ditto.
            * gm2-libs-iso/RTentity.mod (PutKey): Ditto.
            (DelKey): Ditto.
            (findChildAndParent): Ditto.
            (assert): Ditto.
            * gm2-libs-iso/Storage.mod (ALLOCATE): Add DebugTrace.
            Add UseMallocFree test.
            (DEALLOCATE): Add DebugTrace.  Add UseMallocFree test.
            (assert): Halt parameters reordered.
            * gm2-libs-log/Termbase.mod (Read): Ditto.
            (KeyPressed): Ditto.
            (Write): Ditto.
            (Init): Ditto.
            * gm2-libs/Debug.def (Halt): Halt parameters reordered.
            * gm2-libs/Debug.mod (Halt): Ditto.
            * gm2-libs/DynamicStrings.def (PopAllocation): Improve comment.
            * gm2-libs/DynamicStrings.mod (PopAllocation): Improve comment.
            Halt parameters reordered.
            * gm2-libs/M2RTS.def (Halt): Ditto.
            (HaltC): Ditto.
            * gm2-libs/M2RTS.mod (Halt): Ditto.
            (HaltC): Ditto.
            * gm2-libs/PushBackInput.mod (PutStr): Ditto.
            (PutString): Ditto.
            (PutCh): Ditto.
            * gm2-libs/RTExceptions.mod (GetBaseExceptionBlock): Ditto.
            * gm2-libs/RTint.mod (ReArmTimeVector): Ditto.
            (GetTimeVector): Ditto.
            (AttachVector): Ditto.
            (IncludeVector): Ditto.
            (Listen): Ditto.
            * gm2-libs/SysStorage.mod (ALLOCATE): Ditto.
            (DEALLOCATE): Ditto.
            (REALLOCATE): Ditto.
            * gm2-libs-coroutines/Debug.def: Removed.
            * gm2-libs-coroutines/Debug.mod: Removed.

    libgm2/ChangeLog:

            * libm2cor/Makefile.am: Remove
            * libm2cor/Makefile.in: Rebuild.
            * libm2iso/RTco.cc (newSem): Halt parameters reordered.
            (currentThread): Ditto.
            (never): Ditto.
            (defined): Ditto.
            (initThread): Ditto.
            * libm2iso/m2rts.h (m2iso_M2RTS_HaltC): Ditto.

    gcc/testsuite/ChangeLog:

            * gm2/complex/pass/arith3.mod: Halt parameters reordered.
            * gm2/complex/run/pass/arith3.mod: Ditto.
            * gm2/complex/run/pass/arith4.mod: Ditto.
            * gm2/complex/run/pass/arith5.mod: Ditto.
            * gm2/isolib/run/pass/real2.mod: Ditto.
            * gm2/isolib/run/pass/real3.mod: Ditto.
            * gm2/isolib/run/pass/realconv.mod: Ditto.
            * gm2/isolib/run/pass/realconv2.mod: Ditto.
            * gm2/pim/pass/testshort.mod: Ditto.
            * gm2/projects/pim/run/pass/tower/AdvSystem.mod: Ditto.
            * gm2/projects/pim/run/pass/tower/DrawL.mod: Ditto.
            * gm2/warnings/returntype/pass/Termbase.mod: Ditto.
            * gm2/warnings/returntype/pass/keypressedsimple.mod: Ditto.

    Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>

  parent reply	other threads:[~2023-03-16 20:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-11  9:12 [Bug modula2/107630] New: " ro at gcc dot gnu.org
2023-03-15 23:20 ` [Bug modula2/107630] " gaius at gcc dot gnu.org
2023-03-15 23:31 ` gaius at gcc dot gnu.org
2023-03-15 23:36 ` gaius at gcc dot gnu.org
2023-03-16 20:37 ` cvs-commit at gcc dot gnu.org [this message]
2023-03-22  1:46 ` cvs-commit at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-107630-4-xm4jD3GQGV@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).