src/hotspot/share/runtime/fieldType.cpp
author hseigel
Wed, 03 Oct 2018 09:46:46 -0400
changeset 51997 9ce37fa2e179
parent 49354 c6f2f91a1b4e
child 54786 ebf733a324d4
permissions -rw-r--r--
8209138: Symbol constructor uses u1 as the element type of its name argument Summary: Maske u1 the type for Symbol values and add a function to return it as a char. Reviewed-by: dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49354
c6f2f91a1b4e 8159850: Remove unneeded parsing of optional-size when parsing array types
hseigel
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 8921
diff changeset
    28
#include "memory/resourceArea.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/typeArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/fieldType.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/signature.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    34
BasicType FieldType::basic_type(Symbol* signature) {
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    35
  return char2type(signature->char_at(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Check if it is a valid array signature
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    39
bool FieldType::is_valid_array_signature(Symbol* sig) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert(sig->utf8_length() > 1, "this should already have been checked");
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    41
  assert(sig->char_at(0) == '[', "this should already have been checked");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // The first character is already checked
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  int i = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  int len = sig->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // First skip all '['s
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    46
  while(i < len - 1 && sig->char_at(i) == '[') i++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Check type
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    49
  switch(sig->char_at(i)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    case 'B': // T_BYTE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    case 'C': // T_CHAR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    case 'D': // T_DOUBLE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    case 'F': // T_FLOAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    case 'I': // T_INT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    case 'J': // T_LONG
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    case 'S': // T_SHORT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    case 'Z': // T_BOOLEAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      // If it is an array, the type is the last character
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      return (i + 1 == len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    case 'L':
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      // If it is an object, the last character must be a ';'
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    62
      return sig->char_at(len - 1) == ';';
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    69
BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  assert(basic_type(signature) == T_ARRAY, "must be array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  int index = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int dim   = 1;
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 49354
diff changeset
    73
  while (signature->char_at(index) == '[') {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    dim++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ResourceMark rm;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    78
  char *element = signature->as_C_string() + index;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    79
  BasicType element_type = char2type(element[0]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  if (element_type == T_OBJECT) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    81
    int len = (int)strlen(element);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    82
    assert(element[len-1] == ';', "last char should be a semicolon");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    83
    element[len-1] = '\0';        // chop off semicolon
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    84
    fd._object_key = SymbolTable::new_symbol(element + 1, CHECK_(T_BYTE));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Pass dimension back to caller
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    87
  fd._dimension = dim;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  return element_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}