< prev index next >

src/hotspot/share/prims/wbtestmethods/parserTests.cpp

Print this page




  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 #include "precompiled.hpp"
  26 #include "jni.h"
  27 #include "classfile/javaClasses.inline.hpp"
  28 #include "classfile/symbolTable.hpp"
  29 #include "memory/oopFactory.hpp"
  30 #include "memory/resourceArea.hpp"
  31 #include "oops/objArrayOop.inline.hpp"
  32 #include "prims/whitebox.hpp"
  33 #include "prims/wbtestmethods/parserTests.hpp"
  34 #include "runtime/interfaceSupport.hpp"
  35 #include "runtime/jniHandles.inline.hpp"
  36 #include "services/diagnosticArgument.hpp"
  37 #include "services/diagnosticFramework.hpp"
  38 
  39 //There's no way of beforeahnd knowing an upper size
  40 //Of the length of a string representation of
  41 //the value of an argument.
  42 #define VALUE_MAXLEN 256
  43 
  44 // DiagnosticFramework test utility methods
  45 
  46 /*
  47  * The DiagnosticArgumentType class contains an enum that says which type
  48  * this argument represents. (JLONG, BOOLEAN etc).
  49  * This method Returns a char* representation of that enum value.
  50  */
  51 static const char* lookup_diagnosticArgumentEnum(const char* field_name, oop object) {
  52   Thread* THREAD = Thread::current();
  53   const char* enum_sig = "Lsun/hotspot/parser/DiagnosticCommand$DiagnosticArgumentType;";
  54   TempNewSymbol enumSigSymbol = SymbolTable::lookup(enum_sig, (int) strlen(enum_sig), THREAD);




  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 #include "precompiled.hpp"
  26 #include "jni.h"
  27 #include "classfile/javaClasses.inline.hpp"
  28 #include "classfile/symbolTable.hpp"
  29 #include "memory/oopFactory.hpp"
  30 #include "memory/resourceArea.hpp"
  31 #include "oops/objArrayOop.inline.hpp"
  32 #include "prims/whitebox.inline.hpp"
  33 #include "prims/wbtestmethods/parserTests.hpp"
  34 #include "runtime/interfaceSupport.inline.hpp"
  35 #include "runtime/jniHandles.inline.hpp"
  36 #include "services/diagnosticArgument.hpp"
  37 #include "services/diagnosticFramework.hpp"
  38 
  39 //There's no way of beforeahnd knowing an upper size
  40 //Of the length of a string representation of
  41 //the value of an argument.
  42 #define VALUE_MAXLEN 256
  43 
  44 // DiagnosticFramework test utility methods
  45 
  46 /*
  47  * The DiagnosticArgumentType class contains an enum that says which type
  48  * this argument represents. (JLONG, BOOLEAN etc).
  49  * This method Returns a char* representation of that enum value.
  50  */
  51 static const char* lookup_diagnosticArgumentEnum(const char* field_name, oop object) {
  52   Thread* THREAD = Thread::current();
  53   const char* enum_sig = "Lsun/hotspot/parser/DiagnosticCommand$DiagnosticArgumentType;";
  54   TempNewSymbol enumSigSymbol = SymbolTable::lookup(enum_sig, (int) strlen(enum_sig), THREAD);


< prev index next >