hotspot/src/share/vm/utilities/xmlstream.cpp
author goetz
Mon, 26 Oct 2015 16:21:37 +0100
changeset 33794 41ef3dc95179
parent 33604 ad1cd9269bd4
child 37248 11a660dbbb8e
permissions -rw-r--r--
8140482: Various minor code improvements (runtime) Reviewed-by: dholmes, coleenp, sspitsyn, dsamersoff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28477
157314902d78 8068396: Rename assert() to vmassert()
kbarrett
parents: 27880
diff changeset
     2
 * Copyright (c) 2002, 2015, 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: 5402
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5402
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: 5402
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 "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    29
#include "oops/methodData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    30
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/vmThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
28477
157314902d78 8068396: Rename assert() to vmassert()
kbarrett
parents: 27880
diff changeset
    36
// Do not assert this condition if there's already another error reported.
157314902d78 8068396: Rename assert() to vmassert()
kbarrett
parents: 27880
diff changeset
    37
#define assert_if_no_error(cond, msg) \
157314902d78 8068396: Rename assert() to vmassert()
kbarrett
parents: 27880
diff changeset
    38
  vmassert((cond) || is_error_reported(), msg)
157314902d78 8068396: Rename assert() to vmassert()
kbarrett
parents: 27880
diff changeset
    39
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
void xmlStream::initialize(outputStream* out) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _out = out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _last_flush = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _markup_state = BODY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _text_init._outer_xmlStream = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _text = &_text_init;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _element_depth = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  int   init_len = 100;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11727
diff changeset
    50
  char* init_buf = NEW_C_HEAP_ARRAY(char, init_len, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _element_close_stack_low  = init_buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _element_close_stack_high = init_buf + init_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _element_close_stack_ptr  = init_buf + init_len - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _element_close_stack_ptr[0] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Make sure each log uses the same base for time stamps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  if (is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _out->time_stamp().update_to(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
xmlStream::~xmlStream() {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 24424
diff changeset
    65
  FREE_C_HEAP_ARRAY(char, _element_close_stack_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// Pass the given chars directly to _out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
void xmlStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (!is_open())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  out()->write(s, len);
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 1
diff changeset
    74
  update_position(s, len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Pass the given chars directly to _out, except that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// we watch for special "<&>" chars.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// This is suitable for either attribute text or for body text.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// We don't fool with "<![CDATA[" quotes, just single-character entities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// This makes it easier for dumb tools to parse the output.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
void xmlStream::write_text(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  if (!is_open())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  size_t written = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // All normally printed material goes inside XML quotes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // This leaves the output free to include markup also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Scan the string looking for inadvertant "<&>" chars
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  for (size_t i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    char ch = s[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // Escape special chars.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    const char* esc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    switch (ch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      // These are important only in attrs, but we do them always:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    case '\'': esc = "&apos;"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    case '"':  esc = "&quot;"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    case '<':  esc = "&lt;";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    case '&':  esc = "&amp;";  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      // This is a freebie.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    case '>':  esc = "&gt;";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    if (esc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      if (written < i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        out()->write(&s[written], i - written);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        written = i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      out()->print_raw(esc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      written++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Print the clean remainder.  Usually, it is all of s.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  if (written < len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    out()->write(&s[written], len - written);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// Outputs XML text, with special characters quoted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void xmlStream::text(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  va_text(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#define BUFLEN 2*K   /* max size of output of individual print methods */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
void xmlStream::va_tag(bool push, const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  assert_if_no_error(!inside_attrs(), "cannot print tag inside attrs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  char buffer[BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  const char* kind = do_vsnprintf(buffer, BUFLEN, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  see_tag(kind, push);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  print_raw("<");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  write(kind, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  _markup_state = (push ? HEAD : ELEM);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
/// Debugging goo to make sure element tags nest properly.
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 xmlStream::see_tag(const char* tag, bool push) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  assert_if_no_error(!inside_attrs(), "cannot start new element inside attrs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (!push)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // tag goes up until either null or space:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  const char* tag_end = strchr(tag, ' ');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  size_t tag_len = (tag_end == NULL) ? strlen(tag) : tag_end - tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  assert(tag_len > 0, "tag must not be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // push the tag onto the stack, pulling down the pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  char* old_ptr  = _element_close_stack_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  char* old_low  = _element_close_stack_low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  char* push_ptr = old_ptr - (tag_len+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (push_ptr < old_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    int old_len = _element_close_stack_high - old_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    int new_len = old_len * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    if (new_len < 100)  new_len = 100;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11727
diff changeset
   162
    char* new_low  = NEW_C_HEAP_ARRAY(char, new_len, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    char* new_high = new_low + new_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    char* new_ptr  = new_high - old_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    memcpy(new_ptr, old_ptr, old_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _element_close_stack_high = new_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _element_close_stack_low  = new_low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _element_close_stack_ptr  = new_ptr;
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 24424
diff changeset
   169
    FREE_C_HEAP_ARRAY(char, old_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    push_ptr = new_ptr - (tag_len+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  assert(push_ptr >= _element_close_stack_low, "in range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  memcpy(push_ptr, tag, tag_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  push_ptr[tag_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  _element_close_stack_ptr = push_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _element_depth += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
void xmlStream::pop_tag(const char* tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  assert_if_no_error(!inside_attrs(), "cannot close element inside attrs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  assert(_element_depth > 0, "must be in an element to close");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert(*tag != 0, "tag must not be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  char* cur_tag = _element_close_stack_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  bool  bad_tag = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  while (*cur_tag != 0 && strcmp(cur_tag, tag) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    this->print_cr("</%s> <!-- missing closing tag -->", cur_tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    _element_close_stack_ptr = (cur_tag += strlen(cur_tag) + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    _element_depth -= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    bad_tag = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (*cur_tag == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    bad_tag = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    // Pop the stack, by skipping over the tag and its null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    _element_close_stack_ptr = cur_tag + strlen(cur_tag) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    _element_depth -= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
11727
c5dfa2639359 7130319: C2: running with -XX:+PrintOptoAssembly crashes the VM with assert(false) failed: bad tag in log
dlong
parents: 8921
diff changeset
   199
  if (bad_tag && !VMThread::should_terminate() && !VM_Exit::vm_exited() &&
c5dfa2639359 7130319: C2: running with -XX:+PrintOptoAssembly crashes the VM with assert(false) failed: bad tag in log
dlong
parents: 8921
diff changeset
   200
      !is_error_reported())
c5dfa2639359 7130319: C2: running with -XX:+PrintOptoAssembly crashes the VM with assert(false) failed: bad tag in log
dlong
parents: 8921
diff changeset
   201
  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    assert(false, "bad tag in log");
11727
c5dfa2639359 7130319: C2: running with -XX:+PrintOptoAssembly crashes the VM with assert(false) failed: bad tag in log
dlong
parents: 8921
diff changeset
   203
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// First word in formatted string is element kind, and any subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// words must be XML attributes.  Outputs "<kind .../>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
void xmlStream::elem(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  va_elem(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
void xmlStream::va_elem(const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  va_begin_elem(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// First word in formatted string is element kind, and any subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// words must be XML attributes.  Outputs "<kind ...", not including "/>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
void xmlStream::begin_elem(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  va_tag(false, format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
void xmlStream::va_begin_elem(const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  va_tag(false, format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// Outputs "/>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
void xmlStream::end_elem() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  assert(_markup_state == ELEM, "misplaced end_elem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  print_raw("/>\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  _markup_state = BODY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// Outputs formatted text, followed by "/>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void xmlStream::end_elem(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  out()->vprint(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// First word in formatted string is element kind, and any subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
// words must be XML attributes.  Outputs "<kind ...>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
void xmlStream::head(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  va_head(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
void xmlStream::va_head(const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  va_begin_head(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  end_head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// First word in formatted string is element kind, and any subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// words must be XML attributes.  Outputs "<kind ...", not including ">".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
void xmlStream::begin_head(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  va_tag(true, format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
void xmlStream::va_begin_head(const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  va_tag(true, format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// Outputs ">".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
void xmlStream::end_head() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  assert(_markup_state == HEAD, "misplaced end_head");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  print_raw(">\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  _markup_state = BODY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// Outputs formatted text, followed by ">".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
void xmlStream::end_head(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  out()->vprint(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  end_head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// Outputs "</kind>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
void xmlStream::tail(const char* kind) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  pop_tag(kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  print_raw("</");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  print_raw(kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  print_raw(">\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// Outputs "<kind_done ... stamp='D.DD'/> </kind>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
void xmlStream::done(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  va_done(format, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// Outputs "<kind_done stamp='D.DD'/> </kind>".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// Because done_raw() doesn't need to format strings, it's simpler than
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// done(), and can be called safely by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
void xmlStream::done_raw(const char* kind) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  print_raw("<");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  print_raw(kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  print_raw("_done stamp='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  out()->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  print_raw_cr("'/>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  print_raw("</");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  print_raw(kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  print_raw_cr(">");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
33604
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 28477
diff changeset
   343
// If you remove the PRAGMA, this fails to compile with clang-503.0.40.
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
   344
PRAGMA_DIAG_PUSH
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
   345
PRAGMA_FORMAT_NONLITERAL_IGNORED
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
void xmlStream::va_done(const char* format, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  char buffer[200];
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   349
  size_t format_len = strlen(format);
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   350
  guarantee(format_len + 10 < sizeof(buffer), "bigger format buffer");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  const char* kind = format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  const char* kind_end = strchr(kind, ' ');
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   353
  size_t kind_len = (kind_end != NULL) ? (kind_end - kind) : format_len;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  strncpy(buffer, kind, kind_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  strcpy(buffer + kind_len, "_done");
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   356
  if (kind_end != NULL) {
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   357
    strncat(buffer, format + kind_len, sizeof(buffer) - (kind_len + 5 /* _done */) - 1);
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33604
diff changeset
   358
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // Output the trailing event with the timestamp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  va_begin_elem(buffer, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  end_elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // Output the tail-tag of the enclosing element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  buffer[kind_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  tail(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
}
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
   367
PRAGMA_DIAG_POP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// Output a timestamp attribute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
void xmlStream::stamp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  assert_if_no_error(inside_attrs(), "stamp must be an attribute");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  print_raw(" stamp='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  out()->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  print_raw("'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
// Output a method attribute, in the form " method='pkg/cls name sig'".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
// This is used only when there is no ciMethod available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
void xmlStream::method(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  assert_if_no_error(inside_attrs(), "printing attributes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  if (method.is_null())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  print_raw(" method='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  method_text(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  print("' bytes='%d'", method->code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  print(" count='%d'", method->invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  int bec = method->backedge_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  if (bec != 0)  print(" backedge_count='%d'", bec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  print(" iicount='%d'", method->interpreter_invocation_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  int throwouts = method->interpreter_throwout_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  if (throwouts != 0)  print(" throwouts='%d'", throwouts);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   393
  MethodData* mdo = method->method_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  if (mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    uint cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    cnt = mdo->decompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    if (cnt != 0)  print(" decompiles='%d'", cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    for (uint reason = 0; reason < mdo->trap_reason_limit(); reason++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      cnt = mdo->trap_count(reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      if (cnt != 0)  print(" %s_traps='%d'", Deoptimization::trap_reason_name(reason), cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    cnt = mdo->overflow_trap_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    if (cnt != 0)  print(" overflow_traps='%d'", cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    cnt = mdo->overflow_recompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    if (cnt != 0)  print(" overflow_recompiles='%d'", cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void xmlStream::method_text(methodHandle method) {
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 13728
diff changeset
   410
  ResourceMark rm;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  assert_if_no_error(inside_attrs(), "printing attributes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  if (method.is_null())  return;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
   413
  text()->print("%s", method->method_holder()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  print_raw(" ");  // " " is easier for tools to parse than "::"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  method->name()->print_symbol_on(text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  print_raw(" ");  // separator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  method->signature()->print_symbol_on(text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
// Output a klass attribute, in the form " klass='pkg/cls'".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
// This is used only when there is no ciKlass available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
void xmlStream::klass(KlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  assert_if_no_error(inside_attrs(), "printing attributes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  if (klass.is_null())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  print_raw(" klass='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  klass_text(klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  print_raw("'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
void xmlStream::klass_text(KlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  assert_if_no_error(inside_attrs(), "printing attributes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  if (klass.is_null())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  //klass->print_short_name(log->out());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  klass->name()->print_symbol_on(out());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   439
void xmlStream::name(const Symbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  assert_if_no_error(inside_attrs(), "printing attributes");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   441
  if (name == NULL)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  print_raw(" name='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  name_text(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  print_raw("'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   447
void xmlStream::name_text(const Symbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  assert_if_no_error(inside_attrs(), "printing attributes");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   449
  if (name == NULL)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  //name->print_short_name(text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  name->print_symbol_on(text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
void xmlStream::object(const char* attr, Handle x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  assert_if_no_error(inside_attrs(), "printing attributes");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   456
  if (x == NULL)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  print_raw(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  print_raw(attr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  print_raw("='");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  object_text(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  print_raw("'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
void xmlStream::object_text(Handle x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  assert_if_no_error(inside_attrs(), "printing attributes");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   466
  if (x == NULL)  return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   467
  x->print_value_on(text());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   468
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   469
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   470
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   471
void xmlStream::object(const char* attr, Metadata* x) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   472
  assert_if_no_error(inside_attrs(), "printing attributes");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   473
  if (x == NULL)  return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   474
  print_raw(" ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   475
  print_raw(attr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   476
  print_raw("='");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   477
  object_text(x);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   478
  print_raw("'");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   479
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   480
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   481
void xmlStream::object_text(Metadata* x) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   482
  assert_if_no_error(inside_attrs(), "printing attributes");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   483
  if (x == NULL)  return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  //x->print_value_on(text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  if (x->is_method())
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   486
    method_text((Method*)x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  else if (x->is_klass())
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   488
    klass_text((Klass*)x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  else
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   490
    ShouldNotReachHere(); // Add impl if this is reached.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
void xmlStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  out()->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  _last_flush = count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
void xmlTextStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  if (_outer_xmlStream == NULL)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  _outer_xmlStream->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
void xmlTextStream::write(const char* str, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  if (_outer_xmlStream == NULL)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  _outer_xmlStream->write_text(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  update_position(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
}