< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page
rev 48545 : Value-based classes (vbc) / Oop value test via metadata ptr
   1 /*
   2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


4169 
4170 RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, \
4171                  DECLARE_PD_DEVELOPER_FLAG, \
4172                  DECLARE_PRODUCT_FLAG, \
4173                  DECLARE_PD_PRODUCT_FLAG, \
4174                  DECLARE_DIAGNOSTIC_FLAG, \
4175                  DECLARE_PD_DIAGNOSTIC_FLAG, \
4176                  DECLARE_NOTPRODUCT_FLAG, \
4177                  IGNORE_RANGE, \
4178                  IGNORE_CONSTRAINT, \
4179                  IGNORE_WRITEABLE)
4180 
4181 ARCH_FLAGS(DECLARE_DEVELOPER_FLAG, \
4182            DECLARE_PRODUCT_FLAG, \
4183            DECLARE_DIAGNOSTIC_FLAG, \
4184            DECLARE_EXPERIMENTAL_FLAG, \
4185            DECLARE_NOTPRODUCT_FLAG, \
4186            IGNORE_RANGE, \
4187            IGNORE_CONSTRAINT, \
4188            IGNORE_WRITEABLE)











4189 
4190 // Extensions
4191 
4192 #include "runtime/globals_ext.hpp"
4193 
4194 #endif // SHARE_VM_RUNTIME_GLOBALS_HPP
   1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


4169 
4170 RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, \
4171                  DECLARE_PD_DEVELOPER_FLAG, \
4172                  DECLARE_PRODUCT_FLAG, \
4173                  DECLARE_PD_PRODUCT_FLAG, \
4174                  DECLARE_DIAGNOSTIC_FLAG, \
4175                  DECLARE_PD_DIAGNOSTIC_FLAG, \
4176                  DECLARE_NOTPRODUCT_FLAG, \
4177                  IGNORE_RANGE, \
4178                  IGNORE_CONSTRAINT, \
4179                  IGNORE_WRITEABLE)
4180 
4181 ARCH_FLAGS(DECLARE_DEVELOPER_FLAG, \
4182            DECLARE_PRODUCT_FLAG, \
4183            DECLARE_DIAGNOSTIC_FLAG, \
4184            DECLARE_EXPERIMENTAL_FLAG, \
4185            DECLARE_NOTPRODUCT_FLAG, \
4186            IGNORE_RANGE, \
4187            IGNORE_CONSTRAINT, \
4188            IGNORE_WRITEABLE)
4189 
4190 #if INCLUDE_VBC
4191 #define VALUE_BASED_CLASS_FLAGS(product) \
4192                                 \
4193   product(ccstrlist, ValueBasedClasses,                                     \
4194           NULL,                                                             \
4195          "A comma separated list of classes whom should be treated as "    \
4196          "value-based")
4197 
4198 VALUE_BASED_CLASS_FLAGS(DECLARE_PRODUCT_FLAG)
4199 #endif // INCLUDE_VBC
4200 
4201 // Extensions
4202 
4203 #include "runtime/globals_ext.hpp"
4204 
4205 #endif // SHARE_VM_RUNTIME_GLOBALS_HPP
< prev index next >