src/share/vm/classfile/javaAssertions.hpp

Print this page


   1 /*
   2  * Copyright (c) 2000, 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  *
  23  */
  24 








  25 class JavaAssertions: AllStatic {
  26 public:
  27   static inline bool userClassDefault();
  28   static inline void setUserClassDefault(bool enabled);
  29   static inline bool systemClassDefault();
  30   static inline void setSystemClassDefault(bool enabled);
  31 
  32   // Add a command-line option.  A name ending in "..." applies to a package and
  33   // any subpackages; other names apply to a single class.
  34   static void addOption(const char* name, bool enable);
  35 
  36   // Return true if command-line options have enabled assertions for the named
  37   // class.  Should be called only after all command-line options have been
  38   // processed.  Note:  this only consults command-line options and does not
  39   // account for any dynamic changes to assertion status.
  40   static bool enabled(const char* classname, bool systemClass);
  41 
  42   // Create an instance of java.lang.AssertionStatusDirectives and fill in the
  43   // fields based on the command-line assertion options.
  44   static oop createAssertionStatusDirectives(TRAPS);


  78 
  79 inline bool JavaAssertions::userClassDefault() {
  80   return _userDefault;
  81 }
  82 
  83 inline void JavaAssertions::setUserClassDefault(bool enabled) {
  84   if (TraceJavaAssertions)
  85     tty->print_cr("JavaAssertions::setUserClassDefault(%d)", enabled);
  86   _userDefault = enabled;
  87 }
  88 
  89 inline bool JavaAssertions::systemClassDefault() {
  90   return _sysDefault;
  91 }
  92 
  93 inline void JavaAssertions::setSystemClassDefault(bool enabled) {
  94   if (TraceJavaAssertions)
  95     tty->print_cr("JavaAssertions::setSystemClassDefault(%d)", enabled);
  96   _sysDefault = enabled;
  97 }


   1 /*
   2  * Copyright (c) 2000, 2010, 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  *
  23  */
  24 
  25 #ifndef SHARE_VM_CLASSFILE_JAVAASSERTIONS_HPP
  26 #define SHARE_VM_CLASSFILE_JAVAASSERTIONS_HPP
  27 
  28 #include "oops/objArrayOop.hpp"
  29 #include "oops/typeArrayOop.hpp"
  30 #include "utilities/exceptions.hpp"
  31 #include "utilities/ostream.hpp"
  32 
  33 class JavaAssertions: AllStatic {
  34 public:
  35   static inline bool userClassDefault();
  36   static inline void setUserClassDefault(bool enabled);
  37   static inline bool systemClassDefault();
  38   static inline void setSystemClassDefault(bool enabled);
  39 
  40   // Add a command-line option.  A name ending in "..." applies to a package and
  41   // any subpackages; other names apply to a single class.
  42   static void addOption(const char* name, bool enable);
  43 
  44   // Return true if command-line options have enabled assertions for the named
  45   // class.  Should be called only after all command-line options have been
  46   // processed.  Note:  this only consults command-line options and does not
  47   // account for any dynamic changes to assertion status.
  48   static bool enabled(const char* classname, bool systemClass);
  49 
  50   // Create an instance of java.lang.AssertionStatusDirectives and fill in the
  51   // fields based on the command-line assertion options.
  52   static oop createAssertionStatusDirectives(TRAPS);


  86 
  87 inline bool JavaAssertions::userClassDefault() {
  88   return _userDefault;
  89 }
  90 
  91 inline void JavaAssertions::setUserClassDefault(bool enabled) {
  92   if (TraceJavaAssertions)
  93     tty->print_cr("JavaAssertions::setUserClassDefault(%d)", enabled);
  94   _userDefault = enabled;
  95 }
  96 
  97 inline bool JavaAssertions::systemClassDefault() {
  98   return _sysDefault;
  99 }
 100 
 101 inline void JavaAssertions::setSystemClassDefault(bool enabled) {
 102   if (TraceJavaAssertions)
 103     tty->print_cr("JavaAssertions::setSystemClassDefault(%d)", enabled);
 104   _sysDefault = enabled;
 105 }
 106 
 107 #endif // SHARE_VM_CLASSFILE_JAVAASSERTIONS_HPP