hotspot/src/share/vm/opto/memnode.hpp
author thartmann
Tue, 05 Aug 2014 09:58:52 +0200
changeset 25930 eae8b7490d2c
parent 24345 616bc709c0e4
child 27637 cf68c0af6882
permissions -rw-r--r--
8054033: Remove unused references to Compile* Summary: Removed unused references to Compile* missed by JDK-8034812. Reviewed-by: kvn, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
     2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5251
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5251
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5251
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    25
#ifndef SHARE_VM_OPTO_MEMNODE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    26
#define SHARE_VM_OPTO_MEMNODE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    28
#include "opto/multnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    29
#include "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    30
#include "opto/opcodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    31
#include "opto/type.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class MultiNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class PhaseCCP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class PhaseTransform;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//------------------------------MemNode----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Load or Store, possibly throwing a NULL pointer exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class MemNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  const TypePtr* _adr_type;     // What kind of memory is being addressed?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  virtual uint size_of() const; // Size is bigger (ASSERT only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  enum { Control,               // When is it safe to do this load?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
         Memory,                // Chunk of memory is being loaded from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
         Address,               // Actually address, derived from base
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
         ValueIn,               // Value to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
         OopStore               // Preceeding oop store, only in StoreCM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  };
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    54
  typedef enum { unordered = 0,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    55
                 acquire,       // Load has to acquire or be succeeded by MemBarAcquire.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    56
                 release        // Store has to release or be preceded by MemBarRelease.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    57
  } MemOrd;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    : Node(c0,c1,c2   ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    : Node(c0,c1,c2,c3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3, Node *c4)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    : Node(c0,c1,c2,c3,c4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
206
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 202
diff changeset
    75
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Helpers for the optimizer.  Documented in memnode.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static bool detect_ptr_independence(Node* p1, AllocateNode* a1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                      Node* p2, AllocateNode* a2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                      PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static bool adr_phi_is_loop_invariant(Node* adr_phi, Node* cast);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15813
diff changeset
    82
  static Node *optimize_simple_memory_chain(Node *mchain, const TypeOopPtr *t_oop, Node *load, PhaseGVN *phase);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15813
diff changeset
    83
  static Node *optimize_memory_chain(Node *mchain, const TypePtr *t_adr, Node *load, PhaseGVN *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // This one should probably be a phase-specific function:
258
dbd6f2ed7ba0 6692301: Side effect in NumberFormat tests with -server -Xcomp
kvn
parents: 247
diff changeset
    85
  static bool all_controls_dominate(Node* dom, Node* sub);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
    87
  // Find any cast-away of null-ness and keep its control.
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
    88
  static  Node *Ideal_common_DU_postCCP( PhaseCCP *ccp, Node* n, Node* adr );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  virtual Node *Ideal_DU_postCCP( PhaseCCP *ccp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  virtual const class TypePtr *adr_type() const;  // returns bottom_type of address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Shared code for Ideal methods:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  Node *Ideal_common(PhaseGVN *phase, bool can_reshape);  // Return -1 for short-circuit NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Helper function for adr_type() implementations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static const TypePtr* calculate_adr_type(const Type* t, const TypePtr* cross_check = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // Raw access function, to allow copying of adr_type efficiently in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // product builds and retain the debug info for debug builds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  const TypePtr *raw_adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    return _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Map a load or store opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // (Return -1 if unknown.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  virtual int store_Opcode() const { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // What is the type of the value in memory?  (T_VOID mean "unspecified".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  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
   115
  virtual int memory_size() const {
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   116
#ifdef ASSERT
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   117
    return type2aelembytes(memory_type(), true);
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   118
#else
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   119
    return type2aelembytes(memory_type());
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   120
#endif
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   121
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Search through memory states which precede this node (load or store).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Look for an exact match for the address, with no intervening
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // aliased stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  Node* find_previous_store(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Can this node (load or store) accurately see a stored value in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // the given memory state?  (The state may or may not be in(Memory).)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  Node* can_see_stored_value(Node* st, PhaseTransform* phase) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  static void dump_adr_type(const Node* mem, const TypePtr* adr_type, outputStream *st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
//------------------------------LoadNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// Load value; requires Memory and Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
class LoadNode : public MemNode {
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   141
private:
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   142
  // On platforms with weak memory ordering (e.g., PPC, Ia64) we distinguish
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   143
  // loads that can be reordered, and such requiring acquire semantics to
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   144
  // adhere to the Java specification.  The required behaviour is stored in
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   145
  // this field.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   146
  const MemOrd _mo;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   147
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
protected:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   149
  virtual uint cmp(const Node &n) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  const Type* const _type;      // What kind of value is loaded?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   154
  LoadNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *rt, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   155
    : MemNode(c,mem,adr,at), _type(rt), _mo(mo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    init_class_id(Class_Load);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   158
  inline bool is_unordered() const { return !is_acquire(); }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   159
  inline bool is_acquire() const {
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   160
    assert(_mo == unordered || _mo == acquire, "unexpected");
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   161
    return _mo == acquire;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   162
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Polymorphic factory method:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   165
   static Node* make(PhaseGVN& gvn, Node *c, Node *mem, Node *adr,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   166
                     const TypePtr* at, const Type *rt, BasicType bt, MemOrd mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual uint hash()   const;  // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Handle algebraic identities here.  If we have an identity, return the Node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // we are equivalent to.  We look for Load of a Store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // If the load is from Field memory and the pointer is non-null, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // zero out the control input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   178
  // Split instance field load through Phi.
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   179
  Node* split_through_phi(PhaseGVN *phase);
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   180
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   181
  // 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
   182
  Node *eliminate_autobox(PhaseGVN *phase);
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   183
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // then call the virtual add() to set the type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   188
  // Common methods for LoadKlass and LoadNKlass nodes.
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   189
  const Type *klass_value_common( PhaseTransform *phase ) const;
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   190
  Node *klass_identity_common( PhaseTransform *phase );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   191
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  virtual uint ideal_reg() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Following method is copied from TypeNode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void set_type(const Type* t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    assert(t != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    *(const Type**)&_type = t;   // cast away const-ness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    // If this node is in the hash table, make sure it doesn't need a rehash.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    assert(check_hash == NO_HASH || check_hash == hash(), "type change must preserve hash code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  const Type* type() const { assert(_type != NULL, "sanity"); return _type; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Map a load opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  virtual int store_Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
237
fba97e902303 6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents: 206
diff changeset
   210
  // 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
   211
  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
   212
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
#endif
5889
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   216
#ifdef ASSERT
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   217
  // Helper function to allow a raw load without control edge for some cases
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   218
  static bool is_immutable_value(Node* adr);
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   219
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  const Type* load_array_final_field(const TypeKlassPtr *tkls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                                     ciKlass* klass) const;
21526
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   223
  // depends_only_on_test is almost always true, and needs to be almost always
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   224
  // true to enable key hoisting & commoning optimizations.  However, for the
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   225
  // special case of RawPtr loads from TLS top & end, and other loads performed by
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   226
  // GC barriers, the control edge carries the dependence preventing hoisting past
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   227
  // a Safepoint instead of the memory edge.  (An unfortunate consequence of having
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   228
  // Safepoints not set Raw Memory; itself an unfortunate consequence of having Nodes
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   229
  // which produce results (new raw memory state) inside of loops preventing all
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   230
  // manner of other optimizations).  Basically, it's ugly but so is the alternative.
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   231
  // See comment in macro.cpp, around line 125 expand_allocate_common().
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   232
  virtual bool depends_only_on_test() const { return adr_type() != TypeRawPtr::BOTTOM; }
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   233
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
//------------------------------LoadBNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// Load a byte (8bits signed) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
class LoadBNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   240
  LoadBNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   241
    : LoadNode(c, mem, adr, at, ti, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   245
  virtual const Type *Value(PhaseTransform *phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  virtual int store_Opcode() const { return Op_StoreB; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   250
//------------------------------LoadUBNode-------------------------------------
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   251
// Load a unsigned byte (8bits unsigned) from memory
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   252
class LoadUBNode : public LoadNode {
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   253
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   254
  LoadUBNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const TypeInt* ti, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   255
    : LoadNode(c, mem, adr, at, ti, mo) {}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   256
  virtual int Opcode() const;
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   257
  virtual uint ideal_reg() const { return Op_RegI; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   258
  virtual Node* Ideal(PhaseGVN *phase, bool can_reshape);
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   259
  virtual const Type *Value(PhaseTransform *phase) const;
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   260
  virtual int store_Opcode() const { return Op_StoreB; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   261
  virtual BasicType memory_type() const { return T_BYTE; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   262
};
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   263
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 1500
diff changeset
   264
//------------------------------LoadUSNode-------------------------------------
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 1500
diff changeset
   265
// Load an unsigned short/char (16bits unsigned) from memory
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 1500
diff changeset
   266
class LoadUSNode : public LoadNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   268
  LoadUSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   269
    : LoadNode(c, mem, adr, at, ti, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   273
  virtual const Type *Value(PhaseTransform *phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  virtual int store_Opcode() const { return Op_StoreC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   278
//------------------------------LoadSNode--------------------------------------
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   279
// Load a short (16bits signed) from memory
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   280
class LoadSNode : public LoadNode {
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   281
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   282
  LoadSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   283
    : LoadNode(c, mem, adr, at, ti, mo) {}
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   284
  virtual int Opcode() const;
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   285
  virtual uint ideal_reg() const { return Op_RegI; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   286
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   287
  virtual const Type *Value(PhaseTransform *phase) const;
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   288
  virtual int store_Opcode() const { return Op_StoreC; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   289
  virtual BasicType memory_type() const { return T_SHORT; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   290
};
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
//------------------------------LoadINode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
// Load an integer from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
class LoadINode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   296
  LoadINode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   297
    : LoadNode(c, mem, adr, at, ti, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  virtual int store_Opcode() const { return Op_StoreI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
//------------------------------LoadRangeNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// Load an array length from the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
class LoadRangeNode : public LoadINode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   308
  LoadRangeNode(Node *c, Node *mem, Node *adr, const TypeInt *ti = TypeInt::POS)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   309
    : LoadINode(c, mem, adr, TypeAryPtr::RANGE, ti, MemNode::unordered) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  virtual Node *Identity( PhaseTransform *phase );
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 961
diff changeset
   313
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
//------------------------------LoadLNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// Load a long from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
class LoadLNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  virtual uint cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    return _require_atomic_access == ((LoadLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      && LoadNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  const bool _require_atomic_access;  // is piecewise load forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   328
  LoadLNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeLong *tl,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   329
            MemOrd mo, bool require_atomic_access = false)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   330
    : LoadNode(c, mem, adr, at, tl, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  virtual int store_Opcode() const { return Op_StoreL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  virtual BasicType memory_type() const { return T_LONG; }
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   335
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   336
  static LoadLNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type,
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   337
                                const Type* rt, MemOrd mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    LoadNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
//------------------------------LoadL_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// Load a long from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
class LoadL_unalignedNode : public LoadLNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   350
  LoadL_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   351
    : LoadLNode(c, mem, adr, at, TypeLong::LONG, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
//------------------------------LoadFNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
// Load a float (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
class LoadFNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   359
  LoadFNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   360
    : LoadNode(c, mem, adr, at, t, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  virtual int store_Opcode() const { return Op_StoreF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
//------------------------------LoadDNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// Load a double (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
class LoadDNode : public LoadNode {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   370
  virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   371
  virtual uint cmp( const Node &n ) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   372
    return _require_atomic_access == ((LoadDNode&)n)._require_atomic_access
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   373
      && LoadNode::cmp(n);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   374
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   375
  virtual uint size_of() const { return sizeof(*this); }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   376
  const bool _require_atomic_access;  // is piecewise load forbidden?
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   377
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
public:
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   379
  LoadDNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t,
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   380
            MemOrd mo, bool require_atomic_access = false)
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   381
    : LoadNode(c, mem, adr, at, t, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  virtual int store_Opcode() const { return Op_StoreD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  virtual BasicType memory_type() const { return T_DOUBLE; }
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   386
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   387
  static LoadDNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type,
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   388
                                const Type* rt, MemOrd mo);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   389
#ifndef PRODUCT
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   390
  virtual void dump_spec(outputStream *st) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   391
    LoadNode::dump_spec(st);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   392
    if (_require_atomic_access)  st->print(" Atomic!");
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   393
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   394
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
//------------------------------LoadD_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// Load a double from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
class LoadD_unalignedNode : public LoadDNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   401
  LoadD_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   402
    : LoadDNode(c, mem, adr, at, Type::DOUBLE, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  virtual int Opcode() 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
//------------------------------LoadPNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// Load a pointer from memory (either object or array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
class LoadPNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   410
  LoadPNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypePtr* t, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   411
    : LoadNode(c, mem, adr, at, t, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  virtual int store_Opcode() const { return Op_StoreP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   418
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   419
//------------------------------LoadNNode--------------------------------------
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   420
// Load a narrow oop from memory (either object or array)
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   421
class LoadNNode : public LoadNode {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   422
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   423
  LoadNNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const Type* t, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   424
    : LoadNode(c, mem, adr, at, t, mo) {}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   425
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   426
  virtual uint ideal_reg() const { return Op_RegN; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   427
  virtual int store_Opcode() const { return Op_StoreN; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   428
  virtual BasicType memory_type() const { return T_NARROWOOP; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   429
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   430
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
//------------------------------LoadKlassNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// Load a Klass from an object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
class LoadKlassNode : public LoadPNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   435
  LoadKlassNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypeKlassPtr *tk, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   436
    : LoadPNode(c, mem, adr, at, tk, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  virtual bool depends_only_on_test() const { return true; }
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   441
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   442
  // Polymorphic factory method:
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   443
  static Node* make( PhaseGVN& gvn, Node *mem, Node *adr, const TypePtr* at,
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   444
                     const TypeKlassPtr *tk = TypeKlassPtr::OBJECT );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   447
//------------------------------LoadNKlassNode---------------------------------
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   448
// Load a narrow Klass from an object.
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   449
class LoadNKlassNode : public LoadNNode {
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   450
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   451
  LoadNKlassNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypeNarrowKlass *tk, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   452
    : LoadNNode(c, mem, adr, at, tk, mo) {}
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   453
  virtual int Opcode() const;
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   454
  virtual uint ideal_reg() const { return Op_RegN; }
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   455
  virtual int store_Opcode() const { return Op_StoreNKlass; }
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   456
  virtual BasicType memory_type() const { return T_NARROWKLASS; }
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   457
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   458
  virtual const Type *Value( PhaseTransform *phase ) const;
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   459
  virtual Node *Identity( PhaseTransform *phase );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   460
  virtual bool depends_only_on_test() const { return true; }
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   461
};
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   462
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   463
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
//------------------------------StoreNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
// Store value; requires Store, Address and Value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
class StoreNode : public MemNode {
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   467
private:
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   468
  // On platforms with weak memory ordering (e.g., PPC, Ia64) we distinguish
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   469
  // stores that can be reordered, and such requiring release semantics to
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   470
  // adhere to the Java specification.  The required behaviour is stored in
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   471
  // this field.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   472
  const MemOrd _mo;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   473
  // Needed for proper cloning.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   474
  virtual uint size_of() const { return sizeof(*this); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  Node *Ideal_masked_input       (PhaseGVN *phase, uint mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  Node *Ideal_sign_extended_input(PhaseGVN *phase, int  num_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   483
  // We must ensure that stores of object references will be visible
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   484
  // only after the object's initialization. So the callers of this
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   485
  // procedure must indicate that the store requires `release'
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   486
  // semantics, if the stored value is an object reference that might
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   487
  // point to a new object and may become externally visible.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   488
  StoreNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   489
    : MemNode(c, mem, adr, at, val), _mo(mo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   492
  StoreNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   493
    : MemNode(c, mem, adr, at, val, oop_store), _mo(mo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   497
  inline bool is_unordered() const { return !is_release(); }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   498
  inline bool is_release() const {
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   499
    assert((_mo == unordered || _mo == release), "unexpected");
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   500
    return _mo == release;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   501
  }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   502
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   503
  // Conservatively release stores of object references in order to
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   504
  // ensure visibility of object initialization.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   505
  static inline MemOrd release_if_reference(const BasicType t) {
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   506
    const MemOrd mo = (t == T_ARRAY ||
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   507
                       t == T_ADDRESS || // Might be the address of an object reference (`boxing').
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   508
                       t == T_OBJECT) ? release : unordered;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   509
    return mo;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   510
  }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   511
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   512
  // Polymorphic factory method
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   513
  //
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   514
  // We must ensure that stores of object references will be visible
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   515
  // only after the object's initialization. So the callers of this
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   516
  // procedure must indicate that the store requires `release'
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   517
  // semantics, if the stored value is an object reference that might
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   518
  // point to a new object and may become externally visible.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   519
  static StoreNode* make(PhaseGVN& gvn, Node *c, Node *mem, Node *adr,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   520
                         const TypePtr* at, Node *val, BasicType bt, MemOrd mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  virtual uint hash() const;    // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // If the store is to Field memory and the pointer is non-null, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // zero out the control input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // then call the virtual add() to set the type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // Check for identity function on memory (Load then Store at same address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  virtual const Type *bottom_type() const;  // returns Type::MEMORY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // Map a store opcode to its corresponding own opcode, trivially.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  virtual int store_Opcode() const { return Opcode(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // have all possible loads of the value stored been optimized away?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  bool value_never_loaded(PhaseTransform *phase) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
//------------------------------StoreBNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
// Store byte to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
class StoreBNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   551
  StoreBNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   552
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
//------------------------------StoreCNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
// Store char/short to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
class StoreCNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   562
  StoreCNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   563
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
//------------------------------StoreINode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
// Store int to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
class StoreINode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   573
  StoreINode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   574
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
//------------------------------StoreLNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
// Store long to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
class StoreLNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  virtual uint cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    return _require_atomic_access == ((StoreLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
      && StoreNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  const bool _require_atomic_access;  // is piecewise store forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   591
  StoreLNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo, bool require_atomic_access = false)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   592
    : StoreNode(c, mem, adr, at, val, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  virtual BasicType memory_type() const { return T_LONG; }
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   595
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   596
  static StoreLNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, Node* val, MemOrd mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    StoreNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
//------------------------------StoreFNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
// Store float to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
class StoreFNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   609
  StoreFNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   610
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
//------------------------------StoreDNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
// Store double to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
class StoreDNode : public StoreNode {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   618
  virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   619
  virtual uint cmp( const Node &n ) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   620
    return _require_atomic_access == ((StoreDNode&)n)._require_atomic_access
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   621
      && StoreNode::cmp(n);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   622
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   623
  virtual uint size_of() const { return sizeof(*this); }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   624
  const bool _require_atomic_access;  // is piecewise store forbidden?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
public:
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   626
  StoreDNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val,
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   627
             MemOrd mo, bool require_atomic_access = false)
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   628
    : StoreNode(c, mem, adr, at, val, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  virtual BasicType memory_type() const { return T_DOUBLE; }
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   631
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   632
  static StoreDNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, Node* val, MemOrd mo);
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   633
#ifndef PRODUCT
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   634
  virtual void dump_spec(outputStream *st) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   635
    StoreNode::dump_spec(st);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   636
    if (_require_atomic_access)  st->print(" Atomic!");
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   637
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   638
#endif
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   639
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
//------------------------------StorePNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
// Store pointer to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
class StorePNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   646
  StorePNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   647
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   652
//------------------------------StoreNNode-------------------------------------
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   653
// Store narrow oop to memory
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   654
class StoreNNode : public StoreNode {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   655
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   656
  StoreNNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   657
    : StoreNode(c, mem, adr, at, val, mo) {}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   658
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   659
  virtual BasicType memory_type() const { return T_NARROWOOP; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   660
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   661
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   662
//------------------------------StoreNKlassNode--------------------------------------
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   663
// Store narrow klass to memory
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   664
class StoreNKlassNode : public StoreNNode {
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   665
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   666
  StoreNKlassNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   667
    : StoreNNode(c, mem, adr, at, val, mo) {}
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   668
  virtual int Opcode() const;
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   669
  virtual BasicType memory_type() const { return T_NARROWKLASS; }
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   670
};
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   671
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
//------------------------------StoreCMNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
// Store card-mark byte to memory for CM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
// The last StoreCM before a SafePoint must be preserved and occur after its "oop" store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
// Preceeding equivalent StoreCMs may be eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
class StoreCMNode : public StoreNode {
3904
007a45522a7f 6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents: 2348
diff changeset
   677
 private:
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   678
  virtual uint hash() const { return StoreNode::hash() + _oop_alias_idx; }
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   679
  virtual uint cmp( const Node &n ) const {
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   680
    return _oop_alias_idx == ((StoreCMNode&)n)._oop_alias_idx
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   681
      && StoreNode::cmp(n);
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   682
  }
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   683
  virtual uint size_of() const { return sizeof(*this); }
3904
007a45522a7f 6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents: 2348
diff changeset
   684
  int _oop_alias_idx;   // The alias_idx of OopStore
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   685
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
public:
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   687
  StoreCMNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store, int oop_alias_idx ) :
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   688
    StoreNode(c, mem, adr, at, val, oop_store, MemNode::release),
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   689
    _oop_alias_idx(oop_alias_idx) {
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   690
    assert(_oop_alias_idx >= Compile::AliasIdxRaw ||
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   691
           _oop_alias_idx == Compile::AliasIdxBot && Compile::current()->AliasLevel() == 0,
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   692
           "bad oop alias idx");
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   693
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  virtual Node *Identity( PhaseTransform *phase );
3904
007a45522a7f 6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents: 2348
diff changeset
   696
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  virtual BasicType memory_type() const { return T_VOID; } // unspecific
3904
007a45522a7f 6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents: 2348
diff changeset
   699
  int oop_alias_idx() const { return _oop_alias_idx; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
//------------------------------LoadPLockedNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
// Load-locked a pointer from memory (either object or array).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// On Sparc & Intel this is implemented as a normal pointer load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
// On PowerPC and friends it's a real load-locked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
class LoadPLockedNode : public LoadPNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   708
  LoadPLockedNode(Node *c, Node *mem, Node *adr, MemOrd mo)
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   709
    : LoadPNode(c, mem, adr, TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  virtual int store_Opcode() const { return Op_StorePConditional; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  virtual bool depends_only_on_test() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
//------------------------------SCMemProjNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
// This class defines a projection of the memory  state of a store conditional node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
// These nodes return a value, but also update memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
class SCMemProjNode : public ProjNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  enum {SCMEMPROJCON = (uint)-2};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  SCMemProjNode( Node *src) : ProjNode( src, SCMEMPROJCON) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  virtual bool      is_CFG() const  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  virtual const Type *bottom_type() const {return Type::MEMORY;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  virtual const TypePtr *adr_type() const { return in(0)->in(MemNode::Memory)->adr_type();}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  virtual uint ideal_reg() const { return 0;} // memory projections don't have a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  virtual void dump_spec(outputStream *st) const {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
//------------------------------LoadStoreNode---------------------------
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 670
diff changeset
   734
// Note: is_Mem() method returns 'true' for this class.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
class LoadStoreNode : public Node {
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   736
private:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   737
  const Type* const _type;      // What kind of value is loaded?
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   738
  const TypePtr* _adr_type;     // What kind of memory is being addressed?
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   739
  virtual uint size_of() const; // Size is bigger
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   740
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   741
  LoadStoreNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* rt, uint required );
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   742
  virtual bool depends_only_on_test() const { return false; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   743
  virtual uint match_edge(uint idx) const { return idx == MemNode::Address || idx == MemNode::ValueIn; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   744
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   745
  virtual const Type *bottom_type() const { return _type; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   746
  virtual uint ideal_reg() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   747
  virtual const class TypePtr *adr_type() const { return _adr_type; }  // returns bottom_type of address
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   748
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   749
  bool result_not_used() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   750
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   751
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   752
class LoadStoreConditionalNode : public LoadStoreNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  };
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   757
  LoadStoreConditionalNode(Node *c, Node *mem, Node *adr, Node *val, Node *ex);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
//------------------------------StorePConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
// Conditionally store pointer to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   763
class StorePConditionalNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   765
  StorePConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreConditionalNode(c, mem, adr, val, ll) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // Produces flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  virtual uint ideal_reg() const { return Op_RegFlags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   771
//------------------------------StoreIConditionalNode---------------------------
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   772
// Conditionally store int to memory, if no change since prior
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   773
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   774
class StoreIConditionalNode : public LoadStoreConditionalNode {
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   775
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   776
  StoreIConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ii ) : LoadStoreConditionalNode(c, mem, adr, val, ii) { }
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   777
  virtual int Opcode() const;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   778
  // Produces flags
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   779
  virtual uint ideal_reg() const { return Op_RegFlags; }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   780
};
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   781
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
//------------------------------StoreLConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
// Conditionally store long to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   785
class StoreLConditionalNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   787
  StoreLConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreConditionalNode(c, mem, adr, val, ll) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  virtual int Opcode() const;
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   789
  // Produces flags
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   790
  virtual uint ideal_reg() const { return Op_RegFlags; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
//------------------------------CompareAndSwapLNode---------------------------
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   795
class CompareAndSwapLNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   797
  CompareAndSwapLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
//------------------------------CompareAndSwapINode---------------------------
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   803
class CompareAndSwapINode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   805
  CompareAndSwapINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
//------------------------------CompareAndSwapPNode---------------------------
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   811
class CompareAndSwapPNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   813
  CompareAndSwapPNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   817
//------------------------------CompareAndSwapNNode---------------------------
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   818
class CompareAndSwapNNode : public LoadStoreConditionalNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   819
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   820
  CompareAndSwapNNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   821
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   822
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   823
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   824
//------------------------------GetAndAddINode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   825
class GetAndAddINode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   826
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   827
  GetAndAddINode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::INT, 4) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   828
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   829
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   830
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   831
//------------------------------GetAndAddLNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   832
class GetAndAddLNode : public LoadStoreNode {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   833
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   834
  GetAndAddLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   835
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   836
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   837
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   838
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   839
//------------------------------GetAndSetINode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   840
class GetAndSetINode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   841
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   842
  GetAndSetINode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::INT, 4) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   843
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   844
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   845
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   846
//------------------------------GetAndSetINode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   847
class GetAndSetLNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   848
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   849
  GetAndSetLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   850
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   851
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   852
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   853
//------------------------------GetAndSetPNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   854
class GetAndSetPNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   855
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   856
  GetAndSetPNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* t ) : LoadStoreNode(c, mem, adr, val, at, t, 4) { }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   857
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   858
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   859
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   860
//------------------------------GetAndSetNNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   861
class GetAndSetNNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   862
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   863
  GetAndSetNNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* t ) : LoadStoreNode(c, mem, adr, val, at, t, 4) { }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   864
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   865
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   866
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
//------------------------------ClearArray-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
class ClearArrayNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
public:
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   870
  ClearArrayNode( Node *ctrl, Node *arymem, Node *word_cnt, Node *base )
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   871
    : Node(ctrl,arymem,word_cnt,base) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   872
    init_class_id(Class_ClearArray);
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   873
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  virtual int         Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  // ClearArray modifies array elements, and so affects only the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  // array memory addressed by the bottom_type of its base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  virtual const class TypePtr *adr_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  // Clear the given area of an object or array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  // The start offset must always be aligned mod BytesPerInt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  // The end offset must always be aligned mod BytesPerLong.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  // Return the new memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
                            intptr_t end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
                            Node* start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
                            PhaseGVN* phase);
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   899
  // Return allocation input memory edge if it is different instance
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   900
  // or itself if it is the one we are looking for.
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
   901
  static bool step_through(Node** np, uint instance_id, PhaseTransform* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
//------------------------------MemBar-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
// There are different flavors of Memory Barriers to match the Java Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
// Model.  Monitor-enter and volatile-load act as Aquires: no following ref
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
// can be moved to before them.  We insert a MemBar-Acquire after a FastLock or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
// volatile-load.  Monitor-exit and volatile-store act as Release: no
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
   909
// preceding ref can be moved to after them.  We insert a MemBar-Release
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
// before a FastUnlock or volatile-store.  All volatiles need to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
// serialized, so we follow all volatile-stores with a MemBar-Volatile to
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
   912
// separate it from any following volatile-load.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
class MemBarNode: public MultiNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // Memory type this node is serializing.  Usually either rawptr or bottom.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  const TypePtr* _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    Precedent = TypeFunc::Parms  // optional edge to force precedence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  MemBarNode(Compile* C, int alias_idx, Node* precedent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  virtual int Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  virtual const class TypePtr *adr_type() const { return _adr_type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  virtual const Type *bottom_type() const { return TypeTuple::MEMBAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  virtual Node *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  // Factory method.  Builds a wide or narrow membar.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  // Optional 'precedent' becomes an extra edge if not null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  static MemBarNode* make(Compile* C, int opcode,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
                          int alias_idx = Compile::AliasIdxBot,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
                          Node* precedent = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
// "Acquire" - no following ref can move before (but earlier refs can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
// follow, like an early Load stalled in cache).  Requires multi-cpu
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   942
// visibility.  Inserted after a volatile load.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
class MemBarAcquireNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  MemBarAcquireNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   950
// "Acquire" - no following ref can move before (but earlier refs can
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   951
// follow, like an early Load stalled in cache).  Requires multi-cpu
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   952
// visibility.  Inserted independ of any load, as required
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   953
// for intrinsic sun.misc.Unsafe.loadFence().
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   954
class LoadFenceNode: public MemBarNode {
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   955
public:
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   956
  LoadFenceNode(Compile* C, int alias_idx, Node* precedent)
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   957
    : MemBarNode(C, alias_idx, precedent) {}
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   958
  virtual int Opcode() const;
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   959
};
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   960
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
// "Release" - no earlier ref can move after (but later refs can move
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
// up, like a speculative pipelined cache-hitting Load).  Requires
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   963
// multi-cpu visibility.  Inserted before a volatile store.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
class MemBarReleaseNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  MemBarReleaseNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   971
// "Release" - no earlier ref can move after (but later refs can move
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   972
// up, like a speculative pipelined cache-hitting Load).  Requires
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   973
// multi-cpu visibility.  Inserted independent of any store, as required
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   974
// for intrinsic sun.misc.Unsafe.storeFence().
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   975
class StoreFenceNode: public MemBarNode {
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   976
public:
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   977
  StoreFenceNode(Compile* C, int alias_idx, Node* precedent)
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   978
    : MemBarNode(C, alias_idx, precedent) {}
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   979
  virtual int Opcode() const;
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   980
};
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
   981
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   982
// "Acquire" - no following ref can move before (but earlier refs can
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   983
// follow, like an early Load stalled in cache).  Requires multi-cpu
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   984
// visibility.  Inserted after a FastLock.
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   985
class MemBarAcquireLockNode: public MemBarNode {
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   986
public:
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   987
  MemBarAcquireLockNode(Compile* C, int alias_idx, Node* precedent)
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   988
    : MemBarNode(C, alias_idx, precedent) {}
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   989
  virtual int Opcode() const;
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   990
};
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   991
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   992
// "Release" - no earlier ref can move after (but later refs can move
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   993
// up, like a speculative pipelined cache-hitting Load).  Requires
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   994
// multi-cpu visibility.  Inserted before a FastUnLock.
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   995
class MemBarReleaseLockNode: public MemBarNode {
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   996
public:
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   997
  MemBarReleaseLockNode(Compile* C, int alias_idx, Node* precedent)
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   998
    : MemBarNode(C, alias_idx, precedent) {}
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
   999
  virtual int Opcode() const;
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1000
};
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1001
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1002
class MemBarStoreStoreNode: public MemBarNode {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1003
public:
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1004
  MemBarStoreStoreNode(Compile* C, int alias_idx, Node* precedent)
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1005
    : MemBarNode(C, alias_idx, precedent) {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1006
    init_class_id(Class_MemBarStoreStore);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1007
  }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1008
  virtual int Opcode() const;
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1009
};
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1010
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
// Ordering between a volatile store and a following volatile load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
// Requires multi-CPU visibility?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
class MemBarVolatileNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  MemBarVolatileNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
// Ordering within the same CPU.  Used to order unsafe memory references
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
// inside the compiler when we lack alias info.  Not needed "outside" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
// compiler because the CPU does all the ordering for us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
class MemBarCPUOrderNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  MemBarCPUOrderNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
// Isolation of object setup after an AllocateNode and before next safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
// (See comment in memnode.cpp near InitializeNode::InitializeNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
class InitializeNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  friend class AllocateNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1036
  enum {
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1037
    Incomplete    = 0,
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1038
    Complete      = 1,
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1039
    WithArraycopy = 2
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1040
  };
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1041
  int _is_complete;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1043
  bool _does_not_escape;
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1044
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    Control    = TypeFunc::Control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    Memory     = TypeFunc::Memory,     // MergeMem for states affected by this op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    RawAddress = TypeFunc::Parms+0,    // the newly-allocated raw address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    RawStores  = TypeFunc::Parms+1     // zero or more stores (or TOP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  InitializeNode(Compile* C, int adr_type, Node* rawoop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  virtual const RegMask &in_RegMask(uint) const;  // mask for RawAddress
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  // Manage incoming memory edges via a MergeMem on in(Memory):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  Node* memory(uint alias_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  // The raw memory edge coming directly from the Allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  // The contents of this memory are *always* all-zero-bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  Node* zero_memory() { return memory(Compile::AliasIdxRaw); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  // Return the corresponding allocation for this initialization (or null if none).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  // (Note: Both InitializeNode::allocation and AllocateNode::initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  // are defined in graphKit.cpp, which sets up the bidirectional relation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  AllocateNode* allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  // Anything other than zeroing in this init?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  bool is_non_zero();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  // An InitializeNode must completed before macro expansion is done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  // Completion requires that the AllocateNode must be followed by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  // initialization of the new memory to zero, then to any initializers.
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1077
  bool is_complete() { return _is_complete != Incomplete; }
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1078
  bool is_complete_with_arraycopy() { return (_is_complete & WithArraycopy) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  // Mark complete.  (Must not yet be complete.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  void set_complete(PhaseGVN* phase);
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1082
  void set_complete_with_arraycopy() { _is_complete = Complete | WithArraycopy; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1084
  bool does_not_escape() { return _does_not_escape; }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1085
  void set_does_not_escape() { _does_not_escape = true; }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1086
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  // ensure all non-degenerate stores are ordered and non-overlapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  bool stores_are_sane(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  // See if this store can be captured; return offset where it initializes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  // Return 0 if the store cannot be moved (any sort of problem).
15813
6efd4c793e47 8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents: 15242
diff changeset
  1094
  intptr_t can_capture_store(StoreNode* st, PhaseTransform* phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  // Capture another store; reformat it to write my internal raw memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  // Return the captured copy, else NULL if there is some sort of problem.
15813
6efd4c793e47 8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents: 15242
diff changeset
  1098
  Node* capture_store(StoreNode* st, intptr_t start, PhaseTransform* phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  // Find captured store which corresponds to the range [start..start+size).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  // Return my own memory projection (meaning the initial zero bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  // if there is no such store.  Return NULL if there is a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  Node* find_captured_store(intptr_t start, int size_in_bytes, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  // Called when the associated AllocateNode is expanded into CFG.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  Node* complete_stores(Node* rawctl, Node* rawmem, Node* rawptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
                        intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
                        PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  void remove_extra_zeroes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  // Find out where a captured store should be placed (or already is placed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  int captured_store_insertion_point(intptr_t start, int size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
                                     PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  static intptr_t get_store_offset(Node* st, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  Node* make_raw_address(intptr_t offset, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15813
diff changeset
  1121
  bool detect_init_independence(Node* n, int& count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  void coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
                               PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  intptr_t find_next_fullword_store(uint i, PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
//------------------------------MergeMem---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
// (See comment in memnode.cpp near MergeMemNode::MergeMemNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
class MergeMemNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  virtual uint hash() const ;                  // { return NO_HASH; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  virtual uint cmp( const Node &n ) const ;    // Always fail, except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  friend class MergeMemStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  MergeMemNode(Node* def);  // clients use MergeMemNode::make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  // If the input is a whole memory state, clone it with all its slices intact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  // Otherwise, make a new memory state with just that base memory input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  // In either case, the result is a newly created MergeMem.
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
  1141
  static MergeMemNode* make(Node* base_memory);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  virtual Node *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  // sparse accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  // Fetch the previously stored "set_memory_at", or else the base memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  // (Caller should clone it if it is a phi-nest.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  Node* memory_at(uint alias_idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  // set the memory, regardless of its previous value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  void set_memory_at(uint alias_idx, Node* n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  // the "base" is the memory that provides the non-finite support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  Node* base_memory() const       { return in(Compile::AliasIdxBot); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  // warning: setting the base can implicitly set any of the other slices too
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  void set_base_memory(Node* def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  // sentinel value which denotes a copy of the base memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  Node*   empty_memory() const    { return in(Compile::AliasIdxTop); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  static Node* make_empty_memory(); // where the sentinel comes from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  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
  1165
  // hook for the iterator, to perform any necessary setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  void iteration_setup(const MergeMemNode* other = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  // push sentinels until I am at least as long as the other (semantic no-op)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  void grow_to_match(const MergeMemNode* other);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  bool verify_sparse() const PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
class MergeMemStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  MergeMemNode*       _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  const MergeMemNode* _mm2;  // optional second guy, contributes non-empty iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  Node*               _mm_base;  // loop-invariant base memory of _mm
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  int                 _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  int                 _cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  Node*               _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  Node*               _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  int                 _cnt2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  void init(MergeMemNode* mm, const MergeMemNode* mm2 = NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    // subsume_node will break sparseness at times, whenever a memory slice
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    // folds down to a copy of the base ("fat") memory.  In such a case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    // the raw edge will update to base, although it should be top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
    // This iterator will recognize either top or base_memory as an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    // "empty" slice.  See is_empty, is_empty2, and next below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    // The sparseness property is repaired in MergeMemNode::Ideal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
    // As long as access to a MergeMem goes through this iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
    // or the memory_at accessor, flaws in the sparseness will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
    // never be observed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
    // Also, iteration_setup repairs sparseness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    assert(mm->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    assert(mm2==NULL || mm2->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
    _mm  = mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
    _mm_base = mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
    _mm2 = mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    _cnt = mm->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
    _idx = Compile::AliasIdxBot-1; // start at the base memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
    _mem = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
    _mem2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  Node* check_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    if (at_base_memory())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
      return _mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    else if ((uint)_idx < _mm->req() && !_mm->in(_idx)->is_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
      return _mm->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
      return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  Node* check_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    return at_base_memory()? _mm2->base_memory(): _mm2->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  static bool match_memory(Node* mem, const MergeMemNode* mm, int idx) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  void assert_synch() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    assert(!_mem || _idx >= _cnt || match_memory(_mem, _mm, _idx),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
           "no side-effects except through the stream");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  // expected usages:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  // for (MergeMemStream mms(mem->is_MergeMem()); next_non_empty(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  // for (MergeMemStream mms(mem1, mem2); next_non_empty2(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  // iterate over one merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  MergeMemStream(MergeMemNode* mm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
    mm->iteration_setup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    init(mm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    debug_only(_cnt2 = 999);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  // iterate in parallel over two merges
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  // only iterates through non-empty elements of mm2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  MergeMemStream(MergeMemNode* mm, const MergeMemNode* mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    assert(mm2, "second argument must be a MergeMem also");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
    ((MergeMemNode*)mm2)->iteration_setup();  // update hidden state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
    mm->iteration_setup(mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    init(mm, mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
    _cnt2 = mm2->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  ~MergeMemStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  MergeMemNode* all_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    return _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  Node* base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    assert(_mm_base == _mm->base_memory(), "no update to base memory, please");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
    return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  const MergeMemNode* all_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
    assert(_mm2 != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    return _mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  bool at_base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    return _idx == Compile::AliasIdxBot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
  int alias_idx() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    return _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
  const TypePtr* adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    return Compile::current()->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  const TypePtr* adr_type(Compile* C) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
    return C->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
  bool is_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    assert(_mem->is_top() == (_mem==_mm->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    return _mem->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  bool is_empty2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
    assert(_mem2, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
    assert(_mem2->is_top() == (_mem2==_mm2->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
    return _mem2->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  Node* memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    assert(!is_empty(), "must not be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    return _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  // get the current memory, regardless of empty or non-empty status
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  Node* force_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    assert(!is_empty() || !at_base_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    // Use _mm_base to defend against updates to _mem->base_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    Node *mem = _mem->is_top() ? _mm_base : _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
    assert(mem == check_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
    return mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  Node* memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    assert(_mem2 == check_memory2(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    return _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  void set_memory(Node* mem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    if (at_base_memory()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      // Note that this does not change the invariant _mm_base.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
      _mm->set_base_memory(mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
      _mm->set_memory_at(_idx, mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
    _mem = mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  // Recover from a side effect to the MergeMemNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  void set_memory() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
    _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  bool next()  { return next(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  bool next2() { return next(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  bool next_non_empty()  { return next_non_empty(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  bool next_non_empty2() { return next_non_empty(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  // next_non_empty2 can yield states where is_empty() is true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  // find the next item, which might be empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  bool next(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
    assert((_mm2 != NULL) == have_mm2, "use other next");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    if (++_idx < _cnt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
      // Note:  This iterator allows _mm to be non-sparse.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
      // It behaves the same whether _mem is top or base_memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
      _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
      if (have_mm2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
        _mem2 = _mm2->in((_idx < _cnt2) ? _idx : Compile::AliasIdxTop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  // find the next non-empty item
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  bool next_non_empty(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
    while (next(have_mm2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      if (!is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
        // make sure _mem2 is filled in sensibly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
        if (have_mm2 && _mem2->is_top())  _mem2 = _mm2->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
      } else if (have_mm2 && !is_empty2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
        return true;   // is_empty() == true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
//------------------------------Prefetch---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
// Non-faulting prefetch load.  Prefetch for many reads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
class PrefetchReadNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  PrefetchReadNode(Node *abio, Node *adr) : Node(0,abio,adr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  virtual uint match_edge(uint idx) const { return idx==2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  virtual const Type *bottom_type() const { return Type::ABIO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
// Non-faulting prefetch load.  Prefetch for many reads & many writes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
class PrefetchWriteNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  PrefetchWriteNode(Node *abio, Node *adr) : Node(0,abio,adr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  virtual uint match_edge(uint idx) const { return idx==2; }
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1384
  virtual const Type *bottom_type() const { return Type::ABIO; }
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1385
};
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1386
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1387
// Allocation prefetch which may fault, TLAB size have to be adjusted.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1388
class PrefetchAllocationNode : public Node {
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1389
public:
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1390
  PrefetchAllocationNode(Node *mem, Node *adr) : Node(0,mem,adr) {}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1391
  virtual int Opcode() const;
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1392
  virtual uint ideal_reg() const { return NotAMachineReg; }
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1393
  virtual uint match_edge(uint idx) const { return idx==2; }
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4746
diff changeset
  1394
  virtual const Type *bottom_type() const { return ( AllocatePrefetchStyle == 3 ) ? Type::MEMORY : Type::ABIO; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
  1396
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
  1397
#endif // SHARE_VM_OPTO_MEMNODE_HPP