hotspot/src/share/vm/c1/c1_Compilation.hpp
author xdono
Mon, 15 Dec 2008 16:55:11 -0800
changeset 1623 a0dd9009e992
parent 1 489c9b5090e2
child 5353 30f4b75f8005
permissions -rw-r--r--
6785258: Update copyright year Summary: Update copyright for files that have been modified starting July 2008 to Dec 2008 Reviewed-by: katleman, ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class BlockBegin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class XHandlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class ExceptionInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class DebugInformationRecorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class FrameMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class IR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class IRScope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class Instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class LinearScan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class OopMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class LIR_Emitter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class LIR_Assembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class CodeEmitInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class ValueStack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class LIR_OprDesc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class C1_MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class CFGPrinter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
typedef LIR_OprDesc* LIR_Opr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
define_array(BasicTypeArray, BasicType)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
define_stack(BasicTypeList, BasicTypeArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
define_array(ExceptionInfoArray, ExceptionInfo*)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
define_stack(ExceptionInfoList,  ExceptionInfoArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class Compilation: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  friend class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static Arena* _arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static Arena* arena() { return _arena; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static Compilation* _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // compilation specifics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  AbstractCompiler*  _compiler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  ciEnv*             _env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  ciMethod*          _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  int                _osr_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  IR*                _hir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  int                _max_spills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  FrameMap*          _frame_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  C1_MacroAssembler* _masm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  bool               _needs_debug_information;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  bool               _has_exception_handlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool               _has_fpu_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool               _has_unsafe_access;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  const char*        _bailout_msg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ExceptionInfoList* _exception_info_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  ExceptionHandlerTable _exception_handler_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ImplicitExceptionTable _implicit_exception_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  LinearScan*        _allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  CodeOffsets        _offsets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  CodeBuffer         _code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // compilation helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void build_hir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void emit_lir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void emit_code_epilog(LIR_Assembler* assembler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  int  emit_code_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  int  compile_java_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void install_code(int frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void compile_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  void generate_exception_handler_table();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  ExceptionInfoList* exception_info_list() const { return _exception_info_list; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  ExceptionHandlerTable* exception_handler_table() { return &_exception_handler_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  LinearScan* allocator()                          { return _allocator;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void        set_allocator(LinearScan* allocator) { _allocator = allocator; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  Instruction*       _current_instruction;       // the instruction currently being processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  Instruction*       _last_instruction_printed;  // the last instruction printed during traversal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method, int osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  ~Compilation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static Compilation* current_compilation()      { return _compilation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  ciEnv* env() const                             { return _env; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  AbstractCompiler* compiler() const             { return _compiler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool needs_debug_information() const           { return _needs_debug_information; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  bool has_exception_handlers() const            { return _has_exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool has_fpu_code() const                      { return _has_fpu_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool has_unsafe_access() const                 { return _has_unsafe_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  ciMethod* method() const                       { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  int osr_bci() const                            { return _osr_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  bool is_osr_compile() const                    { return osr_bci() >= 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  IR* hir() const                                { return _hir; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  int max_spills() const                         { return _max_spills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  FrameMap* frame_map() const                    { return _frame_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  CodeBuffer* code()                             { return &_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  C1_MacroAssembler* masm() const                { return _masm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  CodeOffsets* offsets()                         { return &_offsets; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // setters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  void set_needs_debug_information(bool f)       { _needs_debug_information = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  void set_has_exception_handlers(bool f)        { _has_exception_handlers = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  void set_has_fpu_code(bool f)                  { _has_fpu_code = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  void set_has_unsafe_access(bool f)             { _has_unsafe_access = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Add a set of exception handlers covering the given PC offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Statistics gathering
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  void notice_inlined_method(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  Dependencies* dependency_recorder() const; // = _env->dependencies()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  ImplicitExceptionTable* implicit_exception_table()     { return &_implicit_exception_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  Instruction* current_instruction() const       { return _current_instruction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  Instruction* set_current_instruction(Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    Instruction* previous = _current_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    _current_instruction = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    return previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  void maybe_print_current_instruction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // error handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  void bailout(const char* msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool bailed_out() const                        { return _bailout_msg != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  const char* bailout_msg() const                { return _bailout_msg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // timers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static void print_timers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // debugging support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // produces a file named c1compileonly in the current directory with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // directives to compile only the current method and it's inlines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // The file can be passed to the command line option -XX:Flags=<filename>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void compile_only_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void compile_only_this_scope(outputStream* st, IRScope* scope);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void exclude_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// Macro definitions for unified bailout-support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// The methods bailout() and bailed_out() are present in all classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// that might bailout, but forward all calls to Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#define BAILOUT(msg)               { bailout(msg); return;              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
#define BAILOUT_(msg, res)         { bailout(msg); return res;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
#define CHECK_BAILOUT()            { if (bailed_out()) return;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
#define CHECK_BAILOUT_(res)        { if (bailed_out()) return res;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
class InstructionMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  Compilation* _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  Instruction*  _previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  InstructionMark(Compilation* compilation, Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    _compilation = compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    _previous = _compilation->set_current_instruction(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  ~InstructionMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    _compilation->set_current_instruction(_previous);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
// Base class for objects allocated by the compiler in the compilation arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void* operator new(size_t size) { return Compilation::arena()->Amalloc(size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// Class for aggregating exception handler information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// Effectively extends XHandlers class with PC offset of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// potentially exception-throwing instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// This class is used at the end of the compilation to build the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// ExceptionHandlerTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
class ExceptionInfo: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int             _pco;                // PC of potentially exception-throwing instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  XHandlers*      _exception_handlers; // flat list of exception handlers covering this PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  ExceptionInfo(int pco, XHandlers* exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    : _pco(pco)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    , _exception_handlers(exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  int pco()                                      { return _pco; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  XHandlers* exception_handlers()                { return _exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
};