compileLog.cpp revision 11291:14556dc62f47
1/*
2 * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
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 "ci/ciMethod.hpp"
27#include "code/codeCache.hpp"
28#include "compiler/compileLog.hpp"
29#include "memory/allocation.inline.hpp"
30#include "oops/method.hpp"
31#include "runtime/mutexLocker.hpp"
32#include "runtime/os.hpp"
33
34CompileLog* CompileLog::_first = NULL;
35
36// ------------------------------------------------------------------
37// CompileLog::CompileLog
38CompileLog::CompileLog(const char* file_name, FILE* fp, intx thread_id)
39  : _context(_context_buffer, sizeof(_context_buffer))
40{
41  initialize(new(ResourceObj::C_HEAP, mtCompiler) fileStream(fp, true));
42  _file_end = 0;
43  _thread_id = thread_id;
44
45  _identities_limit = 0;
46  _identities_capacity = 400;
47  _identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
48  _file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler);
49   strcpy((char*)_file, file_name);
50
51  // link into the global list
52  { MutexLocker locker(CompileTaskAlloc_lock);
53    _next = _first;
54    _first = this;
55  }
56}
57
58CompileLog::~CompileLog() {
59  delete _out; // Close fd in fileStream::~fileStream()
60  _out = NULL;
61  // Remove partial file after merging in CompileLog::finish_log_on_error
62  unlink(_file);
63  FREE_C_HEAP_ARRAY(char, _identities);
64  FREE_C_HEAP_ARRAY(char, _file);
65}
66
67
68// see_tag, pop_tag:  Override the default do-nothing methods on xmlStream.
69// These methods provide a hook for managing the extra context markup.
70void CompileLog::see_tag(const char* tag, bool push) {
71  if (_context.size() > 0 && _out != NULL) {
72    _out->write(_context.base(), _context.size());
73    _context.reset();
74  }
75  xmlStream::see_tag(tag, push);
76}
77void CompileLog::pop_tag(const char* tag) {
78  _context.reset();  // toss any context info.
79  xmlStream::pop_tag(tag);
80}
81
82
83// ------------------------------------------------------------------
84// CompileLog::identify
85int CompileLog::identify(ciBaseObject* obj) {
86  if (obj == NULL)  return 0;
87  int id = obj->ident();
88  if (id < 0)  return id;
89  // If it has already been identified, just return the id.
90  if (id < _identities_limit && _identities[id] != 0)  return id;
91  // Lengthen the array, if necessary.
92  if (id >= _identities_capacity) {
93    int new_cap = _identities_capacity * 2;
94    if (new_cap <= id)  new_cap = id + 100;
95    _identities = REALLOC_C_HEAP_ARRAY(char, _identities, new_cap, mtCompiler);
96    _identities_capacity = new_cap;
97  }
98  while (id >= _identities_limit) {
99    _identities[_identities_limit++] = 0;
100  }
101  assert(id < _identities_limit, "oob");
102  // Mark this id as processed.
103  // (Be sure to do this before any recursive calls to identify.)
104  _identities[id] = 1;  // mark
105
106  // Now, print the object's identity once, in detail.
107  if (obj->is_metadata()) {
108    ciMetadata* mobj = obj->as_metadata();
109    if (mobj->is_klass()) {
110      ciKlass* klass = mobj->as_klass();
111      begin_elem("klass id='%d'", id);
112      name(klass);
113      if (!klass->is_loaded()) {
114        print(" unloaded='1'");
115      } else {
116        print(" flags='%d'", klass->modifier_flags());
117      }
118      end_elem();
119    } else if (mobj->is_method()) {
120      ciMethod* method = mobj->as_method();
121      ciSignature* sig = method->signature();
122      // Pre-identify items that we will need!
123      identify(sig->return_type());
124      for (int i = 0; i < sig->count(); i++) {
125        identify(sig->type_at(i));
126      }
127      begin_elem("method id='%d' holder='%d'",
128          id, identify(method->holder()));
129      name(method->name());
130      print(" return='%d'", identify(sig->return_type()));
131      if (sig->count() > 0) {
132        print(" arguments='");
133        for (int i = 0; i < sig->count(); i++) {
134          print((i == 0) ? "%d" : " %d", identify(sig->type_at(i)));
135        }
136        print("'");
137      }
138      if (!method->is_loaded()) {
139        print(" unloaded='1'");
140      } else {
141        print(" flags='%d'", (jchar) method->flags().as_int());
142        // output a few metrics
143        print(" bytes='%d'", method->code_size());
144        method->log_nmethod_identity(this);
145        //print(" count='%d'", method->invocation_count());
146        //int bec = method->backedge_count();
147        //if (bec != 0)  print(" backedge_count='%d'", bec);
148        print(" iicount='%d'", method->interpreter_invocation_count());
149      }
150      end_elem();
151    } else if (mobj->is_type()) {
152      BasicType type = mobj->as_type()->basic_type();
153      elem("type id='%d' name='%s'", id, type2name(type));
154    } else {
155      // Should not happen.
156      elem("unknown id='%d'", id);
157      ShouldNotReachHere();
158    }
159  } else if (obj->is_symbol()) {
160    begin_elem("symbol id='%d'", id);
161    name(obj->as_symbol());
162    end_elem();
163  } else {
164    // Should not happen.
165    elem("unknown id='%d'", id);
166  }
167  return id;
168}
169
170void CompileLog::name(ciSymbol* name) {
171  if (name == NULL)  return;
172  print(" name='");
173  name->print_symbol_on(text());  // handles quoting conventions
174  print("'");
175}
176
177void CompileLog::name(ciKlass* k) {
178  print(" name='");
179  if (!k->is_loaded()) {
180    text()->print("%s", k->name()->as_klass_external_name());
181  } else {
182    text()->print("%s", k->external_name());
183  }
184  print("'");
185}
186
187// ------------------------------------------------------------------
188// CompileLog::clear_identities
189// Forget which identities have been printed.
190void CompileLog::clear_identities() {
191  _identities_limit = 0;
192}
193
194// ------------------------------------------------------------------
195// CompileLog::finish_log_on_error
196//
197// Note: This function is called after fatal error, avoid unnecessary memory
198// or stack allocation, use only async-safe functions. It's possible JVM is
199// only partially initialized.
200void CompileLog::finish_log_on_error(outputStream* file, char* buf, int buflen) {
201  static bool called_exit = false;
202  if (called_exit)  return;
203  called_exit = true;
204
205  CompileLog* log = _first;
206  while (log != NULL) {
207    log->flush();
208    const char* partial_file = log->file();
209    int partial_fd = open(partial_file, O_RDONLY);
210    if (partial_fd != -1) {
211      // print/print_cr may need to allocate large stack buffer to format
212      // strings, here we use snprintf() and print_raw() instead.
213      file->print_raw("<compilation_log thread='");
214      jio_snprintf(buf, buflen, UINTX_FORMAT, log->thread_id());
215      file->print_raw(buf);
216      file->print_raw_cr("'>");
217
218      size_t nr; // number read into buf from partial log
219      // Copy data up to the end of the last <event> element:
220      julong to_read = log->_file_end;
221      while (to_read > 0) {
222        if (to_read < (julong)buflen)
223              nr = (size_t)to_read;
224        else  nr = buflen;
225        nr = read(partial_fd, buf, (int)nr);
226        if (nr <= 0)  break;
227        to_read -= (julong)nr;
228        file->write(buf, nr);
229      }
230
231      // Copy any remaining data inside a quote:
232      bool saw_slop = false;
233      int end_cdata = 0;  // state machine [0..2] watching for too many "]]"
234      while ((nr = read(partial_fd, buf, buflen-1)) > 0) {
235        buf[buflen-1] = '\0';
236        if (!saw_slop) {
237          file->print_raw_cr("<fragment>");
238          file->print_raw_cr("<![CDATA[");
239          saw_slop = true;
240        }
241        // The rest of this loop amounts to a simple copy operation:
242        // { file->write(buf, nr); }
243        // However, it must sometimes output the buffer in parts,
244        // in case there is a CDATA quote embedded in the fragment.
245        const char* bufp;  // pointer into buf
246        size_t nw; // number written in each pass of the following loop:
247        for (bufp = buf; nr > 0; nr -= nw, bufp += nw) {
248          // Write up to any problematic CDATA delimiter (usually all of nr).
249          for (nw = 0; nw < nr; nw++) {
250            // First, scan ahead into the buf, checking the state machine.
251            switch (bufp[nw]) {
252            case ']':
253              if (end_cdata < 2)   end_cdata += 1;  // saturating counter
254              continue;  // keep scanning
255            case '>':
256              if (end_cdata == 2)  break;  // found CDATA delimiter!
257              // else fall through:
258            default:
259              end_cdata = 0;
260              continue;  // keep scanning
261            }
262            // If we get here, nw is pointing at a bad '>'.
263            // It is very rare for this to happen.
264            // However, this code has been tested by introducing
265            // CDATA sequences into the compilation log.
266            break;
267          }
268          // Now nw is the number of characters to write, usually == nr.
269          file->write(bufp, nw);
270          if (nw < nr) {
271            // We are about to go around the loop again.
272            // But first, disrupt the ]]> by closing and reopening the quote.
273            file->print_raw("]]><![CDATA[");
274            end_cdata = 0;  // reset state machine
275          }
276        }
277      }
278      if (saw_slop) {
279        file->print_raw_cr("]]>");
280        file->print_raw_cr("</fragment>");
281      }
282      file->print_raw_cr("</compilation_log>");
283      close(partial_fd);
284    }
285    CompileLog* next_log = log->_next;
286    delete log; // Removes partial file
287    log = next_log;
288  }
289  _first = NULL;
290}
291
292// ------------------------------------------------------------------
293// CompileLog::finish_log
294//
295// Called during normal shutdown. For now, any clean-up needed in normal
296// shutdown is also needed in VM abort, so is covered by finish_log_on_error().
297// Just allocate a buffer and call finish_log_on_error().
298void CompileLog::finish_log(outputStream* file) {
299  char buf[4 * K];
300  finish_log_on_error(file, buf, sizeof(buf));
301}
302
303// ------------------------------------------------------------------
304// CompileLog::inline_success
305//
306// Print about successful method inlining.
307void CompileLog::inline_success(const char* reason) {
308  begin_elem("inline_success reason='");
309  text("%s", reason);
310  end_elem("'");
311}
312
313// ------------------------------------------------------------------
314// CompileLog::inline_fail
315//
316// Print about failed method inlining.
317void CompileLog::inline_fail(const char* reason) {
318  begin_elem("inline_fail reason='");
319  text("%s", reason);
320  end_elem("'");
321}
322
323// ------------------------------------------------------------------
324// CompileLog::set_context
325//
326// Set XML tag as an optional marker - it is printed only if
327// there are other entries after until it is reset.
328void CompileLog::set_context(const char* format, ...) {
329  va_list ap;
330  va_start(ap, format);
331  clear_context();
332  _context.print("<");
333  _context.vprint(format, ap);
334  _context.print_cr("/>");
335  va_end(ap);
336}
337
338// ------------------------------------------------------------------
339// CompileLog::code_cache_state
340//
341// Print code cache state.
342void CompileLog::code_cache_state() {
343  begin_elem("code_cache");
344  CodeCache::log_state(this);
345  end_elem("%s", "");
346}
347