0
votes
2answers
79 views
What do -XX:-PrintGC and XX:-PrintGCDetails flags do?
I found the JVM flags here. Is there a more detailed explaination of what exactly they do?
0
votes
2answers
75 views
Java HotSpot error
Curious if anyone could help out in regards to a Java HotSpot dump...saw some reference to head over to the Sun Forums, figured I would try here first...below is the dump...
#
# An unexpected error …
1
vote
2answers
101 views
Optimizing the creation of objects inside loops
Which of the following would be more optimal on a Java 6 HotSpot VM?
final Map<Foo,Bar> map = new HashMap<Foo,Bar>(someNotSoLargeNumber);
for (int i = 0; i < someLargeNumber; i++)
…
5
votes
3answers
78 views
How can I see the code that HotSpot generates after optimizing?
I'd like to have a better understanding of what optimizations HotSpot might generate for my Java code at run time.
Is there a way to see the optimized code that HotSpot is using after it's been …
4
votes
1answer
556 views
Read Java JVM startup parameters (eg -Xmx)
I'm trying to figure out if there's a way to determine the JVM startup properties from within a running java process. Specifically I'm trying to find out where parameters such as -Xmx (max heap size) …
1
vote
1answer
76 views
Limitations to modifying rt.jar
What are the limitations when modifying classes in rt.jar. I realize this is generally specific to the version and vendor of the JRE. I've found that Hotspot in the Sun 1.6 VM, for instance, doesn't …
0
votes
1answer
171 views
Invalid access of stack red zone from Java VM
I'm trying to figure out what can cause this error in Java:
Invalid access of stack red zone 0x115ee0ed0 rip=0x114973900
Has anyone ever encountered this error message? It's literally killing the …
1
vote
1answer
39 views
Developing a Hotspot billing system
Hello guys,
My current project requires me to design a hotspot billing system whereby users connect to the wireless network and when they try to browse, they are prompted to enter their access code …
0
votes
3answers
103 views
What’s the effect of -server option for the HotSpot JVM?
Hi all,
I cannot find any clear documentation about the exact effect of passing the -server option when launching a sun HotSpot JVM.
Can anybody sum-up what it does?
0
votes
3answers
128 views
Java Condition Operators Speed vs Versions of Hotspot VM
Hi,
Please consider the following java source:
package com.stackoverflow;
public class CondSpeed {
private static final long COUNT = 1000000000;
private static final long OUTER_COUNT = 15;
…
0
votes
3answers
447 views
Change background of image maps on mouse hover
Hi,
Iam new to CSS and Javascript.
In my website I have an image as the navigation bar and have created hotspots to link them to different pages. The problem is since the text is a part of the image, …
3
votes
2answers
164 views
Debugging java obfuscated code
We are going to obfuscate our project but don't want to lose the ability of remote debugging and hotswapping.
Is it possible? Which tools can handle this? I'd be happy with simple obfuscation - just …
9
votes
6answers
343 views
How can I code Java to allow SSE use and bounds-check elimination (or other advanced optimizations)?
The Situation:
I'm optimizing a pure-java implementation of the LZF compression algorithm, which involves a lot of byte[] access and basic int mathematics for hashing and comparison. Performance …
0
votes
1answer
323 views
Java Class.getSimpleName() and .getName() behaving differently on Cacao versus Sun Java
Does any one have any idea why this would be happening?
This is some modified lines from the Java DBus bindings (2.6)
// don't let people import things which don't have a
// valid D-Bus …
1
vote
4answers
188 views
Creating HotSpots in C#
... Is it possible to create hot-spots in C# so that when the mouse is over a certain area an event gets triggered?
Thank you :o)
