【发布时间】:2014-07-28 20:43:52
【问题描述】:
我从 Java 编译器收到一条我不理解的错误消息。我已经使用 Java 6 和 7 在 OSX 10.6、10.9 和 Ubuntu 14.04 上测试了我的代码。当我使用 Eclipse 调试器或从解释器(使用 -Xint 选项)运行时,一切运行良好。否则,我会收到以下消息:
Java 1.6:
Invalid memory access of location 0x8 rip=0x1024e9660
Java 1.7:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x000000010f7a8262, pid=20344, tid=18179
#
# JRE version: Java(TM) SE Runtime Environment (7.0_60-b19) (build 1.7.0_60-b19)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.60-b09 mixed mode bsd-amd64 compressed oops)
# Problematic frame:
# V [libjvm.dylib+0x3a8262] PhaseIdealLoop::idom_no_update(Node*) const+0x12
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
Java 7 有更多错误输出(保存到文件中),但不幸的是,我无法将其放入本文的字符数限制中。 有时我需要运行我的代码几次才能出现错误,但它经常出现。
我的测试用例涉及以对数比例缓存一些计算。具体来说,给定 log(X),log(Y),...,我有一个计算 log(X+Y+...) 的小类。然后我将结果缓存在 HashMap 中。
奇怪的是,更改一些循环索引似乎使问题消失了。特别是,如果我替换
for (int z = 1; z < x+1; z++) {
double logSummand = Math.log(z + x + y);
toReturn.addLogSummand(logSummand);
}
与
for (int z = 0; z < x; z++) {
double logSummand = Math.log(1 + z + x + y);
toReturn.addLogSummand(logSummand);
}
然后我没有收到错误消息并且程序运行正常。
我的最小示例如下:
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class TestLogSum {
public static void main(String[] args) {
for (int i = 0; i < 6; i++) {
for (int n = 2; n < 30; n++) {
for (int j = 1; j <= n; j++) {
for (int k = 1; k <= j; k++) {
System.out.println(computeSum(k, j));
}
}
}
}
}
private static Map<List<Integer>, Double> cache = new HashMap<List<Integer>, Double>();
public static double computeSum(int x, int y) {
List<Integer> key = Arrays.asList(new Integer[] {x, y});
if (!cache.containsKey(key)) {
// explicitly creating/updating a double[] array, instead of using the LogSumArray wrapper object, will prevent the error
LogSumArray toReturn = new LogSumArray(x);
// changing loop indices will prevent the error
// in particular, for(z=0; z<x-1; z++), and then using z+1 in place of z, will not produce error
// for (int z = 0; z < x; z++) {
// double logSummand = Math.log(1 + z + x + y);
for (int z = 1; z < x+1; z++) {
double logSummand = Math.log(z + x + y);
toReturn.addLogSummand(logSummand);
}
// returning the value here without cacheing it will prevent the segfault
cache.put(key, toReturn.retrieveLogSum());
}
return cache.get(key);
}
/*
* Given a bunch of logarithms log(X),log(Y),log(Z),...
* This class is used to compute the log of the sum, log(X+Y+Z+...)
*/
private static class LogSumArray {
private double[] logSummandArray;
private int currSize;
private double maxLogSummand;
public LogSumArray(int maxEntries) {
this.logSummandArray = new double[maxEntries];
this.currSize = 0;
this.maxLogSummand = Double.NEGATIVE_INFINITY;
}
public void addLogSummand(double logSummand) {
logSummandArray[currSize] = logSummand;
currSize++;
// removing this line will prevent the error
maxLogSummand = Math.max(maxLogSummand, logSummand);
}
public double retrieveLogSum() {
if (maxLogSummand == Double.NEGATIVE_INFINITY) return Double.NEGATIVE_INFINITY;
assert currSize <= logSummandArray.length;
double factorSum = 0;
for (int i = 0; i < currSize; i++) {
factorSum += Math.exp(logSummandArray[i] - maxLogSummand);
}
return Math.log(factorSum) + maxLogSummand;
}
}
}
【问题讨论】:
-
这很可能不是您的程序中的错误(简单的 java 程序永远不会导致分段错误)。这可能是您的硬件或 jvm 实现中的错误。尝试完整的内存检查并尝试另一台机器。
-
运行代码后,我还遇到了“java版本”1.7.0_55”OpenJDK Runtime Environment (IcedTea 2.4.7) (7u55-2.4.7-2) OpenJDK 64-Bit 的分段错误服务器虚拟机(内部版本 24.51-b03,混合模式)”。
-
Radiodef,我没有使用任何本机代码,都是 Java。 Fabian,感谢您确认这也发生在您的机器/设置上。
-
这会在 java 1.7.0_51 上触发 jvm 错误,但不会在 windows 7 x64 上的 1.8.0_05 上触发。您是否尝试过使用标志 `-XX:-PartialPeelLoop`,因为报告了类似的错误,并且该标志应该“跳过”有问题的编译器代码。搜索
PhaseIdealLoop::idom_no_update -
我认为这应该报告给 Oracle。这段代码没有什么特别之处,但它仍然会中断。也在我的机器上。
标签: java segmentation-fault jvm-hotspot jvm-crash