src/share/vm/runtime/arguments_ext.cpp

Thu, 14 Aug 2014 15:16:07 +0200

author
dsimms
date
Thu, 14 Aug 2014 15:16:07 +0200
changeset 7032
fa62fb12cdca
parent 6951
99dbb9cd9521
permissions
-rw-r--r--

6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
Summary: Wrapped memory with standard bounds checking "GuardedMemory".
Reviewed-by: zgu, fparain, dcubed

jwilhelm@6951 1 /*
jwilhelm@6951 2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
jwilhelm@6951 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jwilhelm@6951 4 *
jwilhelm@6951 5 * This code is free software; you can redistribute it and/or modify it
jwilhelm@6951 6 * under the terms of the GNU General Public License version 2 only, as
jwilhelm@6951 7 * published by the Free Software Foundation.
jwilhelm@6951 8 *
jwilhelm@6951 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jwilhelm@6951 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jwilhelm@6951 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jwilhelm@6951 12 * version 2 for more details (a copy is included in the LICENSE file that
jwilhelm@6951 13 * accompanied this code).
jwilhelm@6951 14 *
jwilhelm@6951 15 * You should have received a copy of the GNU General Public License version
jwilhelm@6951 16 * 2 along with this work; if not, write to the Free Software Foundation,
jwilhelm@6951 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jwilhelm@6951 18 *
jwilhelm@6951 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jwilhelm@6951 20 * or visit www.oracle.com if you need additional information or have any
jwilhelm@6951 21 * questions.
jwilhelm@6951 22 *
jwilhelm@6951 23 */
jwilhelm@6951 24
jwilhelm@6951 25 #include "precompiled.hpp"
jwilhelm@6951 26 #include "runtime/arguments.hpp"
jwilhelm@6951 27
jwilhelm@6951 28 bool Arguments::check_vm_args_consistency_ext() {
jwilhelm@6951 29 return true;
jwilhelm@6951 30 }

mercurial