hotspot/src/share/vm/ci/ciMethodBlocks.hpp
author kvn
Fri, 08 May 2009 10:44:20 -0700
changeset 2867 69187054225f
parent 1399 9648dfd4ce09
child 5547 f4b087cbb361
permissions -rw-r--r--
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits Summary: Cache Jvmti and DTrace flags used by Compiler. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 199
diff changeset
     2
 * Copyright 2006-2008 Sun Microsystems, Inc.  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
 *
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class ciBlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
typedef short ciBlockIndex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ciMethodBlocks : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  ciMethod *_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  Arena *_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  GrowableArray<ciBlock *>  *_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  ciBlock  **_bci_to_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  int _num_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  int _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  void do_analysis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  ciMethodBlocks(Arena *arena, ciMethod *meth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  ciBlock *block_containing(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  ciBlock *block(int index)  { return _blocks->at(index); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ciBlock *make_block_at(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ciBlock *split_block_at(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  bool is_block_start(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int num_blocks()  { return _num_blocks;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  void clear_processed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 670
diff changeset
    51
  ciBlock *make_dummy_block(); // a block not associated with a bci
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 670
diff changeset
    52
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void dump();
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
class ciBlock : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  int _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  int _start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int _limit_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int _control_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  uint _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  int _ex_start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  int _ex_limit_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  ciMethod *_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    Processed   = (1 << 0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    Handler     = (1 << 1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    MayThrow    = (1 << 2),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    DoesJsr     = (1 << 3),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    DoesRet     = (1 << 4),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    RetTarget   = (1 << 5),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    HasHandler  = (1 << 6)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    fall_through_bci = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 670
diff changeset
    86
  ciBlock(ciMethod *method, int index, int start_bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int start_bci() const         { return _start_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int limit_bci() const         { return _limit_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int control_bci() const       { return _control_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int index() const             { return _idx; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  void set_start_bci(int bci)   { _start_bci = bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void set_limit_bci(int bci)   { _limit_bci = bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void set_control_bci(int bci) { _control_bci = bci;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void set_exception_range(int start_bci, int limit_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  int ex_start_bci() const      { return _ex_start_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int ex_limit_bci() const      { return _ex_limit_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  bool contains(int bci) const { return start_bci() <= bci && bci < limit_bci(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // flag handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  bool  processed() const           { return (_flags & Processed) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool  is_handler() const          { return (_flags & Handler) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  bool  may_throw() const           { return (_flags & MayThrow) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  bool  does_jsr() const            { return (_flags & DoesJsr) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  bool  does_ret() const            { return (_flags & DoesRet) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  bool  has_handler() const         { return (_flags & HasHandler) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  bool  is_ret_target() const       { return (_flags & RetTarget) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void  set_processed()             { _flags |= Processed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void  clear_processed()           { _flags &= ~Processed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void  set_handler()               { _flags |= Handler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void  set_may_throw()             { _flags |= MayThrow; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void  set_does_jsr()              { _flags |= DoesJsr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void  clear_does_jsr()            { _flags &= ~DoesJsr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void  set_does_ret()              { _flags |= DoesRet; }
199
fb51d01039ff 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 1
diff changeset
   114
  void  clear_does_ret()            { _flags &= ~DoesRet; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void  set_is_ret_target()         { _flags |= RetTarget; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void  set_has_handler()           { _flags |= HasHandler; }
199
fb51d01039ff 6621084: ciMethodBlocks::split_block_at() is broken for methods with exception handler
kvn
parents: 1
diff changeset
   117
  void  clear_exception_handler()   { _flags &= ~Handler; _ex_start_bci = -1; _ex_limit_bci = -1; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  ciMethod *method() const          { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void print_on(outputStream* st) const  PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
};