try {
testStackOverflow();
} catch (StackOverflowError e) { // We caught SOE too early. The error will be reported in main()
}
} else {
try {
eatAllStack(); thrownew RuntimeException("Haven't caught StackOverflowError at all");
} catch (StackOverflowError e) { // OK: we caught the anticipated error
}
}
}
publicstaticvoid main(String[] args) { long pageSize = wb.getVMPageSize();
long configStackSize = wb.getIntxVMFlag("ThreadStackSize") * K;
System.out.println("ThreadStackSize VM option: " + configStackSize);
long stackProtectionSize = wb.getIntxVMFlag("StackShadowPages") * pageSize;
System.out.println("Size of protected shadow pages: " + stackProtectionSize);
long actualStackSize = wb.getThreadStackSize();
System.out.println("Full stack size: " + actualStackSize);
if (!Platform.isAix()) { if (Math.abs(actualStackSize - configStackSize) > configStackSize * 0.1) { thrownew RuntimeException("getThreadStackSize value [" + actualStackSize
+ "] should be within 90%..110% of ThreadStackSize value");
}
} else { // AIX pthread implementation returns stacks with sizes varying a lot. // We add +64K to assure stacks are not too small, thus we get // even more variation to bigger sizes. So only check the lower bound. // Allow for at least one page deviation. long slack = (long)(configStackSize * 0.1); if (slack < pageSize) { if (configStackSize - actualStackSize > pageSize) { thrownew RuntimeException("getThreadStackSize value [" + actualStackSize
+ "] should not be more than one page smaller than "
+ "ThreadStackSize value");
}
} else { if (configStackSize - actualStackSize > slack) { thrownew RuntimeException("getThreadStackSize value [" + actualStackSize
+ "] should not be less than 90% of ThreadStackSize value");
}
}
}
long remainingStackSize = wb.getThreadRemainingStackSize();
System.out.println("Remaining stack size in main(): " + remainingStackSize);
// Up to 150k can be already allocated by VM and some space is used for stack protection. long spaceAlreadyOccupied = MAX_STACK_SIZE_ALLOCATED_IN_MAIN + stackProtectionSize;
thrownew RuntimeException("getThreadRemainingStackSize value [" + remainingStackSize
+ "] should be at least ThreadStackSize value [" + configStackSize + "] minus ["
+ spaceAlreadyOccupied + "]");
}
testStackOverflow();
if (stackSizeOnOverflow > MIN_STACK_SIZE) { thrownew RuntimeException("Caught StackOverflowError too early: when there were "
+ stackSizeOnOverflow + " bytes in stack");
} elseif (stackSizeOnOverflow < 0) { thrownew RuntimeException("Internal test error: stackRemainingSize < 0");
} else {
System.out.println("Caught StackOverflowError as expected");
}
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-06-10)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.