hotspot/src/share/vm/opto/memnode.hpp
author kvn
Thu, 20 Mar 2008 15:11:44 -0700
changeset 247 2aeab9ac7fea
parent 237 fba97e902303
child 258 dbd6f2ed7ba0
child 360 21d113ecbf6a
permissions -rw-r--r--
6674600: (Escape Analysis) Optimize memory graph for instance's fields Summary: EA gives opportunite to do more aggressive memory optimizations. Reviewed-by: never, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class MultiNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class PhaseCCP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class PhaseTransform;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//------------------------------MemNode----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Load or Store, possibly throwing a NULL pointer exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class MemNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  const TypePtr* _adr_type;     // What kind of memory is being addressed?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  virtual uint size_of() const; // Size is bigger (ASSERT only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  enum { Control,               // When is it safe to do this load?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
         Memory,                // Chunk of memory is being loaded from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
         Address,               // Actually address, derived from base
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
         ValueIn,               // Value to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
         OopStore               // Preceeding oop store, only in StoreCM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    : Node(c0,c1,c2   ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    : Node(c0,c1,c2,c3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3, Node *c4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    : Node(c0,c1,c2,c3,c4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
206
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 202
diff changeset
    63
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Helpers for the optimizer.  Documented in memnode.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static bool detect_ptr_independence(Node* p1, AllocateNode* a1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                      Node* p2, AllocateNode* a2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                      PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static bool adr_phi_is_loop_invariant(Node* adr_phi, Node* cast);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
247
2aeab9ac7fea 6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents: 237
diff changeset
    70
  static Node *optimize_simple_memory_chain(Node *mchain, const TypePtr *t_adr, PhaseGVN *phase);
2aeab9ac7fea 6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents: 237
diff changeset
    71
  static Node *optimize_memory_chain(Node *mchain, const TypePtr *t_adr, PhaseGVN *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // This one should probably be a phase-specific function:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static bool detect_dominating_control(Node* dom, Node* sub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Is this Node a MemNode or some descendent?  Default is YES.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual Node *Ideal_DU_postCCP( PhaseCCP *ccp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  virtual const class TypePtr *adr_type() const;  // returns bottom_type of address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Shared code for Ideal methods:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  Node *Ideal_common(PhaseGVN *phase, bool can_reshape);  // Return -1 for short-circuit NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Helper function for adr_type() implementations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static const TypePtr* calculate_adr_type(const Type* t, const TypePtr* cross_check = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Raw access function, to allow copying of adr_type efficiently in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // product builds and retain the debug info for debug builds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  const TypePtr *raw_adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    return _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Map a load or store opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // (Return -1 if unknown.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual int store_Opcode() const { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // What is the type of the value in memory?  (T_VOID mean "unspecified".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual BasicType memory_type() const = 0;
202
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   102
  virtual int memory_size() const {
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   103
#ifdef ASSERT
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   104
    return type2aelembytes(memory_type(), true);
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   105
#else
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   106
    return type2aelembytes(memory_type());
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   107
#endif
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   108
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Search through memory states which precede this node (load or store).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Look for an exact match for the address, with no intervening
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // aliased stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  Node* find_previous_store(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Can this node (load or store) accurately see a stored value in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // the given memory state?  (The state may or may not be in(Memory).)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  Node* can_see_stored_value(Node* st, PhaseTransform* phase) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static void dump_adr_type(const Node* mem, const TypePtr* adr_type, outputStream *st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
//------------------------------LoadNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// Load value; requires Memory and Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
class LoadNode : public MemNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  const Type* const _type;      // What kind of value is loaded?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  LoadNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *rt )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    : MemNode(c,mem,adr,at), _type(rt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    init_class_id(Class_Load);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Polymorphic factory method:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static LoadNode* make( Compile *C, Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *rt, BasicType bt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  virtual uint hash()   const;  // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Handle algebraic identities here.  If we have an identity, return the Node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // we are equivalent to.  We look for Load of a Store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // If the load is from Field memory and the pointer is non-null, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // zero out the control input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   152
  // Recover original value from boxed values
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   153
  Node *eliminate_autobox(PhaseGVN *phase);
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   154
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // then call the virtual add() to set the type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  virtual uint ideal_reg() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Following method is copied from TypeNode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  void set_type(const Type* t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    assert(t != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    *(const Type**)&_type = t;   // cast away const-ness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // If this node is in the hash table, make sure it doesn't need a rehash.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    assert(check_hash == NO_HASH || check_hash == hash(), "type change must preserve hash code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  const Type* type() const { assert(_type != NULL, "sanity"); return _type; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Map a load opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  virtual int store_Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
237
fba97e902303 6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents: 206
diff changeset
   177
  // Check if the load's memory input is a Phi node with the same control.
fba97e902303 6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents: 206
diff changeset
   178
  bool is_instance_field_load_with_local_phi(Node* ctrl);
fba97e902303 6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents: 206
diff changeset
   179
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  const Type* load_array_final_field(const TypeKlassPtr *tkls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                                     ciKlass* klass) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
//------------------------------LoadBNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// Load a byte (8bits signed) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
class LoadBNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  LoadBNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti = TypeInt::BYTE )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    : LoadNode(c,mem,adr,at,ti) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  virtual int store_Opcode() const { return Op_StoreB; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
//------------------------------LoadCNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// Load a char (16bits unsigned) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
class LoadCNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  LoadCNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti = TypeInt::CHAR )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    : LoadNode(c,mem,adr,at,ti) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  virtual int store_Opcode() const { return Op_StoreC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
//------------------------------LoadINode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// Load an integer from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
class LoadINode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  LoadINode( Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti = TypeInt::INT )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    : LoadNode(c,mem,adr,at,ti) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  virtual int store_Opcode() const { return Op_StoreI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
//------------------------------LoadRangeNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// Load an array length from the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
class LoadRangeNode : public LoadINode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  LoadRangeNode( Node *c, Node *mem, Node *adr, const TypeInt *ti = TypeInt::POS )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    : LoadINode(c,mem,adr,TypeAryPtr::RANGE,ti) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
//------------------------------LoadLNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// Load a long from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
class LoadLNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  virtual uint cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    return _require_atomic_access == ((LoadLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      && LoadNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  const bool _require_atomic_access;  // is piecewise load forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  LoadLNode( Node *c, Node *mem, Node *adr, const TypePtr* at,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
             const TypeLong *tl = TypeLong::LONG,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
             bool require_atomic_access = false )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    : LoadNode(c,mem,adr,at,tl)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    , _require_atomic_access(require_atomic_access)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  virtual int store_Opcode() const { return Op_StoreL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  virtual BasicType memory_type() const { return T_LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  bool require_atomic_access() { return _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  static LoadLNode* make_atomic(Compile *C, Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, const Type* rt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    LoadNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
//------------------------------LoadL_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// Load a long from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
class LoadL_unalignedNode : public LoadLNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  LoadL_unalignedNode( Node *c, Node *mem, Node *adr, const TypePtr* at )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    : LoadLNode(c,mem,adr,at) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
//------------------------------LoadFNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// Load a float (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
class LoadFNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  LoadFNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t = Type::FLOAT )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    : LoadNode(c,mem,adr,at,t) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  virtual int store_Opcode() const { return Op_StoreF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
//------------------------------LoadDNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// Load a double (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
class LoadDNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  LoadDNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t = Type::DOUBLE )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    : LoadNode(c,mem,adr,at,t) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  virtual int store_Opcode() const { return Op_StoreD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  virtual BasicType memory_type() const { return T_DOUBLE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
//------------------------------LoadD_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// Load a double from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
class LoadD_unalignedNode : public LoadDNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  LoadD_unalignedNode( Node *c, Node *mem, Node *adr, const TypePtr* at )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    : LoadDNode(c,mem,adr,at) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
//------------------------------LoadPNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// Load a pointer from memory (either object or array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
class LoadPNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  LoadPNode( Node *c, Node *mem, Node *adr, const TypePtr *at, const TypePtr* t )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    : LoadNode(c,mem,adr,at,t) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  virtual int store_Opcode() const { return Op_StoreP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // depends_only_on_test is almost always true, and needs to be almost always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // true to enable key hoisting & commoning optimizations.  However, for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // special case of RawPtr loads from TLS top & end, the control edge carries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // the dependence preventing hoisting past a Safepoint instead of the memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // edge.  (An unfortunate consequence of having Safepoints not set Raw
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Memory; itself an unfortunate consequence of having Nodes which produce
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // results (new raw memory state) inside of loops preventing all manner of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // other optimizations).  Basically, it's ugly but so is the alternative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // See comment in macro.cpp, around line 125 expand_allocate_common().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  virtual bool depends_only_on_test() const { return adr_type() != TypeRawPtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
//------------------------------LoadKlassNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// Load a Klass from an object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
class LoadKlassNode : public LoadPNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  LoadKlassNode( Node *c, Node *mem, Node *adr, const TypePtr *at, const TypeKlassPtr *tk = TypeKlassPtr::OBJECT )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    : LoadPNode(c,mem,adr,at,tk) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  virtual bool depends_only_on_test() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
//------------------------------LoadSNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// Load a short (16bits signed) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
class LoadSNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  LoadSNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti = TypeInt::SHORT )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    : LoadNode(c,mem,adr,at,ti) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  virtual int store_Opcode() const { return Op_StoreC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  virtual BasicType memory_type() const { return T_SHORT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
//------------------------------StoreNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
// Store value; requires Store, Address and Value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
class StoreNode : public MemNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  Node *Ideal_masked_input       (PhaseGVN *phase, uint mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  Node *Ideal_sign_extended_input(PhaseGVN *phase, int  num_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  StoreNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    : MemNode(c,mem,adr,at,val) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  StoreNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    : MemNode(c,mem,adr,at,val,oop_store) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Polymorphic factory method:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  static StoreNode* make( Compile *C, Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, BasicType bt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  virtual uint hash() const;    // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // If the store is to Field memory and the pointer is non-null, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // zero out the control input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // then call the virtual add() to set the type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // Check for identity function on memory (Load then Store at same address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  virtual const Type *bottom_type() const;  // returns Type::MEMORY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // Map a store opcode to its corresponding own opcode, trivially.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  virtual int store_Opcode() const { return Opcode(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // have all possible loads of the value stored been optimized away?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  bool value_never_loaded(PhaseTransform *phase) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
//------------------------------StoreBNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// Store byte to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
class StoreBNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  StoreBNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
//------------------------------StoreCNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
// Store char/short to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
class StoreCNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  StoreCNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
//------------------------------StoreINode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
// Store int to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
class StoreINode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  StoreINode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
//------------------------------StoreLNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
// Store long to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
class StoreLNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  virtual uint cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    return _require_atomic_access == ((StoreLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      && StoreNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  const bool _require_atomic_access;  // is piecewise store forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  StoreLNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
              bool require_atomic_access = false )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    : StoreNode(c,mem,adr,at,val)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    , _require_atomic_access(require_atomic_access)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  virtual BasicType memory_type() const { return T_LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  bool require_atomic_access() { return _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  static StoreLNode* make_atomic(Compile *C, Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, Node* val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    StoreNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
//------------------------------StoreFNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
// Store float to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
class StoreFNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  StoreFNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
//------------------------------StoreDNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
// Store double to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
class StoreDNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  StoreDNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  virtual BasicType memory_type() const { return T_DOUBLE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
//------------------------------StorePNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
// Store pointer to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
class StorePNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  StorePNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val ) : StoreNode(c,mem,adr,at,val) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
//------------------------------StoreCMNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// Store card-mark byte to memory for CM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// The last StoreCM before a SafePoint must be preserved and occur after its "oop" store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
// Preceeding equivalent StoreCMs may be eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
class StoreCMNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  StoreCMNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store ) : StoreNode(c,mem,adr,at,val,oop_store) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  virtual BasicType memory_type() const { return T_VOID; } // unspecific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//------------------------------LoadPLockedNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// Load-locked a pointer from memory (either object or array).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// On Sparc & Intel this is implemented as a normal pointer load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// On PowerPC and friends it's a real load-locked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
class LoadPLockedNode : public LoadPNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  LoadPLockedNode( Node *c, Node *mem, Node *adr )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    : LoadPNode(c,mem,adr,TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  virtual int store_Opcode() const { return Op_StorePConditional; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  virtual bool depends_only_on_test() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
//------------------------------LoadLLockedNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
// Load-locked a pointer from memory (either object or array).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
// On Sparc & Intel this is implemented as a normal long load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
class LoadLLockedNode : public LoadLNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  LoadLLockedNode( Node *c, Node *mem, Node *adr )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    : LoadLNode(c,mem,adr,TypeRawPtr::BOTTOM, TypeLong::LONG) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  virtual int store_Opcode() const { return Op_StoreLConditional; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
//------------------------------SCMemProjNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
// This class defines a projection of the memory  state of a store conditional node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
// These nodes return a value, but also update memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
class SCMemProjNode : public ProjNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  enum {SCMEMPROJCON = (uint)-2};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  SCMemProjNode( Node *src) : ProjNode( src, SCMEMPROJCON) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  virtual bool      is_CFG() const  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  virtual const Type *bottom_type() const {return Type::MEMORY;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  virtual const TypePtr *adr_type() const { return in(0)->in(MemNode::Memory)->adr_type();}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  virtual uint ideal_reg() const { return 0;} // memory projections don't have a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  virtual void dump_spec(outputStream *st) const {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
//------------------------------LoadStoreNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
class LoadStoreNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  LoadStoreNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  virtual const Type *bottom_type() const { return TypeInt::BOOL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  virtual uint match_edge(uint idx) const { return idx == MemNode::Address || idx == MemNode::ValueIn; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
//------------------------------StorePConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
// Conditionally store pointer to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
// load-locked.  Sets flags for success or failure of the store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
class StorePConditionalNode : public LoadStoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  StorePConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreNode(c, mem, adr, val, ll) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  // Produces flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  virtual uint ideal_reg() const { return Op_RegFlags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
//------------------------------StoreLConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
// Conditionally store long to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
// load-locked.  Sets flags for success or failure of the store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
class StoreLConditionalNode : public LoadStoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  StoreLConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreNode(c, mem, adr, val, ll) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
//------------------------------CompareAndSwapLNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
class CompareAndSwapLNode : public LoadStoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  CompareAndSwapLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreNode(c, mem, adr, val, ex) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
//------------------------------CompareAndSwapINode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
class CompareAndSwapINode : public LoadStoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  CompareAndSwapINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreNode(c, mem, adr, val, ex) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
//------------------------------CompareAndSwapPNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
class CompareAndSwapPNode : public LoadStoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  CompareAndSwapPNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreNode(c, mem, adr, val, ex) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
//------------------------------ClearArray-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
class ClearArrayNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  ClearArrayNode( Node *ctrl, Node *arymem, Node *word_cnt, Node *base ) : Node(ctrl,arymem,word_cnt,base) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  virtual int         Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // ClearArray modifies array elements, and so affects only the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  // array memory addressed by the bottom_type of its base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  virtual const class TypePtr *adr_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // Clear the given area of an object or array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  // The start offset must always be aligned mod BytesPerInt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  // The end offset must always be aligned mod BytesPerLong.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // Return the new memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
                            intptr_t end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
                            Node* start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
//------------------------------StrComp-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
class StrCompNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  StrCompNode(Node *control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
              Node* char_array_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
              Node* value_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
              Node* count_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
              Node* offset_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
              Node* s1, Node* s2): Node(control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
                                        char_array_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
                                        value_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
                                        count_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
                                        offset_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
                                        s1, s2) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  virtual const Type* bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  // a StrCompNode (conservatively) aliases with everything:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  virtual const TypePtr* adr_type() const { return TypePtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
//------------------------------MemBar-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
// There are different flavors of Memory Barriers to match the Java Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
// Model.  Monitor-enter and volatile-load act as Aquires: no following ref
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
// can be moved to before them.  We insert a MemBar-Acquire after a FastLock or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
// volatile-load.  Monitor-exit and volatile-store act as Release: no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
// preceeding ref can be moved to after them.  We insert a MemBar-Release
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// before a FastUnlock or volatile-store.  All volatiles need to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
// serialized, so we follow all volatile-stores with a MemBar-Volatile to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
// seperate it from any following volatile-load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
class MemBarNode: public MultiNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  // Memory type this node is serializing.  Usually either rawptr or bottom.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  const TypePtr* _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    Precedent = TypeFunc::Parms  // optional edge to force precedence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  MemBarNode(Compile* C, int alias_idx, Node* precedent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  virtual int Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  virtual const class TypePtr *adr_type() const { return _adr_type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  virtual const Type *bottom_type() const { return TypeTuple::MEMBAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  virtual Node *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  // Factory method.  Builds a wide or narrow membar.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  // Optional 'precedent' becomes an extra edge if not null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  static MemBarNode* make(Compile* C, int opcode,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
                          int alias_idx = Compile::AliasIdxBot,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
                          Node* precedent = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
// "Acquire" - no following ref can move before (but earlier refs can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
// follow, like an early Load stalled in cache).  Requires multi-cpu
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
// visibility.  Inserted after a volatile load or FastLock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
class MemBarAcquireNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  MemBarAcquireNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// "Release" - no earlier ref can move after (but later refs can move
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
// up, like a speculative pipelined cache-hitting Load).  Requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
// multi-cpu visibility.  Inserted before a volatile store or FastUnLock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
class MemBarReleaseNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  MemBarReleaseNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
// Ordering between a volatile store and a following volatile load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
// Requires multi-CPU visibility?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
class MemBarVolatileNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  MemBarVolatileNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
// Ordering within the same CPU.  Used to order unsafe memory references
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
// inside the compiler when we lack alias info.  Not needed "outside" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
// compiler because the CPU does all the ordering for us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
class MemBarCPUOrderNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  MemBarCPUOrderNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
// Isolation of object setup after an AllocateNode and before next safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
// (See comment in memnode.cpp near InitializeNode::InitializeNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
class InitializeNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  friend class AllocateNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  bool _is_complete;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    Control    = TypeFunc::Control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    Memory     = TypeFunc::Memory,     // MergeMem for states affected by this op
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    RawAddress = TypeFunc::Parms+0,    // the newly-allocated raw address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    RawStores  = TypeFunc::Parms+1     // zero or more stores (or TOP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  InitializeNode(Compile* C, int adr_type, Node* rawoop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  virtual const RegMask &in_RegMask(uint) const;  // mask for RawAddress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  // Manage incoming memory edges via a MergeMem on in(Memory):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  Node* memory(uint alias_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  // The raw memory edge coming directly from the Allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // The contents of this memory are *always* all-zero-bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  Node* zero_memory() { return memory(Compile::AliasIdxRaw); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  // Return the corresponding allocation for this initialization (or null if none).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  // (Note: Both InitializeNode::allocation and AllocateNode::initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  // are defined in graphKit.cpp, which sets up the bidirectional relation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  AllocateNode* allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // Anything other than zeroing in this init?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  bool is_non_zero();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  // An InitializeNode must completed before macro expansion is done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // Completion requires that the AllocateNode must be followed by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // initialization of the new memory to zero, then to any initializers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  bool is_complete() { return _is_complete; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  // Mark complete.  (Must not yet be complete.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  void set_complete(PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  // ensure all non-degenerate stores are ordered and non-overlapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  bool stores_are_sane(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  // See if this store can be captured; return offset where it initializes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  // Return 0 if the store cannot be moved (any sort of problem).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  intptr_t can_capture_store(StoreNode* st, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // Capture another store; reformat it to write my internal raw memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // Return the captured copy, else NULL if there is some sort of problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  Node* capture_store(StoreNode* st, intptr_t start, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  // Find captured store which corresponds to the range [start..start+size).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  // Return my own memory projection (meaning the initial zero bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  // if there is no such store.  Return NULL if there is a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  Node* find_captured_store(intptr_t start, int size_in_bytes, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  // Called when the associated AllocateNode is expanded into CFG.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  Node* complete_stores(Node* rawctl, Node* rawmem, Node* rawptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
                        intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
                        PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  void remove_extra_zeroes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  // Find out where a captured store should be placed (or already is placed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  int captured_store_insertion_point(intptr_t start, int size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
                                     PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  static intptr_t get_store_offset(Node* st, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  Node* make_raw_address(intptr_t offset, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  bool detect_init_independence(Node* n, bool st_is_pinned, int& count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  void coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
                               PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  intptr_t find_next_fullword_store(uint i, PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
//------------------------------MergeMem---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
// (See comment in memnode.cpp near MergeMemNode::MergeMemNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
class MergeMemNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  friend class MergeMemStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  MergeMemNode(Node* def);  // clients use MergeMemNode::make
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  // If the input is a whole memory state, clone it with all its slices intact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  // Otherwise, make a new memory state with just that base memory input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  // In either case, the result is a newly created MergeMem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  static MergeMemNode* make(Compile* C, Node* base_memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  // sparse accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  // Fetch the previously stored "set_memory_at", or else the base memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // (Caller should clone it if it is a phi-nest.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  Node* memory_at(uint alias_idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  // set the memory, regardless of its previous value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  void set_memory_at(uint alias_idx, Node* n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  // the "base" is the memory that provides the non-finite support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  Node* base_memory() const       { return in(Compile::AliasIdxBot); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  // warning: setting the base can implicitly set any of the other slices too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  void set_base_memory(Node* def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  // sentinel value which denotes a copy of the base memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  Node*   empty_memory() const    { return in(Compile::AliasIdxTop); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  static Node* make_empty_memory(); // where the sentinel comes from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  bool is_empty_memory(Node* n) const { assert((n == empty_memory()) == n->is_top(), "sanity"); return n->is_top(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  // hook for the iterator, to perform any necessary setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  void iteration_setup(const MergeMemNode* other = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  // push sentinels until I am at least as long as the other (semantic no-op)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  void grow_to_match(const MergeMemNode* other);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  bool verify_sparse() const PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
class MergeMemStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  MergeMemNode*       _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  const MergeMemNode* _mm2;  // optional second guy, contributes non-empty iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  Node*               _mm_base;  // loop-invariant base memory of _mm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  int                 _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  int                 _cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  Node*               _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  Node*               _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  int                 _cnt2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  void init(MergeMemNode* mm, const MergeMemNode* mm2 = NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    // subsume_node will break sparseness at times, whenever a memory slice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    // folds down to a copy of the base ("fat") memory.  In such a case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    // the raw edge will update to base, although it should be top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    // This iterator will recognize either top or base_memory as an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    // "empty" slice.  See is_empty, is_empty2, and next below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    // The sparseness property is repaired in MergeMemNode::Ideal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    // As long as access to a MergeMem goes through this iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    // or the memory_at accessor, flaws in the sparseness will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    // never be observed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    // Also, iteration_setup repairs sparseness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    assert(mm->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    assert(mm2==NULL || mm2->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    _mm  = mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    _mm_base = mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    _mm2 = mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    _cnt = mm->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    _idx = Compile::AliasIdxBot-1; // start at the base memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    _mem = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    _mem2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  Node* check_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    if (at_base_memory())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
      return _mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    else if ((uint)_idx < _mm->req() && !_mm->in(_idx)->is_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      return _mm->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
      return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  Node* check_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    return at_base_memory()? _mm2->base_memory(): _mm2->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  static bool match_memory(Node* mem, const MergeMemNode* mm, int idx) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  void assert_synch() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    assert(!_mem || _idx >= _cnt || match_memory(_mem, _mm, _idx),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
           "no side-effects except through the stream");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  // expected usages:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  // for (MergeMemStream mms(mem->is_MergeMem()); next_non_empty(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  // for (MergeMemStream mms(mem1, mem2); next_non_empty2(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  // iterate over one merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  MergeMemStream(MergeMemNode* mm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    mm->iteration_setup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    init(mm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    debug_only(_cnt2 = 999);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  // iterate in parallel over two merges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  // only iterates through non-empty elements of mm2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  MergeMemStream(MergeMemNode* mm, const MergeMemNode* mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    assert(mm2, "second argument must be a MergeMem also");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    ((MergeMemNode*)mm2)->iteration_setup();  // update hidden state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    mm->iteration_setup(mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    init(mm, mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    _cnt2 = mm2->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  ~MergeMemStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  MergeMemNode* all_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    return _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  Node* base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    assert(_mm_base == _mm->base_memory(), "no update to base memory, please");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  const MergeMemNode* all_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    assert(_mm2 != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    return _mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  bool at_base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    return _idx == Compile::AliasIdxBot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  int alias_idx() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    return _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  const TypePtr* adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    return Compile::current()->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  const TypePtr* adr_type(Compile* C) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    return C->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  bool is_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    assert(_mem->is_top() == (_mem==_mm->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    return _mem->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  bool is_empty2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    assert(_mem2, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    assert(_mem2->is_top() == (_mem2==_mm2->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    return _mem2->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  Node* memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    assert(!is_empty(), "must not be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    return _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  // get the current memory, regardless of empty or non-empty status
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  Node* force_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    assert(!is_empty() || !at_base_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    // Use _mm_base to defend against updates to _mem->base_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    Node *mem = _mem->is_top() ? _mm_base : _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    assert(mem == check_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    return mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  Node* memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    assert(_mem2 == check_memory2(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    return _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  void set_memory(Node* mem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    if (at_base_memory()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
      // Note that this does not change the invariant _mm_base.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
      _mm->set_base_memory(mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      _mm->set_memory_at(_idx, mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    _mem = mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // Recover from a side effect to the MergeMemNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  void set_memory() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  bool next()  { return next(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  bool next2() { return next(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  bool next_non_empty()  { return next_non_empty(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  bool next_non_empty2() { return next_non_empty(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  // next_non_empty2 can yield states where is_empty() is true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  // find the next item, which might be empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  bool next(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
    assert((_mm2 != NULL) == have_mm2, "use other next");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    if (++_idx < _cnt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
      // Note:  This iterator allows _mm to be non-sparse.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
      // It behaves the same whether _mem is top or base_memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
      _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
      if (have_mm2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
        _mem2 = _mm2->in((_idx < _cnt2) ? _idx : Compile::AliasIdxTop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  // find the next non-empty item
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  bool next_non_empty(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    while (next(have_mm2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
      if (!is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
        // make sure _mem2 is filled in sensibly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
        if (have_mm2 && _mem2->is_top())  _mem2 = _mm2->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
      } else if (have_mm2 && !is_empty2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
        return true;   // is_empty() == true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
//------------------------------Prefetch---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
// Non-faulting prefetch load.  Prefetch for many reads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
class PrefetchReadNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  PrefetchReadNode(Node *abio, Node *adr) : Node(0,abio,adr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  virtual uint match_edge(uint idx) const { return idx==2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  virtual const Type *bottom_type() const { return Type::ABIO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
// Non-faulting prefetch load.  Prefetch for many reads & many writes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
class PrefetchWriteNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  PrefetchWriteNode(Node *abio, Node *adr) : Node(0,abio,adr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  virtual uint match_edge(uint idx) const { return idx==2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  virtual const Type *bottom_type() const { return Type::ABIO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
};