-
Bug
-
Resolution: Fixed
-
P3
-
7u2
-
b08
-
x86
-
solaris_10
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2216401 | 8 | Tom Rodriguez | P3 | Resolved | Fixed | b11 |
JDK-2223327 | 7u4 | Tom Rodriguez | P3 | Closed | Fixed | b01 |
JDK-2216361 | 7u2 | Tom Rodriguez | P3 | Closed | Fixed | b11 |
JDK-2215685 | hs23 | Tom Rodriguez | P3 | Closed | Fixed | b03 |
Left over printing code after 7071307
diff -r ec5ce9326985 src/share/vm/prims/methodHandleWalk.cpp
--- a/src/share/vm/prims/methodHandleWalk.cpp
+++ b/src/share/vm/prims/methodHandleWalk.cpp
@@ -1387,10 +1387,8 @@
int total = count1 + count2;
if (count1 != -1 && count2 != -1 && total != 0) {
// Normalize the collect counts to the invoke_count
- tty->print("counts %d %d scaled by %d = ", count2, count1, _invoke_count);
if (count1 != 0) _not_taken_count = (int)(_invoke_count * count1 / (double)total);
if (count2 != 0) _taken_count = (int)(_invoke_count * count2 / (double)total);
- tty->print_cr("%d %d", _taken_count, _not_taken_count);
return true;
}
return false;
diff -r ec5ce9326985 src/share/vm/prims/methodHandleWalk.cpp
--- a/src/share/vm/prims/methodHandleWalk.cpp
+++ b/src/share/vm/prims/methodHandleWalk.cpp
@@ -1387,10 +1387,8 @@
int total = count1 + count2;
if (count1 != -1 && count2 != -1 && total != 0) {
// Normalize the collect counts to the invoke_count
- tty->print("counts %d %d scaled by %d = ", count2, count1, _invoke_count);
if (count1 != 0) _not_taken_count = (int)(_invoke_count * count1 / (double)total);
if (count2 != 0) _taken_count = (int)(_invoke_count * count2 / (double)total);
- tty->print_cr("%d %d", _taken_count, _not_taken_count);
return true;
}
return false;
- backported by
-
JDK-2216401 JSR 292: leftover printing code in methodHandleWalk.cpp
- Resolved
-
JDK-2215685 JSR 292: leftover printing code in methodHandleWalk.cpp
- Closed
-
JDK-2216361 JSR 292: leftover printing code in methodHandleWalk.cpp
- Closed
-
JDK-2223327 JSR 292: leftover printing code in methodHandleWalk.cpp
- Closed
- relates to
-
JDK-7071307 MethodHandle bimorphic inlining should consider the frequency
- Closed