src/hotspot/share/classfile/classFileStream.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 47216 71c04702a3d5
child 54042 6dd6f988b4e4
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    25
#ifndef SHARE_CLASSFILE_CLASSFILESTREAM_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    26
#define SHARE_CLASSFILE_CLASSFILESTREAM_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 34666
diff changeset
    28
#include "memory/allocation.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 22234
diff changeset
    29
#include "utilities/bytes.hpp"
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 34666
diff changeset
    30
#include "utilities/exceptions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Input stream for reading .class file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The entire input stream is present in a buffer allocated by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The caller is responsible for deallocating the buffer and for using
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// ResourceMarks appropriately when constructing streams.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    38
class ClassPathEntry;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    39
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ClassFileStream: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 private:
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    42
  const u1* const _buffer_start; // Buffer bottom
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    43
  const u1* const _buffer_end;   // Buffer top (one past last element)
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    44
  mutable const u1* _current;    // Current buffer position
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    45
  const char* const _source;     // Source of stream (directory name, ZIP/JAR archive name)
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    46
  bool _need_verify;             // True if verification is on for the class file
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    47
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    48
  void truncated_file_error(TRAPS) const ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    50
 protected:
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    51
  const u1* clone_buffer() const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    52
  const char* const clone_source() const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    53
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 public:
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    55
  static const bool no_verification;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    56
  static const bool verify;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    57
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    58
  ClassFileStream(const u1* buffer,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    59
                  int length,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    60
                  const char* source,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    61
                  bool verify_stream = verify); // to be verified by default
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    62
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    63
  virtual const ClassFileStream* clone() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Buffer access
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    66
  const u1* buffer() const { return _buffer_start; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    67
  int length() const { return _buffer_end - _buffer_start; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    68
  const u1* current() const { return _current; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    69
  void set_current(const u1* pos) const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    70
    assert(pos >= _buffer_start && pos <= _buffer_end, "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    71
    _current = pos;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    72
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    74
  // for relative positioning
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    75
  juint current_offset() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    76
    return (juint)(_current - _buffer_start);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    77
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    78
  const char* source() const { return _source; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    79
  bool need_verify() const { return _need_verify; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    80
  void set_verify(bool flag) { _need_verify = flag; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    81
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    82
  void check_truncated_file(bool b, TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    if (b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      truncated_file_error(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    88
  void guarantee_more(int size, TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    size_t remaining = (size_t)(_buffer_end - _current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    unsigned int usize = (unsigned int)size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    check_truncated_file(usize > remaining, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Read u1 from stream
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    95
  u1 get_u1(TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    96
  u1 get_u1_fast() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    return *_current++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Read u2 from stream
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   101
  u2 get_u2(TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   102
  u2 get_u2_fast() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   103
    u2 res = Bytes::get_Java_u2((address)_current);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _current += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Read u4 from stream
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   109
  u4 get_u4(TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   110
  u4 get_u4_fast() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   111
    u4 res = Bytes::get_Java_u4((address)_current);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _current += 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Read u8 from stream
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   117
  u8 get_u8(TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   118
  u8 get_u8_fast() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   119
    u8 res = Bytes::get_Java_u8((address)_current);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _current += 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Skip length u1 or u2 elements from stream
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   125
  void skip_u1(int length, TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   126
  void skip_u1_fast(int length) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _current += length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   130
  void skip_u2(int length, TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   131
  void skip_u2_fast(int length) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _current += 2 * length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   135
  void skip_u4(int length, TRAPS) const;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   136
  void skip_u4_fast(int length) const {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 8921
diff changeset
   137
    _current += 4 * length;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 8921
diff changeset
   138
  }
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 8921
diff changeset
   139
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Tells whether eos is reached
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
   141
  bool at_eos() const { return _current == _buffer_end; }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37466
diff changeset
   142
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37466
diff changeset
   143
  uint64_t compute_fingerprint() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   145
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
   146
#endif // SHARE_CLASSFILE_CLASSFILESTREAM_HPP