< prev index next >

src/hotspot/share/utilities/xmlstream.cpp

Print this page

 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "code/nmethod.hpp"
 27 #include "memory/allocation.hpp"
 28 #include "memory/allocation.inline.hpp"
 29 #include "memory/resourceArea.hpp"
 30 #include "oops/methodData.hpp"
 31 #include "oops/method.inline.hpp"
 32 #include "oops/oop.inline.hpp"
 33 #include "runtime/deoptimization.hpp"
 34 #include "runtime/handles.inline.hpp"

 35 #include "runtime/vmOperations.hpp"
 36 #include "runtime/vmThread.hpp"
 37 #include "utilities/vmError.hpp"
 38 #include "utilities/xmlstream.hpp"
 39 









































 40 // Do not assert this condition if there's already another error reported.
 41 #define assert_if_no_error(cond, msg) \
 42   vmassert((cond) || VMError::is_error_reported(), msg)



 43 
 44 void xmlStream::initialize(outputStream* out) {
 45   _out = out;
 46   _last_flush = 0;
 47   _markup_state = BODY;
 48   _text_init._outer_xmlStream = this;
 49   _text = &_text_init;

 50 
 51 #ifdef ASSERT
 52   _element_depth = 0;
 53   int   init_len = 100;
 54   char* init_buf = NEW_C_HEAP_ARRAY(char, init_len, mtInternal);
 55   _element_close_stack_low  = init_buf;
 56   _element_close_stack_high = init_buf + init_len;
 57   _element_close_stack_ptr  = init_buf + init_len - 1;
 58   _element_close_stack_ptr[0] = '\0';
 59 #endif
 60 
 61   // Make sure each log uses the same base for time stamps.
 62   if (is_open()) {
 63     _out->time_stamp().update_to(1);
 64   }
 65 }
 66 
 67 #ifdef ASSERT
 68 xmlStream::~xmlStream() {
 69   FREE_C_HEAP_ARRAY(char, _element_close_stack_low);

112       out()->print_raw(esc);
113       written++;
114     }
115   }
116 
117   // Print the clean remainder.  Usually, it is all of s.
118   if (written < len) {
119     out()->write(&s[written], len - written);
120   }
121 }
122 
123 // ------------------------------------------------------------------
124 // Outputs XML text, with special characters quoted.
125 void xmlStream::text(const char* format, ...) {
126   va_list ap;
127   va_start(ap, format);
128   va_text(format, ap);
129   va_end(ap);
130 }
131 









132 #define BUFLEN 2*K   /* max size of output of individual print methods */
133 
134 // ------------------------------------------------------------------
135 void xmlStream::va_tag(bool push, const char* format, va_list ap) {
136   assert_if_no_error(!inside_attrs(), "cannot print tag inside attrs");
137   char buffer[BUFLEN];
138   size_t len;
139   const char* kind = do_vsnprintf(buffer, BUFLEN, format, ap, false, len);
140   see_tag(kind, push);


141   print_raw("<");
142   write(kind, len);
143   _markup_state = (push ? HEAD : ELEM);
144 }
145 
146 #ifdef ASSERT
147 /// Debugging goo to make sure element tags nest properly.
148 
149 // ------------------------------------------------------------------
150 void xmlStream::see_tag(const char* tag, bool push) {
151   assert_if_no_error(!inside_attrs(), "cannot start new element inside attrs");
152   if (!push)  return;
153 
154   // tag goes up until either null or space:
155   const char* tag_end = strchr(tag, ' ');
156   size_t tag_len = (tag_end == nullptr) ? strlen(tag) : tag_end - tag;
157   assert(tag_len > 0, "tag must not be empty");
158   // push the tag onto the stack, pulling down the pointer
159   char* old_ptr  = _element_close_stack_ptr;
160   char* old_low  = _element_close_stack_low;

298   print_raw(">\n");
299   _markup_state = BODY;
300 }
301 
302 
303 // ------------------------------------------------------------------
304 // Outputs formatted text, followed by ">".
305 void xmlStream::end_head(const char* format, ...) {
306   va_list ap;
307   va_start(ap, format);
308   out()->vprint(format, ap);
309   va_end(ap);
310   end_head();
311 }
312 
313 
314 // ------------------------------------------------------------------
315 // Outputs "</kind>".
316 void xmlStream::tail(const char* kind) {
317   pop_tag(kind);


318   print_raw("</");
319   print_raw(kind);
320   print_raw(">\n");
321 }
322 
323 // ------------------------------------------------------------------
324 // Outputs "<kind_done ... stamp='D.DD'/> </kind>".
325 void xmlStream::done(const char* format, ...) {
326   va_list ap;
327   va_start(ap, format);
328   va_done(format, ap);
329   va_end(ap);
330 }
331 
332 // ------------------------------------------------------------------
333 // Outputs "<kind_done stamp='D.DD'/> </kind>".
334 // Because done_raw() doesn't need to format strings, it's simpler than
335 // done(), and can be called safely by fatal error handler.
336 void xmlStream::done_raw(const char* kind) {
337   print_raw("<");

359     kind_len = kind_end - kind;
360     int n = os::snprintf(buffer, sizeof(buffer), "%.*s_done%s", (int)kind_len, kind, kind + kind_len);
361     assert((size_t)n < sizeof(buffer), "Unexpected number of characters in string");
362   } else {
363     kind_len = format_len;
364     int n = os::snprintf(buffer, sizeof(buffer), "%s_done", kind);
365     assert((size_t)n < sizeof(buffer), "Unexpected number of characters in string");
366   }
367   // Output the trailing event with the timestamp.
368   va_begin_elem(buffer, ap);
369   stamp();
370   end_elem();
371   // Output the tail-tag of the enclosing element.
372   buffer[kind_len] = 0;
373   tail(buffer);
374 }
375 PRAGMA_DIAG_POP
376 
377 // Output a timestamp attribute.
378 void xmlStream::stamp() {
379   assert_if_no_error(inside_attrs(), "stamp must be an attribute");
380   print_raw(" stamp='");
381   out()->stamp();
382   print_raw("'");
383 }
384 
385 
386 // ------------------------------------------------------------------
387 // Output a method attribute, in the form " method='pkg/cls name sig'".
388 // This is used only when there is no ciMethod available.
389 void xmlStream::method(Method* method) {
390   assert_if_no_error(inside_attrs(), "printing attributes");
391   if (method == nullptr)  return;
392   print_raw(" method='");






393   method_text(method);
394   print("' bytes='%d'", method->code_size());
395   print(" count='%d'", method->invocation_count());






396   int bec = method->backedge_count();
397   if (bec != 0)  print(" backedge_count='%d'", bec);
398   print(" iicount='%d'", method->interpreter_invocation_count());
399   int throwouts = method->interpreter_throwout_count();
400   if (throwouts != 0)  print(" throwouts='%d'", throwouts);
401   MethodData* mdo = method->method_data();
402   if (mdo != nullptr) {
403     uint cnt;
404     cnt = mdo->decompile_count();
405     if (cnt != 0)  print(" decompiles='%d'", cnt);
406     for (uint reason = 0; reason < mdo->trap_reason_limit(); reason++) {
407       cnt = mdo->trap_count(reason);
408       if (cnt != 0)  print(" %s_traps='%d'", Deoptimization::trap_reason_name(reason), cnt);
409     }
410     cnt = mdo->overflow_trap_count();
411     if (cnt != 0)  print(" overflow_traps='%d'", cnt);
412     cnt = mdo->overflow_recompile_count();
413     if (cnt != 0)  print(" overflow_recompiles='%d'", cnt);
414   }
415 }
416 
417 void xmlStream::method_text(Method* method) {
418   ResourceMark rm;
419   assert_if_no_error(inside_attrs(), "printing attributes");
420   if (method == nullptr)  return;
421   text()->print("%s", method->method_holder()->external_name());
422   print_raw(" ");  // " " is easier for tools to parse than "::"
423   method->name()->print_symbol_on(text());
424   print_raw(" ");  // separator
425   method->signature()->print_symbol_on(text());
426 }
427 
428 
429 // ------------------------------------------------------------------
430 // Output a klass attribute, in the form " klass='pkg/cls'".
431 // This is used only when there is no ciKlass available.
432 void xmlStream::klass(Klass* klass) {
433   assert_if_no_error(inside_attrs(), "printing attributes");
434   if (klass == nullptr) return;
435   print_raw(" klass='");
436   klass_text(klass);
437   print_raw("'");



438 }
439 
440 void xmlStream::klass_text(Klass* klass) {
441   assert_if_no_error(inside_attrs(), "printing attributes");
442   if (klass == nullptr) return;
443   //klass->print_short_name(log->out());
444   klass->name()->print_symbol_on(out());




445 }
446 
447 void xmlStream::name(const Symbol* name) {
448   assert_if_no_error(inside_attrs(), "printing attributes");















449   if (name == nullptr)  return;
450   print_raw(" name='");
451   name_text(name);
452   print_raw("'");
453 }
454 
455 void xmlStream::name_text(const Symbol* name) {
456   assert_if_no_error(inside_attrs(), "printing attributes");








457   if (name == nullptr)  return;
458   //name->print_short_name(text());
459   name->print_symbol_on(text());






















460 }
461 
462 void xmlStream::object(const char* attr, Handle x) {
463   assert_if_no_error(inside_attrs(), "printing attributes");
464   if (x == nullptr)  return;
465   print_raw(" ");
466   print_raw(attr);
467   print_raw("='");
468   object_text(x);
469   print_raw("'");
470 }
471 
472 void xmlStream::object_text(Handle x) {
473   assert_if_no_error(inside_attrs(), "printing attributes");
474   if (x == nullptr)  return;
475   x->print_value_on(text());










476 }
477 
478 
479 void xmlStream::object(const char* attr, Metadata* x) {
480   assert_if_no_error(inside_attrs(), "printing attributes");
481   if (x == nullptr)  return;
482   print_raw(" ");
483   print_raw(attr);
484   print_raw("='");
485   object_text(x);
486   print_raw("'");
487 }
488 
489 void xmlStream::object_text(Metadata* x) {
490   assert_if_no_error(inside_attrs(), "printing attributes");
491   if (x == nullptr)  return;
492   //x->print_value_on(text());
493   if (x->is_method())
494     method_text((Method*)x);
495   else if (x->is_klass())
496     klass_text((Klass*)x);
497   else
498     ShouldNotReachHere(); // Add impl if this is reached.
499 }
500 
501 
502 void xmlStream::flush() {
503   out()->flush();
504   _last_flush = count();
505 }
506 
507 void xmlTextStream::flush() {
508   if (_outer_xmlStream == nullptr)  return;
509   _outer_xmlStream->flush();
510 }

 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "code/nmethod.hpp"
 27 #include "memory/allocation.hpp"
 28 #include "memory/allocation.inline.hpp"
 29 #include "memory/resourceArea.hpp"
 30 #include "oops/methodData.hpp"
 31 #include "oops/method.inline.hpp"
 32 #include "oops/oop.inline.hpp"
 33 #include "runtime/deoptimization.hpp"
 34 #include "runtime/handles.inline.hpp"
 35 #include "runtime/osThread.hpp"
 36 #include "runtime/vmOperations.hpp"
 37 #include "runtime/vmThread.hpp"
 38 #include "utilities/vmError.hpp"
 39 #include "utilities/xmlstream.hpp"
 40 
 41 // The XML stream is the contents of the LogFile (default hotspot_%p.log).
 42 // It is a superset of whatever might be displayed on the tty.
 43 // You can get to it by calls of the form xtty->...
 44 // Normal calls to tty->... just embed plain text among any markup
 45 // produced via the xtty API.
 46 // The xtty has sub-streams called xtty->text() and xtty->log_long().
 47 // These are ordinary output streams for writing unstructured text.
 48 // The format of this log file is both unstructured and constrained.
 49 //
 50 // Apart from possible race conditions, every line in the log file
 51 // is either an XML element (<tag ...>, or </tag>, or <tag .../>)
 52 // or is unstructured text.
 53 //
 54 // On any given line, if the first character is '<', then the last
 55 // character is '>' and the line consists of a single XML element,
 56 // which uses single quote '\'' to delimit any attribute values.
 57 // (The double-quote character '"' never appears, ever.)
 58 //
 59 // All other lines consist of unstructured text which is completely
 60 // free of the following characters: '<', '>', '&', '\'', '"'.  If
 61 // those characters are written to the tty (or to any other text
 62 // stream underlying the xtty), those characters, and no other
 63 // characters, are written as XML entities: "&lt;", "&gt;", "&amp;",
 64 // "&apos", "&quot".  There is no other use of the character '&'.
 65 //
 66 // The net effect is that you may select a range of tools to process
 67 // the marked-up logs, including XML parsers and simple line-oriented
 68 // Java or Unix tools.  The main concession you have to make to XML
 69 // is to convert the above five XML entities to single ASCII chars,
 70 // as you process attribute strings or unstructured text.
 71 //
 72 // It would be wise to ignore any XML tags that you do not recognize.
 73 // This can be done with grep, if you choose, because the log file
 74 // is line-structured.
 75 //
 76 // The log file collects the output from many contributing threads.
 77 // You should expect that an element of the form <writer thread='NNN'>
 78 // could appear almost anywhere, as the lines interleave.
 79 // It is straightforward to write a script to tease the log file
 80 // into thread-specific substreams.
 81 
 82 // Do not assert this condition if there's already another error reported.
 83 #define assert_if_no_error(cond, msg) \
 84   vmassert((cond) || VMError::is_error_reported(), msg)
 85 bool xmlStream::inside_attrs_or_error() {
 86   return inside_attrs() || VMError::is_error_reported();
 87 }
 88 
 89 void xmlStream::initialize(outputStream* out) {
 90   _out = out;
 91   _last_flush = 0;
 92   _markup_state = BODY;
 93   _text_init._outer_xmlStream = this;
 94   _text = &_text_init;
 95   _log_only = _text;
 96 
 97 #ifdef ASSERT
 98   _element_depth = 0;
 99   int   init_len = 100;
100   char* init_buf = NEW_C_HEAP_ARRAY(char, init_len, mtInternal);
101   _element_close_stack_low  = init_buf;
102   _element_close_stack_high = init_buf + init_len;
103   _element_close_stack_ptr  = init_buf + init_len - 1;
104   _element_close_stack_ptr[0] = '\0';
105 #endif
106 
107   // Make sure each log uses the same base for time stamps.
108   if (is_open()) {
109     _out->time_stamp().update_to(1);
110   }
111 }
112 
113 #ifdef ASSERT
114 xmlStream::~xmlStream() {
115   FREE_C_HEAP_ARRAY(char, _element_close_stack_low);

158       out()->print_raw(esc);
159       written++;
160     }
161   }
162 
163   // Print the clean remainder.  Usually, it is all of s.
164   if (written < len) {
165     out()->write(&s[written], len - written);
166   }
167 }
168 
169 // ------------------------------------------------------------------
170 // Outputs XML text, with special characters quoted.
171 void xmlStream::text(const char* format, ...) {
172   va_list ap;
173   va_start(ap, format);
174   va_text(format, ap);
175   va_end(ap);
176 }
177 
178 // ------------------------------------------------------------------
179 // Outputs XML attribute, with quotes and special characters quoted.
180 void xmlStream::attr(const char* attr, const char* format, ...) {
181   va_list ap;
182   va_start(ap, format);
183   va_attr(attr, format, ap);
184   va_end(ap);
185 }
186 
187 #define BUFLEN 2*K   /* max size of output of individual print methods */
188 
189 // ------------------------------------------------------------------
190 void xmlStream::va_tag(bool push, const char* format, va_list ap) {
191   assert_if_no_error(!inside_attrs(), "cannot print tag inside attrs");
192   char buffer[BUFLEN];
193   size_t len;
194   const char* kind = do_vsnprintf(buffer, BUFLEN, format, ap, false, len);
195   see_tag(kind, push);
196   // make sure all opening and/or closing tags begin in the first column
197   if (out()->position() > 0)  print_raw("\n");
198   print_raw("<");
199   write(kind, len);
200   _markup_state = (push ? HEAD : ELEM);
201 }
202 
203 #ifdef ASSERT
204 /// Debugging goo to make sure element tags nest properly.
205 
206 // ------------------------------------------------------------------
207 void xmlStream::see_tag(const char* tag, bool push) {
208   assert_if_no_error(!inside_attrs(), "cannot start new element inside attrs");
209   if (!push)  return;
210 
211   // tag goes up until either null or space:
212   const char* tag_end = strchr(tag, ' ');
213   size_t tag_len = (tag_end == nullptr) ? strlen(tag) : tag_end - tag;
214   assert(tag_len > 0, "tag must not be empty");
215   // push the tag onto the stack, pulling down the pointer
216   char* old_ptr  = _element_close_stack_ptr;
217   char* old_low  = _element_close_stack_low;

355   print_raw(">\n");
356   _markup_state = BODY;
357 }
358 
359 
360 // ------------------------------------------------------------------
361 // Outputs formatted text, followed by ">".
362 void xmlStream::end_head(const char* format, ...) {
363   va_list ap;
364   va_start(ap, format);
365   out()->vprint(format, ap);
366   va_end(ap);
367   end_head();
368 }
369 
370 
371 // ------------------------------------------------------------------
372 // Outputs "</kind>".
373 void xmlStream::tail(const char* kind) {
374   pop_tag(kind);
375   // make sure all opening and/or closing tags begin in the first column
376   if (out()->position() > 0)  print_raw("\n");
377   print_raw("</");
378   print_raw(kind);
379   print_raw(">\n");
380 }
381 
382 // ------------------------------------------------------------------
383 // Outputs "<kind_done ... stamp='D.DD'/> </kind>".
384 void xmlStream::done(const char* format, ...) {
385   va_list ap;
386   va_start(ap, format);
387   va_done(format, ap);
388   va_end(ap);
389 }
390 
391 // ------------------------------------------------------------------
392 // Outputs "<kind_done stamp='D.DD'/> </kind>".
393 // Because done_raw() doesn't need to format strings, it's simpler than
394 // done(), and can be called safely by fatal error handler.
395 void xmlStream::done_raw(const char* kind) {
396   print_raw("<");

418     kind_len = kind_end - kind;
419     int n = os::snprintf(buffer, sizeof(buffer), "%.*s_done%s", (int)kind_len, kind, kind + kind_len);
420     assert((size_t)n < sizeof(buffer), "Unexpected number of characters in string");
421   } else {
422     kind_len = format_len;
423     int n = os::snprintf(buffer, sizeof(buffer), "%s_done", kind);
424     assert((size_t)n < sizeof(buffer), "Unexpected number of characters in string");
425   }
426   // Output the trailing event with the timestamp.
427   va_begin_elem(buffer, ap);
428   stamp();
429   end_elem();
430   // Output the tail-tag of the enclosing element.
431   buffer[kind_len] = 0;
432   tail(buffer);
433 }
434 PRAGMA_DIAG_POP
435 
436 // Output a timestamp attribute.
437 void xmlStream::stamp() {
438   assert(inside_attrs_or_error(), "stamp must be an attribute");
439   print_raw(" stamp='");
440   out()->stamp();
441   print_raw("'");
442 }
443 
444 
445 // ------------------------------------------------------------------
446 // Output a method attribute, in the form " method='pkg/cls name sig'".
447 // This is used only when there is no ciMethod available.
448 void xmlStream::method(Method* method, const char* pfx) {
449   assert(inside_attrs_or_error(), "printing attributes");
450   if (method == nullptr)  return;
451   if (*pfx) {
452     print(" %smethod='", pfx);
453     method_text(method);
454     print_raw("'");
455     return;
456   }
457   print(" method='");
458   method_text(method);
459   print("' bytes='%d'", method->code_size());
460   print(" count='%d'", method->invocation_count());
461   if (RecordTraining) {
462     // print stuff about this method's compilation history
463     print(" highest_comp_level='%d'", method->highest_comp_level());
464     nmethod* nm = method->code();
465     if (nm != nullptr)  print(" last_compile_id='%d'", nm->compile_id());
466   }
467   int bec = method->backedge_count();
468   if (bec != 0)  print(" backedge_count='%d'", bec);
469   print(" iicount='%d'", method->interpreter_invocation_count());
470   int throwouts = method->interpreter_throwout_count();
471   if (throwouts != 0)  print(" throwouts='%d'", throwouts);
472   MethodData* mdo = method->method_data();
473   if (mdo != nullptr) {
474     uint cnt;
475     cnt = mdo->decompile_count();
476     if (cnt != 0)  print(" decompiles='%d'", cnt);
477     for (uint reason = 0; reason < mdo->trap_reason_limit(); reason++) {
478       cnt = mdo->trap_count(reason);
479       if (cnt != 0)  print(" %s_traps='%d'", Deoptimization::trap_reason_name(reason), cnt);
480     }
481     cnt = mdo->overflow_trap_count();
482     if (cnt != 0)  print(" overflow_traps='%d'", cnt);
483     cnt = mdo->overflow_recompile_count();
484     if (cnt != 0)  print(" overflow_recompiles='%d'", cnt);
485   }
486 }
487 
488 void xmlStream::method_text(Method* method) {
489   ResourceMark rm;
490   assert(inside_attrs_or_error(), "printing attributes");
491   if (method == nullptr)  return;
492   text()->print("%s", method->method_holder()->external_name());
493   print_raw(" ");  // " " is easier for tools to parse than "::"
494   method->name()->print_symbol_on(text());
495   print_raw(" ");  // separator
496   method->signature()->print_symbol_on(text());
497 }
498 
499 
500 // ------------------------------------------------------------------
501 // Output a klass attribute, in the form " klass='pkg/cls'".
502 // This is used only when there is no ciKlass available.
503 void xmlStream::klass(Klass* klass, const char* pfx) {
504   assert(inside_attrs_or_error(), "printing attributes");
505   if (klass == nullptr) return;
506   print(" %sklass='", pfx);
507   klass_text(klass);
508   print_raw("'");
509   if (klass->class_loader() != nullptr) {
510     loader(klass->class_loader(), pfx);
511   }
512 }
513 
514 void xmlStream::klass_text(Klass* klass) {
515   assert(inside_attrs_or_error(), "printing attributes");
516   if (klass == nullptr) return;
517   //klass->print_short_name(log->out());
518   klass->name()->print_symbol_on(out());
519   if (klass->is_hidden()) {
520     out()->print(" //hidden");
521     // FIXME:  maybe hash the contents of its classfile
522   }
523 }
524 
525 void xmlStream::loader(oop cl, const char* pfx) {
526   assert(inside_attrs_or_error(), "printing attributes");
527   if (cl == nullptr) return;
528   print(" %sloader='", pfx);
529   loader_text(cl);
530   print_raw("'");
531 }
532 
533 void xmlStream::loader_text(oop cl) {
534   assert(inside_attrs_or_error(), "printing attributes");
535   if (cl == nullptr) return;
536   oop id = java_lang_ClassLoader::nameAndId(cl);
537   if (id != nullptr)  string_text(id);
538 }
539 
540 void xmlStream::name(const Symbol* name, const char* pfx) {
541   assert(inside_attrs_or_error(), "printing attributes");
542   if (name == nullptr)  return;
543   print(" %sname='", pfx);
544   symbol_text(name);
545   print_raw("'");
546 }
547 
548 void xmlStream::signature(const Symbol* sig, const char* pfx) {
549   assert(inside_attrs_or_error(), "printing attributes");
550   if (sig == nullptr)  return;
551   print(" %ssignature='", pfx);
552   symbol_text(sig);
553   print_raw("'");
554 }
555 
556 void xmlStream::symbol_text(const Symbol* name) {
557   assert(inside_attrs_or_error(), "printing attributes");
558   if (name == nullptr)  return;
559   //name->print_short_name(text());
560   //name->print_symbol_on(text());  // this has odd escapes in it (\\x%04x)
561   const char* base = (const char*) name->base();
562   int len = name->utf8_length();
563   log_only()->write(base, len);
564 }
565 
566 void xmlStream::string_text(oop str) {
567   assert(inside_attrs_or_error(), "printing attributes");
568   if (str == nullptr)  return;
569   if (!java_lang_String::is_instance(str)) {
570     print("*** not a string*** ");
571     str->print_value_on(log_only());
572     return;
573   }
574   ResourceMark rm;
575   log_only()->print_raw(java_lang_String::as_utf8_string(str));
576 }
577 
578 void xmlStream::thread(Thread* t, const char* pfx) {
579   assert(inside_attrs_or_error(), "printing attributes");
580   intx tid = t == nullptr ? os::current_thread_id() : t->osthread()->thread_id();
581   guarantee(tid == (t == nullptr ? Thread::current() : t)->osthread()->thread_id(), "");
582   print(" %sthread='" INTX_FORMAT "'", pfx, tid);
583 }
584 
585 void xmlStream::object(const char* attr, Handle x) {
586   assert(inside_attrs_or_error(), "printing attributes");
587   if (x == nullptr)  return;
588   print_raw(" ");
589   print_raw(attr);
590   print_raw("='");
591   object_text(x);
592   print_raw("'");
593 }
594 
595 void xmlStream::object_text(Handle x) {
596   assert(inside_attrs_or_error(), "printing attributes");
597   if (x.is_null())  return;
598   if (java_lang_ClassLoader::is_instance(x())) {
599     print_raw("loader:");
600     loader_text(x());
601     return;
602   }
603   if (java_lang_String::is_instance(x())) {
604     print_raw("string:");
605     string_text(x());
606     return;
607   }
608   x->print_value_on(log_only());
609 }
610 
611 
612 void xmlStream::object(const char* attr, Metadata* x) {
613   assert(inside_attrs_or_error(), "printing attributes");
614   if (x == nullptr)  return;
615   print_raw(" ");
616   print_raw(attr);
617   print_raw("='");
618   object_text(x);
619   print_raw("'");
620 }
621 
622 void xmlStream::object_text(Metadata* x) {
623   assert(inside_attrs_or_error(), "printing attributes");
624   if (x == nullptr)  return;
625   //x->print_value_on(text());
626   if (x->is_method())
627     method_text((Method*)x);
628   else if (x->is_klass())
629     klass_text((Klass*)x);
630   else
631     ShouldNotReachHere(); // Add impl if this is reached.
632 }
633 
634 
635 void xmlStream::flush() {
636   out()->flush();
637   _last_flush = count();
638 }
639 
640 void xmlTextStream::flush() {
641   if (_outer_xmlStream == nullptr)  return;
642   _outer_xmlStream->flush();
643 }
< prev index next >