src/hotspot/share/opto/memnode.hpp
author eosterlund
Tue, 12 Nov 2019 09:25:39 +0000
changeset 59025 b398685dd029
parent 58751 0f882d53c204
permissions -rw-r--r--
8233506: ZGC: the load for Reference.get() can be converted to a load for strong refs Reviewed-by: thartmann, neliasso, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51482
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51482
diff changeset
    25
#ifndef SHARE_OPTO_MEMNODE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51482
diff changeset
    26
#define SHARE_OPTO_MEMNODE_HPP
7397
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 {
34157
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
    42
private:
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
    43
  bool _unaligned_access; // Unaligned access from unsafe
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
    44
  bool _mismatched_access; // Mismatched access from unsafe: byte read in integer array for instance
53765
e002408eb0c0 8218879: Keep track of memory accesses originated from Unsafe
vlivanov
parents: 53244
diff changeset
    45
  bool _unsafe_access;     // Access of unsafe origin.
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    46
  uint8_t _barrier; // Bit field with barrier information
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    47
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  const TypePtr* _adr_type;     // What kind of memory is being addressed?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
#endif
34157
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
    52
  virtual uint size_of() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  enum { Control,               // When is it safe to do this load?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
         Memory,                // Chunk of memory is being loaded from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
         Address,               // Actually address, derived from base
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
         ValueIn,               // Value to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
         OopStore               // Preceeding oop store, only in StoreCM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  };
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    60
  typedef enum { unordered = 0,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    61
                 acquire,       // Load has to acquire or be succeeded by MemBarAcquire.
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
    62
                 release,       // Store has to release or be preceded by MemBarRelease.
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
    63
                 seqcst,        // LoadStore has to have both acquire and release semantics.
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
    64
                 unset          // The memory ordering is not set (used for testing)
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
    65
  } MemOrd;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
protected:
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    67
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at ) :
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    68
      Node(c0,c1,c2),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    69
      _unaligned_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    70
      _mismatched_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    71
      _unsafe_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    72
      _barrier(0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    76
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3 ) :
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    77
      Node(c0,c1,c2,c3),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    78
      _unaligned_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    79
      _mismatched_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    80
      _unsafe_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    81
      _barrier(0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    85
  MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3, Node *c4) :
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    86
      Node(c0,c1,c2,c3,c4),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    87
      _unaligned_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    88
      _mismatched_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    89
      _unsafe_access(false),
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
    90
      _barrier(0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    init_class_id(Class_Mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    debug_only(_adr_type=at; adr_type();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30300
diff changeset
    95
  virtual Node* find_previous_arraycopy(PhaseTransform* phase, Node* ld_alloc, Node*& mem, bool can_see_stored_value) const { return NULL; }
44739
3af2c3740d7b 8178047: Aliasing problem with raw memory accesses
iveresov
parents: 39419
diff changeset
    96
  static bool check_if_adr_maybe_raw(Node* adr);
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30300
diff changeset
    97
206
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 202
diff changeset
    98
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // Helpers for the optimizer.  Documented in memnode.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static bool detect_ptr_independence(Node* p1, AllocateNode* a1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                                      Node* p2, AllocateNode* a2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                                      PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static bool adr_phi_is_loop_invariant(Node* adr_phi, Node* cast);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15813
diff changeset
   105
  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
   106
  static Node *optimize_memory_chain(Node *mchain, const TypePtr *t_adr, Node *load, PhaseGVN *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // 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
   108
  static bool all_controls_dominate(Node* dom, Node* sub);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  virtual const class TypePtr *adr_type() const;  // returns bottom_type of address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Shared code for Ideal methods:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  Node *Ideal_common(PhaseGVN *phase, bool can_reshape);  // Return -1 for short-circuit NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Helper function for adr_type() implementations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static const TypePtr* calculate_adr_type(const Type* t, const TypePtr* cross_check = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Raw access function, to allow copying of adr_type efficiently in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // product builds and retain the debug info for debug builds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  const TypePtr *raw_adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    return _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Map a load or store opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // (Return -1 if unknown.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  virtual int store_Opcode() const { return -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // What is the type of the value in memory?  (T_VOID mean "unspecified".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  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
   134
  virtual int memory_size() const {
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   135
#ifdef ASSERT
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   136
    return type2aelembytes(memory_type(), true);
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   137
#else
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   138
    return type2aelembytes(memory_type());
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   139
#endif
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 190
diff changeset
   140
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   142
  uint8_t barrier_data() { return _barrier; }
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   143
  void set_barrier_data(uint8_t barrier_data) { _barrier = barrier_data; }
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   144
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // Search through memory states which precede this node (load or store).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Look for an exact match for the address, with no intervening
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // aliased stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  Node* find_previous_store(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Can this node (load or store) accurately see a stored value in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // the given memory state?  (The state may or may not be in(Memory).)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  Node* can_see_stored_value(Node* st, PhaseTransform* phase) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
34157
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
   154
  void set_unaligned_access() { _unaligned_access = true; }
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
   155
  bool is_unaligned_access() const { return _unaligned_access; }
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
   156
  void set_mismatched_access() { _mismatched_access = true; }
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
   157
  bool is_mismatched_access() const { return _mismatched_access; }
53765
e002408eb0c0 8218879: Keep track of memory accesses originated from Unsafe
vlivanov
parents: 53244
diff changeset
   158
  void set_unsafe_access() { _unsafe_access = true; }
e002408eb0c0 8218879: Keep track of memory accesses originated from Unsafe
vlivanov
parents: 53244
diff changeset
   159
  bool is_unsafe_access() const { return _unsafe_access; }
34157
4fde32e81092 8140309: [REDO] failed: no mismatched stores, except on raw memory: StoreB StoreI
roland
parents: 33459
diff changeset
   160
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static void dump_adr_type(const Node* mem, const TypePtr* adr_type, outputStream *st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
//------------------------------LoadNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// Load value; requires Memory and Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
class LoadNode : public MemNode {
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   170
public:
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   171
  // Some loads (from unsafe) should be pinned: they don't depend only
36830
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   172
  // on the dominating test.  The field _control_dependency below records
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   173
  // whether that node depends only on the dominating test.
57582
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   174
  // Pinned and UnknownControl are similar, but differ in that Pinned
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   175
  // loads are not allowed to float across safepoints, whereas UnknownControl
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   176
  // loads are allowed to do that. Therefore, Pinned is stricter.
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   177
  enum ControlDependency {
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   178
    Pinned,
57582
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   179
    UnknownControl,
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   180
    DependsOnlyOnTest
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   181
  };
55307
ed12027517c0 8224675: Late GC barrier insertion for ZGC
neliasso
parents: 54327
diff changeset
   182
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   183
private:
36830
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   184
  // LoadNode::hash() doesn't take the _control_dependency field
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   185
  // into account: If the graph already has a non-pinned LoadNode and
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   186
  // we add a pinned LoadNode with the same inputs, it's safe for GVN
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   187
  // to replace the pinned LoadNode with the non-pinned LoadNode,
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   188
  // otherwise it wouldn't be safe to have a non pinned LoadNode with
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   189
  // those inputs in the first place. If the graph already has a
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   190
  // pinned LoadNode and we add a non pinned LoadNode with the same
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   191
  // inputs, it's safe (but suboptimal) for GVN to replace the
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   192
  // non-pinned LoadNode by the pinned LoadNode.
36830
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   193
  ControlDependency _control_dependency;
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   194
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   195
  // 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
   196
  // 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
   197
  // 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
   198
  // this field.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   199
  const MemOrd _mo;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   200
58372
43c4fb8ba96b 8227384: C2 compilation fails with "graph should be schedulable" when running with -XX:-EliminateLocks
roland
parents: 57804
diff changeset
   201
  AllocateNode* is_new_object_mark_load(PhaseGVN *phase) const;
43c4fb8ba96b 8227384: C2 compilation fails with "graph should be schedulable" when running with -XX:-EliminateLocks
roland
parents: 57804
diff changeset
   202
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
protected:
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   204
  virtual bool cmp(const Node &n) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual uint size_of() const; // Size is bigger
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   206
  // Should LoadNode::Ideal() attempt to remove control edges?
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   207
  virtual bool can_remove_control() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  const Type* const _type;      // What kind of value is loaded?
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30300
diff changeset
   209
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30300
diff changeset
   210
  virtual Node* find_previous_arraycopy(PhaseTransform* phase, Node* ld_alloc, Node*& mem, bool can_see_stored_value) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   213
  LoadNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *rt, MemOrd mo, ControlDependency control_dependency)
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   214
    : MemNode(c,mem,adr,at), _control_dependency(control_dependency), _mo(mo), _type(rt) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    init_class_id(Class_Load);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   217
  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
   218
  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
   219
    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
   220
    return _mo == acquire;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   221
  }
36831
6a71b98a4417 8152179: C2: Folding of unsigned loads is broken w/ @Stable
vlivanov
parents: 36830
diff changeset
   222
  inline bool is_unsigned() const {
6a71b98a4417 8152179: C2: Folding of unsigned loads is broken w/ @Stable
vlivanov
parents: 36830
diff changeset
   223
    int lop = Opcode();
6a71b98a4417 8152179: C2: Folding of unsigned loads is broken w/ @Stable
vlivanov
parents: 36830
diff changeset
   224
    return (lop == Op_LoadUB) || (lop == Op_LoadUS);
6a71b98a4417 8152179: C2: Folding of unsigned loads is broken w/ @Stable
vlivanov
parents: 36830
diff changeset
   225
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Polymorphic factory method:
34189
d5a8eb423f77 8142386: Octane crashes with assert(is_Load())
roland
parents: 34185
diff changeset
   228
  static Node* make(PhaseGVN& gvn, Node *c, Node *mem, Node *adr,
d5a8eb423f77 8142386: Octane crashes with assert(is_Load())
roland
parents: 34185
diff changeset
   229
                    const TypePtr* at, const Type *rt, BasicType bt,
d5a8eb423f77 8142386: Octane crashes with assert(is_Load())
roland
parents: 34185
diff changeset
   230
                    MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest,
59025
b398685dd029 8233506: ZGC: the load for Reference.get() can be converted to a load for strong refs
eosterlund
parents: 58751
diff changeset
   231
                    bool unaligned = false, bool mismatched = false, bool unsafe = false,
b398685dd029 8233506: ZGC: the load for Reference.get() can be converted to a load for strong refs
eosterlund
parents: 58751
diff changeset
   232
                    uint8_t barrier_data = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  virtual uint hash()   const;  // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Handle algebraic identities here.  If we have an identity, return the Node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // we are equivalent to.  We look for Load of a Store.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   238
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   240
  // If the load is from Field memory and the pointer is non-null, it might be possible to
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // zero out the control input.
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   242
  // If the offset is constant and the base is an object allocation,
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   243
  // try to hook me up to the exact initializing store.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
589
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   246
  // Split instance field load through Phi.
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   247
  Node* split_through_phi(PhaseGVN *phase);
a44a1e70a3e4 6695810: null oop passed to encode_heap_oop_not_null
kvn
parents: 369
diff changeset
   248
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   249
  // 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
   250
  Node *eliminate_autobox(PhaseGVN *phase);
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   251
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // then call the virtual add() to set the type.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   254
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   256
  // Common methods for LoadKlass and LoadNKlass nodes.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   257
  const Type* klass_value_common(PhaseGVN* phase) const;
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   258
  Node* klass_identity_common(PhaseGVN* phase);
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   259
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  virtual uint ideal_reg() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // Following method is copied from TypeNode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  void set_type(const Type* t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    assert(t != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    *(const Type**)&_type = t;   // cast away const-ness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    // If this node is in the hash table, make sure it doesn't need a rehash.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    assert(check_hash == NO_HASH || check_hash == hash(), "type change must preserve hash code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  const Type* type() const { assert(_type != NULL, "sanity"); return _type; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Map a load opcode to its corresponding store opcode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  virtual int store_Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
237
fba97e902303 6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents: 206
diff changeset
   278
  // 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
   279
  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
   280
36830
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   281
  Node* convert_to_unsigned_load(PhaseGVN& gvn);
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   282
  Node* convert_to_signed_load(PhaseGVN& gvn);
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   283
57582
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   284
  void pin() { _control_dependency = Pinned; }
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   285
  bool has_unknown_control_dependency() const { return _control_dependency == UnknownControl; }
a79a819a8218 8227407: ZGC: C2 loads and load barriers can get separated by safepoints
eosterlund
parents: 55307
diff changeset
   286
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
#endif
5889
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   290
#ifdef ASSERT
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   291
  // 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
   292
  static bool is_immutable_value(Node* adr);
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
   293
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  const Type* load_array_final_field(const TypeKlassPtr *tkls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                                     ciKlass* klass) const;
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 31035
diff changeset
   297
45766
4b5557c9b656 8181742: Load that bypasses arraycopy has wrong memory state
roland
parents: 44739
diff changeset
   298
  Node* can_see_arraycopy_value(Node* st, PhaseGVN* phase) const;
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 31035
diff changeset
   299
21526
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 17383
diff changeset
   300
  // 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
   301
  // 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
   302
  // 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
   303
  // 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
   304
  // 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
   305
  // 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
   306
  // 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
   307
  // 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
   308
  // See comment in macro.cpp, around line 125 expand_allocate_common().
36830
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   309
  virtual bool depends_only_on_test() const {
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   310
    return adr_type() != TypeRawPtr::BOTTOM && _control_dependency == DependsOnlyOnTest;
ebc8b5e23f63 8152773: C2: LoadNode properties aren't preserved when converting between signed/unsigned variants
vlivanov
parents: 36554
diff changeset
   311
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//------------------------------LoadBNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// Load a byte (8bits signed) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
class LoadBNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   318
  LoadBNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   319
    : LoadNode(c, mem, adr, at, ti, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   323
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  virtual int store_Opcode() const { return Op_StoreB; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   328
//------------------------------LoadUBNode-------------------------------------
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   329
// Load a unsigned byte (8bits unsigned) from memory
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   330
class LoadUBNode : public LoadNode {
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   331
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   332
  LoadUBNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const TypeInt* ti, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   333
    : LoadNode(c, mem, adr, at, ti, mo, control_dependency) {}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   334
  virtual int Opcode() const;
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   335
  virtual uint ideal_reg() const { return Op_RegI; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   336
  virtual Node* Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   337
  virtual const Type* Value(PhaseGVN* phase) const;
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   338
  virtual int store_Opcode() const { return Op_StoreB; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   339
  virtual BasicType memory_type() const { return T_BYTE; }
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   340
};
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
   341
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 1500
diff changeset
   342
//------------------------------LoadUSNode-------------------------------------
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 1500
diff changeset
   343
// 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
   344
class LoadUSNode : public LoadNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   346
  LoadUSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   347
    : LoadNode(c, mem, adr, at, ti, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   351
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  virtual int store_Opcode() const { return Op_StoreC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   356
//------------------------------LoadSNode--------------------------------------
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   357
// Load a short (16bits signed) from memory
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   358
class LoadSNode : public LoadNode {
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   359
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   360
  LoadSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   361
    : LoadNode(c, mem, adr, at, ti, mo, control_dependency) {}
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   362
  virtual int Opcode() const;
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   363
  virtual uint ideal_reg() const { return Op_RegI; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   364
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   365
  virtual const Type* Value(PhaseGVN* phase) const;
11562
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   366
  virtual int store_Opcode() const { return Op_StoreC; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   367
  virtual BasicType memory_type() const { return T_SHORT; }
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   368
};
969748c25d89 7131302: connode.cpp:205 Error: ShouldNotReachHere()
kvn
parents: 11431
diff changeset
   369
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
//------------------------------LoadINode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
// Load an integer from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
class LoadINode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   374
  LoadINode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   375
    : LoadNode(c, mem, adr, at, ti, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  virtual int store_Opcode() const { return Op_StoreI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
//------------------------------LoadRangeNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
// Load an array length from the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
class LoadRangeNode : public LoadINode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   386
  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
   387
    : LoadINode(c, mem, adr, TypeAryPtr::RANGE, ti, MemNode::unordered) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   389
  virtual const Type* Value(PhaseGVN* phase) const;
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   390
  virtual Node* Identity(PhaseGVN* phase);
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 961
diff changeset
   391
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
//------------------------------LoadLNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// Load a long from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
class LoadLNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   398
  virtual bool cmp( const Node &n ) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    return _require_atomic_access == ((LoadLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      && LoadNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  const bool _require_atomic_access;  // is piecewise load forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   406
  LoadLNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeLong *tl,
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   407
            MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest, bool require_atomic_access = false)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   408
    : LoadNode(c, mem, adr, at, tl, mo, control_dependency), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  virtual int store_Opcode() const { return Op_StoreL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  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
   413
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   414
  static LoadLNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type,
34189
d5a8eb423f77 8142386: Octane crashes with assert(is_Load())
roland
parents: 34185
diff changeset
   415
                                const Type* rt, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest,
59025
b398685dd029 8233506: ZGC: the load for Reference.get() can be converted to a load for strong refs
eosterlund
parents: 58751
diff changeset
   416
                                bool unaligned = false, bool mismatched = false, bool unsafe = false, uint8_t barrier_data = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    LoadNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
//------------------------------LoadL_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
// Load a long from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
class LoadL_unalignedNode : public LoadLNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   429
  LoadL_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   430
    : LoadLNode(c, mem, adr, at, TypeLong::LONG, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
//------------------------------LoadFNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
// Load a float (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
class LoadFNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   438
  LoadFNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   439
    : LoadNode(c, mem, adr, at, t, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  virtual int store_Opcode() const { return Op_StoreF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
//------------------------------LoadDNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// Load a double (64 bits) from memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
class LoadDNode : public LoadNode {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   449
  virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   450
  virtual bool cmp( const Node &n ) const {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   451
    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
   452
      && LoadNode::cmp(n);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   453
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   454
  virtual uint size_of() const { return sizeof(*this); }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   455
  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
   456
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
public:
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   458
  LoadDNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t,
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   459
            MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest, bool require_atomic_access = false)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   460
    : LoadNode(c, mem, adr, at, t, mo, control_dependency), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  virtual int store_Opcode() const { return Op_StoreD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  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
   465
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   466
  static LoadDNode* make_atomic(Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type,
34189
d5a8eb423f77 8142386: Octane crashes with assert(is_Load())
roland
parents: 34185
diff changeset
   467
                                const Type* rt, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest,
59025
b398685dd029 8233506: ZGC: the load for Reference.get() can be converted to a load for strong refs
eosterlund
parents: 58751
diff changeset
   468
                                bool unaligned = false, bool mismatched = false, bool unsafe = false, uint8_t barrier_data = 0);
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   469
#ifndef PRODUCT
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   470
  virtual void dump_spec(outputStream *st) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   471
    LoadNode::dump_spec(st);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   472
    if (_require_atomic_access)  st->print(" Atomic!");
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   473
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   474
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
//------------------------------LoadD_unalignedNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// Load a double from unaligned memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
class LoadD_unalignedNode : public LoadDNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   481
  LoadD_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   482
    : LoadDNode(c, mem, adr, at, Type::DOUBLE, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
//------------------------------LoadPNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// Load a pointer from memory (either object or array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
class LoadPNode : public LoadNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   490
  LoadPNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypePtr* t, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   491
    : LoadNode(c, mem, adr, at, t, mo, control_dependency) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  virtual int store_Opcode() const { return Op_StoreP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   498
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   499
//------------------------------LoadNNode--------------------------------------
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   500
// 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
   501
class LoadNNode : public LoadNode {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   502
public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   503
  LoadNNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const Type* t, MemOrd mo, ControlDependency control_dependency = DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30629
diff changeset
   504
    : LoadNode(c, mem, adr, at, t, mo, control_dependency) {}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   505
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   506
  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
   507
  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
   508
  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
   509
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   510
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
//------------------------------LoadKlassNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
// Load a Klass from an object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
class LoadKlassNode : public LoadPNode {
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   514
protected:
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   515
  // In most cases, LoadKlassNode does not have the control input set. If the control
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   516
  // input is set, it must not be removed (by LoadNode::Ideal()).
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   517
  virtual bool can_remove_control() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   519
  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
   520
    : LoadPNode(c, mem, adr, at, tk, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   522
  virtual const Type* Value(PhaseGVN* phase) const;
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   523
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  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
   525
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   526
  // Polymorphic factory method:
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   527
  static Node* make(PhaseGVN& gvn, Node* ctl, Node* mem, Node* adr, const TypePtr* at,
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 25930
diff changeset
   528
                    const TypeKlassPtr* tk = TypeKlassPtr::OBJECT);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   531
//------------------------------LoadNKlassNode---------------------------------
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   532
// 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
   533
class LoadNKlassNode : public LoadNNode {
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   534
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   535
  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
   536
    : 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
   537
  virtual int Opcode() const;
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   538
  virtual uint ideal_reg() const { return Op_RegN; }
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   539
  virtual int store_Opcode() const { return Op_StoreNKlass; }
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   540
  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
   541
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   542
  virtual const Type* Value(PhaseGVN* phase) const;
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   543
  virtual Node* Identity(PhaseGVN* phase);
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   544
  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
   545
};
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   546
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
   547
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
//------------------------------StoreNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
// Store value; requires Store, Address and Value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
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
   551
private:
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   552
  // 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
   553
  // 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
   554
  // 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
   555
  // this field.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   556
  const MemOrd _mo;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   557
  // Needed for proper cloning.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   558
  virtual uint size_of() const { return sizeof(*this); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
protected:
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   560
  virtual bool cmp( const Node &n ) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  Node *Ideal_masked_input       (PhaseGVN *phase, uint mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  Node *Ideal_sign_extended_input(PhaseGVN *phase, int  num_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   567
  // 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
   568
  // 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
   569
  // 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
   570
  // 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
   571
  // 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
   572
  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
   573
    : MemNode(c, mem, adr, at, val), _mo(mo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  }
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   576
  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
   577
    : MemNode(c, mem, adr, at, val, oop_store), _mo(mo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    init_class_id(Class_Store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   581
  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
   582
  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
   583
    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
   584
    return _mo == release;
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   585
  }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   586
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   587
  // 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
   588
  // 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
   589
  static inline MemOrd release_if_reference(const BasicType t) {
29180
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   590
#ifdef AARCH64
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   591
    // AArch64 doesn't need a release store here because object
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   592
    // initialization contains the necessary barriers.
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   593
    return unordered;
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   594
#else
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   595
    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
   596
                       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
   597
                       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
   598
    return mo;
29180
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 27637
diff changeset
   599
#endif
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   600
  }
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   601
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   602
  // Polymorphic factory method
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   603
  //
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   604
  // 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
   605
  // 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
   606
  // 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
   607
  // 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
   608
  // 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
   609
  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
   610
                         const TypePtr* at, Node *val, BasicType bt, MemOrd mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  virtual uint hash() const;    // Check the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // If the store is to Field memory and the pointer is non-null, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  // zero out the control input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // then call the virtual add() to set the type.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   620
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // Check for identity function on memory (Load then Store at same address)
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   623
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  // Do not match memory edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  virtual const Type *bottom_type() const;  // returns Type::MEMORY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  // Map a store opcode to its corresponding own opcode, trivially.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  virtual int store_Opcode() const { return Opcode(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // have all possible loads of the value stored been optimized away?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  bool value_never_loaded(PhaseTransform *phase) const;
51482
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
   635
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
   636
  MemBarNode* trailing_membar() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
//------------------------------StoreBNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
// Store byte to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
class StoreBNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   643
  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
   644
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  virtual BasicType memory_type() const { return T_BYTE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
//------------------------------StoreCNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
// Store char/short to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
class StoreCNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   654
  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
   655
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  virtual BasicType memory_type() const { return T_CHAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
//------------------------------StoreINode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
// Store int to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
class StoreINode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   665
  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
   666
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  virtual BasicType memory_type() const { return T_INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
//------------------------------StoreLNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
// Store long to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
class StoreLNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   675
  virtual bool cmp( const Node &n ) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    return _require_atomic_access == ((StoreLNode&)n)._require_atomic_access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      && StoreNode::cmp(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  const bool _require_atomic_access;  // is piecewise store forbidden?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   683
  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
   684
    : StoreNode(c, mem, adr, at, val, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  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
   687
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   688
  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
   689
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  virtual void dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    StoreNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    if (_require_atomic_access)  st->print(" Atomic!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
//------------------------------StoreFNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
// Store float to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
class StoreFNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   701
  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
   702
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  virtual BasicType memory_type() const { return T_FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
//------------------------------StoreDNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
// Store double to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
class StoreDNode : public StoreNode {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   710
  virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   711
  virtual bool cmp( const Node &n ) const {
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   712
    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
   713
      && StoreNode::cmp(n);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   714
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   715
  virtual uint size_of() const { return sizeof(*this); }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   716
  const bool _require_atomic_access;  // is piecewise store forbidden?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
public:
24345
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   718
  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
   719
             MemOrd mo, bool require_atomic_access = false)
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   720
    : StoreNode(c, mem, adr, at, val, mo), _require_atomic_access(require_atomic_access) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  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
   723
  bool require_atomic_access() const { return _require_atomic_access; }
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
   724
  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
   725
#ifndef PRODUCT
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   726
  virtual void dump_spec(outputStream *st) const {
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   727
    StoreNode::dump_spec(st);
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   728
    if (_require_atomic_access)  st->print(" Atomic!");
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   729
  }
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   730
#endif
616bc709c0e4 8036851: volatile double accesses are not explicitly atomic in C2
anoll
parents: 23528
diff changeset
   731
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
//------------------------------StorePNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
// Store pointer to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
class StorePNode : public StoreNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   738
  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
   739
    : StoreNode(c, mem, adr, at, val, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  virtual BasicType memory_type() const { return T_ADDRESS; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   744
//------------------------------StoreNNode-------------------------------------
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   745
// Store narrow oop to memory
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   746
class StoreNNode : public StoreNode {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   747
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   748
  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
   749
    : 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
   750
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   751
  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
   752
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   753
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   754
//------------------------------StoreNKlassNode--------------------------------------
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   755
// Store narrow klass to memory
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   756
class StoreNKlassNode : public StoreNNode {
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   757
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   758
  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
   759
    : StoreNNode(c, mem, adr, at, val, mo) {}
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   760
  virtual int Opcode() const;
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   761
  virtual BasicType memory_type() const { return T_NARROWKLASS; }
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   762
};
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13886
diff changeset
   763
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
//------------------------------StoreCMNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
// Store card-mark byte to memory for CM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
// The last StoreCM before a SafePoint must be preserved and occur after its "oop" store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
// Preceeding equivalent StoreCMs may be eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
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
   769
 private:
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   770
  virtual uint hash() const { return StoreNode::hash() + _oop_alias_idx; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
   771
  virtual bool cmp( const Node &n ) const {
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   772
    return _oop_alias_idx == ((StoreCMNode&)n)._oop_alias_idx
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   773
      && StoreNode::cmp(n);
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   774
  }
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   775
  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
   776
  int _oop_alias_idx;   // The alias_idx of OopStore
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   777
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
public:
4746
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   779
  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
   780
    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
   781
    _oop_alias_idx(oop_alias_idx) {
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   782
    assert(_oop_alias_idx >= Compile::AliasIdxRaw ||
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   783
           _oop_alias_idx == Compile::AliasIdxBot && Compile::current()->AliasLevel() == 0,
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   784
           "bad oop alias idx");
c1d5f1b38289 6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents: 4470
diff changeset
   785
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   787
  virtual Node* Identity(PhaseGVN* 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
   788
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   789
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  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
   791
  int oop_alias_idx() const { return _oop_alias_idx; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
//------------------------------LoadPLockedNode---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
// Load-locked a pointer from memory (either object or array).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
// On Sparc & Intel this is implemented as a normal pointer load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
// On PowerPC and friends it's a real load-locked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
class LoadPLockedNode : public LoadPNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
public:
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 17383
diff changeset
   800
  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
   801
    : LoadPNode(c, mem, adr, TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM, mo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  virtual int store_Opcode() const { return Op_StorePConditional; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  virtual bool depends_only_on_test() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
//------------------------------SCMemProjNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
// This class defines a projection of the memory  state of a store conditional node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
// These nodes return a value, but also update memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
class SCMemProjNode : public ProjNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  enum {SCMEMPROJCON = (uint)-2};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  SCMemProjNode( Node *src) : ProjNode( src, SCMEMPROJCON) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  virtual bool      is_CFG() const  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  virtual const Type *bottom_type() const {return Type::MEMORY;}
27697
ae60f551e5c8 8062258: compiler/debug/TraceIterativeGVN.java segfaults in trace_PhaseIterGVN
vlivanov
parents: 27637
diff changeset
   817
  virtual const TypePtr *adr_type() const {
ae60f551e5c8 8062258: compiler/debug/TraceIterativeGVN.java segfaults in trace_PhaseIterGVN
vlivanov
parents: 27637
diff changeset
   818
    Node* ctrl = in(0);
ae60f551e5c8 8062258: compiler/debug/TraceIterativeGVN.java segfaults in trace_PhaseIterGVN
vlivanov
parents: 27637
diff changeset
   819
    if (ctrl == NULL)  return NULL; // node is dead
ae60f551e5c8 8062258: compiler/debug/TraceIterativeGVN.java segfaults in trace_PhaseIterGVN
vlivanov
parents: 27637
diff changeset
   820
    return ctrl->in(MemNode::Memory)->adr_type();
ae60f551e5c8 8062258: compiler/debug/TraceIterativeGVN.java segfaults in trace_PhaseIterGVN
vlivanov
parents: 27637
diff changeset
   821
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  virtual uint ideal_reg() const { return 0;} // memory projections don't have a register
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
   823
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  virtual void dump_spec(outputStream *st) const {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
//------------------------------LoadStoreNode---------------------------
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 670
diff changeset
   830
// Note: is_Mem() method returns 'true' for this class.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
class LoadStoreNode : public Node {
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   832
private:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   833
  const Type* const _type;      // What kind of value is loaded?
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   834
  const TypePtr* _adr_type;     // What kind of memory is being addressed?
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   835
  uint8_t _barrier; // Bit field with barrier information
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   836
  virtual uint size_of() const; // Size is bigger
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   837
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   838
  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
   839
  virtual bool depends_only_on_test() const { return false; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   840
  virtual uint match_edge(uint idx) const { return idx == MemNode::Address || idx == MemNode::ValueIn; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   841
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   842
  virtual const Type *bottom_type() const { return _type; }
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   843
  virtual uint ideal_reg() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   844
  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
   845
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   846
  bool result_not_used() const;
51482
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
   847
  MemBarNode* trailing_membar() const;
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   848
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   849
  uint8_t barrier_data() { return _barrier; }
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   850
  void set_barrier_data(uint8_t barrier_data) { _barrier = barrier_data; }
13886
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
class LoadStoreConditionalNode : public LoadStoreNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  };
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   858
  LoadStoreConditionalNode(Node *c, Node *mem, Node *adr, Node *val, Node *ex);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
//------------------------------StorePConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
// Conditionally store pointer to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   864
class StorePConditionalNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   866
  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
   867
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  // Produces flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  virtual uint ideal_reg() const { return Op_RegFlags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   872
//------------------------------StoreIConditionalNode---------------------------
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   873
// 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
   874
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   875
class StoreIConditionalNode : public LoadStoreConditionalNode {
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   876
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   877
  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
   878
  virtual int Opcode() const;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   879
  // Produces flags
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   880
  virtual uint ideal_reg() const { return Op_RegFlags; }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   881
};
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   882
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
//------------------------------StoreLConditionalNode---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
// Conditionally store long to memory, if no change since prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
// load-locked.  Sets flags for success or failure of the store.
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   886
class StoreLConditionalNode : public LoadStoreConditionalNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   888
  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
   889
  virtual int Opcode() const;
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   890
  // Produces flags
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   891
  virtual uint ideal_reg() const { return Op_RegFlags; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   894
class CompareAndSwapNode : public LoadStoreConditionalNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   895
private:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   896
  const MemNode::MemOrd _mem_ord;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   897
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   898
  CompareAndSwapNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : LoadStoreConditionalNode(c, mem, adr, val, ex), _mem_ord(mem_ord) {}
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   899
  MemNode::MemOrd order() const {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   900
    return _mem_ord;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   901
  }
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   902
  virtual uint size_of() const { return sizeof(*this); }
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   903
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   904
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   905
class CompareAndExchangeNode : public LoadStoreNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   906
private:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   907
  const MemNode::MemOrd _mem_ord;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   908
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   909
  enum {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   910
    ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   911
  };
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   912
  CompareAndExchangeNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord, const TypePtr* at, const Type* t) :
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   913
    LoadStoreNode(c, mem, adr, val, at, t, 5), _mem_ord(mem_ord) {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   914
     init_req(ExpectedIn, ex );
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   915
  }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   916
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   917
  MemNode::MemOrd order() const {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   918
    return _mem_ord;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   919
  }
58516
d376d86b0a01 8230565: ZGC: Redesign C2 load barrier to expand on the MachNode level
eosterlund
parents: 58372
diff changeset
   920
  virtual uint size_of() const { return sizeof(*this); }
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   921
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   923
//------------------------------CompareAndSwapBNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   924
class CompareAndSwapBNode : public CompareAndSwapNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
public:
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   926
  CompareAndSwapBNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   930
//------------------------------CompareAndSwapSNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   931
class CompareAndSwapSNode : public CompareAndSwapNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   932
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   933
  CompareAndSwapSNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   934
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   935
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
//------------------------------CompareAndSwapINode---------------------------
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   938
class CompareAndSwapINode : public CompareAndSwapNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
public:
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   940
  CompareAndSwapINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   944
//------------------------------CompareAndSwapLNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   945
class CompareAndSwapLNode : public CompareAndSwapNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   946
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   947
  CompareAndSwapLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   948
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   949
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
//------------------------------CompareAndSwapPNode---------------------------
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   952
class CompareAndSwapPNode : public CompareAndSwapNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
public:
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   954
  CompareAndSwapPNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   958
//------------------------------CompareAndSwapNNode---------------------------
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   959
class CompareAndSwapNNode : public CompareAndSwapNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   960
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   961
  CompareAndSwapNNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   962
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   963
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   964
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   965
//------------------------------WeakCompareAndSwapBNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   966
class WeakCompareAndSwapBNode : public CompareAndSwapNode {
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   967
public:
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   968
  WeakCompareAndSwapBNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   969
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   970
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   971
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   972
//------------------------------WeakCompareAndSwapSNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   973
class WeakCompareAndSwapSNode : public CompareAndSwapNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   974
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   975
  WeakCompareAndSwapSNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   976
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   977
};
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   978
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   979
//------------------------------WeakCompareAndSwapINode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   980
class WeakCompareAndSwapINode : public CompareAndSwapNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   981
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   982
  WeakCompareAndSwapINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   983
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   984
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   985
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   986
//------------------------------WeakCompareAndSwapLNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   987
class WeakCompareAndSwapLNode : public CompareAndSwapNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   988
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   989
  WeakCompareAndSwapLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   990
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
   991
};
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   992
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   993
//------------------------------WeakCompareAndSwapPNode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   994
class WeakCompareAndSwapPNode : public CompareAndSwapNode {
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
   995
public:
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   996
  WeakCompareAndSwapPNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   997
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   998
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
   999
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1000
//------------------------------WeakCompareAndSwapNNode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1001
class WeakCompareAndSwapNNode : public CompareAndSwapNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1002
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1003
  WeakCompareAndSwapNNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, MemNode::MemOrd mem_ord) : CompareAndSwapNode(c, mem, adr, val, ex, mem_ord) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1004
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1005
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1006
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1007
//------------------------------CompareAndExchangeBNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1008
class CompareAndExchangeBNode : public CompareAndExchangeNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1009
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1010
  CompareAndExchangeBNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, TypeInt::BYTE) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1011
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1012
};
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1013
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1014
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1015
//------------------------------CompareAndExchangeSNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1016
class CompareAndExchangeSNode : public CompareAndExchangeNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1017
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1018
  CompareAndExchangeSNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, TypeInt::SHORT) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1019
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1020
};
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1021
36316
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1022
//------------------------------CompareAndExchangeLNode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1023
class CompareAndExchangeLNode : public CompareAndExchangeNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1024
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1025
  CompareAndExchangeLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, TypeLong::LONG) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1026
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1027
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1028
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1029
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1030
//------------------------------CompareAndExchangeINode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1031
class CompareAndExchangeINode : public CompareAndExchangeNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1032
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1033
  CompareAndExchangeINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, TypeInt::INT) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1034
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1035
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1036
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1037
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1038
//------------------------------CompareAndExchangePNode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1039
class CompareAndExchangePNode : public CompareAndExchangeNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1040
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1041
  CompareAndExchangePNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, const Type* t, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, t) { }
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1042
  virtual int Opcode() const;
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1043
};
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1044
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1045
//------------------------------CompareAndExchangeNNode---------------------------
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1046
class CompareAndExchangeNNode : public CompareAndExchangeNode {
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1047
public:
7a83de7aabca 8148146: Integrate new internal Unsafe entry points, and basic intrinsic support for VarHandles
shade
parents: 35551
diff changeset
  1048
  CompareAndExchangeNNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex, const TypePtr* at, const Type* t, MemNode::MemOrd mem_ord) : CompareAndExchangeNode(c, mem, adr, val, ex, mem_ord, at, t) { }
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1049
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1050
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1051
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1052
//------------------------------GetAndAddBNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1053
class GetAndAddBNode : public LoadStoreNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1054
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1055
  GetAndAddBNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::BYTE, 4) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1056
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1057
};
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1058
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1059
//------------------------------GetAndAddSNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1060
class GetAndAddSNode : public LoadStoreNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1061
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1062
  GetAndAddSNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::SHORT, 4) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1063
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1064
};
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1065
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1066
//------------------------------GetAndAddINode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1067
class GetAndAddINode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1068
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1069
  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
  1070
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1071
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1072
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1073
//------------------------------GetAndAddLNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1074
class GetAndAddLNode : public LoadStoreNode {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
  1075
public:
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1076
  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
  1077
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1078
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1079
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1080
//------------------------------GetAndSetBNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1081
class GetAndSetBNode : public LoadStoreNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1082
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1083
  GetAndSetBNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::BYTE, 4) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1084
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1085
};
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1086
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1087
//------------------------------GetAndSetSNode---------------------------
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1088
class GetAndSetSNode : public LoadStoreNode {
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1089
public:
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1090
  GetAndSetSNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::SHORT, 4) { }
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1091
  virtual int Opcode() const;
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1092
};
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1093
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1094
//------------------------------GetAndSetINode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1095
class GetAndSetINode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1096
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1097
  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
  1098
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1099
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1100
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38017
diff changeset
  1101
//------------------------------GetAndSetLNode---------------------------
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1102
class GetAndSetLNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1103
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1104
  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
  1105
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1106
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1107
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1108
//------------------------------GetAndSetPNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1109
class GetAndSetPNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1110
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1111
  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
  1112
  virtual int Opcode() const;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1113
};
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1114
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1115
//------------------------------GetAndSetNNode---------------------------
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1116
class GetAndSetNNode : public LoadStoreNode {
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1117
public:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 12957
diff changeset
  1118
  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
  1119
  virtual int Opcode() const;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
  1120
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
  1121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
//------------------------------ClearArray-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
class ClearArrayNode: public Node {
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36316
diff changeset
  1124
private:
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36316
diff changeset
  1125
  bool _is_large;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
public:
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36316
diff changeset
  1127
  ClearArrayNode( Node *ctrl, Node *arymem, Node *word_cnt, Node *base, bool is_large)
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36316
diff changeset
  1128
    : Node(ctrl,arymem,word_cnt,base), _is_large(is_large) {
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
  1129
    init_class_id(Class_ClearArray);
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
  1130
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  virtual int         Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  // ClearArray modifies array elements, and so affects only the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  // array memory addressed by the bottom_type of its base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  virtual const class TypePtr *adr_type() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
  1136
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  virtual uint match_edge(uint idx) const;
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36316
diff changeset
  1139
  bool is_large() const { return _is_large; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  // Clear the given area of an object or array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  // The start offset must always be aligned mod BytesPerInt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  // The end offset must always be aligned mod BytesPerLong.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  // Return the new memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
                            intptr_t end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
                            intptr_t start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
                            PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  static Node* clear_memory(Node* control, Node* mem, Node* dest,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
                            Node* start_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
                            Node* end_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
                            PhaseGVN* phase);
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 3905
diff changeset
  1157
  // 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
  1158
  // 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
  1159
  static bool step_through(Node** np, uint instance_id, PhaseTransform* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
//------------------------------MemBar-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
// There are different flavors of Memory Barriers to match the Java Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
// Model.  Monitor-enter and volatile-load act as Aquires: no following ref
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
// can be moved to before them.  We insert a MemBar-Acquire after a FastLock or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
// volatile-load.  Monitor-exit and volatile-store act as Release: no
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  1167
// preceding ref can be moved to after them.  We insert a MemBar-Release
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
// before a FastUnlock or volatile-store.  All volatiles need to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
// serialized, so we follow all volatile-stores with a MemBar-Volatile to
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  1170
// separate it from any following volatile-load.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
class MemBarNode: public MultiNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  virtual uint hash() const ;                  // { return NO_HASH; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
  1173
  virtual bool cmp( const Node &n ) const ;    // Always fail, except on self
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  // Memory type this node is serializing.  Usually either rawptr or bottom.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  const TypePtr* _adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
51482
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1179
  // How is this membar related to a nearby memory access?
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1180
  enum {
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1181
    Standalone,
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1182
    TrailingLoad,
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1183
    TrailingStore,
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1184
    LeadingStore,
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1185
    TrailingLoadStore,
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1186
    LeadingLoadStore
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1187
  } _kind;
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1188
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1189
#ifdef ASSERT
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1190
  uint _pair_idx;
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1191
#endif
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1192
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
    Precedent = TypeFunc::Parms  // optional edge to force precedence
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  MemBarNode(Compile* C, int alias_idx, Node* precedent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  virtual int Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  virtual const class TypePtr *adr_type() const { return _adr_type; }
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
  1200
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  virtual const Type *bottom_type() const { return TypeTuple::MEMBAR; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  virtual Node *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  // Factory method.  Builds a wide or narrow membar.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  // Optional 'precedent' becomes an extra edge if not null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  static MemBarNode* make(Compile* C, int opcode,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
                          int alias_idx = Compile::AliasIdxBot,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
                          Node* precedent = NULL);
51482
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1210
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1211
  MemBarNode* trailing_membar() const;
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1212
  MemBarNode* leading_membar() const;
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1213
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1214
  void set_trailing_load() { _kind = TrailingLoad; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1215
  bool trailing_load() const { return _kind == TrailingLoad; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1216
  bool trailing_store() const { return _kind == TrailingStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1217
  bool leading_store() const { return _kind == LeadingStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1218
  bool trailing_load_store() const { return _kind == TrailingLoadStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1219
  bool leading_load_store() const { return _kind == LeadingLoadStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1220
  bool trailing() const { return _kind == TrailingLoad || _kind == TrailingStore || _kind == TrailingLoadStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1221
  bool leading() const { return _kind == LeadingStore || _kind == LeadingLoadStore; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1222
  bool standalone() const { return _kind == Standalone; }
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1223
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1224
  static void set_store_pair(MemBarNode* leading, MemBarNode* trailing);
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1225
  static void set_load_store_pair(MemBarNode* leading, MemBarNode* trailing);
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1226
d7029542d67a 8209420: Track membars for volatile accesses so they can be properly optimized
roland
parents: 51333
diff changeset
  1227
  void remove(PhaseIterGVN *igvn);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
// "Acquire" - no following ref can move before (but earlier refs can
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
// 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
  1232
// visibility.  Inserted after a volatile load.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
class MemBarAcquireNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  MemBarAcquireNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1240
// "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
  1241
// 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
  1242
// visibility.  Inserted independ of any load, as required
33606
af4ec8a4635b 8139891: Prepare Unsafe for true encapsulation
chegar
parents: 32370
diff changeset
  1243
// for intrinsic Unsafe.loadFence().
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1244
class LoadFenceNode: public MemBarNode {
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1245
public:
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1246
  LoadFenceNode(Compile* C, int alias_idx, Node* precedent)
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1247
    : MemBarNode(C, alias_idx, precedent) {}
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1248
  virtual int Opcode() const;
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1249
};
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1250
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
// "Release" - no earlier ref can move after (but later refs can move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
// 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
  1253
// multi-cpu visibility.  Inserted before a volatile store.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
class MemBarReleaseNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  MemBarReleaseNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1261
// "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
  1262
// up, like a speculative pipelined cache-hitting Load).  Requires
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1263
// multi-cpu visibility.  Inserted independent of any store, as required
33606
af4ec8a4635b 8139891: Prepare Unsafe for true encapsulation
chegar
parents: 32370
diff changeset
  1264
// for intrinsic Unsafe.storeFence().
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1265
class StoreFenceNode: public MemBarNode {
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1266
public:
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1267
  StoreFenceNode(Compile* C, int alias_idx, Node* precedent)
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1268
    : MemBarNode(C, alias_idx, precedent) {}
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1269
  virtual int Opcode() const;
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1270
};
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  1271
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1272
// "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
  1273
// 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
  1274
// visibility.  Inserted after a FastLock.
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1275
class MemBarAcquireLockNode: public MemBarNode {
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1276
public:
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1277
  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
  1278
    : MemBarNode(C, alias_idx, precedent) {}
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1279
  virtual int Opcode() const;
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1280
};
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1281
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1282
// "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
  1283
// 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
  1284
// multi-cpu visibility.  Inserted before a FastUnLock.
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1285
class MemBarReleaseLockNode: public MemBarNode {
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1286
public:
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1287
  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
  1288
    : MemBarNode(C, alias_idx, precedent) {}
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1289
  virtual int Opcode() const;
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1290
};
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 8921
diff changeset
  1291
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1292
class MemBarStoreStoreNode: public MemBarNode {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1293
public:
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1294
  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
  1295
    : MemBarNode(C, alias_idx, precedent) {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1296
    init_class_id(Class_MemBarStoreStore);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1297
  }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1298
  virtual int Opcode() const;
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1299
};
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1300
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
// Ordering between a volatile store and a following volatile load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
// Requires multi-CPU visibility?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
class MemBarVolatileNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  MemBarVolatileNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
// Ordering within the same CPU.  Used to order unsafe memory references
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
// inside the compiler when we lack alias info.  Not needed "outside" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
// compiler because the CPU does all the ordering for us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
class MemBarCPUOrderNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
  MemBarCPUOrderNode(Compile* C, int alias_idx, Node* precedent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
    : MemBarNode(C, alias_idx, precedent) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
38017
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1321
class OnSpinWaitNode: public MemBarNode {
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1322
public:
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1323
  OnSpinWaitNode(Compile* C, int alias_idx, Node* precedent)
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1324
    : MemBarNode(C, alias_idx, precedent) {}
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1325
  virtual int Opcode() const;
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1326
};
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 36831
diff changeset
  1327
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
// Isolation of object setup after an AllocateNode and before next safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
// (See comment in memnode.cpp near InitializeNode::InitializeNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
class InitializeNode: public MemBarNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  friend class AllocateNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1333
  enum {
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1334
    Incomplete    = 0,
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1335
    Complete      = 1,
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1336
    WithArraycopy = 2
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1337
  };
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1338
  int _is_complete;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1340
  bool _does_not_escape;
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1341
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    Control    = TypeFunc::Control,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    Memory     = TypeFunc::Memory,     // MergeMem for states affected by this op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    RawAddress = TypeFunc::Parms+0,    // the newly-allocated raw address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    RawStores  = TypeFunc::Parms+1     // zero or more stores (or TOP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  InitializeNode(Compile* C, int adr_type, Node* rawoop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  virtual uint ideal_reg() const { return 0; } // not matched in the AD file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  virtual const RegMask &in_RegMask(uint) const;  // mask for RawAddress
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  // Manage incoming memory edges via a MergeMem on in(Memory):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  Node* memory(uint alias_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  // The raw memory edge coming directly from the Allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  // The contents of this memory are *always* all-zero-bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  Node* zero_memory() { return memory(Compile::AliasIdxRaw); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  // Return the corresponding allocation for this initialization (or null if none).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  // (Note: Both InitializeNode::allocation and AllocateNode::initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  // are defined in graphKit.cpp, which sets up the bidirectional relation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  AllocateNode* allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  // Anything other than zeroing in this init?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  bool is_non_zero();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  // An InitializeNode must completed before macro expansion is done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  // Completion requires that the AllocateNode must be followed by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  // 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
  1374
  bool is_complete() { return _is_complete != Incomplete; }
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1375
  bool is_complete_with_arraycopy() { return (_is_complete & WithArraycopy) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  // Mark complete.  (Must not yet be complete.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  void set_complete(PhaseGVN* phase);
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  1379
  void set_complete_with_arraycopy() { _is_complete = Complete | WithArraycopy; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11191
diff changeset
  1381
  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
  1382
  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
  1383
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  // ensure all non-degenerate stores are ordered and non-overlapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  bool stores_are_sane(PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  // See if this store can be captured; return offset where it initializes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  // Return 0 if the store cannot be moved (any sort of problem).
58751
0f882d53c204 8231412: C2: InitializeNode::detect_init_independence() bails out on simple IR shapes
chagedorn
parents: 58516
diff changeset
  1391
  intptr_t can_capture_store(StoreNode* st, PhaseGVN* phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  // Capture another store; reformat it to write my internal raw memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
  // Return the captured copy, else NULL if there is some sort of problem.
58751
0f882d53c204 8231412: C2: InitializeNode::detect_init_independence() bails out on simple IR shapes
chagedorn
parents: 58516
diff changeset
  1395
  Node* capture_store(StoreNode* st, intptr_t start, PhaseGVN* phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  // Find captured store which corresponds to the range [start..start+size).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  // Return my own memory projection (meaning the initial zero bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  // if there is no such store.  Return NULL if there is a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  Node* find_captured_store(intptr_t start, int size_in_bytes, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  // Called when the associated AllocateNode is expanded into CFG.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  Node* complete_stores(Node* rawctl, Node* rawmem, Node* rawptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
                        intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
                        PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  void remove_extra_zeroes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  // Find out where a captured store should be placed (or already is placed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  int captured_store_insertion_point(intptr_t start, int size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
                                     PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  static intptr_t get_store_offset(Node* st, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  Node* make_raw_address(intptr_t offset, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
58751
0f882d53c204 8231412: C2: InitializeNode::detect_init_independence() bails out on simple IR shapes
chagedorn
parents: 58516
diff changeset
  1418
  bool detect_init_independence(Node* value, PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  void coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
                               PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  intptr_t find_next_fullword_store(uint i, PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
//------------------------------MergeMem---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
// (See comment in memnode.cpp near MergeMemNode::MergeMemNode for semantics.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
class MergeMemNode: public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  virtual uint hash() const ;                  // { return NO_HASH; }
54327
a4d19817609c 8157372: C2: Node::cmp() should return bool
jcbeyler
parents: 53765
diff changeset
  1430
  virtual bool cmp( const Node &n ) const ;    // Always fail, except on self
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  friend class MergeMemStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  MergeMemNode(Node* def);  // clients use MergeMemNode::make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  // If the input is a whole memory state, clone it with all its slices intact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  // Otherwise, make a new memory state with just that base memory input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  // In either case, the result is a newly created MergeMem.
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 24345
diff changeset
  1438
  static MergeMemNode* make(Node* base_memory);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 34189
diff changeset
  1441
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  virtual uint match_edge(uint idx) const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
  virtual const Type *bottom_type() const { return Type::MEMORY; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  // sparse accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  // Fetch the previously stored "set_memory_at", or else the base memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  // (Caller should clone it if it is a phi-nest.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  Node* memory_at(uint alias_idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  // set the memory, regardless of its previous value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  void set_memory_at(uint alias_idx, Node* n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  // the "base" is the memory that provides the non-finite support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  Node* base_memory() const       { return in(Compile::AliasIdxBot); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  // warning: setting the base can implicitly set any of the other slices too
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  void set_base_memory(Node* def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  // sentinel value which denotes a copy of the base memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  Node*   empty_memory() const    { return in(Compile::AliasIdxTop); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  static Node* make_empty_memory(); // where the sentinel comes from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  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
  1462
  // hook for the iterator, to perform any necessary setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  void iteration_setup(const MergeMemNode* other = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  // push sentinels until I am at least as long as the other (semantic no-op)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  void grow_to_match(const MergeMemNode* other);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  bool verify_sparse() const PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
class MergeMemStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  MergeMemNode*       _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  const MergeMemNode* _mm2;  // optional second guy, contributes non-empty iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  Node*               _mm_base;  // loop-invariant base memory of _mm
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  int                 _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  int                 _cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  Node*               _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  Node*               _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  int                 _cnt2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  void init(MergeMemNode* mm, const MergeMemNode* mm2 = NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    // subsume_node will break sparseness at times, whenever a memory slice
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    // folds down to a copy of the base ("fat") memory.  In such a case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    // the raw edge will update to base, although it should be top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    // This iterator will recognize either top or base_memory as an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
    // "empty" slice.  See is_empty, is_empty2, and next below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
    // The sparseness property is repaired in MergeMemNode::Ideal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    // As long as access to a MergeMem goes through this iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    // or the memory_at accessor, flaws in the sparseness will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    // never be observed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
    // Also, iteration_setup repairs sparseness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    assert(mm->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
    assert(mm2==NULL || mm2->verify_sparse(), "please, no dups of base");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
    _mm  = mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
    _mm_base = mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    _mm2 = mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    _cnt = mm->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
    _idx = Compile::AliasIdxBot-1; // start at the base memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    _mem = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
    _mem2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
  Node* check_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
    if (at_base_memory())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
      return _mm->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
    else if ((uint)_idx < _mm->req() && !_mm->in(_idx)->is_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
      return _mm->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  Node* check_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
    return at_base_memory()? _mm2->base_memory(): _mm2->memory_at(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  static bool match_memory(Node* mem, const MergeMemNode* mm, int idx) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  void assert_synch() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
    assert(!_mem || _idx >= _cnt || match_memory(_mem, _mm, _idx),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
           "no side-effects except through the stream");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
  // expected usages:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
  // for (MergeMemStream mms(mem->is_MergeMem()); next_non_empty(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
  // for (MergeMemStream mms(mem1, mem2); next_non_empty2(); ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
  // iterate over one merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
  MergeMemStream(MergeMemNode* mm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
    mm->iteration_setup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
    init(mm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
    debug_only(_cnt2 = 999);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
  // iterate in parallel over two merges
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
  // only iterates through non-empty elements of mm2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
  MergeMemStream(MergeMemNode* mm, const MergeMemNode* mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    assert(mm2, "second argument must be a MergeMem also");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    ((MergeMemNode*)mm2)->iteration_setup();  // update hidden state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
    mm->iteration_setup(mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
    init(mm, mm2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
    _cnt2 = mm2->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
  ~MergeMemStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
  MergeMemNode* all_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
    return _mm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
  Node* base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
    assert(_mm_base == _mm->base_memory(), "no update to base memory, please");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
    return _mm_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  const MergeMemNode* all_memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
    assert(_mm2 != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
    return _mm2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
  bool at_base_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
    return _idx == Compile::AliasIdxBot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  int alias_idx() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    return _idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  const TypePtr* adr_type() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
    return Compile::current()->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
  const TypePtr* adr_type(Compile* C) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    return C->get_adr_type(alias_idx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
  bool is_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
    assert(_mem, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
    assert(_mem->is_top() == (_mem==_mm->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
    return _mem->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
  bool is_empty2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
    assert(_mem2, "must call next 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
    assert(_mem2->is_top() == (_mem2==_mm2->empty_memory()), "correct sentinel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
    return _mem2->is_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
  Node* memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
    assert(!is_empty(), "must not be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
    return _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  // get the current memory, regardless of empty or non-empty status
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  Node* force_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
    assert(!is_empty() || !at_base_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
    // Use _mm_base to defend against updates to _mem->base_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
    Node *mem = _mem->is_top() ? _mm_base : _mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
    assert(mem == check_memory(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
    return mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
  Node* memory2() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
    assert(_mem2 == check_memory2(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
    return _mem2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  void set_memory(Node* mem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
    if (at_base_memory()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
      // Note that this does not change the invariant _mm_base.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
      _mm->set_base_memory(mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
      _mm->set_memory_at(_idx, mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
    _mem = mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  // Recover from a side effect to the MergeMemNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  void set_memory() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
    _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  bool next()  { return next(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  bool next2() { return next(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  bool next_non_empty()  { return next_non_empty(false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
  bool next_non_empty2() { return next_non_empty(true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
  // next_non_empty2 can yield states where is_empty() is true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
  // find the next item, which might be empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
  bool next(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
    assert((_mm2 != NULL) == have_mm2, "use other next");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    assert_synch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
    if (++_idx < _cnt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
      // Note:  This iterator allows _mm to be non-sparse.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
      // It behaves the same whether _mem is top or base_memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
      _mem = _mm->in(_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
      if (have_mm2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
        _mem2 = _mm2->in((_idx < _cnt2) ? _idx : Compile::AliasIdxTop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  // find the next non-empty item
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
  bool next_non_empty(bool have_mm2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    while (next(have_mm2)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
      if (!is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
        // make sure _mem2 is filled in sensibly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
        if (have_mm2 && _mem2->is_top())  _mem2 = _mm2->base_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
      } else if (have_mm2 && !is_empty2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
        return true;   // is_empty() == true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1662
// cachewb node for guaranteeing writeback of the cache line at a
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1663
// given address to (non-volatile) RAM
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1664
class CacheWBNode : public Node {
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1665
public:
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1666
  CacheWBNode(Node *ctrl, Node *mem, Node *addr) : Node(ctrl, mem, addr) {}
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1667
  virtual int Opcode() const;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1668
  virtual uint ideal_reg() const { return NotAMachineReg; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1669
  virtual uint match_edge(uint idx) const { return (idx == 2); }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1670
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1671
  virtual const Type *bottom_type() const { return Type::MEMORY; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1672
};
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1673
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1674
// cachewb pre sync node for ensuring that writebacks are serialised
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1675
// relative to preceding or following stores
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1676
class CacheWBPreSyncNode : public Node {
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1677
public:
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1678
  CacheWBPreSyncNode(Node *ctrl, Node *mem) : Node(ctrl, mem) {}
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1679
  virtual int Opcode() const;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1680
  virtual uint ideal_reg() const { return NotAMachineReg; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1681
  virtual uint match_edge(uint idx) const { return false; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1682
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1683
  virtual const Type *bottom_type() const { return Type::MEMORY; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1684
};
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1685
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1686
// cachewb pre sync node for ensuring that writebacks are serialised
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1687
// relative to preceding or following stores
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1688
class CacheWBPostSyncNode : public Node {
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1689
public:
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1690
  CacheWBPostSyncNode(Node *ctrl, Node *mem) : Node(ctrl, mem) {}
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1691
  virtual int Opcode() const;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1692
  virtual uint ideal_reg() const { return NotAMachineReg; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1693
  virtual uint match_edge(uint idx) const { return false; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1694
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1695
  virtual const Type *bottom_type() const { return Type::MEMORY; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1696
};
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57582
diff changeset
  1697
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
//------------------------------Prefetch---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1700
// Allocation prefetch which may fault, TLAB size have to be adjusted.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1701
class PrefetchAllocationNode : public Node {
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1702
public:
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1703
  PrefetchAllocationNode(Node *mem, Node *adr) : Node(0,mem,adr) {}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1704
  virtual int Opcode() const;
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1705
  virtual uint ideal_reg() const { return NotAMachineReg; }
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1706
  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
  1707
  virtual const Type *bottom_type() const { return ( AllocatePrefetchStyle == 3 ) ? Type::MEMORY : Type::ABIO; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5889
diff changeset
  1709
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51482
diff changeset
  1710
#endif // SHARE_OPTO_MEMNODE_HPP