hotspot/src/share/vm/opto/type.hpp
author kvn
Tue, 23 Jun 2009 17:52:29 -0700
changeset 3173 c15503e54406
parent 2154 72a9b7284ccf
child 3180 c589129153a4
permissions -rw-r--r--
6837094: False positive for "meet not symmetric" failure Summary: Have the meet not symmetric check recursively do the interface-vs-oop check on array subtypes. Reviewed-by: jrose Contributed-by: rasbold@google.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2019
diff changeset
     2
 * Copyright 1997-2009 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
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Optimization - Graph Style
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// This class defines a Type lattice.  The lattice is used in the constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// propagation algorithms, and for some type-checking of the iloc code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Basic types include RSD's (lower bound, upper bound, stride for integers),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// float & double precision constants, sets of data-labels and code-labels.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The complete lattice is described below.  Subtypes have no relationship to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// up or down in the lattice; that is entirely determined by the behavior of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// the MEET/JOIN functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class Dict;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class Type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class   TypeD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class   TypeF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class   TypeInt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class   TypeLong;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
    44
class   TypeNarrowOop;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class   TypeAry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class   TypeTuple;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class   TypePtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class     TypeRawPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class     TypeOopPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class       TypeInstPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class       TypeAryPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class       TypeKlassPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//------------------------------Type-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Basic Type object, represents a set of primitive Values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// Types are hash-cons'd into a private class dictionary, so only one of each
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// different kind of Type exists.  Types are never modified after creation, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// all their interesting fields are constant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
class Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  enum TYPES {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    Bad=0,                      // Type check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    Control,                    // Control of code (not in lattice)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    Top,                        // Top of the lattice
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    Int,                        // Integer range (lo-hi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    Long,                       // Long integer range (lo-hi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    Half,                       // Placeholder half of doubleword
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
    68
    NarrowOop,                  // Compressed oop pointer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    Tuple,                      // Method signature or object layout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    Array,                      // Array types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    AnyPtr,                     // Any old raw, klass, inst, or array pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    RawPtr,                     // Raw (non-oop) pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    OopPtr,                     // Any and all Java heap entities
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    InstPtr,                    // Instance pointers (non-array objects)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    AryPtr,                     // Array pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    KlassPtr,                   // Klass pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // (Ptr order matters:  See is_ptr, isa_ptr, is_oopptr, isa_oopptr.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    Function,                   // Function signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    Abio,                       // Abstract I/O
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    Return_Address,             // Subroutine return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    Memory,                     // Abstract store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    FloatTop,                   // No float value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    FloatCon,                   // Floating point constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    FloatBot,                   // Any float value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    DoubleTop,                  // No double value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    DoubleCon,                  // Double precision constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    DoubleBot,                  // Any double value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    Bottom,                     // Bottom of lattice
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    lastype                     // Bogus ending type (not in lattice)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Signal values for offsets from a base pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  enum OFFSET_SIGNALS {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    OffsetTop = -2000000000,    // undefined offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    OffsetBot = -2000000001     // any possible offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Min and max WIDEN values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  enum WIDEN {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    WidenMin = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    WidenMax = 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Dictionary of types shared among compilations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static Dict* _shared_type_dict;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static int uhash( const Type *const t );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Structural equality check.  Assumes that cmp() has already compared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // the _base types and thus knows it can cast 't' appropriately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Top-level hash-table of types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static Dict *type_dict() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    return Compile::current()->type_dict();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // DUAL operation: reflect around lattice centerline.  Used instead of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // join to ensure my lattice is symmetric up and down.  Dual is computed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // lazily, on demand, and cached in _dual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  const Type *_dual;            // Cached dual value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Table for efficient dualing of base types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static const TYPES dual_type[lastype];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Each class of type is also identified by its base.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  const TYPES _base;            // Enum of Types type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  Type( TYPES t ) : _dual(NULL),  _base(t) {} // Simple types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // ~Type();                   // Use fast deallocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  const Type *hashcons();       // Hash-cons the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  inline void* operator new( size_t x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    Compile* compile = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    compile->set_type_last_size(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    void *temp = compile->type_arena()->Amalloc_D(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    compile->set_type_hwm(temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  inline void operator delete( void* ptr ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    Compile* compile = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    compile->type_arena()->Afree(ptr,compile->type_last_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Initialize the type system for a particular compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  static void Initialize(Compile* compile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Initialize the types shared by all compilations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static void Initialize_shared(Compile* compile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  TYPES base() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    assert(_base > Bad && _base < lastype, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    return _base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Create a new hash-consd type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static const Type *make(enum TYPES);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Test for equivalence of types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static int cmp( const Type *const t1, const Type *const t2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Test for higher or equal in lattice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int higher_equal( const Type *t ) const { return !cmp(meet(t),t); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // MEET operation; lower in lattice.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  const Type *meet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // WIDEN: 'widens' for Ints and other range types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  virtual const Type *widen( const Type *old ) const { return this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // NARROW: complement for widen, used by pessimistic phases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual const Type *narrow( const Type *old ) const { return this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // DUAL operation: reflect around lattice centerline.  Used instead of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // join to ensure my lattice is symmetric up and down.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  const Type *dual() const { return _dual; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // Compute meet dependent on base type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // JOIN operation; higher in lattice.  Done by finding the dual of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // meet of the dual of the 2 inputs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  const Type *join( const Type *t ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return dual()->meet(t->dual())->dual(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Modified version of JOIN adapted to the needs Node::Value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Normalizes all empty values to TOP.  Does not kill _widen bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Currently, it also works around limitations involving interface types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  virtual const Type *filter( const Type *kills ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
3173
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   193
#ifdef ASSERT
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   194
  // One type is interface, the other is oop
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   195
  virtual bool interface_vs_oop(const Type *t) const;
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   196
#endif
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   197
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   198
  // Returns true if this pointer points at memory which contains a
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   199
  // compressed oop references.
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   200
  bool is_ptr_to_narrowoop() const;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // Convenience access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  float getf() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  double getd() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  const TypeInt    *is_int() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  const TypeInt    *isa_int() const;             // Returns NULL if not an Int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  const TypeLong   *is_long() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  const TypeLong   *isa_long() const;            // Returns NULL if not a Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  const TypeD      *is_double_constant() const;  // Asserts it is a DoubleCon
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  const TypeD      *isa_double_constant() const; // Returns NULL if not a DoubleCon
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  const TypeF      *is_float_constant() const;   // Asserts it is a FloatCon
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  const TypeF      *isa_float_constant() const;  // Returns NULL if not a FloatCon
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  const TypeTuple  *is_tuple() const;            // Collection of fields, NOT a pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  const TypeAry    *is_ary() const;              // Array, NOT array pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  const TypePtr    *is_ptr() const;              // Asserts it is a ptr type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  const TypePtr    *isa_ptr() const;             // Returns NULL if not ptr type
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   218
  const TypeRawPtr *isa_rawptr() const;          // NOT Java oop
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   219
  const TypeRawPtr *is_rawptr() const;           // Asserts is rawptr
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   220
  const TypeNarrowOop  *is_narrowoop() const;    // Java-style GC'd pointer
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   221
  const TypeNarrowOop  *isa_narrowoop() const;   // Returns NULL if not oop ptr type
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   222
  const TypeOopPtr   *isa_oopptr() const;        // Returns NULL if not oop ptr type
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   223
  const TypeOopPtr   *is_oopptr() const;         // Java-style GC'd pointer
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   224
  const TypeKlassPtr *isa_klassptr() const;      // Returns NULL if not KlassPtr
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   225
  const TypeKlassPtr *is_klassptr() const;       // assert if not KlassPtr
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   226
  const TypeInstPtr  *isa_instptr() const;       // Returns NULL if not InstPtr
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   227
  const TypeInstPtr  *is_instptr() const;        // Instance
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   228
  const TypeAryPtr   *isa_aryptr() const;        // Returns NULL if not AryPtr
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   229
  const TypeAryPtr   *is_aryptr() const;         // Array oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  virtual bool      is_finite() const;           // Has a finite value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  virtual bool      is_nan()    const;           // Is not a number (NaN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   233
  // Returns this ptr type or the equivalent ptr type for this compressed pointer.
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   234
  const TypePtr* make_ptr() const;
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   235
  // Returns this compressed pointer or the equivalent compressed version
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   236
  // of this pointer type.
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   237
  const TypeNarrowOop* make_narrowoop() const;
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   238
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Special test for register pressure heuristic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  bool is_floatingpoint() const;        // True if Float or Double base type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Do you have memory, directly or through a tuple?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  bool has_memory( ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Are you a pointer type or not?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  bool isa_oop_ptr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  virtual bool singleton(void) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // TRUE if type is above the lattice centerline, and is therefore vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  virtual bool empty(void) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // Return a hash for this type.  The hash function is public so ConNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // (constants) can hash on their constant, which is represented by a Type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  virtual int hash() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Map ideal registers (machine types) to ideal types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  static const Type *mreg2type[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // Printing, statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  static const char * const msg[lastype]; // Printable strings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void         dump_on(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  void         dump() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    dump_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  static  void dump_stats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  static  void verify_lastype();          // Check that arrays match type enum
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  void typerr(const Type *t) const; // Mixing types error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Create basic type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  static const Type* get_const_basic_type(BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    assert((uint)type <= T_CONFLICT && _const_basic_type[type] != NULL, "bad type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    return _const_basic_type[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Mapping to the array element's basic type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  BasicType array_element_basic_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Create standard type for a ciType:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  static const Type* get_const_type(ciType* type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // Create standard zero value:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  static const Type* get_zero_type(BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    assert((uint)type <= T_CONFLICT && _zero_type[type] != NULL, "bad type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    return _zero_type[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Report if this is a zero value (not top).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  bool is_zero_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    BasicType type = basic_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    if (type == T_VOID || type >= T_CONFLICT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      return (this == _zero_type[type]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  static const Type *ABIO;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  static const Type *BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  static const Type *CONTROL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  static const Type *DOUBLE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  static const Type *FLOAT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  static const Type *HALF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  static const Type *MEMORY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  static const Type *MULTI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  static const Type *RETURN_ADDRESS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  static const Type *TOP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // Mapping from compiler type to VM BasicType
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  BasicType basic_type() const { return _basic_type[_base]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // Mapping from CI type system to compiler type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  static const Type* get_typeflow_type(ciType* type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // support arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  static const BasicType _basic_type[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  static const Type*        _zero_type[T_CONFLICT+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  static const Type* _const_basic_type[T_CONFLICT+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
//------------------------------TypeF------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// Class of Float-Constant Types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
class TypeF : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  TypeF( float f ) : Type(FloatCon), _f(f) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  const float _f;               // Float constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  static const TypeF *make(float f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  virtual bool        is_finite() const;  // Has a finite value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  virtual bool        is_nan()    const;  // Is not a number (NaN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  static const TypeF *ZERO; // positive zero only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static const TypeF *ONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
//------------------------------TypeD------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
// Class of Double-Constant Types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
class TypeD : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  TypeD( double d ) : Type(DoubleCon), _d(d) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  const double _d;              // Double constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  static const TypeD *make(double d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  virtual bool        is_finite() const;  // Has a finite value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  virtual bool        is_nan()    const;  // Is not a number (NaN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  static const TypeD *ZERO; // positive zero only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  static const TypeD *ONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
//------------------------------TypeInt----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
// Class of integer ranges, the set of integers between a lower bound and an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
// upper bound, inclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
class TypeInt : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  TypeInt( jint lo, jint hi, int w );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  const jint _lo, _hi;          // Lower bound, upper bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  const short _widen;           // Limit on times we widen this sucker
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  static const TypeInt *make(jint lo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // must always specify w
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  static const TypeInt *make(jint lo, jint hi, int w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // Check for single integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  int is_con() const { return _lo==_hi; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  bool is_con(int i) const { return is_con() && _lo == i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  jint get_con() const { assert( is_con(), "" );  return _lo; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  virtual bool        is_finite() const;  // Has a finite value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  virtual const Type *widen( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  virtual const Type *narrow( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Do not kill _widen bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  virtual const Type *filter( const Type *kills ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  static const TypeInt *MINUS_1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  static const TypeInt *ZERO;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  static const TypeInt *ONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  static const TypeInt *BOOL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  static const TypeInt *CC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  static const TypeInt *CC_LT;  // [-1]  == MINUS_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  static const TypeInt *CC_GT;  // [1]   == ONE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  static const TypeInt *CC_EQ;  // [0]   == ZERO
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  static const TypeInt *CC_LE;  // [-1,0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  static const TypeInt *CC_GE;  // [0,1] == BOOL (!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  static const TypeInt *BYTE;
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2019
diff changeset
   423
  static const TypeInt *UBYTE;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  static const TypeInt *CHAR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  static const TypeInt *SHORT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  static const TypeInt *POS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  static const TypeInt *POS1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  static const TypeInt *INT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  static const TypeInt *SYMINT; // symmetric range [-max_jint..max_jint]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
//------------------------------TypeLong---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
// Class of long integer ranges, the set of integers between a lower bound and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
// an upper bound, inclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
class TypeLong : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  TypeLong( jlong lo, jlong hi, int w );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  const jlong _lo, _hi;         // Lower bound, upper bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  const short _widen;           // Limit on times we widen this sucker
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  static const TypeLong *make(jlong lo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // must always specify w
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  static const TypeLong *make(jlong lo, jlong hi, int w);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // Check for single integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  int is_con() const { return _lo==_hi; }
392
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 360
diff changeset
   456
  bool is_con(int i) const { return is_con() && _lo == i; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  jlong get_con() const { assert( is_con(), "" ); return _lo; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  virtual bool        is_finite() const;  // Has a finite value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  virtual const Type *widen( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  virtual const Type *narrow( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // Do not kill _widen bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  virtual const Type *filter( const Type *kills ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  static const TypeLong *MINUS_1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  static const TypeLong *ZERO;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  static const TypeLong *ONE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  static const TypeLong *POS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  static const TypeLong *LONG;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  static const TypeLong *INT;    // 32-bit subrange [min_jint..max_jint]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  static const TypeLong *UINT;   // 32-bit unsigned [0..max_juint]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  virtual void dump2( Dict &d, uint, outputStream *st  ) const;// Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
//------------------------------TypeTuple--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
// Class of Tuple Types, essentially type collections for function signatures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
// and class layouts.  It happens to also be a fast cache for the HotSpot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
// signature types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
class TypeTuple : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  TypeTuple( uint cnt, const Type **fields ) : Type(Tuple), _cnt(cnt), _fields(fields) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  const uint          _cnt;              // Count of fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  const Type ** const _fields;           // Array of field types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Accessors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  uint cnt() const { return _cnt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  const Type* field_at(uint i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    assert(i < _cnt, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    return _fields[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  void set_field_at(uint i, const Type* t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    assert(i < _cnt, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    _fields[i] = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  static const TypeTuple *make( uint cnt, const Type **fields );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  static const TypeTuple *make_range(ciSignature *sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  static const TypeTuple *make_domain(ciInstanceKlass* recv, ciSignature *sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // Subroutine call type with space allocated for argument types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  static const Type **fields( uint arg_cnt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  static const TypeTuple *IFBOTH;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  static const TypeTuple *IFFALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  static const TypeTuple *IFTRUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  static const TypeTuple *IFNEITHER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  static const TypeTuple *LOOPBODY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  static const TypeTuple *MEMBAR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  static const TypeTuple *STORECONDITIONAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  static const TypeTuple *START_I2C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  static const TypeTuple *INT_PAIR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  static const TypeTuple *LONG_PAIR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  virtual void dump2( Dict &d, uint, outputStream *st  ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
//------------------------------TypeAry----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
// Class of Array Types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
class TypeAry : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  TypeAry( const Type *elem, const TypeInt *size) : Type(Array),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    _elem(elem), _size(size) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  const Type *_elem;            // Element type of array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  const TypeInt *_size;         // Elements in array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  friend class TypeAryPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  static const TypeAry *make(  const Type *elem, const TypeInt *size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  bool ary_must_be_exact() const;  // true if arrays of such are never generic
3173
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   554
#ifdef ASSERT
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   555
  // One type is interface, the other is oop
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   556
  virtual bool interface_vs_oop(const Type *t) const;
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   557
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  virtual void dump2( Dict &d, uint, outputStream *st  ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
//------------------------------TypePtr----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// Class of machine Pointer Types: raw data, instances or arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
// If the _base enum is AnyPtr, then this refers to all of the above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
// Otherwise the _base will indicate which subset of pointers is affected,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
// and the class will be inherited from.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
class TypePtr : public Type {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   569
  friend class TypeNarrowOop;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  enum PTR { TopPTR, AnyNull, Constant, Null, NotNull, BotPTR, lastPTR };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  TypePtr( TYPES t, PTR ptr, int offset ) : Type(t), _ptr(ptr), _offset(offset) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  static const PTR ptr_meet[lastPTR][lastPTR];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  static const PTR ptr_dual[lastPTR];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  static const char * const ptr_msg[lastPTR];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  const int _offset;            // Offset into oop, with TOP & BOT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  const PTR _ptr;               // Pointer equivalence class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  const int offset() const { return _offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  const PTR ptr()    const { return _ptr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  static const TypePtr *make( TYPES t, PTR ptr, int offset );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Return a 'ptr' version of this type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  virtual intptr_t get_con() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   594
  int xadd_offset( intptr_t offset ) const;
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   595
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  int meet_offset( int offset ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  int dual_offset( ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  // meet, dual and join over pointer equivalence sets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  PTR meet_ptr( const PTR in_ptr ) const { return ptr_meet[in_ptr][ptr()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  PTR dual_ptr()                   const { return ptr_dual[ptr()];      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // This is textually confusing unless one recalls that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // join(t) == dual()->meet(t->dual())->dual().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  PTR join_ptr( const PTR in_ptr ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    return ptr_dual[ ptr_meet[ ptr_dual[in_ptr] ] [ dual_ptr() ] ];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // Tests for relation to centerline of type lattice:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  static bool above_centerline(PTR ptr) { return (ptr <= AnyNull); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  static bool below_centerline(PTR ptr) { return (ptr >= NotNull); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  static const TypePtr *NULL_PTR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  static const TypePtr *NOTNULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  static const TypePtr *BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  virtual void dump2( Dict &d, uint depth, outputStream *st  ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
//------------------------------TypeRawPtr-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
// Class of raw pointers, pointers to things other than Oops.  Examples
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
// include the stack pointer, top of heap, card-marking area, handles, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
class TypeRawPtr : public TypePtr {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  TypeRawPtr( PTR ptr, address bits ) : TypePtr(RawPtr,ptr,0), _bits(bits){}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  virtual int  hash() const;     // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  const address _bits;          // Constant value, if applicable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  static const TypeRawPtr *make( PTR ptr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  static const TypeRawPtr *make( address bits );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // Return a 'ptr' version of this type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  virtual intptr_t get_con() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   646
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  static const TypeRawPtr *BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  static const TypeRawPtr *NOTNULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  virtual void dump2( Dict &d, uint depth, outputStream *st  ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
//------------------------------TypeOopPtr-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
// Some kind of oop (Java pointer), either klass or instance or array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
class TypeOopPtr : public TypePtr {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
protected:
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   662
  TypeOopPtr( TYPES t, PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, int instance_id );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  enum {
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   668
   InstanceTop = -1,   // undefined instance
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   669
   InstanceBot = 0     // any possible instance
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  // Oop is NULL, unless this is a constant oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  ciObject*     _const_oop;   // Constant oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  // If _klass is NULL, then so is _sig.  This is an unloaded klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  ciKlass*      _klass;       // Klass object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  // Does the type exclude subclasses of the klass?  (Inexact == polymorphic.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  bool          _klass_is_exact;
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   679
  bool          _is_ptr_to_narrowoop;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   681
  // If not InstanceTop or InstanceBot, indicates that this is
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   682
  // a particular instance of this type which is distinct.
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   683
  // This is the the node index of the allocation node creating this instance.
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   684
  int           _instance_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  static const TypeOopPtr* make_from_klass_common(ciKlass* klass, bool klass_change, bool try_for_exact);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   688
  int dual_instance_id() const;
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   689
  int meet_instance_id(int uid) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  // Creates a type given a klass. Correctly handles multi-dimensional arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  // Respects UseUniqueSubclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  // If the klass is final, the resulting type will be exact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  static const TypeOopPtr* make_from_klass(ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    return make_from_klass_common(klass, true, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  // Same as before, but will produce an exact type, even if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // the klass is not final, as long as it has exactly one implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  static const TypeOopPtr* make_from_klass_unique(ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    return make_from_klass_common(klass, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  // Same as before, but does not respects UseUniqueSubclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // Use this only for creating array element types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  static const TypeOopPtr* make_from_klass_raw(ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    return make_from_klass_common(klass, false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  // Creates a singleton type given an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  static const TypeOopPtr* make_from_constant(ciObject* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  // Make a generic (unclassed) pointer to an oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  static const TypeOopPtr* make(PTR ptr, int offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  ciObject* const_oop()    const { return _const_oop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  virtual ciKlass* klass() const { return _klass;     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  bool klass_is_exact()    const { return _klass_is_exact; }
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   717
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   718
  // Returns true if this pointer points at memory which contains a
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   719
  // compressed oop references.
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   720
  bool is_ptr_to_narrowoop_nv() const { return _is_ptr_to_narrowoop; }
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   721
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   722
  bool is_known_instance()       const { return _instance_id > 0; }
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   723
  int  instance_id()             const { return _instance_id; }
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   724
  bool is_known_instance_field() const { return is_known_instance() && _offset >= 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  virtual intptr_t get_con() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  virtual const Type *cast_to_exactness(bool klass_is_exact) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   732
  virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  // corresponding pointer to klass, for a given instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  const TypeKlassPtr* as_klass_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   737
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  // Do not allow interface-vs.-noninterface joins to collapse to top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  virtual const Type *filter( const Type *kills ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  // Convenience common pre-built type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  static const TypeOopPtr *BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
//------------------------------TypeInstPtr------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
// Class of Java object pointers, pointing either to non-array Java instances
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
// or to a klassOop (including array klasses).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
class TypeInstPtr : public TypeOopPtr {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  TypeInstPtr( PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, int instance_id );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  ciSymbol*  _name;        // class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  ciSymbol* name()         const { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  bool  is_loaded() const { return _klass->is_loaded(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // Make a pointer to a constant oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  static const TypeInstPtr *make(ciObject* o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    return make(TypePtr::Constant, o->klass(), true, o, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // Make a pointer to a constant oop with offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  static const TypeInstPtr *make(ciObject* o, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    return make(TypePtr::Constant, o->klass(), true, o, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  // Make a pointer to some value of type klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  static const TypeInstPtr *make(PTR ptr, ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    return make(ptr, klass, false, NULL, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  // Make a pointer to some non-polymorphic value of exactly type klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  static const TypeInstPtr *make_exact(PTR ptr, ciKlass* klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    return make(ptr, klass, true, NULL, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // Make a pointer to some value of type klass with offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  static const TypeInstPtr *make(PTR ptr, ciKlass* klass, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    return make(ptr, klass, false, NULL, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  // Make a pointer to an oop.
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   793
  static const TypeInstPtr *make(PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, int instance_id = InstanceBot );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  // If this is a java.lang.Class constant, return the type for it or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  // Pass to Type::get_const_type to turn it to a type, which will usually
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  // be a TypeInstPtr, but may also be a TypeInt::INT for int.class, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  ciType* java_mirror_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  virtual const Type *cast_to_exactness(bool klass_is_exact) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   804
  virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   806
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  virtual const TypeInstPtr *xmeet_unloaded( const TypeInstPtr *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  static const TypeInstPtr *NOTNULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  static const TypeInstPtr *BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  static const TypeInstPtr *MIRROR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  static const TypeInstPtr *MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  static const TypeInstPtr *KLASS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
//------------------------------TypeAryPtr-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
// Class of Java array pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
class TypeAryPtr : public TypeOopPtr {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  TypeAryPtr( PTR ptr, ciObject* o, const TypeAry *ary, ciKlass* k, bool xk, int offset, int instance_id ) : TypeOopPtr(AryPtr,ptr,k,xk,o,offset, instance_id), _ary(ary) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  virtual int hash() const;     // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  const TypeAry *_ary;          // Array we point into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  ciKlass* klass() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  const TypeAry* ary() const  { return _ary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  const Type*    elem() const { return _ary->_elem; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  const TypeInt* size() const { return _ary->_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   838
  static const TypeAryPtr *make( PTR ptr, const TypeAry *ary, ciKlass* k, bool xk, int offset, int instance_id = InstanceBot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  // Constant pointer to array
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   840
  static const TypeAryPtr *make( PTR ptr, ciObject* o, const TypeAry *ary, ciKlass* k, bool xk, int offset, int instance_id = InstanceBot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  // Convenience
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  static const TypeAryPtr *make(ciObject* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  // Return a 'ptr' version of this type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  virtual const Type *cast_to_exactness(bool klass_is_exact) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   850
  virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  virtual const TypeAryPtr* cast_to_size(const TypeInt* size) const;
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1068
diff changeset
   853
  virtual const TypeInt* narrow_size_type(const TypeInt* size) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  virtual bool empty(void) const;        // TRUE if type is vacuous
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   856
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  static const TypeAryPtr *RANGE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  static const TypeAryPtr *OOPS;
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   864
  static const TypeAryPtr *NARROWOOPS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  static const TypeAryPtr *BYTES;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  static const TypeAryPtr *SHORTS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  static const TypeAryPtr *CHARS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  static const TypeAryPtr *INTS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  static const TypeAryPtr *LONGS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  static const TypeAryPtr *FLOATS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  static const TypeAryPtr *DOUBLES;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // selects one of the above:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  static const TypeAryPtr *get_array_body_type(BasicType elem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    assert((uint)elem <= T_CONFLICT && _array_body_type[elem] != NULL, "bad elem type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    return _array_body_type[elem];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  static const TypeAryPtr *_array_body_type[T_CONFLICT+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  // sharpen the type of an int which is used as an array size
3173
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   879
#ifdef ASSERT
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   880
  // One type is interface, the other is oop
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   881
  virtual bool interface_vs_oop(const Type *t) const;
c15503e54406 6837094: False positive for "meet not symmetric" failure
kvn
parents: 2154
diff changeset
   882
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
//------------------------------TypeKlassPtr-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
// Class of Java Klass pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
class TypeKlassPtr : public TypeOopPtr {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  TypeKlassPtr( PTR ptr, ciKlass* klass, int offset );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  virtual int hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  ciSymbol* name()  const { return _klass->name(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
2019
086661823c2b 6788347: C2Compiler crash 6u7
never
parents: 1500
diff changeset
   899
  bool  is_loaded() const { return _klass->is_loaded(); }
086661823c2b 6788347: C2Compiler crash 6u7
never
parents: 1500
diff changeset
   900
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  // ptr to klass 'k'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  static const TypeKlassPtr *make( ciKlass* k ) { return make( TypePtr::Constant, k, 0); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  // ptr to klass 'k' with offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  static const TypeKlassPtr *make( ciKlass* k, int offset ) { return make( TypePtr::Constant, k, offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  // ptr to klass 'k' or sub-klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  static const TypeKlassPtr *make( PTR ptr, ciKlass* k, int offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  virtual const Type *cast_to_ptr_type(PTR ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  virtual const Type *cast_to_exactness(bool klass_is_exact) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // corresponding pointer to instance, for a given class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  const TypeOopPtr* as_instance_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 781
diff changeset
   915
  virtual const TypePtr *add_offset( intptr_t offset ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  virtual const Type    *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  virtual const Type    *xdual() const;      // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  static const TypeKlassPtr* OBJECT; // Not-null object klass or below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  static const TypeKlassPtr* OBJECT_OR_NULL; // Maybe-null version of same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
   927
//------------------------------TypeNarrowOop----------------------------------
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   928
// A compressed reference to some kind of Oop.  This type wraps around
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   929
// a preexisting TypeOopPtr and forwards most of it's operations to
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   930
// the underlying type.  It's only real purpose is to track the
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   931
// oopness of the compressed oop value when we expose the conversion
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   932
// between the normal and the compressed form.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   933
class TypeNarrowOop : public Type {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   934
protected:
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   935
  const TypePtr* _ooptype; // Could be TypePtr::NULL_PTR
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   936
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   937
  TypeNarrowOop( const TypePtr* ooptype): Type(NarrowOop),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   938
    _ooptype(ooptype) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   939
    assert(ooptype->offset() == 0 ||
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   940
           ooptype->offset() == OffsetBot ||
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   941
           ooptype->offset() == OffsetTop, "no real offsets");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   942
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   943
public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   944
  virtual bool eq( const Type *t ) const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   945
  virtual int  hash() const;             // Type specific hashing
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   946
  virtual bool singleton(void) const;    // TRUE if type is a singleton
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   947
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   948
  virtual const Type *xmeet( const Type *t ) const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   949
  virtual const Type *xdual() const;    // Compute dual right now.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   950
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   951
  virtual intptr_t get_con() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   952
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   953
  // Do not allow interface-vs.-noninterface joins to collapse to top.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   954
  virtual const Type *filter( const Type *kills ) const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   955
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   956
  virtual bool empty(void) const;        // TRUE if type is vacuous
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   957
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   958
  static const TypeNarrowOop *make( const TypePtr* type);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   959
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   960
  static const TypeNarrowOop* make_from_constant(ciObject* con) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   961
    return make(TypeOopPtr::make_from_constant(con));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   962
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   963
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   964
  // returns the equivalent ptr type for this compressed pointer
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
   965
  const TypePtr *make_oopptr() const {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   966
    return _ooptype;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   967
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   968
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   969
  static const TypeNarrowOop *BOTTOM;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   970
  static const TypeNarrowOop *NULL_PTR;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   971
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   972
#ifndef PRODUCT
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   973
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   974
#endif
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   975
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
   976
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
//------------------------------TypeFunc---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
// Class of Array Types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
class TypeFunc : public Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  TypeFunc( const TypeTuple *domain, const TypeTuple *range ) : Type(Function),  _domain(domain), _range(range) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  virtual bool eq( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  virtual int  hash() const;             // Type specific hashing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  virtual bool singleton(void) const;    // TRUE if type is a singleton
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  virtual bool empty(void) const;        // TRUE if type is vacuous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  // Constants are shared among ADLC and VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  enum { Control    = AdlcVMDeps::Control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
         I_O        = AdlcVMDeps::I_O,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
         Memory     = AdlcVMDeps::Memory,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
         FramePtr   = AdlcVMDeps::FramePtr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
         ReturnAdr  = AdlcVMDeps::ReturnAdr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
         Parms      = AdlcVMDeps::Parms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  const TypeTuple* const _domain;     // Domain of inputs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  const TypeTuple* const _range;      // Range of results
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // Accessors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  const TypeTuple* domain() const { return _domain; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  const TypeTuple* range()  const { return _range; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  static const TypeFunc *make(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  static const TypeFunc *make(ciSignature signature, const Type* extra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  static const TypeFunc *make(const TypeTuple* domain, const TypeTuple* range);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  virtual const Type *xmeet( const Type *t ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  virtual const Type *xdual() const;    // Compute dual right now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  BasicType return_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  void print_flattened() const; // Print a 'flattened' signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  // Convenience common pre-built types.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
//------------------------------accessors--------------------------------------
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1019
inline bool Type::is_ptr_to_narrowoop() const {
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1020
#ifdef _LP64
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1021
  return (isa_oopptr() != NULL && is_oopptr()->is_ptr_to_narrowoop_nv());
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1022
#else
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1023
  return false;
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1024
#endif
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1025
}
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 392
diff changeset
  1026
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
inline float Type::getf() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  assert( _base == FloatCon, "Not a FloatCon" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  return ((TypeF*)this)->_f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
inline double Type::getd() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  assert( _base == DoubleCon, "Not a DoubleCon" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  return ((TypeD*)this)->_d;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
inline const TypeF *Type::is_float_constant() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  assert( _base == FloatCon, "Not a Float" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  return (TypeF*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
inline const TypeF *Type::isa_float_constant() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  return ( _base == FloatCon ? (TypeF*)this : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
inline const TypeD *Type::is_double_constant() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  assert( _base == DoubleCon, "Not a Double" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  return (TypeD*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
inline const TypeD *Type::isa_double_constant() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  return ( _base == DoubleCon ? (TypeD*)this : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
inline const TypeInt *Type::is_int() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  assert( _base == Int, "Not an Int" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  return (TypeInt*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
inline const TypeInt *Type::isa_int() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  return ( _base == Int ? (TypeInt*)this : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
inline const TypeLong *Type::is_long() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  assert( _base == Long, "Not a Long" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  return (TypeLong*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
inline const TypeLong *Type::isa_long() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  return ( _base == Long ? (TypeLong*)this : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
inline const TypeTuple *Type::is_tuple() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  assert( _base == Tuple, "Not a Tuple" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  return (TypeTuple*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
inline const TypeAry *Type::is_ary() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  assert( _base == Array , "Not an Array" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  return (TypeAry*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
inline const TypePtr *Type::is_ptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  // AnyPtr is the first Ptr and KlassPtr the last, with no non-ptrs between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  assert(_base >= AnyPtr && _base <= KlassPtr, "Not a pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  return (TypePtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
inline const TypePtr *Type::isa_ptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  // AnyPtr is the first Ptr and KlassPtr the last, with no non-ptrs between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  return (_base >= AnyPtr && _base <= KlassPtr) ? (TypePtr*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
inline const TypeOopPtr *Type::is_oopptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // OopPtr is the first and KlassPtr the last, with no non-oops between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  assert(_base >= OopPtr && _base <= KlassPtr, "Not a Java pointer" ) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  return (TypeOopPtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
inline const TypeOopPtr *Type::isa_oopptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  // OopPtr is the first and KlassPtr the last, with no non-oops between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  return (_base >= OopPtr && _base <= KlassPtr) ? (TypeOopPtr*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1105
inline const TypeRawPtr *Type::isa_rawptr() const {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1106
  return (_base == RawPtr) ? (TypeRawPtr*)this : NULL;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1107
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1108
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
inline const TypeRawPtr *Type::is_rawptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  assert( _base == RawPtr, "Not a raw pointer" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  return (TypeRawPtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
inline const TypeInstPtr *Type::isa_instptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  return (_base == InstPtr) ? (TypeInstPtr*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
inline const TypeInstPtr *Type::is_instptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  assert( _base == InstPtr, "Not an object pointer" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  return (TypeInstPtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
inline const TypeAryPtr *Type::isa_aryptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  return (_base == AryPtr) ? (TypeAryPtr*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
inline const TypeAryPtr *Type::is_aryptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  assert( _base == AryPtr, "Not an array pointer" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  return (TypeAryPtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1132
inline const TypeNarrowOop *Type::is_narrowoop() const {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1133
  // OopPtr is the first and KlassPtr the last, with no non-oops between.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1134
  assert(_base == NarrowOop, "Not a narrow oop" ) ;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1135
  return (TypeNarrowOop*)this;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1136
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1137
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1138
inline const TypeNarrowOop *Type::isa_narrowoop() const {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1139
  // OopPtr is the first and KlassPtr the last, with no non-oops between.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1140
  return (_base == NarrowOop) ? (TypeNarrowOop*)this : NULL;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1141
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 237
diff changeset
  1142
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
inline const TypeKlassPtr *Type::isa_klassptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  return (_base == KlassPtr) ? (TypeKlassPtr*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
inline const TypeKlassPtr *Type::is_klassptr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  assert( _base == KlassPtr, "Not a klass pointer" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  return (TypeKlassPtr*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1152
inline const TypePtr* Type::make_ptr() const {
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1153
  return (_base == NarrowOop) ? is_narrowoop()->make_oopptr() :
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1154
                                (isa_ptr() ? is_ptr() : NULL);
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1155
}
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1156
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1157
inline const TypeNarrowOop* Type::make_narrowoop() const {
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1158
  return (_base == NarrowOop) ? is_narrowoop() :
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1159
                                (isa_ptr() ? TypeNarrowOop::make(is_ptr()) : NULL);
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1160
}
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 589
diff changeset
  1161
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
inline bool Type::is_floatingpoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  if( (_base == FloatCon)  || (_base == FloatBot) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      (_base == DoubleCon) || (_base == DoubleBot) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
// ===============================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
// Things that need to be 64-bits in the 64-bit build but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
// 32-bits in the 32-bit build.  Done this way to get full
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
// optimization AND strong typing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
// For type queries and asserts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
#define is_intptr_t  is_long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
#define isa_intptr_t isa_long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
#define find_intptr_t_type find_long_type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
#define find_intptr_t_con  find_long_con
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
#define TypeX        TypeLong
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
#define Type_X       Type::Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
#define TypeX_X      TypeLong::LONG
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
#define TypeX_ZERO   TypeLong::ZERO
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
// For 'ideal_reg' machine registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
#define Op_RegX      Op_RegL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
// For phase->intcon variants
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
#define MakeConX     longcon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
#define ConXNode     ConLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
// For array index arithmetic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
#define MulXNode     MulLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
#define AndXNode     AndLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
#define OrXNode      OrLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
#define CmpXNode     CmpLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
#define SubXNode     SubLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
#define LShiftXNode  LShiftLNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
// For object size computation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
#define AddXNode     AddLNode
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
  1199
#define RShiftXNode  RShiftLNode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
// For card marks and hashcodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
#define URShiftXNode URShiftLNode
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1202
// UseOptoBiasInlining
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1203
#define XorXNode     XorLNode
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1204
#define StoreXConditionalNode StoreLConditionalNode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
// Opcodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
#define Op_LShiftX   Op_LShiftL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
#define Op_AndX      Op_AndL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
#define Op_AddX      Op_AddL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
#define Op_SubX      Op_SubL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
// conversions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
#define ConvI2X(x)   ConvI2L(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
#define ConvL2X(x)   (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
#define ConvX2I(x)   ConvL2I(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
#define ConvX2L(x)   (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
// For type queries and asserts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
#define is_intptr_t  is_int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
#define isa_intptr_t isa_int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
#define find_intptr_t_type find_int_type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
#define find_intptr_t_con  find_int_con
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
#define TypeX        TypeInt
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
#define Type_X       Type::Int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
#define TypeX_X      TypeInt::INT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
#define TypeX_ZERO   TypeInt::ZERO
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
// For 'ideal_reg' machine registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
#define Op_RegX      Op_RegI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
// For phase->intcon variants
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
#define MakeConX     intcon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
#define ConXNode     ConINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
// For array index arithmetic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
#define MulXNode     MulINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
#define AndXNode     AndINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
#define OrXNode      OrINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
#define CmpXNode     CmpINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
#define SubXNode     SubINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
#define LShiftXNode  LShiftINode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
// For object size computation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
#define AddXNode     AddINode
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
  1241
#define RShiftXNode  RShiftINode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
// For card marks and hashcodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
#define URShiftXNode URShiftINode
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1244
// UseOptoBiasInlining
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1245
#define XorXNode     XorINode
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
  1246
#define StoreXConditionalNode StoreIConditionalNode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
// Opcodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
#define Op_LShiftX   Op_LShiftI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
#define Op_AndX      Op_AndI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
#define Op_AddX      Op_AddI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
#define Op_SubX      Op_SubI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
// conversions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
#define ConvI2X(x)   (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
#define ConvL2X(x)   ConvL2I(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
#define ConvX2I(x)   (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
#define ConvX2L(x)   ConvI2L(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
#endif