-
Couldn't load subscription status.
- Fork 10
Improve performance using Unsafe to activate/deactivate thread filter #230
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
ddprof-lib/src/main/java/com/datadoghq/profiler/ActiveBitmap.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| package com.datadoghq.profiler; | ||
|
|
||
| import sun.misc.Unsafe; | ||
| import java.lang.reflect.Field; | ||
|
|
||
|
|
||
| class ActiveBitmap { | ||
| private static final Unsafe UNSAFE = JavaProfiler.UNSAFE; | ||
|
|
||
| // Address to size field of ThreadFilter in native | ||
| private static long activeCountAddr; | ||
|
|
||
| private static final ThreadLocal<Long> Address = new ThreadLocal<Long>() { | ||
| @Override protected Long initialValue() { | ||
| return -1L; | ||
| } | ||
| }; | ||
|
|
||
| public static void initialize() { | ||
| activeCountAddr = getActiveCountAddr0(); | ||
| } | ||
|
|
||
| // On native side, we reverse lower 16 bits of thread id when maps to bitmap bit. | ||
| // So the active bit position of the specific thread id maps to the reverse order | ||
| // of the second lowest byte of thread id. | ||
| static long getBitmask(int tid) { | ||
| int tmp = (tid >> 8) & 0xff ; | ||
| int bits = 0; | ||
| for (int index = 0; index <= 7; index++) { | ||
| if ((tmp & 0x01) == 0x01) { | ||
| bits |= 1 << (7 - index); | ||
| } | ||
| tmp >>>= 1; | ||
| } | ||
| return 1L << (bits & 0x3f); | ||
| } | ||
|
|
||
| static void setActive(int tid, boolean active) { | ||
| long addr = Address.get(); | ||
| if (addr == -1) { | ||
| addr = bitmapAddressFor0(tid); | ||
| Address.set(addr); | ||
| } | ||
| long bitmask = getBitmask(tid); | ||
| long value = UNSAFE.getLong(addr); | ||
| long newVal = active ? (value | bitmask) : (value & ~bitmask); | ||
|
|
||
| while (!UNSAFE.compareAndSwapLong(null, addr, value, newVal)) { | ||
| value = UNSAFE.getLong(addr); | ||
| newVal = active ? (value | bitmask) : (value & ~bitmask); | ||
| } | ||
| int delta = active ? 1 : -1; | ||
| assert activeCountAddr != 0; | ||
| UNSAFE.getAndAddInt(null, activeCountAddr, delta); | ||
| if (isActive0(tid) != active) { | ||
| throw new RuntimeException("SetActive Failed"); | ||
| } | ||
|
|
||
| assert isActive0(tid) == active; | ||
| } | ||
|
|
||
|
|
||
| // Address of bitmap word that contains the active bit of this thread Id | ||
| private static native long bitmapAddressFor0(int tid); | ||
|
|
||
| private static native long getActiveCountAddr0(); | ||
|
|
||
| // For validation | ||
| private static native boolean isActive0(int tid); | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.