hotspot/src/share/vm/compiler/compileLog.hpp
author drchase
Fri, 09 May 2014 16:50:54 -0400
changeset 24424 2658d7834c6e
parent 24002 4e6a72032a99
permissions -rw-r--r--
8037816: Fix for 8036122 breaks build with Xcode5/clang Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
     2
 * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_COMPILER_COMPILELOG_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_COMPILER_COMPILELOG_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "utilities/xmlstream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    30
class ciBaseObject;
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 22234
diff changeset
    31
class ciKlass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ciObject;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    33
class ciMetadata;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ciSymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// CompileLog
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// An open stream for logging information about activities in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// compiler thread.  There is exactly one per CompilerThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// if the +LogCompilation switch is enabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class CompileLog : public xmlStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  const char*   _file;           // name of file where XML goes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  julong        _file_end;       // last good end of file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  intx          _thread_id;      // which compile thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  stringStream  _context;        // optional, killable context marker
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  char          _context_buffer[100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  char*         _identities;     // array of boolean
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int           _identities_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int           _identities_capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  CompileLog*   _next;           // static chain of all logs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static CompileLog* _first;     // head of static chain
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
    58
  void va_tag(bool push, const char* format, va_list ap) ATTRIBUTE_PRINTF(3, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 public:
17876
7313e6d57e36 8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents: 13964
diff changeset
    61
  CompileLog(const char* file_name, FILE* fp, intx thread_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ~CompileLog();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  intx          thread_id()                      { return _thread_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  const char*   file()                           { return _file; }
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    66
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    67
  // Optional context marker, to help place actions that occur during
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    68
  // parsing. If there is no log output until the next context string
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    69
  // or reset, context string will be silently ignored
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  stringStream* context()                        { return &_context; }
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    71
  void    clear_context()                        { context()->reset(); }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24002
diff changeset
    72
  void      set_context(const char* format, ...) ATTRIBUTE_PRINTF(2, 3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void          name(ciSymbol* s);               // name='s'
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    75
  void          name(Symbol* s)                  { xmlStream::name(s); }
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 22234
diff changeset
    76
  void          name(ciKlass* k);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Output an object description, return obj->ident().
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    79
  int           identify(ciBaseObject* obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void          clear_identities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    82
  void inline_fail   (const char* reason);
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    83
  void inline_success(const char* reason);
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    84
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // virtuals
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  virtual void see_tag(const char* tag, bool push);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual void pop_tag(const char* tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // make a provisional end of log mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void mark_file_end() { _file_end = out()->count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    92
  // Print code cache statistics
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    93
  void code_cache_state();
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13728
diff changeset
    94
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // copy all logs to the given stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static void finish_log(outputStream* out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static void finish_log_on_error(outputStream* out, char *buf, int buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    99
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   100
#endif // SHARE_VM_COMPILER_COMPILELOG_HPP