Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
11answers
5k views

How do I write a correct micro-benchmark in Java?

As the title says. How do you write (and run) a correct micro-benchmark in Java? I'm looking here for code samples and comments illustrating various things to think about. Example: Should the ...
18
votes
6answers
2k 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 ...
15
votes
2answers
248 views

Is Java 7 at least as stable as Java 6? [closed]

I remember when Java 7 was initially released, there were many suggestions not to use it for anything as there were some bugs in compiler optimizations. This was apparently not merely hypothetical. ...
15
votes
7answers
942 views

Is there a Java bytecode optimizer that removes useless gotos?

Problem: I have a method that compiles to over 8000 bytes of Java bytecode. HotSpot has a magic limit that makes the JIT not kick in for methods that exceed 8000 bytes. (Yes, it is reasonable to have ...
14
votes
4answers
776 views

.NET runtime vs. Java Hotspot: Is .NET one generation behind?

According to the information I could gather on .NET and Java execution environment, the current state of affairs is follows: Modern Java VM are capable of performing continuous recompilation, which ...
12
votes
3answers
1k views

Java VM tuning - Xbatch and -Xcomp

I am looking at the JVM configuration options for running Alfresco, mainly this document on the Alfresco Wiki. One of the recommendations is to use the JVM flags -Xcomp and -Xbatch. The justification ...
12
votes
1answer
6k 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) ...
9
votes
3answers
258 views

Designing a backend (cloud) server to avoid 'hotspot' scenarios

I'm trying to design a real-time group chat application specifically targeted towards large groups (>50 users) in each chatroom. Not all users will be actively chatting at once, but one can expect ...
9
votes
2answers
444 views

execute new java code in existing jvm process

I have a java process currently running under a windows shell. One of the threads responsible for serialisation is blocked indefinitely and as a result important information which is stored in memory ...
8
votes
1answer
1k views

What is ReservedCodeCacheSize

Can someone please explain what the JVM option ReservedCodeCacheSize (and InitialCodeCacheSize) is? Specifically when/why would I want to change it? How do I decide what the right size is? This is ...
8
votes
2answers
1k views

Why does Java , running in -server mode, say that the version is “mixed-mode”?

Why does Java , running in -server mode, say that the version is "mixed-mode" ? When I see that, does it mean that the JVM didn't truly load in pure server mode?
8
votes
5answers
3k views

JVM -XX:+StringCache argument?

I was recently reading about all the JVM arguments available in JRE 6 [Java VM Options] and saw this : -XX:+StringCache : Enables caching of commonly allocated strings. Now I was always under ...
8
votes
2answers
1k views

How do I programmatically find out my PermGen space usage?

I'm trying to diagnose a java.lang.OutOfMemoryError: PermGen Space error when running on Sun's Hotspot JVM, and would like to know how much PermGen space my program is using at various points. Is ...
7
votes
3answers
393 views

Encourage the JVM to GC rather than grow the heap?

(Note that when I say "JVM", I really mean "Hotspot", and I'm running the latest Java 1.6 update.) Example situation: My JVM is running with -Xmx set to 1gb. Currently, the heap has 500mb ...
7
votes
5answers
310 views

Allocation latency seems high, why?

I have a (java) application that runs in a low latency environment, it typically processes instructions in ~600micros (+/- 100). Naturally as we've moved further into the microsecond space the things ...
7
votes
3answers
3k 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 ...
6
votes
2answers
105 views

Is memory allocation on the JVM lockless

When you do a new Object() in Java, does the jvm use a lockless algorithm to allocate memory or does it need to lock? The JVM I am referring to in this case is the Hotspot VM. From the little I know ...
6
votes
1answer
161 views

Can I programmatically find out in which GC generation an instance lives?

This question is limited in scope to HotSpot generations. Is there any way to programmatically find out in which generation a particular instance lives. Data such as: Young or old generation? If ...
6
votes
2answers
6k views

Android 2.2 wifi hotspot API

What is the API call I need to make in Android 2.2 (Froyo) to create a Wifi hotspot (as seen in the Tethering and Portable Hotspot settings item).
6
votes
4answers
155 views

Java execution details in System.out

As I remember there is a magic command line option in Java that turn on writing of operations that are currently executed to console. The output was looked like byte code. -verbose does not match as ...
6
votes
3answers
248 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 ...
5
votes
3answers
117 views

What is the storage cost for a boxed primitive in Java?

How large, in bytes, is a boxed primitive like java.lang.Integer or java.lang.Character in Java? An int is 4 bytes, a typical pointer is also 4 byte (if not compressed by the JVM). Is the cost for an ...
5
votes
1answer
53 views

How can I know whether a Java object is in tenure or eden space from heap dump

I have a Hotspot JVM heap dump and I tried to find out whether an object is live in tenure space, eden space, or survivor space, but I could not. Appreciate if someone can help me.
5
votes
2answers
178 views

What does BufferBlob::Interpreter in JVM crash log mean?

I am investigating a JVM crash which happens occasionally in my application. The hs_err file contains the following details about the crash. # SIGSEGV (0xb) at pc=0x065e68f4, pid=20208, ...
5
votes
3answers
104 views

How much programmer “assist” does Java normally need for a switch to JIT to a dispatch table?

I understand that Java does optimizations across the board and can optimize switches depending on how many cases there are, whether the switch is sparse or dense, and if the code is even hot enough ...
5
votes
4answers
151 views

Do javac or Hotspot automatically add 'final' as an optimisation of invariant variables?

The consensus seems to be that there is a performance benefit to marking member variables as final because they never need reloading from main memory. My question is, do javac or Hotspot automatically ...
5
votes
11answers
1k views

First time a Java loop is run SLOW, why? [Sun HotSpot 1.5, sparc]

In benchmarking some Java code on a Solaris SPARC box, I noticed that the first time I call the benchmarked function it runs EXTREMELY slowly (10x difference): First | 1 | 25295.979 ...
4
votes
1answer
397 views

How do i know which default settings are enabled for Sun JVM?

i want to try CompressedOops on my JVM. No I wonder if it might be enabled by default. I run this jvm on debian/squeeze: $ java -version java version "1.6.0_22" Java(TM) SE Runtime Environment (build ...
4
votes
2answers
510 views

Bounds Checking in Java

Hotspot can remove bounds checking in Java... Can any one explain this please? Actually im analysing the differences between c++ and Java.It is not a homework and im analysing on my own interest... ...
4
votes
2answers
2k views

How to create WiFi popup login page

When I go to a place with a WiFi hotspot (such as Panera Bread) and connect with my iPhone, the hotspot login page appears as a popup. That is, no matter what app I'm running or what web page I'm on, ...
3
votes
1answer
102 views

Creating Dynamic Hotspots in an ASP.net imagemap

I need the ability to create a dynamic number of hotspots in an imagemap the pseudo code for what I want to do is below: Protected Sub AddHotSpot() Dim r1 New RectangleHotSpot For Each Item as ...
3
votes
3answers
253 views

-XX:MaxPermSize with or without -XX:PermSize

We've run into a Java.lang.OutOfMemoryError: PermGen space error and looking at the tomcat JVM params, other than the -Xms and -Xmx params we also specify -XX:MaxPermSize=128m. After a bit of ...
3
votes
2answers
199 views

Why's Java in this case faster (and slower) than C?

Some fellow just started learning C by reading K&R and came up with its fahrenheit-to-celcius conversion loop printed down on the first pages: #include <stdio.h> main () ...
3
votes
3answers
324 views

Java optimizations: (Hotspot/Dalvik) Optimization of final method returning a constant?

Can anyone tell me if either Hotspot or Dalvik is smart enough to inline calls to a final method returning a constant (static final) int value? Ideally the method call would be replaced by the ...
3
votes
0answers
304 views

Multicast Support on Android in Hotspot/Tethering mode

I have a prototype Android app that is listening for multicast packets to 'discover' clients to communicate with. The socket set up is similar to this: InetAddress group = ...
3
votes
3answers
157 views

develop such winform using c#

Figure 1,i have one or a few pictures,and some mp3 files. i want to develop a winform and load picture into winform,then, when mouse over certain areas of the picture,the area change,and play mp3 file ...
3
votes
3answers
1k views

'Eden space' name origin in Garbage Collection

In Garbage Collection terminology, why is it called 'Eden Space'? Just like that. I'm still getting familiar with the terminology and I cannot understand why it has such name.
3
votes
2answers
571 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 ...
3
votes
2answers
2k views

Exact state of committed memory in java

Im curious what the exact meaning of "committed" memory is when the value is queried from the MemoryUsage class. That class explains it as "committed represents the amount of memory (in bytes) that ...
2
votes
0answers
199 views

CaptiveNetwork : CNSetSupportedSSIDs usage

I tried to use CaptiveNetwork in order to replace the web sheet that for user authentication with the network. The method is CNSetSupportedSSIDs. I have tried to add this method in AppDelegate of my ...
2
votes
1answer
74 views

force inline in java

I looked at this post. It looks nice. However the authors or other aware people will tell me tricks with coding when HotSpot (does not depend on server or client or not Sun version) makes a code ...
2
votes
1answer
194 views

Hotspot default max heap size

According to the following document http://www.oracle.com/technetwork/java/javase/gc-tuning-6-140523.html#par_gc.ergonomics.default_size the default maximum heap size for Parallel GC is chosen using ...
2
votes
1answer
110 views

Where can I find information about the inner workings of Sun's JVM?

As a developer, I want to know what the cost is of invoking a virtual method vs. interface method. Now, I know why invokeinterface can be slower than invokevirtual, but I wonder if Sun has adopted ...
2
votes
1answer
691 views

Android tethering, how to disable dhcp

Using WifiManger and reflection(to find the enablewifiap() method), I am able to enable wifi tethering to create a wifi hotspot. However, I would like to disable DHCP for the other devices that will ...
2
votes
2answers
3k views

Android Application Wifi device- AP connectivity

I am building an application which can transfer data between a mobile and a wifi device...Mobile has got the AP enabled(through code) and another device connects to this specific network... How can i ...
2
votes
3answers
90 views

Where do I find a MemoryConsumer.java program to test consumption of memory?

Where do I find a MemoryConsumer.java program to test consumption of memory? I know that such a thing already exists , as I see references via Google to such things. For example, this Oracle site ...
2
votes
1answer
97 views

reason for methods not being compiled in Hotspot JVM

There are flags available that provide log information on methods that have been compiled. Where is the information on methods that didn't get compiled and why they didn't get compiled? Being able ...
2
votes
1answer
158 views

What can cause my code to run slower when the server JIT is activated?

I am doing some optimizations on an MPEG decoder. To ensure my optimizations aren't breaking anything I have a test suite that benchmarks the entire codebase (both optimized and original) as well as ...
2
votes
3answers
234 views

Why does Java code generated to perform an operation run more slowly than an “interpreter loop”?

I have some Java code which performs bitwise operations on a BitSet. I have a list of operations and can "interpret" them by looping over them, but it's important to me that I can perform these ...
2
votes
4answers
3k views

How to understand Java Hotspot Errors

Guys when the JVM Crashes it writes an Error Log hs_err_pid.log. I want to find out what caused the JVM to crash ? How to understand these Logs, is it documented anywhere on how this Log is arranged. ...

1 2 3