hotspot/src/share/vm/runtime/signature.cpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 27471 6e56277909f1
child 33148 68fa8b6c4340
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22551
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 5426
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
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: 5426
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/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    31
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/typeArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/signature.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22551
diff changeset
    35
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Implementation of SignatureIterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Signature syntax:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Signature  = "(" {Parameter} ")" ReturnType.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Parameter  = FieldType.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// ReturnType = FieldType | "V".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// FieldType  = "B" | "C" | "D" | "F" | "I" | "J" | "S" | "Z" | "L" ClassName ";" | "[" FieldType.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// ClassName  = string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    48
SignatureIterator::SignatureIterator(Symbol* signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _signature       = signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void SignatureIterator::expect(char c) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27471
diff changeset
    54
  if (_signature->byte_at(_index) != c) fatal("expecting %c", c);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void SignatureIterator::skip_optional_size() {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    60
  Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  char c = sig->byte_at(_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  while ('0' <= c && c <= '9') c = sig->byte_at(++_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
int SignatureIterator::parse_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Note: This function could be simplified by using "return T_XXX_size;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  //       instead of the assignment and the break statements. However, it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  //       seems that the product build for win32_i486 with MS VC++ 6.0 doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  //       work (stack underflow for some tests) - this seems to be a VC++ 6.0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  //       compiler bug (was problem - gri 4/27/2000).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int size = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  switch(_signature->byte_at(_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    case 'B': do_byte  (); if (_parameter_index < 0 ) _return_type = T_BYTE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
              _index++; size = T_BYTE_size   ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    case 'C': do_char  (); if (_parameter_index < 0 ) _return_type = T_CHAR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
              _index++; size = T_CHAR_size   ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    case 'D': do_double(); if (_parameter_index < 0 ) _return_type = T_DOUBLE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
              _index++; size = T_DOUBLE_size ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    case 'F': do_float (); if (_parameter_index < 0 ) _return_type = T_FLOAT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
              _index++; size = T_FLOAT_size  ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    case 'I': do_int   (); if (_parameter_index < 0 ) _return_type = T_INT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
              _index++; size = T_INT_size    ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    case 'J': do_long  (); if (_parameter_index < 0 ) _return_type = T_LONG;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
              _index++; size = T_LONG_size   ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    case 'S': do_short (); if (_parameter_index < 0 ) _return_type = T_SHORT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
              _index++; size = T_SHORT_size  ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    case 'Z': do_bool  (); if (_parameter_index < 0 ) _return_type = T_BOOLEAN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
              _index++; size = T_BOOLEAN_size; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    case 'V': do_void  (); if (_parameter_index < 0 ) _return_type = T_VOID;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
              _index++; size = T_VOID_size;  ; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    case 'L':
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      { int begin = ++_index;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    94
        Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
        while (sig->byte_at(_index++) != ';') ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
        do_object(begin, _index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      if (_parameter_index < 0 ) _return_type = T_OBJECT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      size = T_OBJECT_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    case '[':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      { int begin = ++_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
        skip_optional_size();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   104
        Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        while (sig->byte_at(_index) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
          _index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
          skip_optional_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        if (sig->byte_at(_index) == 'L') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
          while (sig->byte_at(_index++) != ';') ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
          _index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        do_array(begin, _index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
       if (_parameter_index < 0 ) _return_type = T_ARRAY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      size = T_ARRAY_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert(size >= 0, "size must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
void SignatureIterator::check_signature_end() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (_index < _signature->utf8_length()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    tty->print_cr("too many chars in signature");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _signature->print_value_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    tty->print_cr(" @ %d", _index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
void SignatureIterator::dispatch_field() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // no '(', just one (field) type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  parse_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  check_signature_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
void SignatureIterator::iterate_parameters() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Parse parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  expect('(');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  while (_signature->byte_at(_index) != ')') _parameter_index += parse_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  expect(')');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   156
// Optimized version of iterate_parameters when fingerprint is known
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
void SignatureIterator::iterate_parameters( uint64_t fingerprint ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  uint64_t saved_fingerprint = fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Check for too many arguments
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 24424
diff changeset
   161
  if (fingerprint == (uint64_t)CONST64(-1)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    SignatureIterator::iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  assert(fingerprint, "Fingerprint should not be 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  fingerprint = fingerprint >> (static_feature_size + result_feature_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  while ( 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    switch ( fingerprint & parameter_feature_mask ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      case bool_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        do_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
        _parameter_index += T_BOOLEAN_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      case byte_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        do_byte();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        _parameter_index += T_BYTE_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      case char_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
        do_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
        _parameter_index += T_CHAR_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      case short_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        do_short();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
        _parameter_index += T_SHORT_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      case int_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
        do_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        _parameter_index += T_INT_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      case obj_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
        do_object(0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        _parameter_index += T_OBJECT_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      case long_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        do_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        _parameter_index += T_LONG_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      case float_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
        do_float();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        _parameter_index += T_FLOAT_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      case double_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        do_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        _parameter_index += T_DOUBLE_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      case done_parm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        tty->print_cr("*** parameter is %d", fingerprint & parameter_feature_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
        tty->print_cr("*** fingerprint is " PTR64_FORMAT, saved_fingerprint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
        ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    fingerprint >>= parameter_feature_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
void SignatureIterator::iterate_returntype() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Ignore parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  expect('(');
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   227
  Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  while (sig->byte_at(_index) != ')') _index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  expect(')');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Parse return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  _parameter_index = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  parse_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  check_signature_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
void SignatureIterator::iterate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Parse parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  expect('(');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  while (_signature->byte_at(_index) != ')') _parameter_index += parse_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  expect(')');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Parse return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  _parameter_index = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  parse_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  check_signature_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  _parameter_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// Implementation of SignatureStream
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   254
SignatureStream::SignatureStream(Symbol* signature, bool is_method) :
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   255
                   _signature(signature), _at_return_type(false) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   256
  _begin = _end = (is_method ? 1 : 0);  // skip first '(' in method signatures
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   257
  _names = new GrowableArray<Symbol*>(10);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   258
  next();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   259
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   260
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   261
SignatureStream::~SignatureStream() {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   262
  // decrement refcount for names created during signature parsing
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   263
  for (int i = 0; i < _names->length(); i++) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   264
    _names->at(i)->decrement_refcount();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   265
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   266
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
bool SignatureStream::is_done() const {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   269
  return _end > _signature->utf8_length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
void SignatureStream::next_non_primitive(int t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  switch (t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    case 'L': {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      _type = T_OBJECT;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   277
      Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      while (sig->byte_at(_end++) != ';');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    case '[': {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      _type = T_ARRAY;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   283
      Symbol* sig = _signature;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      char c = sig->byte_at(_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      while ('0' <= c && c <= '9') c = sig->byte_at(_end++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      while (sig->byte_at(_end) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
        _end++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
        c = sig->byte_at(_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        while ('0' <= c && c <= '9') c = sig->byte_at(_end++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      switch(sig->byte_at(_end)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
        case 'B':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        case 'C':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        case 'D':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        case 'F':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        case 'I':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        case 'J':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        case 'S':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
        case 'Z':_end++; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
        default: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
          while (sig->byte_at(_end++) != ';');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    case ')': _end++; next(); _at_return_type = true; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    default : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
bool SignatureStream::is_object() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  return _type == T_OBJECT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      || _type == T_ARRAY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
bool SignatureStream::is_array() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  return _type == T_ARRAY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   322
Symbol* SignatureStream::as_symbol(TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Create a symbol from for string _begin _end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  int begin = _begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  int end   = _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   327
  if (   _signature->byte_at(_begin) == 'L'
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   328
      && _signature->byte_at(_end-1) == ';') {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    begin++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    end--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   333
  // Save names for cleaning up reference count at the end of
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   334
  // SignatureStream scope.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   335
  Symbol* name = SymbolTable::new_symbol(_signature, begin, end, CHECK_NULL);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   336
  _names->push(name);  // save new symbol for decrementing later
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   337
  return name;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
   340
Klass* SignatureStream::as_klass(Handle class_loader, Handle protection_domain,
5421
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   341
                                   FailureMode failure_mode, TRAPS) {
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   342
  if (!is_object())  return NULL;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   343
  Symbol* name = as_symbol(CHECK_NULL);
5421
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   344
  if (failure_mode == ReturnNull) {
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   345
    return SystemDictionary::resolve_or_null(name, class_loader, protection_domain, THREAD);
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   346
  } else {
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   347
    bool throw_error = (failure_mode == NCDFError);
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   348
    return SystemDictionary::resolve_or_fail(name, class_loader, protection_domain, throw_error, THREAD);
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   349
  }
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   350
}
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   351
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   352
oop SignatureStream::as_java_mirror(Handle class_loader, Handle protection_domain,
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   353
                                    FailureMode failure_mode, TRAPS) {
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   354
  if (!is_object())
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   355
    return Universe::java_mirror(type());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
   356
  Klass* klass = as_klass(class_loader, protection_domain, failure_mode, CHECK_NULL);
5421
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   357
  if (klass == NULL)  return NULL;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   358
  return klass->java_mirror();
5421
e294db54fc0d 6939196: method handle signatures off the boot class path get linkage errors
jrose
parents: 1
diff changeset
   359
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   361
Symbol* SignatureStream::as_symbol_or_null() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // Create a symbol from for string _begin _end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  int begin = _begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  int end   = _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   368
  if (   _signature->byte_at(_begin) == 'L'
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   369
      && _signature->byte_at(_end-1) == ';') {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    begin++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    end--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  char* buffer = NEW_RESOURCE_ARRAY(char, end - begin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  for (int index = begin; index < end; index++) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   376
    buffer[index - begin] = _signature->byte_at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   378
  Symbol* result = SymbolTable::probe(buffer, end - begin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   382
int SignatureStream::reference_parameter_count() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   383
  int args_count = 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   384
  for ( ; !at_return_type(); next()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   385
    if (is_object()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   386
      args_count++;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   387
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   388
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   389
  return args_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   390
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 14488
diff changeset
   391
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   392
bool SignatureVerifier::is_valid_signature(Symbol* sig) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  const char* signature = (const char*)sig->bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  ssize_t len = sig->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (signature == NULL || signature[0] == '\0' || len < 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  } else if (signature[0] == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    return is_valid_method_signature(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    return is_valid_type_signature(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   404
bool SignatureVerifier::is_valid_method_signature(Symbol* sig) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  const char* method_sig = (const char*)sig->bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  ssize_t len = sig->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  ssize_t index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if (method_sig != NULL && len > 1 && method_sig[index] == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    while (index < len && method_sig[index] != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      ssize_t res = is_valid_type(&method_sig[index], len - index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
      if (res == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
        index += res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    if (index < len && method_sig[index] == ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      // check the return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      return (is_valid_type(&method_sig[index], len - index) == (len - index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   427
bool SignatureVerifier::is_valid_type_signature(Symbol* sig) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  const char* type_sig = (const char*)sig->bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  ssize_t len = sig->utf8_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  return (type_sig != NULL && len >= 1 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
          (is_valid_type(type_sig, len) == len));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// Checks to see if the type (not to go beyond 'limit') refers to a valid type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
// Returns -1 if it is not, or the index of the next character that is not part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
// of the type.  The type encoding may end before 'limit' and that's ok.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
ssize_t SignatureVerifier::is_valid_type(const char* type, ssize_t limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  ssize_t index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // Iterate over any number of array dimensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  while (index < limit && type[index] == '[') ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  if (index >= limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  switch (type[index]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    case 'B': case 'C': case 'D': case 'F': case 'I':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    case 'J': case 'S': case 'Z': case 'V':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      return index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    case 'L':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      for (index = index + 1; index < limit; ++index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
        char c = type[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
        if (c == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
          return index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
        if (invalid_name_char(c)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
          return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    default: ; // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
bool SignatureVerifier::invalid_name_char(char c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    case '\0': case '.': case ';': case '[':
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
}