comparison src/share/vm/shark/shark_globals.hpp @ 1692:d2ede61b7a12

6976186: integrate Shark HotSpot changes Summary: Shark is a JIT compiler for Zero that uses the LLVM compiler infrastructure. Reviewed-by: kvn, twisti Contributed-by: Gary Benson <gbenson@redhat.com>
author twisti
date Wed, 11 Aug 2010 05:51:21 -0700
parents
children f95d63e2154a
comparison
equal deleted inserted replaced
1691:4a665be40fd3 1692:d2ede61b7a12
1 /*
2 * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
3 * Copyright 2008, 2009, 2010 Red Hat, Inc.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
24 */
25
26 #define SHARK_FLAGS(develop, develop_pd, product, product_pd, diagnostic, notproduct) \
27 \
28 product(intx, MaxNodeLimit, 65000, \
29 "Maximum number of nodes") \
30 \
31 /* inlining */ \
32 product(intx, SharkMaxInlineSize, 32, \
33 "Maximum bytecode size of methods to inline when using Shark") \
34 \
35 /* compiler debugging */ \
36 develop(ccstr, SharkPrintTypeflowOf, NULL, \
37 "Print the typeflow of the specified method") \
38 \
39 diagnostic(ccstr, SharkPrintBitcodeOf, NULL, \
40 "Print the LLVM bitcode of the specified method") \
41 \
42 diagnostic(ccstr, SharkPrintAsmOf, NULL, \
43 "Print the asm of the specified method") \
44 \
45 develop(bool, SharkTraceBytecodes, false, \
46 "Trace bytecode compilation") \
47 \
48 diagnostic(bool, SharkTraceInstalls, false, \
49 "Trace method installation") \
50 \
51 diagnostic(bool, SharkPerformanceWarnings, false, \
52 "Warn about things that could be made faster") \
53
54 SHARK_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_NOTPRODUCT_FLAG)