comparison src/share/vm/runtime/globals.hpp @ 17799:752ba2e5f6d0

Merge
author kvn
date Tue, 25 Feb 2014 15:11:18 -0800
parents f040cf9fc9c0 cd7a42c7be06
children 62c54fcc0a35
comparison
equal deleted inserted replaced
17798:f040cf9fc9c0 17799:752ba2e5f6d0
1 /* 1 /*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2014, 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.
253 static Flag* flags; 253 static Flag* flags;
254 254
255 // number of flags 255 // number of flags
256 static size_t numFlags; 256 static size_t numFlags;
257 257
258 static Flag* find_flag(const char* name, size_t length, bool allow_locked = false); 258 static Flag* find_flag(const char* name, size_t length, bool allow_locked = false, bool return_flag = false);
259 static Flag* fuzzy_match(const char* name, size_t length, bool allow_locked = false); 259 static Flag* fuzzy_match(const char* name, size_t length, bool allow_locked = false);
260 260
261 void check_writable(); 261 void check_writable();
262 262
263 bool is_bool() const; 263 bool is_bool() const;
1270 "Trace run-time calls") \ 1270 "Trace run-time calls") \
1271 \ 1271 \
1272 develop(bool, TraceJNICalls, false, \ 1272 develop(bool, TraceJNICalls, false, \
1273 "Trace JNI calls") \ 1273 "Trace JNI calls") \
1274 \ 1274 \
1275 develop(bool, StressRewriter, false, \
1276 "Stress linktime bytecode rewriting") \
1277 \
1275 notproduct(bool, TraceJVMCalls, false, \ 1278 notproduct(bool, TraceJVMCalls, false, \
1276 "Trace JVM calls") \ 1279 "Trace JVM calls") \
1277 \ 1280 \
1278 product(ccstr, TraceJVMTI, NULL, \ 1281 product(ccstr, TraceJVMTI, NULL, \
1279 "Trace flags for JVMTI functions and events") \ 1282 "Trace flags for JVMTI functions and events") \