src/hotspot/share/runtime/fieldType.cpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 37248 hotspot/src/share/vm/runtime/fieldType.cpp@11a660dbbb8e
child 49354 c6f2f91a1b4e
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 8921
diff changeset
     2
 * Copyright (c) 1997, 2016, 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
void FieldType::skip_optional_size(Symbol* signature, int* index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  jchar c = signature->byte_at(*index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  while (c >= '0' && c <= '9') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    *index = *index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    c = signature->byte_at(*index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    42
BasicType FieldType::basic_type(Symbol* signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  return char2type(signature->byte_at(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// 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
    47
bool FieldType::is_valid_array_signature(Symbol* sig) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  assert(sig->utf8_length() > 1, "this should already have been checked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  assert(sig->byte_at(0) == '[', "this should already have been checked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // The first character is already checked
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int i = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int len = sig->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // First skip all '['s
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  while(i < len - 1 && sig->byte_at(i) == '[') i++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Check type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  switch(sig->byte_at(i)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    case 'B': // T_BYTE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    case 'C': // T_CHAR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    case 'D': // T_DOUBLE
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    case 'F': // T_FLOAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    case 'I': // T_INT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    case 'J': // T_LONG
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    case 'S': // T_SHORT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    case 'Z': // T_BOOLEAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      // If it is an array, the type is the last character
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      return (i + 1 == len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    case 'L':
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      // If it is an object, the last character must be a ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return sig->byte_at(len - 1) == ';';
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    77
BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  assert(basic_type(signature) == T_ARRAY, "must be array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  int index = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int dim   = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  skip_optional_size(signature, &index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  while (signature->byte_at(index) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    dim++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    skip_optional_size(signature, &index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  ResourceMark rm;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    88
  char *element = signature->as_C_string() + index;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    89
  BasicType element_type = char2type(element[0]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (element_type == T_OBJECT) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    91
    int len = (int)strlen(element);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    92
    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
    93
    element[len-1] = '\0';        // chop off semicolon
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    94
    fd._object_key = SymbolTable::new_symbol(element + 1, CHECK_(T_BYTE));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Pass dimension back to caller
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    97
  fd._dimension = dim;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  return element_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}