Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8336856: Efficient hidden class-based string concatenation strategy #20273

Closed
wants to merge 135 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
135 commits
Select commit Hold shift + click to select a range
062d313
optimize String.concat
wenshao Jul 19, 2024
a0fccb7
copyright 2024
wenshao Jul 19, 2024
38a6f56
share newArray
wenshao Jul 19, 2024
a509b7c
extract a common doConcat handling both non-empty strings
wenshao Jul 19, 2024
9b39c4c
handle null argument
wenshao Jul 19, 2024
2171ad9
add comments
wenshao Jul 19, 2024
6990115
Update src/java.base/share/classes/java/lang/String.java
wenshao Jul 19, 2024
227158a
optimize string concat
wenshao Jul 20, 2024
c9acbe9
non-MH-based implementation
wenshao Jul 22, 2024
94709c0
non-MH-based implementation
wenshao Jul 22, 2024
3b02202
fix TRUSTED not work
wenshao Jul 23, 2024
750123a
reduce change & refactor
wenshao Jul 23, 2024
20f8863
Merge remote-tracking branch 'upstream/master' into optim_simple_conc…
wenshao Jul 23, 2024
61d6b64
merge from master
wenshao Jul 23, 2024
5474401
Merge remote-tracking branch 'origin/optim_simple_concat_202407' into…
wenshao Jul 23, 2024
4c2a96f
1. reduce change
wenshao Jul 23, 2024
72d3166
fix WithSecurityManager error
wenshao Jul 23, 2024
80cc2b5
Merge remote-tracking branch 'upstream/master' into optim_concat_fact…
wenshao Jul 23, 2024
d9d493a
add comments and format code
wenshao Jul 23, 2024
b274839
refactor based on 8335182
wenshao Jul 23, 2024
6e950c4
fix build error
wenshao Jul 24, 2024
0659b33
remove ForceInline
wenshao Jul 24, 2024
249aded
use Float.toString & Double.toString
wenshao Jul 24, 2024
05f6270
refactor based on 8335182
wenshao Jul 24, 2024
db5af94
reduce change
wenshao Jul 24, 2024
778c3a1
copyright
wenshao Jul 24, 2024
0a7f132
reduce change
wenshao Jul 24, 2024
3809655
minor refactor
wenshao Jul 24, 2024
c53ce54
minor refactor
wenshao Jul 24, 2024
294b551
change comments
wenshao Jul 24, 2024
e497c95
typo
wenshao Jul 24, 2024
6faecfd
Merge remote-tracking branch 'upstream/master' into optim_concat_fact…
wenshao Jul 24, 2024
0fa1658
replace generateMethod
wenshao Jul 24, 2024
a0cdef4
reduce change
wenshao Jul 24, 2024
e430a41
Descending mixer, same order as prepend
wenshao Jul 25, 2024
00fcd55
add benchmark
wenshao Jul 25, 2024
3d30ae6
common simpleConcat
wenshao Jul 25, 2024
f1898af
remove benchmark
wenshao Jul 25, 2024
166dcdb
rename simpleConcat -> makeSimpleConcat
wenshao Jul 27, 2024
8d2ac24
more micro benchmark
wenshao Jul 28, 2024
d871681
mix & prepend support Boolean/Integer/Long
wenshao Jul 28, 2024
82bd363
Merge remote-tracking branch 'upstream/master' into optim_concat_fact…
wenshao Jul 28, 2024
241ca0f
fix stringSize build error
wenshao Jul 28, 2024
f241462
fix mix Integer null error
wenshao Jul 28, 2024
9468c6c
remove mix & prepend Boolean/Integer/Long
wenshao Jul 28, 2024
f0cc342
reduce change
wenshao Jul 28, 2024
8abba28
add none-MH benchmark
wenshao Jul 28, 2024
e0967f0
Revert "add none-MH benchmark"
wenshao Jul 28, 2024
64ce59d
code style & add comments
wenshao Jul 28, 2024
996ffb5
cache generate MethodHandle
wenshao Jul 28, 2024
be9952c
Revert "cache generate MethodHandle"
wenshao Jul 28, 2024
8ece57d
Simplify, remove STRONG relationship, erase argument types, repurpose…
cl4es Jul 31, 2024
dfe5cc1
Merged
cl4es Jul 31, 2024
f897301
Merge pull request #8 from cl4es/pr_20273_fixes
wenshao Jul 31, 2024
d573c29
use ClassFile ACC Flags
wenshao Jul 31, 2024
2ab4e53
First sort-of working implementation of a cached, injected-constants …
cl4es Aug 1, 2024
065fdce
merge
cl4es Aug 1, 2024
8f3dace
Minor fixes
cl4es Aug 2, 2024
e2b30b3
Fix performance regression caused by args.erase()
wenshao Aug 2, 2024
de857dd
Fix verification
cl4es Aug 2, 2024
7875fd3
erase argument types
wenshao Aug 2, 2024
b7e1f52
code style
wenshao Aug 2, 2024
60531b9
Weak -> Soft reference the constructor+handle pair
cl4es Aug 2, 2024
799a072
Simplify, promote byte and short arguments to int early
cl4es Aug 2, 2024
87ae363
Mark all fields as @Stable
cl4es Aug 2, 2024
e8e621f
Rename
cl4es Aug 2, 2024
48ec34e
Remove defensive cloning (hidden class, trusted caller)
cl4es Aug 2, 2024
c3b433f
merge
cl4es Aug 2, 2024
2882ee7
Shift constructor logic to shared superclass
cl4es Aug 2, 2024
11bbccb
Redo concatArgs
cl4es Aug 2, 2024
fcc9c45
Updated comment
cl4es Aug 2, 2024
c91b82a
Merge pull request #9 from cl4es/pr_20273_inject_cache
wenshao Aug 2, 2024
a3cd822
remove lengthcoder
wenshao Aug 3, 2024
03d0c3e
use static method, remove ConcatBase & MethodHandlePair & CONSTRUCTOR…
wenshao Aug 3, 2024
c26d9df
Revert "use static method, remove ConcatBase & MethodHandlePair & CON…
wenshao Aug 3, 2024
ca89402
use prepend and split lengthcoder
wenshao Aug 3, 2024
5482069
forceinline
wenshao Aug 3, 2024
d05a2ad
Code structuring to reduce the size of generated code
wenshao Aug 3, 2024
bd45584
bug fix and make clean
wenshao Aug 4, 2024
7f9aab1
typo
wenshao Aug 4, 2024
d733894
copyright
wenshao Aug 4, 2024
81b2f1b
Remove unnecessary operations
wenshao Aug 4, 2024
6b2eb6d
Extract an erasedArgs method
wenshao Aug 4, 2024
937f411
1. split length & coder & prepend method
wenshao Aug 4, 2024
10c908b
fix comments and reduce code size of generated methods
wenshao Aug 4, 2024
2926b18
add comments and make code clear
wenshao Aug 5, 2024
297d8be
add comments & code style & make code clear
wenshao Aug 5, 2024
520f4ce
copyright
wenshao Aug 5, 2024
bc6b36f
Update src/java.base/share/classes/java/lang/StringConcatHelper.java
wenshao Aug 5, 2024
3a338b5
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 5, 2024
73fe510
simplify prepend & code style
wenshao Aug 5, 2024
52933d0
revert simplify prepend
wenshao Aug 5, 2024
726b9ad
Merge remote-tracking branch 'upstream/master' into optim_concat_fact…
wenshao Aug 5, 2024
31b4fbc
typo
wenshao Aug 5, 2024
aedc30c
fix comments & code style
wenshao Aug 6, 2024
68b00c3
resolve the WithSecurityManager test failure
wenshao Aug 6, 2024
65a5c3c
remove unused import
wenshao Aug 6, 2024
adc12ad
copyright
wenshao Aug 6, 2024
6c99bd4
rename SimpleStringBuilderStrategy to InlineHiddenClassStrategy
wenshao Aug 6, 2024
7aff9f6
use more idiomatic class-file API
wenshao Aug 6, 2024
a007880
inlineThreshold parameter
wenshao Aug 6, 2024
a9691ee
use MethodTypeDesc instead of MethodType
wenshao Aug 6, 2024
7979525
highArity default 0
wenshao Aug 6, 2024
65a16e4
checkOverflow
wenshao Aug 6, 2024
afca6a4
refactor checkOverflow
wenshao Aug 7, 2024
b260874
1. not generate coderArgs unless needed
wenshao Aug 7, 2024
6895db8
fix comments
wenshao Aug 8, 2024
9f48376
fix comments
wenshao Aug 8, 2024
1388f7d
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 12, 2024
74c1d1c
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 12, 2024
526bcb1
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 12, 2024
3dd9e65
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 12, 2024
5e41547
remove unused code
wenshao Aug 12, 2024
9beb8c6
fix comments
wenshao Aug 12, 2024
8a6f32b
fix comments
wenshao Aug 12, 2024
c7daccc
Update src/java.base/share/classes/java/lang/StringConcatHelper.java
wenshao Aug 12, 2024
2fdd661
StringConcat1
wenshao Aug 12, 2024
0b75600
add comments
wenshao Aug 12, 2024
779d8be
revert MemberName
wenshao Aug 12, 2024
663d622
new Lookup(String.class)
wenshao Aug 12, 2024
6850624
add jtreg HiddenClassUnloading
wenshao Aug 13, 2024
de44304
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 13, 2024
d8d1369
Update test/jdk/java/lang/String/concat/HiddenClassUnloading.java
wenshao Aug 13, 2024
eca9d7a
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 13, 2024
3233491
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 13, 2024
720c24b
fix build error
wenshao Aug 13, 2024
60ac596
Remove unnecessary loops
wenshao Aug 13, 2024
babc76e
Simplify HiddenClassUnloading
wenshao Aug 13, 2024
1420559
Update src/java.base/share/classes/java/lang/invoke/StringConcatFacto…
wenshao Aug 13, 2024
e4f49c5
Simplify HiddenClassUnloading
wenshao Aug 13, 2024
62dd2ce
Minor refactoring
wenshao Aug 13, 2024
52ccae0
Minor refactoring
wenshao Aug 13, 2024
094b2e5
remove unused
wenshao Aug 13, 2024
af2cae3
code style
wenshao Aug 13, 2024
7d481ec
static final
wenshao Aug 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1211,12 +1211,12 @@ private static MethodTypeDesc coderArgs(MethodType concatArgs) {

/**
* Construct the MethodType of the length method,
* The first parameter is the initialized length, Only parameter types that can be UTF16 are added.
* The first parameter is the initialized length
*/
private static MethodTypeDesc lengthArgs(MethodType concatArgs) {
int parameterCount = concatArgs.parameterCount();
var paramTypes = new ClassDesc[parameterCount + 1];
paramTypes[0] = CD_int;
paramTypes[0] = CD_int; // init long
for (int i = 0; i < parameterCount; i++) {
var cl = concatArgs.parameterType(i);
if (needStringOf(cl)) {