comparison src/share/vm/opto/c2_globals.hpp @ 10999:693e4d04fd09

8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit Summary: Insert extra checks and bailouts for too many nodes Reviewed-by: kvn
author drchase
date Tue, 11 Jun 2013 16:34:34 -0400
parents 6f3fd5150b67
children bcc4f6f54d83 f4f6ae481e1a
comparison
equal deleted inserted replaced
10997:46c544b8fbfc 10999:693e4d04fd09
1 /* 1 /*
2 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
404 "execution time of the largest inlinable method") \ 404 "execution time of the largest inlinable method") \
405 \ 405 \
406 develop(intx, WarmCallMaxSize, 999999, \ 406 develop(intx, WarmCallMaxSize, 999999, \
407 "size of the largest inlinable method") \ 407 "size of the largest inlinable method") \
408 \ 408 \
409 product(intx, MaxNodeLimit, 65000, \ 409 product(intx, MaxNodeLimit, 80000, \
410 "Maximum number of nodes") \ 410 "Maximum number of nodes") \
411 \ 411 \
412 product(intx, NodeLimitFudgeFactor, 1000, \ 412 product(intx, NodeLimitFudgeFactor, 2000, \
413 "Fudge Factor for certain optimizations") \ 413 "Fudge Factor for certain optimizations") \
414 \ 414 \
415 product(bool, UseJumpTables, true, \ 415 product(bool, UseJumpTables, true, \
416 "Use JumpTables instead of a binary search tree for switches") \ 416 "Use JumpTables instead of a binary search tree for switches") \
417 \ 417 \