src/hotspot/share/opto/multnode.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 48595 5d699d81c10c
child 54327 a4d19817609c
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
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: 48595
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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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: 48595
diff changeset
    25
#ifndef SHARE_OPTO_MULTNODE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48595
diff changeset
    26
#define SHARE_OPTO_MULTNODE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class Matcher;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class ProjNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//------------------------------MultiNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// This class defines a MultiNode, a Node which produces many values.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// values are wrapped up in a tuple Type, i.e. a TypeTuple.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class MultiNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  MultiNode( uint required ) : Node(required) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    init_class_id(Class_Multi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  virtual const Type *bottom_type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  virtual bool       is_CFG() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  virtual Node *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  ProjNode* proj_out(uint which_proj) const; // Get a named projection
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
    50
  ProjNode* proj_out_or_null(uint which_proj) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//------------------------------ProjNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// This class defines a Projection node.  Projections project a single element
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// out of a tuple (or Signature) type.  Only MultiNodes produce TypeTuple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
class ProjNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  virtual uint hash() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual uint size_of() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void check_con() const;       // Called from constructor.
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 7397
diff changeset
    64
  const Type* proj_type(const Type* t) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  ProjNode( Node *src, uint con, bool io_use = false )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    : Node( src ), _con(con), _is_io_use(io_use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    init_class_id(Class_Proj);
373
427fb4ca6a1e 6625997: CastPP, CheckCastPP and Proj nodes are not dead loop safe
kvn
parents: 1
diff changeset
    71
    // Optimistic setting. Need additional checks in Node::is_dead_loop_safe().
427fb4ca6a1e 6625997: CastPP, CheckCastPP and Proj nodes are not dead loop safe
kvn
parents: 1
diff changeset
    72
    if (con != TypeFunc::Memory || src->is_Start())
427fb4ca6a1e 6625997: CastPP, CheckCastPP and Proj nodes are not dead loop safe
kvn
parents: 1
diff changeset
    73
      init_flags(Flag_is_dead_loop_safe);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    debug_only(check_con());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  const uint _con;              // The field in the tuple we are projecting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  const bool _is_io_use;        // Used to distinguish between the projections
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                // used on the control and io paths from a macro node
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  virtual bool      is_CFG() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  virtual const TypePtr *adr_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  virtual bool pinned() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 32084
diff changeset
    85
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  virtual uint ideal_reg() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual const RegMask &out_RegMask() const;
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 7397
diff changeset
    88
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  virtual void dump_spec(outputStream *st) const;
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 30183
diff changeset
    91
  virtual void dump_compact_spec(outputStream *st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
#endif
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
    93
30183
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    94
  // Return uncommon trap call node if proj is for "proj->[region->..]call_uct"
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    95
  // NULL otherwise
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    96
  CallStaticJavaNode* is_uncommon_trap_proj(Deoptimization::DeoptReason reason);
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    97
  // Return uncommon trap call node for    "if(test)-> proj -> ...
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    98
  //                                                 |
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
    99
  //                                                 V
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   100
  //                                             other_proj->[region->..]call_uct"
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   101
  // NULL otherwise
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   102
  CallStaticJavaNode* is_uncommon_trap_if_pattern(Deoptimization::DeoptReason reason);
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   103
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   104
  // Return other proj node when this is a If proj node
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 22234
diff changeset
   105
  ProjNode* other_if_proj() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   107
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48595
diff changeset
   108
#endif // SHARE_OPTO_MULTNODE_HPP