src/share/vm/prims/wbtestmethods/parserTests.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/prims/wbtestmethods

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

Print this page


   1 /*
   2  * Copyright (c) 2011, 2015, 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 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.inline.hpp"
  27 #include "classfile/symbolTable.hpp"
  28 #include "memory/oopFactory.hpp"

  29 #include "oops/objArrayOop.inline.hpp"
  30 #include "prims/jni.h"
  31 #include "prims/whitebox.hpp"
  32 #include "prims/wbtestmethods/parserTests.hpp"
  33 #include "runtime/interfaceSupport.hpp"
  34 #include "services/diagnosticArgument.hpp"
  35 #include "services/diagnosticFramework.hpp"
  36 
  37 //There's no way of beforeahnd knowing an upper size
  38 //Of the length of a string representation of
  39 //the value of an argument.
  40 #define VALUE_MAXLEN 256
  41 
  42 // DiagnosticFramework test utility methods
  43 
  44 /*
  45  * The DiagnosticArgumentType class contains an enum that says which type
  46  * this argument represents. (JLONG, BOOLEAN etc).
  47  * This method Returns a char* representation of that enum value.
  48  */


   1 /*
   2  * Copyright (c) 2011, 2016, 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 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.inline.hpp"
  27 #include "classfile/symbolTable.hpp"
  28 #include "memory/oopFactory.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "oops/objArrayOop.inline.hpp"
  31 #include "prims/jni.h"
  32 #include "prims/whitebox.hpp"
  33 #include "prims/wbtestmethods/parserTests.hpp"
  34 #include "runtime/interfaceSupport.hpp"
  35 #include "services/diagnosticArgument.hpp"
  36 #include "services/diagnosticFramework.hpp"
  37 
  38 //There's no way of beforeahnd knowing an upper size
  39 //Of the length of a string representation of
  40 //the value of an argument.
  41 #define VALUE_MAXLEN 256
  42 
  43 // DiagnosticFramework test utility methods
  44 
  45 /*
  46  * The DiagnosticArgumentType class contains an enum that says which type
  47  * this argument represents. (JLONG, BOOLEAN etc).
  48  * This method Returns a char* representation of that enum value.
  49  */


src/share/vm/prims/wbtestmethods/parserTests.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File