This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a change to branch GROOVY-12133
in repository https://gitbox.apache.org/repos/asf/groovy.git


 discard 50dbd6beed GROOVY-12133: Implement findBalancedGroups utility to 
support Regex Balanced Groups
     add 38a3cdef14 GROOVY-12138: emit invokedynamic call sites for property 
writes (spike) (#2674)
     add 3c58690c39 GROOVY-12137: experimental reflective cold tier for indy 
dispatch (spike)
     add af8b417fc2 GROOVY-12138: default invokedynamic property writes on 
(opt-out) + parity guard
     add 31c6d24a21 rework benchmark to reflect current master defaults
     add 12f8434883 add Locale/TimeZone Jupiter isolation annotations - we 
don't use parallel tests yet but this would safeguard us if we do
     add c9363dba83 GROOVY-12150: Show a closure's generated class in the AST 
browser decompiled view
     add ec599f2a53 Bump github/codeql-action from 4.36.2 to 4.36.3
     add 07a0ffb91e Bump com.gradle.common-custom-user-data-gradle-plugin
     add 6047948849 Bump com.gradle.develocity from 4.4.3 to 4.5.0
     new 4ed84504d6 GROOVY-12133: Implement findBalancedGroups utility to 
support Regex Balanced Groups

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (50dbd6beed)
            \
             N -- N -- N   refs/heads/GROOVY-12133 (4ed84504d6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/codeql-analysis.yml              |   6 +-
 settings.gradle                                    |   4 +-
 .../java/org/apache/groovy/util/SystemUtil.java    |  18 ++
 .../groovy/classgen/AsmClassGenerator.java         |   2 +
 .../groovy/classgen/asm/CallSiteWriter.java        |  16 ++
 .../groovy/classgen/asm/ClosureWriter.java         |   9 +
 .../classgen/asm/indy/IndyCallSiteWriter.java      |  21 ++
 .../classgen/asm/indy/InvokeDynamicWriter.java     |  37 ++++
 .../codehaus/groovy/reflection/CachedField.java    |  27 +++
 .../codehaus/groovy/reflection/CachedMethod.java   |  48 +++++
 .../v8/ColdReflectiveMethodHandleWrapper.java      | 193 +++++++++++++++++
 .../v8/IndyGuardsFiltersAndSignatures.java         |  22 +-
 .../codehaus/groovy/vmplugin/v8/IndyInterface.java | Bin 20799 -> 26208 bytes
 .../org/codehaus/groovy/vmplugin/v8/Selector.java  | 212 ++++++++++++++++++-
 src/test/groovy/groovy/PrintTest.groovy            |   5 +
 .../console/ui/AstNodeToScriptAdapter.groovy       |  15 ++
 .../console/ui/AstNodeToScriptAdapterTest.groovy   |  26 +++
 .../src/test/groovy/groovy/DateTest.groovy         |  13 ++
 .../extensions/DateUtilExtensionsTest.groovy       |   4 +
 .../src/test/groovy/groovy/xml/XmlUtilTest.groovy  |   4 +
 .../groovy/bench/DynamicDispatchColdBench.java     |  25 +++
 .../groovy/bench/dispatch/CallsiteBench.java       |  30 +++
 .../groovy/perf/ColdReflectionParityTest.groovy    | 104 +++++++++
 .../groovy/perf/SetPropertyParityTest.groovy       | 112 ++++++++++
 .../perf/cold-reflection-parity-corpus.groovy      | 234 +++++++++++++++++++++
 .../groovy/perf/set-property-parity-corpus.groovy  |  95 +++++++++
 26 files changed, 1274 insertions(+), 8 deletions(-)
 create mode 100644 
src/main/java/org/codehaus/groovy/vmplugin/v8/ColdReflectiveMethodHandleWrapper.java
 create mode 100644 
subprojects/performance/src/test/groovy/org/apache/groovy/perf/ColdReflectionParityTest.groovy
 create mode 100644 
subprojects/performance/src/test/groovy/org/apache/groovy/perf/SetPropertyParityTest.groovy
 create mode 100644 
subprojects/performance/src/test/resources/org/apache/groovy/perf/cold-reflection-parity-corpus.groovy
 create mode 100644 
subprojects/performance/src/test/resources/org/apache/groovy/perf/set-property-parity-corpus.groovy

Reply via email to