hotspot/src/share/vm/prims/wbtestmethods/parserTests.cpp
author jprovino
Mon, 04 Apr 2016 12:57:48 -0400
changeset 37248 11a660dbbb8e
parent 29081 c61eb4914428
permissions -rw-r--r--
8132524: Missing includes to resourceArea.hpp Summary: Files that use ResourceMark are missing the include of resourceArea.hpp Reviewed-by: tschatzl, jwilhelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     1
/*
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 29081
diff changeset
     2
 * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     4
 *
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     8
 *
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    13
 * accompanied this code).
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    14
 *
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    18
 *
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    21
 * questions.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    22
 *
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    23
 */
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    24
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    25
#include "precompiled.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27879
diff changeset
    26
#include "classfile/javaClasses.inline.hpp"
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    27
#include "classfile/symbolTable.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27879
diff changeset
    28
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 29081
diff changeset
    29
#include "memory/resourceArea.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27879
diff changeset
    30
#include "oops/objArrayOop.inline.hpp"
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    31
#include "prims/jni.h"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    32
#include "prims/whitebox.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    33
#include "prims/wbtestmethods/parserTests.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    34
#include "runtime/interfaceSupport.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    35
#include "services/diagnosticArgument.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    36
#include "services/diagnosticFramework.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    37
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    38
//There's no way of beforeahnd knowing an upper size
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    39
//Of the length of a string representation of
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    40
//the value of an argument.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    41
#define VALUE_MAXLEN 256
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    42
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    43
// DiagnosticFramework test utility methods
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    44
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    45
/*
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    46
 * The DiagnosticArgumentType class contains an enum that says which type
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    47
 * this argument represents. (JLONG, BOOLEAN etc).
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    48
 * This method Returns a char* representation of that enum value.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    49
 */
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    50
static const char* lookup_diagnosticArgumentEnum(const char* field_name, oop object) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    51
  Thread* THREAD = Thread::current();
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    52
  const char* enum_sig = "Lsun/hotspot/parser/DiagnosticCommand$DiagnosticArgumentType;";
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    53
  TempNewSymbol enumSigSymbol = SymbolTable::lookup(enum_sig, (int) strlen(enum_sig), THREAD);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    54
  int offset = WhiteBox::offset_for_field(field_name, object, enumSigSymbol);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    55
  oop enumOop = object->obj_field(offset);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    56
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    57
  const char* ret = WhiteBox::lookup_jstring("name", enumOop);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    58
  return ret;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    59
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    60
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    61
/*
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    62
 * Takes an oop to a DiagnosticArgumentType-instance and
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    63
 * reads the fields from it. Fills an native DCmdParser with
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    64
 * this info.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    65
 */
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    66
static void fill_in_parser(DCmdParser* parser, oop argument)
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    67
{
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    68
  const char* name = WhiteBox::lookup_jstring("name", argument);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    69
  const char* desc = WhiteBox::lookup_jstring("desc", argument);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    70
  const char* default_value = WhiteBox::lookup_jstring("defaultValue", argument);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    71
  bool mandatory = WhiteBox::lookup_bool("mandatory", argument);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    72
  bool isarg = WhiteBox::lookup_bool("argument", argument);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    73
  const char*  type = lookup_diagnosticArgumentEnum("type", argument);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    74
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    75
   if (strcmp(type, "STRING") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    76
     DCmdArgument<char*>* argument = new DCmdArgument<char*>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    77
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    78
     "STRING", mandatory, default_value);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    79
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    80
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    81
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    82
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    83
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    84
   } else if (strcmp(type, "NANOTIME") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    85
     DCmdArgument<NanoTimeArgument>* argument = new DCmdArgument<NanoTimeArgument>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    86
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    87
     "NANOTIME", mandatory, default_value);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    88
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    89
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    90
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    91
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    92
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    93
   } else if (strcmp(type, "JLONG") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    94
     DCmdArgument<jlong>* argument = new DCmdArgument<jlong>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    95
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
    96
     "JLONG", mandatory, default_value);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    97
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    98
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
    99
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   100
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   101
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   102
   } else if (strcmp(type, "BOOLEAN") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   103
     DCmdArgument<bool>* argument = new DCmdArgument<bool>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   104
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   105
     "BOOLEAN", mandatory, default_value);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   106
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   107
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   108
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   109
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   110
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   111
   } else if (strcmp(type, "MEMORYSIZE") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   112
     DCmdArgument<MemorySizeArgument>* argument = new DCmdArgument<MemorySizeArgument>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   113
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   114
     "MEMORY SIZE", mandatory, default_value);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   115
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   116
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   117
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   118
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   119
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   120
   } else if (strcmp(type, "STRINGARRAY") == 0) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   121
     DCmdArgument<StringArrayArgument*>* argument = new DCmdArgument<StringArrayArgument*>(
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   122
     name, desc,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   123
     "STRING SET", mandatory);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   124
     if (isarg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   125
      parser->add_dcmd_argument(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   126
     } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   127
      parser->add_dcmd_option(argument);
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   128
     }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   129
   }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   130
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   131
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   132
/*
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   133
 * Will Fill in a java object array with alternating names of parsed command line options and
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   134
 * the value that has been parsed for it:
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   135
 * { name, value, name, value ... }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   136
 * This can then be checked from java.
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   137
 */
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   138
WB_ENTRY(jobjectArray, WB_ParseCommandLine(JNIEnv* env, jobject o, jstring j_cmdline, jchar j_delim, jobjectArray arguments))
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   139
  ResourceMark rm;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   140
  DCmdParser parser;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   141
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   142
  const char* c_cmdline = java_lang_String::as_utf8_string(JNIHandles::resolve(j_cmdline));
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   143
  const char c_delim = j_delim & 0xff;
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   144
  objArrayOop argumentArray = objArrayOop(JNIHandles::resolve_non_null(arguments));
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   145
  objArrayHandle argumentArray_ah(THREAD, argumentArray);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   146
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   147
  int length = argumentArray_ah->length();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   148
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   149
  for (int i = 0; i < length; i++) {
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   150
    oop argument_oop = argumentArray_ah->obj_at(i);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   151
    fill_in_parser(&parser, argument_oop);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   152
  }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   153
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   154
  CmdLine cmdline(c_cmdline, strlen(c_cmdline), true);
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   155
  parser.parse(&cmdline,c_delim,CHECK_NULL);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   156
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
   157
  Klass* k = SystemDictionary::Object_klass();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   158
  objArrayOop returnvalue_array = oopFactory::new_objArray(k, parser.num_arguments() * 2, CHECK_NULL);
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   159
  objArrayHandle returnvalue_array_ah(THREAD, returnvalue_array);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   160
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   161
  GrowableArray<const char *>*parsedArgNames = parser.argument_name_array();
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   162
  GenDCmdArgument* arglist = parser.arguments_list();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   163
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   164
  for (int i = 0; i < parser.num_arguments(); i++) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   165
    oop parsedName = java_lang_String::create_oop_from_str(parsedArgNames->at(i), CHECK_NULL);
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   166
    returnvalue_array_ah->obj_at_put(i*2, parsedName);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   167
    GenDCmdArgument* arg = parser.lookup_dcmd_option(parsedArgNames->at(i), strlen(parsedArgNames->at(i)));
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   168
    if (!arg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   169
      arg = arglist;
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   170
      arglist = arglist->next();
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   171
    }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   172
    char buf[VALUE_MAXLEN];
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   173
    if (arg) {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   174
      arg->value_as_str(buf, sizeof(buf));
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   175
    } else {
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   176
      sprintf(buf, "<null>");
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 20368
diff changeset
   177
    }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   178
    oop parsedValue = java_lang_String::create_oop_from_str(buf, CHECK_NULL);
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   179
    returnvalue_array_ah->obj_at_put(i*2+1, parsedValue);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   180
  }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   181
20368
c6a566a70b59 8025570: Naked oop in test/serviceability/ParserTest
coleenp
parents: 13728
diff changeset
   182
  return (jobjectArray) JNIHandles::make_local(returnvalue_array_ah());
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   183
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
diff changeset
   184
WB_END