Searched refs:SPLIT_THRESHOLD (Results 1 - 2 of 2) sorted by relevance

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DSplitter.java69 public static final long SPLIT_THRESHOLD = Options.getIntProperty("nashorn.compiler.splitter.threshold", 32 * 1024); field in class:Splitter
113 if (weight >= SPLIT_THRESHOLD) {
114 log.info("Splitting '", functionNode.getName(), "' as its weight ", weight, " exceeds split threshold ", SPLIT_THRESHOLD);
123 if (weight >= SPLIT_THRESHOLD) {
205 if (statementsWeight + weight >= SPLIT_THRESHOLD || statement.isTerminal()) {
254 if (weight < SPLIT_THRESHOLD) {
271 if (weight >= SPLIT_THRESHOLD) {
286 if (weight < SPLIT_THRESHOLD) {
310 if (totalWeight >= SPLIT_THRESHOLD) {
333 if (weight < SPLIT_THRESHOLD) {
[all...]
H A DCompileUnit.java171 return (this.weight + w) < Splitter.SPLIT_THRESHOLD;
197 return "[CompileUnit className=" + shortName(className) + " weight=" + weight + '/' + Splitter.SPLIT_THRESHOLD + " hasCode=" + methods + ']';

Completed in 89 milliseconds