src/hotspot/share/adlc/formssel.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58516 d376d86b0a01
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
55743
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
     2
 * Copyright (c) 1998, 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: 5536
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5536
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: 5536
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// FORMS.CPP - Definitions for ADL Parser Forms Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "adlc.hpp"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//==============================Instructions===================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//------------------------------InstructForm-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
InstructForm::InstructForm(const char *id, bool ideal_only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  : _ident(id), _ideal_only(ideal_only),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    _localNames(cmpstr, hashstr, Form::arena),
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
    33
    _effects(cmpstr, hashstr, Form::arena),
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 10570
diff changeset
    34
    _is_mach_constant(false),
22850
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
    35
    _needs_constant_base(false),
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 10570
diff changeset
    36
    _has_call(false)
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
    37
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
      _ftype = Form::INS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    40
      _matrule              = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    41
      _insencode            = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    42
      _constant             = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    43
      _is_postalloc_expand  = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    44
      _opcode               = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    45
      _size                 = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    46
      _attribs              = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    47
      _predicate            = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    48
      _exprule              = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    49
      _rewrule              = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    50
      _format               = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    51
      _peephole             = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    52
      _ins_pipe             = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    53
      _uniq_idx             = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    54
      _num_uniq             = 0;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    55
      _cisc_spill_operand   = Not_cisc_spillable;// Which operand may cisc-spill
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      _cisc_spill_alternate = NULL;            // possible cisc replacement
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    57
      _cisc_reg_mask_name   = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    58
      _is_cisc_alternate    = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    59
      _is_short_branch      = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    60
      _short_branch_form    = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    61
      _alignment            = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
InstructForm::InstructForm(const char *id, InstructForm *instr, MatchRule *rule)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  : _ident(id), _ideal_only(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _localNames(instr->_localNames),
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
    67
    _effects(instr->_effects),
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 10570
diff changeset
    68
    _is_mach_constant(false),
22850
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
    69
    _needs_constant_base(false),
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 10570
diff changeset
    70
    _has_call(false)
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
    71
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      _ftype = Form::INS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    74
      _matrule               = rule;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    75
      _insencode             = instr->_insencode;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    76
      _constant              = instr->_constant;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    77
      _is_postalloc_expand   = instr->_is_postalloc_expand;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    78
      _opcode                = instr->_opcode;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    79
      _size                  = instr->_size;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    80
      _attribs               = instr->_attribs;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    81
      _predicate             = instr->_predicate;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    82
      _exprule               = instr->_exprule;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    83
      _rewrule               = instr->_rewrule;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    84
      _format                = instr->_format;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    85
      _peephole              = instr->_peephole;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    86
      _ins_pipe              = instr->_ins_pipe;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    87
      _uniq_idx              = instr->_uniq_idx;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    88
      _num_uniq              = instr->_num_uniq;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    89
      _cisc_spill_operand    = Not_cisc_spillable; // Which operand may cisc-spill
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    90
      _cisc_spill_alternate  = NULL;               // possible cisc replacement
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    91
      _cisc_reg_mask_name    = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    92
      _is_cisc_alternate     = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    93
      _is_short_branch       = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    94
      _short_branch_form     = NULL;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
    95
      _alignment             = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
     // Copy parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
     const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
     instr->_parameters.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
     for (; (name = instr->_parameters.iter()) != NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
       _parameters.addName(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
InstructForm::~InstructForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
InstructForm *InstructForm::is_instruction() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return (InstructForm*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
bool InstructForm::ideal_only() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return _ideal_only;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
bool InstructForm::sets_result() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return (_matrule != NULL && _matrule->sets_result());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
bool InstructForm::needs_projections() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  for( Component *comp; (comp = _components.iter()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    if (comp->isa(Component::KILL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
bool InstructForm::has_temps() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (_matrule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // Examine each component to see if it is a TEMP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // Skip the first component, if already handled as (SET dst (...))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    Component *comp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    if (sets_result())  comp = _components.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    while ((comp = _components.iter()) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      if (comp->isa(Component::TEMP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
uint InstructForm::num_defs_or_kills() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  uint   defs_or_kills = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  for( Component *comp; (comp = _components.iter()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    if( comp->isa(Component::DEF) || comp->isa(Component::KILL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      ++defs_or_kills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return  defs_or_kills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// This instruction has an expand rule?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
bool InstructForm::expands() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return ( _exprule != NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
   164
// This instruction has a late expand rule?
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
   165
bool InstructForm::postalloc_expands() const {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
   166
  return _is_postalloc_expand;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
   167
}
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 21086
diff changeset
   168
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// This instruction has a peephole rule?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
Peephole *InstructForm::peepholes() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return _peephole;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// This instruction has a peephole rule?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void InstructForm::append_peephole(Peephole *peephole) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if( _peephole == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    _peephole = peephole;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    _peephole->append_peephole(peephole);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// ideal opcode enumeration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
const char *InstructForm::ideal_Opcode( FormDict &globalNames )  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  if( !_matrule ) return "Node"; // Something weird
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Chain rules do not really have ideal Opcodes; use their source
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // operand ideal Opcode instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if( is_simple_chain_rule(globalNames) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    const char *src = _matrule->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    OperandForm *src_op = globalNames[src]->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    assert( src_op, "Not operand class of chain rule" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    if( !src_op->_matrule ) return "Node";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    return src_op->_matrule->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Operand chain rules do not really have ideal Opcodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  if( _matrule->is_chain_rule(globalNames) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    return "Node";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  return strcmp(_matrule->_opType,"Set")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    ? _matrule->_opType
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    : _matrule->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// Recursive check on all operands' match rules in my match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
bool InstructForm::is_pinned(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  if ( ! _matrule)  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (_matrule->find_type("Goto",          index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (_matrule->find_type("If",            index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (_matrule->find_type("CountedLoopEnd",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  if (_matrule->find_type("Return",        index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (_matrule->find_type("Rethrow",       index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  if (_matrule->find_type("TailCall",      index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  if (_matrule->find_type("TailJump",      index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (_matrule->find_type("Halt",          index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  if (_matrule->find_type("Jump",          index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  return is_parm(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Recursive check on all operands' match rules in my match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
bool InstructForm::is_projection(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if ( ! _matrule)  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  if (_matrule->find_type("Goto",    index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  if (_matrule->find_type("Return",  index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (_matrule->find_type("Rethrow", index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  if (_matrule->find_type("TailCall",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  if (_matrule->find_type("TailJump",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  if (_matrule->find_type("Halt",    index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// Recursive check on all operands' match rules in my match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
bool InstructForm::is_parm(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if ( ! _matrule)  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (_matrule->find_type("Parm",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
18102
5c2c46c821ba 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 17871
diff changeset
   247
bool InstructForm::is_ideal_negD() const {
5c2c46c821ba 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 17871
diff changeset
   248
  return (_matrule && _matrule->_rChild && strcmp(_matrule->_rChild->_opType, "NegD") == 0);
5c2c46c821ba 8016157: During CTW: C2: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG defined in this block
adlertz
parents: 17871
diff changeset
   249
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// Return 'true' if this instruction matches an ideal 'Copy*' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
int InstructForm::is_ideal_copy() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return _matrule ? _matrule->is_ideal_copy() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// Return 'true' if this instruction is too complex to rematerialize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
int InstructForm::is_expensive() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // We can prove it is cheap if it has an empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // This helps with platform-specific nops like ThreadLocal and RoundFloat.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  if (is_empty_encoding())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  if (is_tls_instruction())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  if (_matrule == NULL)  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  return _matrule->is_expensive();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// Has an empty encoding if _size is a constant zero or there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// are no ins_encode tokens.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
int InstructForm::is_empty_encoding() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if (_insencode != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    _insencode->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    if (_insencode->encode_class_iter() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  if (_size != NULL && strcmp(_size, "0") == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
int InstructForm::is_tls_instruction() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  if (_ident != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      ( ! strcmp( _ident,"tlsLoadP") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        ! strncmp(_ident,"tlsLoadP_",9)) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  if (_matrule != NULL && _insencode != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    const char* opType = _matrule->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    if (strcmp(opType, "Set")==0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      opType = _matrule->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    if (strcmp(opType,"ThreadLocal")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      fprintf(stderr, "Warning: ThreadLocal instruction %s should be named 'tlsLoadP_*'\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
              (_ident == NULL ? "NULL" : _ident));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// Return 'true' if this instruction matches an ideal 'If' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
bool InstructForm::is_ideal_if() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  return _matrule->is_ideal_if();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// Return 'true' if this instruction matches an ideal 'FastLock' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
bool InstructForm::is_ideal_fastlock() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  return _matrule->is_ideal_fastlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
// Return 'true' if this instruction matches an ideal 'MemBarXXX' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
bool InstructForm::is_ideal_membar() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  return _matrule->is_ideal_membar();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// Return 'true' if this instruction matches an ideal 'LoadPC' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
bool InstructForm::is_ideal_loadPC() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  return _matrule->is_ideal_loadPC();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
// Return 'true' if this instruction matches an ideal 'Box' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
bool InstructForm::is_ideal_box() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  return _matrule->is_ideal_box();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Return 'true' if this instruction matches an ideal 'Goto' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
bool InstructForm::is_ideal_goto() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  return _matrule->is_ideal_goto();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// Return 'true' if this instruction matches an ideal 'Jump' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
bool InstructForm::is_ideal_jump() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  return _matrule->is_ideal_jump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
10266
2ea344c79e33 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 10264
diff changeset
   357
// Return 'true' if instruction matches ideal 'If' | 'Goto' | 'CountedLoopEnd'
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
bool InstructForm::is_ideal_branch() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
10266
2ea344c79e33 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 10264
diff changeset
   361
  return _matrule->is_ideal_if() || _matrule->is_ideal_goto();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// Return 'true' if this instruction matches an ideal 'Return' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
bool InstructForm::is_ideal_return() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // Check MatchRule to see if the first entry is the ideal "Return" node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  if (_matrule->find_type("Return",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  if (_matrule->find_type("Rethrow",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (_matrule->find_type("TailCall",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (_matrule->find_type("TailJump",index)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
// Return 'true' if this instruction matches an ideal 'Halt' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
bool InstructForm::is_ideal_halt() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  return _matrule && _matrule->find_type("Halt",index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
// Return 'true' if this instruction matches an ideal 'SafePoint' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
bool InstructForm::is_ideal_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  int  index   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  return _matrule && _matrule->find_type("SafePoint",index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// Return 'true' if this instruction matches an ideal 'Nop' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
bool InstructForm::is_ideal_nop() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  return _ident && _ident[0] == 'N' && _ident[1] == 'o' && _ident[2] == 'p' && _ident[3] == '_';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
bool InstructForm::is_ideal_control() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  if ( ! _matrule)  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
10266
2ea344c79e33 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 10264
diff changeset
   399
  return is_ideal_return() || is_ideal_branch() || _matrule->is_ideal_jump() || is_ideal_halt();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// Return 'true' if this instruction matches an ideal 'Call' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
Form::CallType InstructForm::is_ideal_call() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  if( _matrule == NULL ) return Form::invalid_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // Check MatchRule to see if the first entry is the ideal "Call" node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  int  idx   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if(_matrule->find_type("CallStaticJava",idx))   return Form::JAVA_STATIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  if(_matrule->find_type("Lock",idx))             return Form::JAVA_STATIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  if(_matrule->find_type("Unlock",idx))           return Form::JAVA_STATIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  if(_matrule->find_type("CallDynamicJava",idx))  return Form::JAVA_DYNAMIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  if(_matrule->find_type("CallRuntime",idx))      return Form::JAVA_RUNTIME;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  if(_matrule->find_type("CallLeaf",idx))         return Form::JAVA_LEAF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  if(_matrule->find_type("CallLeafNoFP",idx))     return Form::JAVA_LEAF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  return Form::invalid_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
// Return 'true' if this instruction matches an ideal 'Load?' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
Form::DataType InstructForm::is_ideal_load() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  if( _matrule == NULL ) return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  return  _matrule->is_ideal_load();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
3272
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   433
// Return 'true' if this instruction matches an ideal 'LoadKlass' node
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   434
bool InstructForm::skip_antidep_check() const {
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   435
  if( _matrule == NULL ) return false;
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   436
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   437
  return  _matrule->skip_antidep_check();
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   438
}
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   439
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
// Return 'true' if this instruction matches an ideal 'Load?' node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
Form::DataType InstructForm::is_ideal_store() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  if( _matrule == NULL ) return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  return  _matrule->is_ideal_store();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   447
// Return 'true' if this instruction matches an ideal vector node
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   448
bool InstructForm::is_vector() const {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   449
  if( _matrule == NULL ) return false;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   450
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   451
  return _matrule->is_vector();
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   452
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   453
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   454
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
// Return the input register that must match the output register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
// If this is not required, return 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
uint InstructForm::two_address(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  uint  matching_input = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if(_components.count() == 0) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  Component *comp = _components.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // Check if there is a DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  if( comp->isa(Component::DEF) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    // Check that this is a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    const char  *def_type = comp->_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    const Form  *form     = globals[def_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    OperandForm *op       = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    if( op ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      if( op->constrained_reg_class() != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
          op->interface_type(globals) == Form::register_interface ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
        // Remember the local name for equality test later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
        const char *def_name = comp->_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
        // Check if a component has the same name and is a USE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
        do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
          if( comp->isa(Component::USE) && strcmp(comp->_name,def_name)==0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
            return operand_position_format(def_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
        } while( (comp = _components.iter()) != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
// when chaining a constant to an instruction, returns 'true' and sets opType
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
Form::DataType InstructForm::is_chain_of_constant(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  const char *dummy  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  const char *dummy2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  return is_chain_of_constant(globals, dummy, dummy2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
Form::DataType InstructForm::is_chain_of_constant(FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
                const char * &opTypeParam) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  const char *result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  return is_chain_of_constant(globals, opTypeParam, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
Form::DataType InstructForm::is_chain_of_constant(FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
                const char * &opTypeParam, const char * &resultParam) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  Form::DataType  data_type = Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  if ( ! _matrule)  return data_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // The source of the chain rule is 'position = 1'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  uint         position = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  const char  *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  const char  *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  const char  *opType   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // Here base_operand is looking for an ideal type to be returned (opType).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  if ( _matrule->is_chain_rule(globals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
       && _matrule->base_operand(position, globals, result, name, opType) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    data_type = ideal_to_const_type(opType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    // if it isn't an ideal constant type, just return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    if ( data_type == Form::none ) return data_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    // Ideal constant types also adjust the opType parameter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    resultParam = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    opTypeParam = opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    return data_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  return data_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
// Check if a simple chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
bool InstructForm::is_simple_chain_rule(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  if( _matrule && _matrule->sets_result()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      && _matrule->_rChild->_lChild == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      && globals[_matrule->_rChild->_opType]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      && globals[_matrule->_rChild->_opType]->is_opclass() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
// check for structural rematerialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
bool InstructForm::rematerialize(FormDict &globals, RegisterForm *registers ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  bool   rematerialize = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  Form::DataType data_type = is_chain_of_constant(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  if( data_type != Form::none )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    rematerialize = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  // Constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  if( _components.count() == 1 && _components[0]->is(Component::USE_DEF) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    rematerialize = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  // Pseudo-constants (values easily available to the runtime)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  if (is_empty_encoding() && is_tls_instruction())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    rematerialize = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // 1-input, 1-output, such as copies or increments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  if( _components.count() == 2 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      _components[0]->is(Component::DEF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
      _components[1]->isa(Component::USE) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    rematerialize = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // Check for an ideal 'Load?' and eliminate rematerialize option
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  if ( is_ideal_load() != Form::none || // Ideal load?  Do not rematerialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
       is_ideal_copy() != Form::none || // Ideal copy?  Do not rematerialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
       is_expensive()  != Form::none) { // Expensive?   Do not rematerialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    rematerialize = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // Always rematerialize the flags.  They are more expensive to save &
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  // restore than to recompute (and possibly spill the compare's inputs).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  if( _components.count() >= 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    Component *c = _components[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    const Form *form = globals[c->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    OperandForm *opform = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    if( opform ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      // Avoid the special stack_slots register classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
      const char *rc_name = opform->constrained_reg_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      if( rc_name ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
        if( strcmp(rc_name,"stack_slots") ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
          // Check for ideal_type of RegFlags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
          const char *type = opform->ideal_type( globals, registers );
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   582
          if( (type != NULL) && !strcmp(type, "RegFlags") )
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
            rematerialize = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
        } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
          rematerialize = false; // Do not rematerialize things target stk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  return rematerialize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// loads from memory, so must check for anti-dependence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
bool InstructForm::needs_anti_dependence_check(FormDict &globals) const {
3272
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   595
  if ( skip_antidep_check() ) return false;
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
   596
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  // Machine independent loads must be checked for anti-dependences
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  if( is_ideal_load() != Form::none )  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  // !!!!! !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // TEMPORARY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  // if( is_simple_chain_rule(globals) )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   604
  // String.(compareTo/equals/indexOf) and Arrays.equals use many memorys edges,
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   605
  // but writes none
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if( _matrule && _matrule->_rChild &&
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   607
      ( strcmp(_matrule->_rChild->_opType,"StrComp"    )==0 ||
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   608
        strcmp(_matrule->_rChild->_opType,"StrEquals"  )==0 ||
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   609
        strcmp(_matrule->_rChild->_opType,"StrIndexOf" )==0 ||
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   610
        strcmp(_matrule->_rChild->_opType,"StrIndexOfChar" )==0 ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   611
        strcmp(_matrule->_rChild->_opType,"HasNegatives" )==0 ||
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   612
        strcmp(_matrule->_rChild->_opType,"AryEq"      )==0 ))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  // Check if instruction has a USE of a memory operand class, but no defs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  bool USE_of_memory  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  bool DEF_of_memory  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  Component     *comp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  ComponentList &components = (ComponentList &)_components;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  while( (comp = components.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    const Form  *form = globals[comp->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    if( !form ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    OpClassForm *op   = form->is_opclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    if( !op ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    if( form->interface_type(globals) == Form::memory_interface ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
      if( comp->isa(Component::USE) ) USE_of_memory = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      if( comp->isa(Component::DEF) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
        OperandForm *oper = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
        if( oper && oper->is_user_name_for_sReg() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
          // Stack slots are unaliased memory handled by allocator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
          oper = oper;  // debug stopping point !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
          DEF_of_memory = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  return (USE_of_memory && !DEF_of_memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
int InstructForm::memory_operand(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // Machine independent loads must be checked for anti-dependences
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  // Check if instruction has a USE of a memory operand class, or a def.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  int USE_of_memory  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  int DEF_of_memory  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  const char*    last_memory_DEF = NULL; // to test DEF/USE pairing in asserts
23220
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   650
  const char*    last_memory_USE = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  Component     *unique          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  Component     *comp            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  ComponentList &components      = (ComponentList &)_components;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  while( (comp = components.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    const Form  *form = globals[comp->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    if( !form ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    OpClassForm *op   = form->is_opclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    if( !op ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    if( op->stack_slots_only(globals) )  continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    if( form->interface_type(globals) == Form::memory_interface ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      if( comp->isa(Component::DEF) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
        last_memory_DEF = comp->_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
        DEF_of_memory++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
        unique = comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      } else if( comp->isa(Component::USE) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
        if( last_memory_DEF != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
          assert(0 == strcmp(last_memory_DEF, comp->_name), "every memory DEF is followed by a USE of the same name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
          last_memory_DEF = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
        }
23220
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   672
        // Handles same memory being used multiple times in the case of BMI1 instructions.
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   673
        if (last_memory_USE != NULL) {
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   674
          if (strcmp(comp->_name, last_memory_USE) != 0) {
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   675
            USE_of_memory++;
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   676
          }
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   677
        } else {
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   678
          USE_of_memory++;
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   679
        }
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   680
        last_memory_USE = comp->_name;
fc827339dc37 8031321: Support Intel bit manipulation instructions
iveresov
parents: 22872
diff changeset
   681
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
        if (DEF_of_memory == 0)  // defs take precedence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
          unique = comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
        assert(last_memory_DEF == NULL, "unpaired memory DEF");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  assert(last_memory_DEF == NULL, "unpaired memory DEF");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  assert(USE_of_memory >= DEF_of_memory, "unpaired memory DEF");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  USE_of_memory -= DEF_of_memory;   // treat paired DEF/USE as one occurrence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  if( (USE_of_memory + DEF_of_memory) > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    if( is_simple_chain_rule(globals) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      //fprintf(stderr, "Warning: chain rule is not really a memory user.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      //((InstructForm*)this)->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      // Preceding code prints nothing on sparc and these insns on intel:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      // leaP8 leaP32 leaPIdxOff leaPIdxScale leaPIdxScaleOff leaP8 leaP32
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      // leaPIdxOff leaPIdxScale leaPIdxScaleOff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      return NO_MEMORY_OPERAND;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    if( DEF_of_memory == 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      assert(unique != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      if( USE_of_memory == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
        // unique def, no uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
        // // unique def, some uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
        // // must return bottom unless all uses match def
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
        // unique = NULL;
42063
dca9294d9f59 8166561: [s390] Adaptions needed for s390 port in C1 and C2.
goetz
parents: 41323
diff changeset
   710
#ifdef S390
dca9294d9f59 8166561: [s390] Adaptions needed for s390 port in C1 and C2.
goetz
parents: 41323
diff changeset
   711
        // This case is important for move instructions on s390x.
dca9294d9f59 8166561: [s390] Adaptions needed for s390 port in C1 and C2.
goetz
parents: 41323
diff changeset
   712
        // On other platforms (e.g. x86), all uses always match the def.
dca9294d9f59 8166561: [s390] Adaptions needed for s390 port in C1 and C2.
goetz
parents: 41323
diff changeset
   713
        unique = NULL;
dca9294d9f59 8166561: [s390] Adaptions needed for s390 port in C1 and C2.
goetz
parents: 41323
diff changeset
   714
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    } else if( DEF_of_memory > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      // multiple defs, don't care about uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
      unique = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    } else if( USE_of_memory == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      // unique use, no defs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      assert(unique != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    } else if( USE_of_memory > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      // multiple uses, no defs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
      unique = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      assert(false, "bad case analysis");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    // process the unique DEF or USE, if there is one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    if( unique == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
      return MANY_MEMORY_OPERANDS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
      int pos = components.operand_position(unique->_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      if( unique->isa(Component::DEF) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
        pos += 1;                // get corresponding USE from DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
      assert(pos >= 1, "I was just looking at it!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      return pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  // missed the memory op??
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  if( true ) {  // %%% should not be necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    if( is_ideal_store() != Form::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      fprintf(stderr, "Warning: cannot find memory opnd in instr.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
      ((InstructForm*)this)->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      // pretend it has multiple defs and uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
      return MANY_MEMORY_OPERANDS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
    if( is_ideal_load()  != Form::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
      fprintf(stderr, "Warning: cannot find memory opnd in instr.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
      ((InstructForm*)this)->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
      // pretend it has multiple uses and no defs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
      return MANY_MEMORY_OPERANDS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  return NO_MEMORY_OPERAND;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
// This instruction captures the machine-independent bottom_type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
// Expected use is for pointer vs oop determination for LoadP
5536
f23c4e2e0d5e 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 5352
diff changeset
   762
bool InstructForm::captures_bottom_type(FormDict &globals) const {
42080
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   763
  if (_matrule && _matrule->_rChild &&
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   764
      (!strcmp(_matrule->_rChild->_opType,"CastPP")       ||  // new result type
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   765
       !strcmp(_matrule->_rChild->_opType,"CastX2P")      ||  // new result type
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   766
       !strcmp(_matrule->_rChild->_opType,"DecodeN")      ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   767
       !strcmp(_matrule->_rChild->_opType,"EncodeP")      ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   768
       !strcmp(_matrule->_rChild->_opType,"DecodeNKlass") ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   769
       !strcmp(_matrule->_rChild->_opType,"EncodePKlass") ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   770
       !strcmp(_matrule->_rChild->_opType,"LoadN")        ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   771
       !strcmp(_matrule->_rChild->_opType,"LoadNKlass")   ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   772
       !strcmp(_matrule->_rChild->_opType,"CreateEx")     ||  // type of exception
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   773
       !strcmp(_matrule->_rChild->_opType,"CheckCastPP")  ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   774
       !strcmp(_matrule->_rChild->_opType,"GetAndSetP")   ||
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   775
       !strcmp(_matrule->_rChild->_opType,"GetAndSetN")   ||
54564
b36e68b34be3 8218468: Load barrier slow path node should be MachTypeNode
neliasso
parents: 54423
diff changeset
   776
#if INCLUDE_SHENANDOAHGC
b36e68b34be3 8218468: Load barrier slow path node should be MachTypeNode
neliasso
parents: 54423
diff changeset
   777
       !strcmp(_matrule->_rChild->_opType,"ShenandoahCompareAndExchangeP") ||
b36e68b34be3 8218468: Load barrier slow path node should be MachTypeNode
neliasso
parents: 54423
diff changeset
   778
       !strcmp(_matrule->_rChild->_opType,"ShenandoahCompareAndExchangeN") ||
b36e68b34be3 8218468: Load barrier slow path node should be MachTypeNode
neliasso
parents: 54423
diff changeset
   779
#endif
42080
1e906304457b 8167298: assert(tp->base() != Type::AnyPtr) crash with Unsafe.compareAndExchangeObject*
roland
parents: 42063
diff changeset
   780
       !strcmp(_matrule->_rChild->_opType,"CompareAndExchangeP") ||
54564
b36e68b34be3 8218468: Load barrier slow path node should be MachTypeNode
neliasso
parents: 54423
diff changeset
   781
       !strcmp(_matrule->_rChild->_opType,"CompareAndExchangeN"))) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  else if ( is_ideal_load() == Form::idealP )                return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  else if ( is_ideal_store() != Form::none  )                return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
5536
f23c4e2e0d5e 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 5352
diff changeset
   785
  if (needs_base_oop_edge(globals)) return true;
f23c4e2e0d5e 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 5352
diff changeset
   786
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   787
  if (is_vector()) return true;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   788
  if (is_mach_constant()) return true;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   789
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  return  false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
// Access instr_cost attribute or return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
const char* InstructForm::cost() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  for (Attribute* cur = _attribs; cur != NULL; cur = (Attribute*)cur->_next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    if( strcmp(cur->_ident,AttributeForm::_ins_cost) == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      return cur->_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
// Return count of top-level operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
uint InstructForm::num_opnds() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  int  num_opnds = _components.num_operands();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  // Need special handling for matching some ideal nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  // i.e. Matching a return node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  if( _matrule ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    if( strcmp(_matrule->_opType,"Return"   )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        strcmp(_matrule->_opType,"Halt"     )==0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      return 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  return num_opnds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
   820
const char* InstructForm::opnd_ident(int idx) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   821
  return _components.at(idx)->_name;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   822
}
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   823
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
   824
const char* InstructForm::unique_opnd_ident(uint idx) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   825
  uint i;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   826
  for (i = 1; i < num_opnds(); ++i) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   827
    if (unique_opnds_idx(i) == idx) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   828
      break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   829
    }
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   830
  }
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   831
  return (_components.at(i) != NULL) ? _components.at(i)->_name : "";
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   832
}
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   833
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
// Return count of unmatched operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
uint InstructForm::num_post_match_opnds() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  uint  num_post_match_opnds = _components.count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  uint  num_match_opnds = _components.match_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  num_post_match_opnds = num_post_match_opnds - num_match_opnds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  return num_post_match_opnds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
// Return the number of leaves below this complex operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
uint InstructForm::num_consts(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  // This is a recursive invocation on all operands in the matchrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  return _matrule->num_consts(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
// Constants in match rule with specified type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
uint InstructForm::num_consts(FormDict &globals, Form::DataType type) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  // This is a recursive invocation on all operands in the matchrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  return _matrule->num_consts(globals, type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
// Return the register class associated with 'leaf'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
const char *InstructForm::out_reg_class(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  assert( false, "InstructForm::out_reg_class(FormDict &globals); Not Implemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
// Lookup the starting position of inputs we are interested in wrt. ideal nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
uint InstructForm::oper_input_base(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  if( !_matrule ) return 1;     // Skip control for most nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  // Need special handling for matching some ideal nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  // i.e. Matching a return node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  if( strcmp(_matrule->_opType,"Return"    )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
      strcmp(_matrule->_opType,"Rethrow"   )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
      strcmp(_matrule->_opType,"TailCall"  )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
      strcmp(_matrule->_opType,"TailJump"  )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
      strcmp(_matrule->_opType,"SafePoint" )==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
      strcmp(_matrule->_opType,"Halt"      )==0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    return AdlcVMDeps::Parms;   // Skip the machine-state edges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  if( _matrule->_rChild &&
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3272
diff changeset
   884
      ( strcmp(_matrule->_rChild->_opType,"AryEq"     )==0 ||
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3272
diff changeset
   885
        strcmp(_matrule->_rChild->_opType,"StrComp"   )==0 ||
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2154
diff changeset
   886
        strcmp(_matrule->_rChild->_opType,"StrEquals" )==0 ||
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   887
        strcmp(_matrule->_rChild->_opType,"StrInflatedCopy"   )==0 ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   888
        strcmp(_matrule->_rChild->_opType,"StrCompressedCopy" )==0 ||
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 13971
diff changeset
   889
        strcmp(_matrule->_rChild->_opType,"StrIndexOf")==0 ||
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   890
        strcmp(_matrule->_rChild->_opType,"StrIndexOfChar")==0 ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   891
        strcmp(_matrule->_rChild->_opType,"HasNegatives")==0 ||
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 13971
diff changeset
   892
        strcmp(_matrule->_rChild->_opType,"EncodeISOArray")==0)) {
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3272
diff changeset
   893
        // String.(compareTo/equals/indexOf) and Arrays.equals
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 13971
diff changeset
   894
        // and sun.nio.cs.iso8859_1$Encoder.EncodeISOArray
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3272
diff changeset
   895
        // take 1 control and 1 memory edges.
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33469
diff changeset
   896
        // Also String.(compressedCopy/inflatedCopy).
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3272
diff changeset
   897
    return 2;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  // Check for handling of 'Memory' input/edge in the ideal world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  // The AD file writer is shielded from knowledge of these edges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  int base = 1;                 // Skip control
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  base += _matrule->needs_ideal_memory_edge(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  // Also skip the base-oop value for uses of derived oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  // The AD file writer is shielded from knowledge of these edges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  base += needs_base_oop_edge(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  return base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   912
// This function determines the order of the MachOper in _opnds[]
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   913
// by writing the operand names into the _components list.
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
   914
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
// Implementation does not modify state of internal structures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
void InstructForm::build_components() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // Add top-level operands to the components
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  if (_matrule)  _matrule->append_components(_localNames, _components);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  // Add parameters that "do not appear in match rule".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  bool has_temp = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  const char *kill_name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  for (_parameters.reset(); (name = _parameters.iter()) != NULL;) {
52683
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
   925
    OpClassForm *opForm = _localNames[name]->is_opclass();
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
   926
    assert(opForm != NULL, "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   928
    Effect* e = NULL;
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   929
    {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   930
      const Form* form = _effects[name];
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   931
      e = form ? form->is_effect() : NULL;
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   932
    }
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
   933
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    if (e != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
      has_temp |= e->is(Component::TEMP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
      // KILLs must be declared after any TEMPs because TEMPs are real
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      // uses so their operand numbering must directly follow the real
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
      // inputs from the match rule.  Fixing the numbering seems
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
      // complex so simply enforce the restriction during parse.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
      if (kill_name != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
          e->isa(Component::TEMP) && !e->isa(Component::DEF)) {
52683
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
   943
        OpClassForm* kill = _localNames[kill_name]->is_opclass();
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
   944
        assert(kill != NULL, "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
        globalAD->syntax_err(_linenum, "%s: %s %s must be at the end of the argument list\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
                             _ident, kill->_ident, kill_name);
2128
c08c265de2f5 6810855: KILL vs. TEMP ordering restrictions are too strong
never
parents: 2125
diff changeset
   947
      } else if (e->isa(Component::KILL) && !e->isa(Component::USE)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
        kill_name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    const Component *component  = _components.search(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    if ( component  == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
      if (e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
        _components.insert(name, opForm->_ident, e->_use_def, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
        component = _components.search(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
        if (component->isa(Component::USE) && !component->isa(Component::TEMP) && _matrule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
          const Form *form = globalAD->globalNames()[component->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
          assert( form, "component type must be a defined form");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
          OperandForm *op   = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
          if (op->_interface && op->_interface->is_RegInterface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
            globalAD->syntax_err(_linenum, "%s: illegal USE of non-input: %s %s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
                                 _ident, opForm->_ident, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
        // This would be a nice warning but it triggers in a few places in a benign way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
        // if (_matrule != NULL && !expands()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
        //   globalAD->syntax_err(_linenum, "%s: %s %s not mentioned in effect or match rule\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
        //                        _ident, opForm->_ident, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
        // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
        _components.insert(name, opForm->_ident, Component::INVALID, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    else if (e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
      // Component was found in the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
      // Check if there is a new effect that requires an extra component.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      // This happens when adding 'USE' to a component that is not yet one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
      if ((!component->isa( Component::USE) && ((e->_use_def & Component::USE) != 0))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
        if (component->isa(Component::USE) && _matrule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
          const Form *form = globalAD->globalNames()[component->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
          assert( form, "component type must be a defined form");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
          OperandForm *op   = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
          if (op->_interface && op->_interface->is_RegInterface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
            globalAD->syntax_err(_linenum, "%s: illegal USE of non-input: %s %s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
                                 _ident, opForm->_ident, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
        _components.insert(name, opForm->_ident, e->_use_def, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
        Component  *comp = (Component*)component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
        comp->promote_use_def_info(e->_use_def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
      // Component positions are zero based.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
      int  pos  = _components.operand_position(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      assert( ! (component->isa(Component::DEF) && (pos >= 1)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
              "Component::DEF can only occur in the first position");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  // Resolving the interactions between expand rules and TEMPs would
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  // be complex so simply disallow it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  if (_matrule == NULL && has_temp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    globalAD->syntax_err(_linenum, "%s: TEMPs without match rule isn't supported\n", _ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
// Return zero-based position in component list;  -1 if not in list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
int   InstructForm::operand_position(const char *name, int usedef) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1012
  return unique_opnds_idx(_components.operand_position(name, usedef, this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
int   InstructForm::operand_position_format(const char *name) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1016
  return unique_opnds_idx(_components.operand_position_format(name, this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
// Return zero-based position in component list; -1 if not in list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
int   InstructForm::label_position() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  return unique_opnds_idx(_components.label_position());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
int   InstructForm::method_position() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  return unique_opnds_idx(_components.method_position());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
// Return number of relocation entries needed for this instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
uint  InstructForm::reloc(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  uint reloc_entries  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // Check for "Call" nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  if ( is_ideal_call() )      ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  if ( is_ideal_return() )    ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  if ( is_ideal_safepoint() ) ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  // Check if operands MAYBE oop pointers, by checking for ConP elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  // Proceed through the leaves of the match-tree and check for ConPs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  if ( _matrule != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    uint         position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
    const char  *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    const char  *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    const char  *opType   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    while (_matrule->base_operand(position, globals, result, name, opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      if ( strcmp(opType,"ConP") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
        reloc_entries += 2; // 1 for sethi + 1 for setlo
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
        ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  // Above is only a conservative estimate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  // because it did not check contents of operand classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  // !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  // Add 1 to reloc info for each operand class in the component list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  Component  *comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  while ( (comp = _components.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    const Form        *form = globals[comp->_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    assert( form, "Did not find component's type in global names");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    const OpClassForm *opc  = form->is_opclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    const OperandForm *oper = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    if ( opc && (oper == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
      ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    } else if ( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
      // floats and doubles loaded out of method's constant pool require reloc info
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
      Form::DataType type = oper->is_base_constant(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
      if ( (type == Form::idealF) || (type == Form::idealD) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
        ++reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  // Float and Double constants may come from the CodeBuffer table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  // and require relocatable addresses for access
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  // Check for any component being an immediate float or double.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  Form::DataType data_type = is_chain_of_constant(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  if( data_type==idealD || data_type==idealF ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
#ifdef SPARC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
    // sparc required more relocation entries for floating constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    // (expires 9/98)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    reloc_entries += 6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    reloc_entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  return reloc_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
// Utility function defined in archDesc.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
extern bool is_def(int usedef);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
// Return the result of reducing an instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
const char *InstructForm::reduce_result() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  const char* result = "Universe";  // default
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  Component *comp = _components.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  if (comp != NULL && comp->isa(Component::DEF)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
    result = comp->_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
    // Override this if the rule is a store operation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
    if (_matrule && _matrule->_rChild &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
        is_store_to_memory(_matrule->_rChild->_opType))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
      result = "Universe";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
// Return the name of the operand on the right hand side of the binary match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
// Return NULL if there is no right hand side
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
const char *InstructForm::reduce_right(FormDict &globals)  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  if( _matrule == NULL ) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  return  _matrule->reduce_right(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
// Similar for left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
const char *InstructForm::reduce_left(FormDict &globals)   const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  if( _matrule == NULL ) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  return  _matrule->reduce_left(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
// Base class for this instruction, MachNode except for calls
5536
f23c4e2e0d5e 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 5352
diff changeset
  1129
const char *InstructForm::mach_base_class(FormDict &globals)  const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  if( is_ideal_call() == Form::JAVA_STATIC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    return "MachCallStaticJavaNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  else if( is_ideal_call() == Form::JAVA_DYNAMIC ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    return "MachCallDynamicJavaNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  else if( is_ideal_call() == Form::JAVA_RUNTIME ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    return "MachCallRuntimeNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  else if( is_ideal_call() == Form::JAVA_LEAF ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    return "MachCallLeafNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  else if (is_ideal_return()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    return "MachReturnNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  else if (is_ideal_halt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    return "MachHaltNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  else if (is_ideal_safepoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    return "MachSafePointNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  else if (is_ideal_if()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    return "MachIfNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  }
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  1154
  else if (is_ideal_goto()) {
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  1155
    return "MachGotoNode";
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  1156
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  else if (is_ideal_fastlock()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
    return "MachFastLockNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  else if (is_ideal_nop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
    return "MachNopNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  }
51566
904cf5407ac7 8209691: Allow MemBar on single memory slice
roland
parents: 51078
diff changeset
  1163
  else if( is_ideal_membar()) {
904cf5407ac7 8209691: Allow MemBar on single memory slice
roland
parents: 51078
diff changeset
  1164
    return "MachMemBarNode";
904cf5407ac7 8209691: Allow MemBar on single memory slice
roland
parents: 51078
diff changeset
  1165
  }
49877
d84f06a0cae1 8200303: C2 should leverage profiling for lookupswitch/tableswitch
roland
parents: 49384
diff changeset
  1166
  else if (is_ideal_jump()) {
d84f06a0cae1 8200303: C2 should leverage profiling for lookupswitch/tableswitch
roland
parents: 49384
diff changeset
  1167
    return "MachJumpNode";
d84f06a0cae1 8200303: C2 should leverage profiling for lookupswitch/tableswitch
roland
parents: 49384
diff changeset
  1168
  }
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1169
  else if (is_mach_constant()) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1170
    return "MachConstantNode";
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1171
  }
5536
f23c4e2e0d5e 6953576: bottom_type for matched AddPNodes doesn't always agree with ideal
never
parents: 5352
diff changeset
  1172
  else if (captures_bottom_type(globals)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    return "MachTypeNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
    return "MachNode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  assert( false, "ShouldNotReachHere()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
// Compare the instruction predicates for textual equality
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
bool equivalent_predicates( const InstructForm *instr1, const InstructForm *instr2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  const Predicate *pred1  = instr1->_predicate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  const Predicate *pred2  = instr2->_predicate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  if( pred1 == NULL && pred2 == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
    // no predicates means they are identical
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  if( pred1 != NULL && pred2 != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
    // compare the predicates
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1500
diff changeset
  1191
    if (ADLParser::equivalent_expressions(pred1->_pred, pred2->_pred)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
// Check if this instruction can cisc-spill to 'alternate'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
bool InstructForm::cisc_spills_to(ArchDesc &AD, InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  assert( _matrule != NULL && instr->_matrule != NULL, "must have match rules");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  // Do not replace if a cisc-version has been found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  if( cisc_spill_operand() != Not_cisc_spillable ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  int         cisc_spill_operand = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  char       *result             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  char       *result2            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  const char *op_name            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  const char *reg_type           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  FormDict   &globals            = AD.globalNames();
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  1211
  cisc_spill_operand = _matrule->matchrule_cisc_spill_match(globals, AD.get_registers(), instr->_matrule, op_name, reg_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  if( (cisc_spill_operand != Not_cisc_spillable) && (op_name != NULL) && equivalent_predicates(this, instr) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    cisc_spill_operand = operand_position(op_name, Component::USE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    int def_oper  = operand_position(op_name, Component::DEF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    if( def_oper == NameList::Not_in_list && instr->num_opnds() == num_opnds()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
      // Do not support cisc-spilling for destination operands and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
      // make sure they have the same number of operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
      _cisc_spill_alternate = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
      instr->set_cisc_alternate(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
      if( AD._cisc_spill_debug ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
        fprintf(stderr, "Instruction %s cisc-spills-to %s\n", _ident, instr->_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
        fprintf(stderr, "   using operand %s %s at index %d\n", reg_type, op_name, cisc_spill_operand);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
      // Record that a stack-version of the reg_mask is needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
      // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
      OperandForm *oper = (OperandForm*)(globals[reg_type]->is_operand());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
      assert( oper != NULL, "cisc-spilling non operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
      const char *reg_class_name = oper->constrained_reg_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
      AD.set_stack_or_reg(reg_class_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
      const char *reg_mask_name  = AD.reg_mask(*oper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
      set_cisc_reg_mask_name(reg_mask_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
      const char *stack_or_reg_mask_name = AD.stack_or_reg_mask(*oper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
      cisc_spill_operand = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
    cisc_spill_operand = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  set_cisc_spill_operand(cisc_spill_operand);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
  return (cisc_spill_operand != Not_cisc_spillable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
// Check to see if this instruction can be replaced with the short branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
// instruction `short-branch'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
bool InstructForm::check_branch_variant(ArchDesc &AD, InstructForm *short_branch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  if (_matrule != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      this != short_branch &&   // Don't match myself
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      !is_short_branch() &&     // Don't match another short branch variant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      reduce_result() != NULL &&
41318
af7443b374fb 8165565: Shorten branches causes incorrect code for SKX
mcberg
parents: 40088
diff changeset
  1251
      strstr(_ident, "restoreMask") == NULL && // Don't match side effects
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      strcmp(reduce_result(), short_branch->reduce_result()) == 0 &&
39433
f18e7fa11a5f 8151661: Performance regression on Solaris-SPARC in 9-b103
adinn
parents: 39419
diff changeset
  1253
      _matrule->equivalent(AD.globalNames(), short_branch->_matrule)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    // The instructions are equivalent.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1255
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1256
    // Now verify that both instructions have the same parameters and
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1257
    // the same effects. Both branch forms should have the same inputs
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1258
    // and resulting projections to correctly replace a long branch node
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1259
    // with corresponding short branch node during code generation.
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1260
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1261
    bool different = false;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1262
    if (short_branch->_components.count() != _components.count()) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1263
       different = true;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1264
    } else if (_components.count() > 0) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1265
      short_branch->_components.reset();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1266
      _components.reset();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1267
      Component *comp;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1268
      while ((comp = _components.iter()) != NULL) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1269
        Component *short_comp = short_branch->_components.iter();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1270
        if (short_comp == NULL ||
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1271
            short_comp->_type != comp->_type ||
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1272
            short_comp->_usedef != comp->_usedef) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1273
          different = true;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1274
          break;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1275
        }
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1276
      }
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1277
      if (short_branch->_components.iter() != NULL)
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1278
        different = true;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1279
    }
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1280
    if (different) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1281
      globalAD->syntax_err(short_branch->_linenum, "Instruction %s and its short form %s have different parameters\n", _ident, short_branch->_ident);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1282
    }
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1283
    if (AD._adl_debug > 1 || AD._short_branch_debug) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
      fprintf(stderr, "Instruction %s has short form %s\n", _ident, short_branch->_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
    _short_branch_form = short_branch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
// --------------------------- FILE *output_routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
// Generate the format call for the replacement variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
void InstructForm::rep_var_format(FILE *fp, const char *rep_var) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1297
  // Handle special constant table variables.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1298
  if (strcmp(rep_var, "constanttablebase") == 0) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1299
    fprintf(fp, "char reg[128];  ra->dump_register(in(mach_constant_base_node_input()), reg);\n");
10570
7f509cc48fc7 7096010: c2: running with +PrintOptoAssembly crashes the VM when $constanttablebase is used
roland
parents: 10267
diff changeset
  1300
    fprintf(fp, "    st->print(\"%%s\", reg);\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1301
    return;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1302
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1303
  if (strcmp(rep_var, "constantoffset") == 0) {
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  1304
    fprintf(fp, "st->print(\"#%%d\", constant_offset_unchecked());\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1305
    return;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1306
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1307
  if (strcmp(rep_var, "constantaddress") == 0) {
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  1308
    fprintf(fp, "st->print(\"constant table base + #%%d\", constant_offset_unchecked());\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1309
    return;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1310
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1311
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
  // Find replacement variable's type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  const Form *form   = _localNames[rep_var];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  if (form == NULL) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1315
    globalAD->syntax_err(_linenum, "Unknown replacement variable %s in format statement of %s.",
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1316
                         rep_var, _ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1317
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  OpClassForm *opc   = form->is_opclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  assert( opc, "replacement variable was not found in local names");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  // Lookup the index position of the replacement variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  int idx  = operand_position_format(rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  if ( idx == -1 ) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1324
    globalAD->syntax_err(_linenum, "Could not find replacement variable %s in format statement of %s.\n",
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1325
                         rep_var, _ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1326
    assert(strcmp(opc->_ident, "label") == 0, "Unimplemented");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1327
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  if (is_noninput_operand(idx)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
    // This component isn't in the input array.  Print out the static
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
    // name of the register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
    OperandForm* oper = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
    if (oper != NULL && oper->is_bound_register()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
      const RegDef* first = oper->get_RegClass()->find_first_elem();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23220
diff changeset
  1336
      fprintf(fp, "    st->print_raw(\"%s\");\n", first->_regname);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
      globalAD->syntax_err(_linenum, "In %s can't find format for %s %s", _ident, opc->_ident, rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
    // Output the format call for this operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
    fprintf(fp,"opnd_array(%d)->",idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
    if (idx == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
      fprintf(fp,"int_format(ra, this, st); // %s\n", rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
      fprintf(fp,"ext_format(ra, this,idx%d, st); // %s\n", idx, rep_var );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
// Seach through operands to determine parameters unique positions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
void InstructForm::set_unique_opnds() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  uint* uniq_idx = NULL;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1353
  uint  nopnds = num_opnds();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  uint  num_uniq = nopnds;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1355
  uint i;
2125
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1356
  _uniq_idx_length = 0;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1357
  if (nopnds > 0) {
2125
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1358
    // Allocate index array.  Worst case we're mapping from each
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1359
    // component back to an index and any DEF always goes at 0 so the
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1360
    // length of the array has to be the number of components + 1.
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1361
    _uniq_idx_length = _components.count() + 1;
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51566
diff changeset
  1362
    uniq_idx = (uint*) AllocateHeap(sizeof(uint) * _uniq_idx_length);
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1363
    for (i = 0; i < _uniq_idx_length; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
      uniq_idx[i] = i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  // Do it only if there is a match rule and no expand rule.  With an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  // expand rule it is done by creating new mach node in Expand()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  // method.
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1370
  if (nopnds > 0 && _matrule != NULL && _exprule == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
    const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
    uint count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
    bool has_dupl_use = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
    _parameters.reset();
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1376
    while ((name = _parameters.iter()) != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
      count = 0;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1378
      uint position = 0;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1379
      uint uniq_position = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
      _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
      Component *comp = NULL;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1382
      if (sets_result()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
        comp = _components.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
        position++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
      // The next code is copied from the method operand_position().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
      for (; (comp = _components.iter()) != NULL; ++position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
        // When the first component is not a DEF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
        // leave space for the result operand!
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1390
        if (position==0 && (!comp->isa(Component::DEF))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
          ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
        }
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1393
        if (strcmp(name, comp->_name) == 0) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1394
          if (++count > 1) {
2125
592f115cc6b4 6805427: adlc compiler may generate incorrect machnode emission code
never
parents: 2022
diff changeset
  1395
            assert(position < _uniq_idx_length, "out of bounds");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
            uniq_idx[position] = uniq_position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
            has_dupl_use = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
            uniq_position = position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
        }
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1402
        if (comp->isa(Component::DEF) && comp->isa(Component::USE)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
          ++position;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1404
          if (position != 1)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
            --position;   // only use two slots for the 1st USE_DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    }
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1409
    if (has_dupl_use) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1410
      for (i = 1; i < nopnds; i++) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1411
        if (i != uniq_idx[i]) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
          break;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1413
        }
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1414
      }
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1415
      uint j = i;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1416
      for (; i < nopnds; i++) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1417
        if (i == uniq_idx[i]) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
          uniq_idx[i] = j++;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1419
        }
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  1420
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
      num_uniq = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  _uniq_idx = uniq_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  _num_uniq = num_uniq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2129
diff changeset
  1428
// Generate index values needed for determining the operand position
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
void InstructForm::index_temps(FILE *fp, FormDict &globals, const char *prefix, const char *receiver) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
  uint  idx = 0;                  // position of operand in match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  int   cur_num_opnds = num_opnds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  // Compute the index into vector of operand pointers:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  // idx0=0 is used to indicate that info comes from this same node, not from input edge.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  // idx1 starts at oper_input_base()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  if ( cur_num_opnds >= 1 ) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1437
    fprintf(fp,"  // Start at oper_input_base() and count operands\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1438
    fprintf(fp,"  unsigned %sidx0 = %d;\n", prefix, oper_input_base(globals));
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1439
    fprintf(fp,"  unsigned %sidx1 = %d;", prefix, oper_input_base(globals));
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1440
    fprintf(fp," \t// %s\n", unique_opnd_ident(1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    // Generate starting points for other unique operands if they exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    for ( idx = 2; idx < num_unique_opnds(); ++idx ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
      if( *receiver == 0 ) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1445
        fprintf(fp,"  unsigned %sidx%d = %sidx%d + opnd_array(%d)->num_edges();",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
                prefix, idx, prefix, idx-1, idx-1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
      } else {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1448
        fprintf(fp,"  unsigned %sidx%d = %sidx%d + %s_opnds[%d]->num_edges();",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
                prefix, idx, prefix, idx-1, receiver, idx-1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
      }
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1451
      fprintf(fp," \t// %s\n", unique_opnd_ident(idx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  if( *receiver != 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    // This value is used by generate_peepreplace when copying a node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
    // Don't emit it in other cases since it can hide bugs with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    // use invalid idx's.
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1458
    fprintf(fp,"  unsigned %sidx%d = %sreq(); \n", prefix, idx, receiver);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
// ---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
bool InstructForm::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  // !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  // Check that a "label" operand occurs last in the operand list, if present
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
void InstructForm::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
void InstructForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  fprintf(fp,"\nInstruction: %s\n", (_ident?_ident:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  if (_matrule)   _matrule->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  if (_insencode) _insencode->output(fp);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 5547
diff changeset
  1478
  if (_constant)  _constant->output(fp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  if (_opcode)    _opcode->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  if (_attribs)   _attribs->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  if (_predicate) _predicate->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  if (_effects.Size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    fprintf(fp,"Effects\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    _effects.dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  if (_exprule)   _exprule->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  if (_rewrule)   _rewrule->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  if (_format)    _format->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
  if (_peephole)  _peephole->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
void MachNodeForm::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
void MachNodeForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  fprintf(fp,"\nMachNode: %s\n", (_ident?_ident:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
//------------------------------build_predicate--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
// Build instruction predicates.  If the user uses the same operand name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
// twice, we need to check that the operands are pointer-eequivalent in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
// the DFA during the labeling process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
Predicate *InstructForm::build_predicate() {
38658
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1505
  const int buflen = 1024;
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1506
  char buf[buflen], *s=buf;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  Dict names(cmpstr,hashstr,Form::arena);       // Map Names to counts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
  MatchNode *mnode =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
    strcmp(_matrule->_opType, "Set") ? _matrule : _matrule->_rChild;
55743
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1511
  if (mnode != NULL) mnode->count_instr_names(names);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
  uint first = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
  // Start with the predicate supplied in the .ad file.
38658
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1515
  if (_predicate) {
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1516
    if (first) first = 0;
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1517
    strcpy(s, "("); s += strlen(s);
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1518
    strncpy(s, _predicate->_pred, buflen - strlen(s) - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
    s += strlen(s);
38658
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36316
diff changeset
  1520
    strcpy(s, ")"); s += strlen(s);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  for( DictI i(&names); i.test(); ++i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
    uintptr_t cnt = (uintptr_t)i._value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
    if( cnt > 1 ) {             // Need a predicate at all?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
      assert( cnt == 2, "Unimplemented" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
      // Handle many pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
      if( first ) first=0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
      else {                    // All tests must pass, so use '&&'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
        strcpy(s," && ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
        s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
      // Add predicate to working buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
      sprintf(s,"/*%s*/(",(char*)i._key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
      s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
      mnode->build_instr_pred(s,(char*)i._key,0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
      s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
      strcpy(s," == "); s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
      mnode->build_instr_pred(s,(char*)i._key,1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
      s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
      strcpy(s,")"); s += strlen(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
  if( s == buf ) s = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
    assert( strlen(buf) < sizeof(buf), "String buffer overflow" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
    s = strdup(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  return new Predicate(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
//------------------------------EncodeForm-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
// Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
EncodeForm::EncodeForm()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
  : _encClass(cmpstr,hashstr, Form::arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
EncodeForm::~EncodeForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
// record a new register class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
EncClass *EncodeForm::add_EncClass(const char *className) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  EncClass *encClass = new EncClass(className);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  _eclasses.addName(className);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  _encClass.Insert(className,encClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
  return encClass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
// Lookup the function body for an encoding class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
EncClass  *EncodeForm::encClass(const char *className) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  assert( className != NULL, "Must provide a defined encoding name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  EncClass *encClass = (EncClass*)_encClass[className];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  return encClass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
// Lookup the function body for an encoding class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
const char *EncodeForm::encClassBody(const char *className) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
  if( className == NULL ) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
  EncClass *encClass = (EncClass*)_encClass[className];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  assert( encClass != NULL, "Encode Class is missing.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
  encClass->_code.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
  const char *code = (const char*)encClass->_code.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
  assert( code != NULL, "Found an empty encode class body.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
  return code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
// Lookup the function body for an encoding class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
const char *EncodeForm::encClassPrototype(const char *className) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  assert( className != NULL, "Encode class name must be non NULL.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  return className;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
void EncodeForm::dump() {                  // Debug printer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
void EncodeForm::output(FILE *fp) {          // Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
  fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
  fprintf(fp,"-------------------- Dump EncodeForm --------------------\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  for (_eclasses.reset(); (name = _eclasses.iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
    ((EncClass*)_encClass[name])->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
  fprintf(fp,"-------------------- end  EncodeForm --------------------\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
//------------------------------EncClass---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
EncClass::EncClass(const char *name)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  : _localNames(cmpstr,hashstr, Form::arena), _name(name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
EncClass::~EncClass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
// Add a parameter <type,name> pair
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
void EncClass::add_parameter(const char *parameter_type, const char *parameter_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  _parameter_type.addName( parameter_type );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  _parameter_name.addName( parameter_name );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
// Verify operand types in parameter list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
bool EncClass::check_parameter_types(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
  // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
// Add the decomposed "code" sections of an encoding's code-block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
void EncClass::add_code(const char *code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
  _code.addName(code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
// Add the decomposed "replacement variables" of an encoding's code-block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
void EncClass::add_rep_var(char *replacement_var) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
  _code.addName(NameList::_signal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  _rep_vars.addName(replacement_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
// Lookup the function body for an encoding class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
int EncClass::rep_var_index(const char *rep_var) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  uint        position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
  const char *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
  _parameter_name.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  while ( (name = _parameter_name.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    if ( strcmp(rep_var,name) == 0 ) return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
    ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
// Check after parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
bool EncClass::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
  // 1!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  // Check that each replacement variable, '$name' in architecture description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
  // is actually a local variable for this encode class, or a reserved name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
  // "primary, secondary, tertiary"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
void EncClass::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
void EncClass::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
  fprintf(fp,"EncClass: %s", (_name ? _name : ""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
  // Output the parameter list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
  _parameter_type.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
  _parameter_name.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
  const char *type = _parameter_type.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
  const char *name = _parameter_name.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
  fprintf(fp, " ( ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
  for ( ; (type != NULL) && (name != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
        (type = _parameter_type.iter()), (name = _parameter_name.iter()) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
    fprintf(fp, " %s %s,", type, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
  fprintf(fp, " ) ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  // Output the code block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
  _code.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
  _rep_vars.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  const char *code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  while ( (code = _code.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
    if ( _code.is_signal(code) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
      // A replacement variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
      const char *rep_var = _rep_vars.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
      fprintf(fp,"($%s)", rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
      // A section of code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
      fprintf(fp,"%s", code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
//------------------------------Opcode-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
Opcode::Opcode(char *primary, char *secondary, char *tertiary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  : _primary(primary), _secondary(secondary), _tertiary(tertiary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
Opcode::~Opcode() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
Opcode::opcode_type Opcode::as_opcode_type(const char *param) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
  if( strcmp(param,"primary") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
    return Opcode::PRIMARY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  else if( strcmp(param,"secondary") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
    return Opcode::SECONDARY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  else if( strcmp(param,"tertiary") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
    return Opcode::TERTIARY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
  return Opcode::NOT_AN_OPCODE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1719
bool Opcode::print_opcode(FILE *fp, Opcode::opcode_type desired_opcode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  // Default values previously provided by MachNode::primary()...
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1721
  const char *description = NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1722
  const char *value       = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
  // Check if user provided any opcode definitions
55743
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1724
  // Update 'value' if user provided a definition in the instruction
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1725
  switch (desired_opcode) {
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1726
  case PRIMARY:
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1727
    description = "primary()";
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1728
    if( _primary   != NULL)  { value = _primary;     }
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1729
    break;
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1730
  case SECONDARY:
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1731
    description = "secondary()";
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1732
    if( _secondary != NULL ) { value = _secondary;   }
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1733
    break;
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1734
  case TERTIARY:
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1735
    description = "tertiary()";
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1736
    if( _tertiary  != NULL ) { value = _tertiary;    }
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1737
    break;
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1738
  default:
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1739
    assert( false, "ShouldNotReachHere();");
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1740
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
  }
55743
fb2b47f0e067 8227633: avoid comparing this pointers to NULL
mbaesken
parents: 55563
diff changeset
  1742
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1743
  if (value != NULL) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1744
    fprintf(fp, "(%s /*%s*/)", value, description);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1745
  }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  1746
  return value != NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
void Opcode::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
void Opcode::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
  if (_primary   != NULL) fprintf(fp,"Primary   opcode: %s\n", _primary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
  if (_secondary != NULL) fprintf(fp,"Secondary opcode: %s\n", _secondary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
  if (_tertiary  != NULL) fprintf(fp,"Tertiary  opcode: %s\n", _tertiary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
//------------------------------InsEncode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
InsEncode::InsEncode() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
InsEncode::~InsEncode() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
// Add "encode class name" and its parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
NameAndList *InsEncode::add_encode(char *encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  assert( encoding != NULL, "Must provide name for encoding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
  // add_parameter(NameList::_signal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
  NameAndList *encode = new NameAndList(encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
  _encoding.addName((char*)encode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
  return encode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
// Access the list of encodings
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
void InsEncode::reset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
  _encoding.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
  // _parameter.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
const char* InsEncode::encode_class_iter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  NameAndList  *encode_class = (NameAndList*)_encoding.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
  return  ( encode_class != NULL ? encode_class->name() : NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
// Obtain parameter name from zero based index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
const char *InsEncode::rep_var_name(InstructForm &inst, uint param_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
  NameAndList *params = (NameAndList*)_encoding.current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
  assert( params != NULL, "Internal Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  const char *param = (*params)[param_no];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  // Remove '$' if parser placed it there.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  return ( param != NULL && *param == '$') ? (param+1) : param;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
void InsEncode::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
void InsEncode::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  NameAndList *encoding  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  const char  *parameter = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
  fprintf(fp,"InsEncode: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
  _encoding.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  while ( (encoding = (NameAndList*)_encoding.iter()) != 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    // Output the encoding being used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
    fprintf(fp,"%s(", encoding->name() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    // Output its parameter list, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    bool first_param = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    encoding->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    while (  (parameter = encoding->iter()) != 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
      // Output the ',' between parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
      if ( ! first_param )  fprintf(fp,", ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
      first_param = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
      // Output the parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
      fprintf(fp,"%s", parameter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
    } // done with parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
    fprintf(fp,")  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
  } // done with encodings
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
  fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
//------------------------------Effect-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
static int effect_lookup(const char *name) {
26910
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1830
  if (!strcmp(name, "USE")) return Component::USE;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1831
  if (!strcmp(name, "DEF")) return Component::DEF;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1832
  if (!strcmp(name, "USE_DEF")) return Component::USE_DEF;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1833
  if (!strcmp(name, "KILL")) return Component::KILL;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1834
  if (!strcmp(name, "USE_KILL")) return Component::USE_KILL;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1835
  if (!strcmp(name, "TEMP")) return Component::TEMP;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1836
  if (!strcmp(name, "TEMP_DEF")) return Component::TEMP_DEF;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1837
  if (!strcmp(name, "INVALID")) return Component::INVALID;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1838
  if (!strcmp(name, "CALL")) return Component::CALL;
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1839
  assert(false,"Invalid effect name specified\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
  return Component::INVALID;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1843
const char *Component::getUsedefName() {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1844
  switch (_usedef) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1845
    case Component::INVALID:  return "INVALID";  break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1846
    case Component::USE:      return "USE";      break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1847
    case Component::USE_DEF:  return "USE_DEF";  break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1848
    case Component::USE_KILL: return "USE_KILL"; break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1849
    case Component::KILL:     return "KILL";     break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1850
    case Component::TEMP:     return "TEMP";     break;
26910
253efabfd968 8058880: Introduce identifier TEMP_DEF for effects in adl.
goetz
parents: 24424
diff changeset
  1851
    case Component::TEMP_DEF: return "TEMP_DEF"; break;
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1852
    case Component::DEF:      return "DEF";      break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1853
    case Component::CALL:     return "CALL";     break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1854
    default: assert(false, "unknown effect");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1855
  }
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1856
  return "Undefined Use/Def info";
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1857
}
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1858
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
Effect::Effect(const char *name) : _name(name), _use_def(effect_lookup(name)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
  _ftype = Form::EFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
}
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  1862
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
Effect::~Effect() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
// Dynamic type check
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
Effect *Effect::is_effect() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
  return (Effect*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
// True if this component is equal to the parameter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
bool Effect::is(int use_def_kill_enum) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
  return (_use_def == use_def_kill_enum ? true : false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
// True if this component is used/def'd/kill'd as the parameter suggests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
bool Effect::isa(int use_def_kill_enum) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
  return (_use_def & use_def_kill_enum) == use_def_kill_enum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
void Effect::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
void Effect::output(FILE *fp) {          // Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  fprintf(fp,"Effect: %s\n", (_name?_name:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
//------------------------------ExpandRule-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
ExpandRule::ExpandRule() : _expand_instrs(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
                           _newopconst(cmpstr, hashstr, Form::arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
  _ftype = Form::EXP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
ExpandRule::~ExpandRule() {                  // Destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
void ExpandRule::add_instruction(NameAndList *instruction_name_and_operand_list) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
  _expand_instrs.addName((char*)instruction_name_and_operand_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
void ExpandRule::reset_instructions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
  _expand_instrs.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
NameAndList* ExpandRule::iter_instructions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
  return (NameAndList*)_expand_instrs.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
void ExpandRule::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
void ExpandRule::output(FILE *fp) {         // Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
  NameAndList *expand_instr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
  const char *opid = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
  fprintf(fp,"\nExpand Rule:\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
  // Iterate over the instructions 'node' expands into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  for(reset_instructions(); (expand_instr = iter_instructions()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
    fprintf(fp,"%s(", expand_instr->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
    // iterate over the operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
    for( expand_instr->reset(); (opid = expand_instr->iter()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
      fprintf(fp,"%s ", opid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
    fprintf(fp,");\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
//------------------------------RewriteRule------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
RewriteRule::RewriteRule(char* params, char* block)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  : _tempParams(params), _tempBlock(block) { };  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
RewriteRule::~RewriteRule() {                 // Destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
void RewriteRule::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
void RewriteRule::output(FILE *fp) {         // Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
  fprintf(fp,"\nRewrite Rule:\n%s\n%s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
          (_tempParams?_tempParams:""),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
          (_tempBlock?_tempBlock:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
//==============================MachNodes======================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
//------------------------------MachNodeForm-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
MachNodeForm::MachNodeForm(char *id)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
  : _ident(id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
MachNodeForm::~MachNodeForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
MachNodeForm *MachNodeForm::is_machnode() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  return (MachNodeForm*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
//==============================Operand Classes================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
//------------------------------OpClassForm------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
OpClassForm::OpClassForm(const char* id) : _ident(id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  _ftype = Form::OPCLASS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
OpClassForm::~OpClassForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
bool OpClassForm::ideal_only() const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
OpClassForm *OpClassForm::is_opclass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
  return (OpClassForm*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
Form::InterfaceType OpClassForm::interface_type(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
  if( _oplst.count() == 0 ) return Form::no_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  // Check that my operands have the same interface type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  Form::InterfaceType  interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
  bool  first = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
  NameList &op_list = (NameList &)_oplst;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
  op_list.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
  const char *op_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
  while( (op_name = op_list.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
    const Form  *form    = globals[op_name];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
    OperandForm *operand = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
    assert( operand, "Entry in operand class that is not an operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
    if( first ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
      first     = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
      interface = operand->interface_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
      interface = (interface == operand->interface_type(globals) ? interface : Form::no_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  return interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
bool OpClassForm::stack_slots_only(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
  if( _oplst.count() == 0 ) return false;  // how?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  NameList &op_list = (NameList &)_oplst;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
  op_list.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
  const char *op_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
  while( (op_name = op_list.iter()) != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
    const Form  *form    = globals[op_name];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
    OperandForm *operand = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
    assert( operand, "Entry in operand class that is not an operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
    if( !operand->stack_slots_only(globals) )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
void OpClassForm::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
void OpClassForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  fprintf(fp,"\nOperand Class: %s\n", (_ident?_ident:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  fprintf(fp,"\nCount = %d\n", _oplst.count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
  for(_oplst.reset(); (name = _oplst.iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    fprintf(fp,"%s, ",name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
//==============================Operands=======================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
//------------------------------OperandForm------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
OperandForm::OperandForm(const char* id)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
  : OpClassForm(id), _ideal_only(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
    _localNames(cmpstr, hashstr, Form::arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
      _ftype = Form::OPER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
      _matrule   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
      _interface = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
      _attribs   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
      _predicate = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
      _constraint= NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
      _construct = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
      _format    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
OperandForm::OperandForm(const char* id, bool ideal_only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
  : OpClassForm(id), _ideal_only(ideal_only),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
    _localNames(cmpstr, hashstr, Form::arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
      _ftype = Form::OPER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
      _matrule   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
      _interface = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
      _attribs   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
      _predicate = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
      _constraint= NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
      _construct = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
      _format    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
OperandForm::~OperandForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
OperandForm *OperandForm::is_operand() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  return (OperandForm*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
bool OperandForm::ideal_only() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  return _ideal_only;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
Form::InterfaceType OperandForm::interface_type(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  if( _interface == NULL )  return Form::no_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  return _interface->interface_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
bool OperandForm::stack_slots_only(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  if( _constraint == NULL )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  return _constraint->stack_slots_only();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
// Access op_cost attribute or return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
const char* OperandForm::cost() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
  for (Attribute* cur = _attribs; cur != NULL; cur = (Attribute*)cur->_next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
    if( strcmp(cur->_ident,AttributeForm::_op_cost) == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
      return cur->_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
// Return the number of leaves below this complex operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
uint OperandForm::num_leaves() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
  int num_leaves = _matrule->_numleaves;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
  return num_leaves;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
// Return the number of constants contained within this complex operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
uint OperandForm::num_consts(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
  // This is a recursive invocation on all operands in the matchrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
  return _matrule->num_consts(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
// Return the number of constants in match rule with specified type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
uint OperandForm::num_consts(FormDict &globals, Form::DataType type) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  // This is a recursive invocation on all operands in the matchrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
  return _matrule->num_consts(globals, type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
// Return the number of pointer constants contained within this complex operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
uint OperandForm::num_const_ptrs(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
  if ( ! _matrule) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
  // This is a recursive invocation on all operands in the matchrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  return _matrule->num_const_ptrs(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
uint OperandForm::num_edges(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
  uint edges  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
  uint leaves = num_leaves();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
  uint consts = num_consts(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
  // If we are matching a constant directly, there are no leaves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
  edges = ( leaves > consts ) ? leaves - consts : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  // Special case operands that do not have a corresponding ideal node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
  if( (edges == 0) && (consts == 0) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
    if( constrained_reg_class() != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
      edges = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
      if( _matrule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
          && (_matrule->_lChild == NULL) && (_matrule->_rChild == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
        const Form *form = globals[_matrule->_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
        OperandForm *oper = form ? form->is_operand() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
        if( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
          return oper->num_edges(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
  return edges;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
// Check if this operand is usable for cisc-spilling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
bool  OperandForm::is_cisc_reg(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  const char *ideal = ideal_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
  bool is_cisc_reg = (ideal && (ideal_to_Reg_type(ideal) != none));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  return is_cisc_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
bool  OpClassForm::is_cisc_mem(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  Form::InterfaceType my_interface = interface_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
  return (my_interface == memory_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
// node matches ideal 'Bool'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
bool OperandForm::is_ideal_bool() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  if( _matrule == NULL ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  return _matrule->is_ideal_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
// Require user's name for an sRegX to be stackSlotX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
Form::DataType OperandForm::is_user_name_for_sReg() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
  DataType data_type = none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  if( _ident != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
    if(      strcmp(_ident,"stackSlotI") == 0 ) data_type = Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
    else if( strcmp(_ident,"stackSlotP") == 0 ) data_type = Form::idealP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
    else if( strcmp(_ident,"stackSlotD") == 0 ) data_type = Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    else if( strcmp(_ident,"stackSlotF") == 0 ) data_type = Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
    else if( strcmp(_ident,"stackSlotL") == 0 ) data_type = Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
  assert((data_type == none) || (_matrule == NULL), "No match-rule for stackSlotX");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  return data_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
// Return ideal type, if there is a single ideal type for this operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
const char *OperandForm::ideal_type(FormDict &globals, RegisterForm *registers) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  const char *type = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
  if (ideal_only()) type = _ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
  else if( _matrule == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    // Check for condition code register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    const char *rc_name = constrained_reg_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    if (rc_name == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
    // !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
    // Check constraints on result's register class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
    if( registers ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
      RegClass *reg_class  = registers->getRegClass(rc_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
      assert( reg_class != NULL, "Register class is not defined");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
      // Check for ideal type of entries in register class, all are the same type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
      reg_class->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
      RegDef *reg_def = reg_class->RegDef_iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
      assert( reg_def != NULL, "No entries in register class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
      assert( reg_def->_idealtype != NULL, "Did not define ideal type for register");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
      // Return substring that names the register's ideal type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
      type = reg_def->_idealtype + 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
      assert( *(reg_def->_idealtype + 0) == 'O', "Expect Op_ prefix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
      assert( *(reg_def->_idealtype + 1) == 'p', "Expect Op_ prefix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
      assert( *(reg_def->_idealtype + 2) == '_', "Expect Op_ prefix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
  else if( _matrule->_lChild == NULL && _matrule->_rChild == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    // This operand matches a single type, at the top level.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
    // Check for ideal type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
    type = _matrule->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
    if( strcmp(type,"Bool") == 0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
      return "Bool";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
    // transitive lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    const Form *frm = globals[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
    OperandForm *op = frm->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
    type = op->ideal_type(globals, registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
  return type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
// If there is a single ideal type for this interface field, return it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
const char *OperandForm::interface_ideal_type(FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
                                              const char *field) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
  const char  *ideal_type = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
  const char  *value      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
  // Check if "field" is valid for this operand's interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
  if ( ! is_interface_field(field, value) )   return ideal_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
  // !!!!! !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  // If a valid field has a constant value, identify "ConI" or "ConP" or ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  // Else, lookup type of field's replacement variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  return ideal_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
RegClass* OperandForm::get_RegClass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
  if (_interface && !_interface->is_RegInterface()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  return globalAD->get_registers()->getRegClass(constrained_reg_class());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
bool OperandForm::is_bound_register() const {
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2259
  RegClass* reg_class = get_RegClass();
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2260
  if (reg_class == NULL) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2261
    return false;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2262
  }
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2263
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2264
  const char* name = ideal_type(globalAD->globalNames());
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2265
  if (name == NULL) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2266
    return false;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2267
  }
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2268
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2269
  uint size = 0;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2270
  if (strcmp(name, "RegFlags") == 0) size = 1;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2271
  if (strcmp(name, "RegI") == 0) size = 1;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2272
  if (strcmp(name, "RegF") == 0) size = 1;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2273
  if (strcmp(name, "RegD") == 0) size = 2;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2274
  if (strcmp(name, "RegL") == 0) size = 2;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2275
  if (strcmp(name, "RegN") == 0) size = 1;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 49877
diff changeset
  2276
  if (strcmp(name, "VecX") == 0) size = 4;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 49877
diff changeset
  2277
  if (strcmp(name, "VecY") == 0) size = 8;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 49877
diff changeset
  2278
  if (strcmp(name, "VecZ") == 0) size = 16;
17871
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2279
  if (strcmp(name, "RegP") == 0) size = globalAD->get_preproc_def("_LP64") ? 2 : 1;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2280
  if (size == 0) {
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2281
    return false;
6669c8d6f6b3 8015266: fix some -Wsign-compare warnings in adlc
twisti
parents: 15814
diff changeset
  2282
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  return size == reg_class->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
// Check if this is a valid field for this operand,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
// Return 'true' if valid, and set the value to the string the user provided.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
bool  OperandForm::is_interface_field(const char *field,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
                                      const char * &value) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
// Return register class name if a constraint specifies the register class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
const char *OperandForm::constrained_reg_class() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  const char *reg_class  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
  if ( _constraint ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
    // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    Constraint *constraint = _constraint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    if ( strcmp(_constraint->_func,"ALLOC_IN_RC") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
      reg_class = _constraint->_arg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
  return reg_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
// Return the register class associated with 'leaf'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
const char *OperandForm::in_reg_class(uint leaf, FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
  const char *reg_class = NULL; // "RegMask::Empty";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
  if((_matrule == NULL) || (_matrule->is_chain_rule(globals))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
    reg_class = constrained_reg_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
    return reg_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  const char *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
  const char *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  const char *type     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  // iterate through all base operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  // until we reach the register that corresponds to "leaf"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  // This function is not looking for an ideal type.  It needs the first
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
  // level user type associated with the leaf.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
  for(uint idx = 0;_matrule->base_operand(idx,globals,result,name,type);++idx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
    const Form *form = (_localNames[name] ? _localNames[name] : globals[result]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
    OperandForm *oper = form ? form->is_operand() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
    if( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
      reg_class = oper->constrained_reg_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
      if( reg_class ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
        reg_class = reg_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
        // ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
      // ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
    // Increment our target leaf position if current leaf is not a candidate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
    if( reg_class == NULL)    ++leaf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
    // Exit the loop with the value of reg_class when at the correct index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
    if( idx == leaf )         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
    // May iterate through all base operands if reg_class for 'leaf' is NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  return reg_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
// Recursive call to construct list of top-level operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
// Implementation does not modify state of internal structures
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
void OperandForm::build_components() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
  if (_matrule)  _matrule->append_components(_localNames, _components);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
  // Add parameters that "do not appear in match rule".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
  for (_parameters.reset(); (name = _parameters.iter()) != NULL;) {
52683
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  2357
    OpClassForm *opForm = _localNames[name]->is_opclass();
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  2358
    assert(opForm != NULL, "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
    if ( _components.operand_position(name) == -1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
      _components.insert(name, opForm->_ident, Component::INVALID, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
int OperandForm::operand_position(const char *name, int usedef) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2369
  return _components.operand_position(name, usedef, this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
// Return zero-based position in component list, only counting constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
// Return -1 if not in list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
int OperandForm::constant_position(FormDict &globals, const Component *last) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2129
diff changeset
  2376
  // Iterate through components and count constants preceding 'constant'
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  2377
  int position = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
  Component *comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  while( (comp = _components.iter()) != NULL  && (comp != last) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
    // Special case for operands that take a single user-defined operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
    // Skip the initial definition in the component list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
    if( strcmp(comp->_name,this->_ident) == 0 ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
    const char *type = comp->_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
    // Lookup operand form for replacement variable's type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
    const Form *form = globals[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
    assert( form != NULL, "Component's type not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
    OperandForm *oper = form ? form->is_operand() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
    if( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
      if( oper->_matrule->is_base_constant(globals) != Form::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
        ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
  // Check for being passed a component that was not in the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
  if( comp != last )  position = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
  return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
// Provide position of constant by "name"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
int OperandForm::constant_position(FormDict &globals, const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  const Component *comp = _components.search(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
  int idx = constant_position( globals, comp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  return idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
// Return zero-based position in component list, only counting constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
// Return -1 if not in list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
int OperandForm::register_position(FormDict &globals, const char *reg_name) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2129
diff changeset
  2414
  // Iterate through components and count registers preceding 'last'
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
  uint  position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
  Component *comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
  _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
  while( (comp = _components.iter()) != NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
         && (strcmp(comp->_name,reg_name) != 0) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
    // Special case for operands that take a single user-defined operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    // Skip the initial definition in the component list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
    if( strcmp(comp->_name,this->_ident) == 0 ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
    const char *type = comp->_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
    // Lookup operand form for component's type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
    const Form *form = globals[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
    assert( form != NULL, "Component's type not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
    OperandForm *oper = form ? form->is_operand() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
    if( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
      if( oper->_matrule->is_base_register(globals) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
        ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
  return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
const char *OperandForm::reduce_result()  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
  return _ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
// Return the name of the operand on the right hand side of the binary match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
// Return NULL if there is no right hand side
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
const char *OperandForm::reduce_right(FormDict &globals)  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
  return  ( _matrule ? _matrule->reduce_right(globals) : NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
// Similar for left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
const char *OperandForm::reduce_left(FormDict &globals)   const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
  return  ( _matrule ? _matrule->reduce_left(globals) : NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
// --------------------------- FILE *output_routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
// Output code for disp_is_oop, if true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
void OperandForm::disp_is_oop(FILE *fp, FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
  //  Check it is a memory interface with a non-user-constant disp field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
  if ( this->_interface == NULL ) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
  MemInterface *mem_interface = this->_interface->is_MemInterface();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  if ( mem_interface == NULL )    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  const char   *disp  = mem_interface->_disp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
  if ( *disp != '$' )             return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
  // Lookup replacement variable in operand's component list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
  const char   *rep_var = disp + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  const Component *comp = this->_components.search(rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  assert( comp != NULL, "Replacement variable not found in components");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
  // Lookup operand form for replacement variable's type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
  const char      *type = comp->_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
  Form            *form = (Form*)globals[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
  assert( form != NULL, "Replacement variable's type not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
  OperandForm     *op   = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
  assert( op, "Memory Interface 'disp' can only emit an operand form");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
  // Check if this is a ConP, which may require relocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
  if ( op->is_base_constant(globals) == Form::idealP ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
    // Find the constant's index:  _c0, _c1, _c2, ... , _cN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
    uint idx  = op->constant_position( globals, rep_var);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2480
    fprintf(fp,"  virtual relocInfo::relocType disp_reloc() const {");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2481
    fprintf(fp,  "  return _c%d->reloc();", idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
    fprintf(fp, " }\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
// Generate code for internal and external format methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
// internal access to reg# node->_idx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
// access to subsumed constant _c0, _c1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
void  OperandForm::int_format(FILE *fp, FormDict &globals, uint index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
  Form::DataType dtype;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
  if (_matrule && (_matrule->is_base_register(globals) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
                   strcmp(ideal_type(globalAD->globalNames()), "RegFlags") == 0)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
    // !!!!! !!!!!
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2495
    fprintf(fp,"  { char reg_str[128];\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2496
    fprintf(fp,"    ra->dump_register(node,reg_str);\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2497
    fprintf(fp,"    st->print(\"%cs\",reg_str);\n",'%');
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2498
    fprintf(fp,"  }\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
  } else if (_matrule && (dtype = _matrule->is_base_constant(globals)) != Form::none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
    format_constant( fp, index, dtype );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  } else if (ideal_to_sReg_type(_ident) != Form::none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
    // Special format for Stack Slot Register
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2503
    fprintf(fp,"  { char reg_str[128];\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2504
    fprintf(fp,"    ra->dump_register(node,reg_str);\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2505
    fprintf(fp,"    st->print(\"%cs\",reg_str);\n",'%');
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2506
    fprintf(fp,"  }\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
  } else {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2508
    fprintf(fp,"  st->print(\"No format defined for %s\n\");\n", _ident);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
    fflush(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    fprintf(stderr,"No format defined for %s\n", _ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    assert( false,"Internal error:\n  output_internal_operand() attempting to output other than a Register or Constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
// Similar to "int_format" but for cases where data is external to operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
// external access to reg# node->in(idx)->_idx,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
void  OperandForm::ext_format(FILE *fp, FormDict &globals, uint index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
  Form::DataType dtype;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  if (_matrule && (_matrule->is_base_register(globals) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
                   strcmp(ideal_type(globalAD->globalNames()), "RegFlags") == 0)) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2522
    fprintf(fp,"  { char reg_str[128];\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2523
    fprintf(fp,"    ra->dump_register(node->in(idx");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2524
    if ( index != 0 ) fprintf(fp,              "+%d",index);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2525
    fprintf(fp,                                      "),reg_str);\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2526
    fprintf(fp,"    st->print(\"%cs\",reg_str);\n",'%');
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2527
    fprintf(fp,"  }\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
  } else if (_matrule && (dtype = _matrule->is_base_constant(globals)) != Form::none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
    format_constant( fp, index, dtype );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  } else if (ideal_to_sReg_type(_ident) != Form::none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
    // Special format for Stack Slot Register
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2532
    fprintf(fp,"  { char reg_str[128];\n");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2533
    fprintf(fp,"    ra->dump_register(node->in(idx");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    if ( index != 0 ) fprintf(fp,                  "+%d",index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    fprintf(fp,                                       "),reg_str);\n");
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2536
    fprintf(fp,"    st->print(\"%cs\",reg_str);\n",'%');
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2537
    fprintf(fp,"  }\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
  } else {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2539
    fprintf(fp,"  st->print(\"No format defined for %s\n\");\n", _ident);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
    assert( false,"Internal error:\n  output_external_operand() attempting to output other than a Register or Constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
void OperandForm::format_constant(FILE *fp, uint const_index, uint const_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  switch(const_type) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2546
  case Form::idealI: fprintf(fp,"  st->print(\"#%%d\", _c%d);\n", const_index); break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2547
  case Form::idealP: fprintf(fp,"  if (_c%d) _c%d->dump_on(st);\n", const_index, const_index); break;
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  2548
  case Form::idealNKlass:
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2549
  case Form::idealN: fprintf(fp,"  if (_c%d) _c%d->dump_on(st);\n", const_index, const_index); break;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23220
diff changeset
  2550
  case Form::idealL: fprintf(fp,"  st->print(\"#\" INT64_FORMAT, (int64_t)_c%d);\n", const_index); break;
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2551
  case Form::idealF: fprintf(fp,"  st->print(\"#%%f\", _c%d);\n", const_index); break;
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2552
  case Form::idealD: fprintf(fp,"  st->print(\"#%%f\", _c%d);\n", const_index); break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
    assert( false, "ShouldNotReachHere()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
// Return the operand form corresponding to the given index, else NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
OperandForm *OperandForm::constant_operand(FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
                                           uint      index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
  // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
  // Check behavior on complex operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
  uint n_consts = num_consts(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
  if( n_consts > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    uint i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
    const char *type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
    Component  *comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
    _components.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
    if ((comp = _components.iter()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
      assert(n_consts == 1, "Bad component list detected.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
      // Current operand is THE operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
      if ( index == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
        return this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
    } // end if NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
      // Skip the first component, it can not be a DEF of a constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
        type = comp->base_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
        // Check that "type" is a 'ConI', 'ConP', ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
        if ( ideal_to_const_type(type) != Form::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
          // When at correct component, get corresponding Operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
          if ( index == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
            return globals[comp->_type]->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
          // Decrement number of constants to go
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
          --index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
      } while((comp = _components.iter()) != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
  // Did not find a constant for this index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
// If this operand has a single ideal type, return its type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
Form::DataType OperandForm::simple_type(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
  const char *type_name = ideal_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
  Form::DataType type   = type_name ? ideal_to_const_type( type_name )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
                                    : Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
  return type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
Form::DataType OperandForm::is_base_constant(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
  if ( _matrule == NULL )    return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
  return _matrule->is_base_constant(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
// "true" if this operand is a simple type that is swallowed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
bool  OperandForm::swallowed(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
  Form::DataType type   = simple_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
  if( type != Form::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
// Output code to access the value of the index'th constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
void OperandForm::access_constant(FILE *fp, FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
                                  uint const_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
  OperandForm *oper = constant_operand(globals, const_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
  assert( oper, "Index exceeds number of constants in operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
  Form::DataType dtype = oper->is_base_constant(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
  switch(dtype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
  case idealI: fprintf(fp,"_c%d",           const_index); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
  case idealP: fprintf(fp,"_c%d->get_con()",const_index); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
  case idealL: fprintf(fp,"_c%d",           const_index); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
  case idealF: fprintf(fp,"_c%d",           const_index); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
  case idealD: fprintf(fp,"_c%d",           const_index); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
    assert( false, "ShouldNotReachHere()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
void OperandForm::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
void OperandForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
  fprintf(fp,"\nOperand: %s\n", (_ident?_ident:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
  if (_matrule)    _matrule->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
  if (_interface)  _interface->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
  if (_attribs)    _attribs->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
  if (_predicate)  _predicate->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
  if (_constraint) _constraint->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
  if (_construct)  _construct->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
  if (_format)     _format->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
//------------------------------Constraint-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
Constraint::Constraint(const char *func, const char *arg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  : _func(func), _arg(arg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
Constraint::~Constraint() { /* not owner of char* */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
bool Constraint::stack_slots_only() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
  return strcmp(_func, "ALLOC_IN_RC") == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
      && strcmp(_arg,  "stack_slots") == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
void Constraint::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
void Constraint::output(FILE *fp) {           // Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
  assert((_func != NULL && _arg != NULL),"missing constraint function or arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
  fprintf(fp,"Constraint: %s ( %s )\n", _func, _arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
//------------------------------Predicate--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
Predicate::Predicate(char *pr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
  : _pred(pr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
Predicate::~Predicate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
void Predicate::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
void Predicate::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
  fprintf(fp,"Predicate");  // Write to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
//------------------------------Interface--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
Interface::Interface(const char *name) : _name(name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
Interface::~Interface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
Form::InterfaceType Interface::interface_type(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
  Interface *thsi = (Interface*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
  if ( thsi->is_RegInterface()   ) return Form::register_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
  if ( thsi->is_MemInterface()   ) return Form::memory_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
  if ( thsi->is_ConstInterface() ) return Form::constant_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
  if ( thsi->is_CondInterface()  ) return Form::conditional_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
  return Form::no_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
RegInterface   *Interface::is_RegInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
  if ( strcmp(_name,"REG_INTER") != 0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
  return (RegInterface*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
MemInterface   *Interface::is_MemInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
  if ( strcmp(_name,"MEMORY_INTER") != 0 )  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
  return (MemInterface*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
ConstInterface *Interface::is_ConstInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
  if ( strcmp(_name,"CONST_INTER") != 0 )  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
  return (ConstInterface*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
CondInterface  *Interface::is_CondInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
  if ( strcmp(_name,"COND_INTER") != 0 )  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
  return (CondInterface*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
void Interface::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
void Interface::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
  fprintf(fp,"Interface: %s\n", (_name ? _name : "") );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
//------------------------------RegInterface-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
RegInterface::RegInterface() : Interface("REG_INTER") {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
RegInterface::~RegInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
void RegInterface::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
void RegInterface::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
  Interface::output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
//------------------------------ConstInterface---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
ConstInterface::ConstInterface() : Interface("CONST_INTER") {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
ConstInterface::~ConstInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
void ConstInterface::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
void ConstInterface::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
  Interface::output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
//------------------------------MemInterface-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
MemInterface::MemInterface(char *base, char *index, char *scale, char *disp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
  : Interface("MEMORY_INTER"), _base(base), _index(index), _scale(scale), _disp(disp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
MemInterface::~MemInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
  // not owner of any character arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
void MemInterface::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
void MemInterface::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
  Interface::output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
  if ( _base  != NULL ) fprintf(fp,"  base  == %s\n", _base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
  if ( _index != NULL ) fprintf(fp,"  index == %s\n", _index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  if ( _scale != NULL ) fprintf(fp,"  scale == %s\n", _scale);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
  if ( _disp  != NULL ) fprintf(fp,"  disp  == %s\n", _disp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
  // fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
//------------------------------CondInterface----------------------------------
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2787
CondInterface::CondInterface(const char* equal,         const char* equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2788
                             const char* not_equal,     const char* not_equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2789
                             const char* less,          const char* less_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2790
                             const char* greater_equal, const char* greater_equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2791
                             const char* less_equal,    const char* less_equal_format,
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2792
                             const char* greater,       const char* greater_format,
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2793
                             const char* overflow,      const char* overflow_format,
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2794
                             const char* no_overflow,   const char* no_overflow_format)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
  : Interface("COND_INTER"),
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2796
    _equal(equal),                 _equal_format(equal_format),
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2797
    _not_equal(not_equal),         _not_equal_format(not_equal_format),
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2798
    _less(less),                   _less_format(less_format),
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2799
    _greater_equal(greater_equal), _greater_equal_format(greater_equal_format),
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1388
diff changeset
  2800
    _less_equal(less_equal),       _less_equal_format(less_equal_format),
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2801
    _greater(greater),             _greater_format(greater_format),
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2802
    _overflow(overflow),           _overflow_format(overflow_format),
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2803
    _no_overflow(no_overflow),     _no_overflow_format(no_overflow_format) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
CondInterface::~CondInterface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
  // not owner of any character arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
void CondInterface::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
// Write info to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
void CondInterface::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
  Interface::output(fp);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2816
  if ( _equal  != NULL )     fprintf(fp," equal        == %s\n", _equal);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2817
  if ( _not_equal  != NULL ) fprintf(fp," not_equal    == %s\n", _not_equal);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2818
  if ( _less  != NULL )      fprintf(fp," less         == %s\n", _less);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2819
  if ( _greater_equal  != NULL ) fprintf(fp," greater_equal    == %s\n", _greater_equal);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2820
  if ( _less_equal  != NULL ) fprintf(fp," less_equal   == %s\n", _less_equal);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2821
  if ( _greater  != NULL )    fprintf(fp," greater      == %s\n", _greater);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2822
  if ( _overflow != NULL )    fprintf(fp," overflow     == %s\n", _overflow);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 18102
diff changeset
  2823
  if ( _no_overflow != NULL ) fprintf(fp," no_overflow  == %s\n", _no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
  // fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
//------------------------------ConstructRule----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
ConstructRule::ConstructRule(char *cnstr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
  : _construct(cnstr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
ConstructRule::~ConstructRule() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
void ConstructRule::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
void ConstructRule::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
  fprintf(fp,"\nConstruct Rule\n");  // Write to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
//==============================Shared Forms===================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
//------------------------------AttributeForm----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
int         AttributeForm::_insId   = 0;           // start counter at 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
int         AttributeForm::_opId    = 0;           // start counter at 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
const char* AttributeForm::_ins_cost = "ins_cost"; // required name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
const char* AttributeForm::_op_cost  = "op_cost";  // required name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
AttributeForm::AttributeForm(char *attr, int type, char *attrdef)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
  : Form(Form::ATTR), _attrname(attr), _atype(type), _attrdef(attrdef) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    if (type==OP_ATTR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
      id = ++_opId;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
    else if (type==INS_ATTR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
      id = ++_insId;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2858
    else assert( false,"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
AttributeForm::~AttributeForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
// Dynamic type check
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
AttributeForm *AttributeForm::is_attribute() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
  return (AttributeForm*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
// inlined  // int  AttributeForm::type() { return id;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
void AttributeForm::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
void AttributeForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
  if( _attrname && _attrdef ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
    fprintf(fp,"\n// AttributeForm \nstatic const int %s = %s;\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
            _attrname, _attrdef);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
    fprintf(fp,"\n// AttributeForm missing name %s or definition %s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
            (_attrname?_attrname:""), (_attrdef?_attrdef:"") );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
//------------------------------Component--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
Component::Component(const char *name, const char *type, int usedef)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
  : _name(name), _type(type), _usedef(usedef) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
    _ftype = Form::COMP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
Component::~Component() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
// True if this component is equal to the parameter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
bool Component::is(int use_def_kill_enum) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
  return (_usedef == use_def_kill_enum ? true : false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
// True if this component is used/def'd/kill'd as the parameter suggests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
bool Component::isa(int use_def_kill_enum) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
  return (_usedef & use_def_kill_enum) == use_def_kill_enum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
// Extend this component with additional use/def/kill behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
int Component::promote_use_def_info(int new_use_def) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
  _usedef |= new_use_def;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
  return _usedef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
// Check the base type of this component, if it has one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
const char *Component::base_type(FormDict &globals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
  const Form *frm = globals[_type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
  if (frm == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
  OperandForm *op = frm->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
  if (op == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
  if (op->ideal_only()) return op->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
  return (char *)op->ideal_type(globals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
void Component::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
void Component::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
  fprintf(fp,"Component:");  // Write to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
  fprintf(fp, "  name = %s", _name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
  fprintf(fp, ", type = %s", _type);
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2928
  assert(_usedef != 0, "unknown effect");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  2929
  fprintf(fp, ", use/def = %s\n", getUsedefName());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
//------------------------------ComponentList---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
ComponentList::ComponentList() : NameList(), _matchcnt(0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
ComponentList::~ComponentList() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
  // // This list may not own its elements if copied via assignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
  // Component *component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
  // for (reset(); (component = iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
  //   delete component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2944
void   ComponentList::insert(Component *component, bool mflag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
  NameList::addName((char *)component);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
  if(mflag) _matchcnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
void   ComponentList::insert(const char *name, const char *opType, int usedef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
                             bool mflag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
  Component * component = new Component(name, opType, usedef);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
  insert(component, mflag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
Component *ComponentList::current() { return (Component*)NameList::current(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
Component *ComponentList::iter()    { return (Component*)NameList::iter(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
Component *ComponentList::match_iter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
  if(_iter < _matchcnt) return (Component*)NameList::iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
Component *ComponentList::post_match_iter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
  Component *comp = iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
  // At end of list?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
  if ( comp == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
    return comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
  // In post-match components?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
  if (_iter > match_count()-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
    return comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
  return post_match_iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
void       ComponentList::reset()   { NameList::reset(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
int        ComponentList::count()   { return NameList::count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
Component *ComponentList::operator[](int position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2977
  // Shortcut complete iteration if there are not enough entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
  if (position >= count()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2979
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2980
  int        index     = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
  Component *component = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2982
  for (reset(); (component = iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
    if (index == position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2984
      return component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2985
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
    ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
const Component *ComponentList::search(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
  for( Component *comp = NULL; ((comp = iter()) != NULL); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
    if( strcmp(comp->_name,name) == 0 ) return comp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
// Return number of USEs + number of DEFs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
// When there are no components, or the first component is a USE,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
// then we add '1' to hold a space for the 'result' operand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
int ComponentList::num_operands() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
  uint       count = 1;           // result operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
  uint       position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
  Component *component  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
  for( reset(); (component = iter()) != NULL; ++position ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
    if( component->isa(Component::USE) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
        ( position == 0 && (! component->isa(Component::DEF))) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
      ++count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3016
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
  return count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3020
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3021
// Return zero-based position of operand 'name' in list;  -1 if not in list.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3022
// if parameter 'usedef' is ::USE, it will match USE, USE_DEF, ...
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3023
int ComponentList::operand_position(const char *name, int usedef, Form *fm) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
  int position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3026
  int num_opnds = num_operands();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
  Component *component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
  Component* preceding_non_use = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
  Component* first_def = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3030
  for (reset(); (component = iter()) != NULL; ++position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3031
    // When the first component is not a DEF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3032
    // leave space for the result operand!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3033
    if ( position==0 && (! component->isa(Component::DEF)) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
      ++num_opnds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
    if (strcmp(name, component->_name)==0 && (component->isa(usedef))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
      // When the first entry in the component list is a DEF and a USE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
      // Treat them as being separate, a DEF first, then a USE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
      if( position==0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3041
          && usedef==Component::USE && component->isa(Component::DEF) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3042
        assert(position+1 < num_opnds, "advertised index in bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3043
        return position+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
        if( preceding_non_use && strcmp(component->_name, preceding_non_use->_name) ) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3046
          fprintf(stderr, "the name '%s(%s)' should not precede the name '%s(%s)'",
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3047
                  preceding_non_use->_name, preceding_non_use->getUsedefName(),
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3048
                  name, component->getUsedefName());
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3049
          if (fm && fm->is_instruction()) fprintf(stderr,  "in form '%s'", fm->is_instruction()->_ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3050
          if (fm && fm->is_operand()) fprintf(stderr,  "in form '%s'", fm->is_operand()->_ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3051
          fprintf(stderr,  "\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
        if( position >= num_opnds ) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3054
          fprintf(stderr, "the name '%s' is too late in its name list", name);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3055
          if (fm && fm->is_instruction()) fprintf(stderr,  "in form '%s'", fm->is_instruction()->_ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3056
          if (fm && fm->is_operand()) fprintf(stderr,  "in form '%s'", fm->is_operand()->_ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3057
          fprintf(stderr,  "\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3059
        assert(position < num_opnds, "advertised index in bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
        return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3063
    if( component->isa(Component::DEF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
        && component->isa(Component::USE) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3065
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3066
      if( position != 1 )  --position;   // only use two slots for the 1st USE_DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3067
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3068
    if( component->isa(Component::DEF) && !first_def ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3069
      first_def = component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3071
    if( !component->isa(Component::USE) && component != first_def ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
      preceding_non_use = component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
    } else if( preceding_non_use && !strcmp(component->_name, preceding_non_use->_name) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
      preceding_non_use = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
  return Not_in_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3080
// Find position for this name, regardless of use/def information
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
int ComponentList::operand_position(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
  int position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
  Component *component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
  for (reset(); (component = iter()) != NULL; ++position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
    // When the first component is not a DEF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
    // leave space for the result operand!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
    if ( position==0 && (! component->isa(Component::DEF)) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
    if (strcmp(name, component->_name)==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
      return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
    if( component->isa(Component::DEF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
        && component->isa(Component::USE) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
      if( position != 1 )  --position;   // only use two slots for the 1st USE_DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
  return Not_in_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3103
int ComponentList::operand_position_format(const char *name, Form *fm) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
  int  first_position = operand_position(name);
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3106
  int  use_position   = operand_position(name, Component::USE, fm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
  return ((first_position < use_position) ? use_position : first_position);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
int ComponentList::label_position() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3113
  int position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
  for( Component *comp; (comp = iter()) != NULL; ++position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
    // When the first component is not a DEF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
    // leave space for the result operand!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
    if ( position==0 && (! comp->isa(Component::DEF)) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
    if (strcmp(comp->_type, "label")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
      return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
    if( comp->isa(Component::DEF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
        && comp->isa(Component::USE) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
      if( position != 1 )  --position;   // only use two slots for the 1st USE_DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3128
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
int ComponentList::method_position() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
  int position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3138
  for( Component *comp; (comp = iter()) != NULL; ++position) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
    // When the first component is not a DEF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
    // leave space for the result operand!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
    if ( position==0 && (! comp->isa(Component::DEF)) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3144
    if (strcmp(comp->_type, "method")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
      return position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
    if( comp->isa(Component::DEF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
        && comp->isa(Component::USE) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
      ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
      if( position != 1 )  --position;   // only use two slots for the 1st USE_DEF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3151
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
void ComponentList::dump() { output(stderr); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3159
void ComponentList::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3160
  PreserveIter pi(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3161
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
  Component *component;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3163
  for (reset(); (component = iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3164
    component->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3166
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
//------------------------------MatchNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
MatchNode::MatchNode(ArchDesc &ad, const char *result, const char *mexpr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
                     const char *opType, MatchNode *lChild, MatchNode *rChild)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3172
  : _AD(ad), _result(result), _name(mexpr), _opType(opType),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
    _lChild(lChild), _rChild(rChild), _internalop(0), _numleaves(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
    _commutative_id(0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
  _numleaves = (lChild ? lChild->_numleaves : 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
               + (rChild ? rChild->_numleaves : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
MatchNode::MatchNode(ArchDesc &ad, MatchNode& mnode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
  : _AD(ad), _result(mnode._result), _name(mnode._name),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
    _opType(mnode._opType), _lChild(mnode._lChild), _rChild(mnode._rChild),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
    _internalop(0), _numleaves(mnode._numleaves),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
    _commutative_id(mnode._commutative_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3186
MatchNode::MatchNode(ArchDesc &ad, MatchNode& mnode, int clone)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
  : _AD(ad), _result(mnode._result), _name(mnode._name),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3188
    _opType(mnode._opType),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3189
    _internalop(0), _numleaves(mnode._numleaves),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3190
    _commutative_id(mnode._commutative_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3191
  if (mnode._lChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3192
    _lChild = new MatchNode(ad, *mnode._lChild, clone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3193
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
    _lChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
  if (mnode._rChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3197
    _rChild = new MatchNode(ad, *mnode._rChild, clone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3198
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3199
    _rChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
MatchNode::~MatchNode() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
  // // This node may not own its children if copied via assignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
  // if( _lChild ) delete _lChild;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
  // if( _rChild ) delete _rChild;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
bool  MatchNode::find_type(const char *type, int &position) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
  if ( (_lChild != NULL) && (_lChild->find_type(type, position)) ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
  if ( (_rChild != NULL) && (_rChild->find_type(type, position)) ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
  if (strcmp(type,_opType)==0)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3216
    ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
// Recursive call collecting info on top-level operands, not transitive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
// Implementation does not modify state of internal structures.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3223
void MatchNode::append_components(FormDict& locals, ComponentList& components,
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3224
                                  bool def_flag) const {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3225
  int usedef = def_flag ? Component::DEF : Component::USE;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
  FormDict &globals = _AD.globalNames();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
  assert (_name != NULL, "MatchNode::build_components encountered empty node\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
  // Base case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
  if (_lChild==NULL && _rChild==NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3231
    // If _opType is not an operation, do not build a component for it #####
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
    const Form *f = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
    if( f != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
      // Add non-ideals that are operands, operand-classes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3235
      if( ! f->ideal_only()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
          && (f->is_opclass() || f->is_operand()) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
        components.insert(_name, _opType, usedef, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
  // Promote results of "Set" to DEF
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3243
  bool tmpdef_flag = (!strcmp(_opType, "Set")) ? true : false;
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3244
  if (_lChild) _lChild->append_components(locals, components, tmpdef_flag);
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3245
  tmpdef_flag = false;   // only applies to component immediately following 'Set'
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3246
  if (_rChild) _rChild->append_components(locals, components, tmpdef_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
// Find the n'th base-operand in the match node,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
// recursively investigates match rules of user-defined operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
// Implementation does not modify state of internal structures since they
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
// can be shared.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
bool MatchNode::base_operand(uint &position, FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3255
                             const char * &result, const char * &name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3256
                             const char * &opType) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3257
  assert (_name != NULL, "MatchNode::base_operand encountered empty node\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3258
  // Base case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3259
  if (_lChild==NULL && _rChild==NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
    // Check for special case: "Universe", "label"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
    if (strcmp(_opType,"Universe") == 0 || strcmp(_opType,"label")==0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
      if (position == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
        result = _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
        name   = _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
        opType = _opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3267
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
        -- position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
        return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3270
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
    const Form *form = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3274
    MatchNode *matchNode = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3275
    // Check for user-defined type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
    if (form) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3277
      // User operand or instruction?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
      OperandForm  *opForm = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
      InstructForm *inForm = form->is_instruction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
      if ( opForm ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
        matchNode = (MatchNode*)opForm->_matrule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
      } else if ( inForm ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
        matchNode = (MatchNode*)inForm->_matrule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
    // if this is user-defined, recurse on match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
    // User-defined operand and instruction forms have a match-rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
    if (matchNode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
      return (matchNode->base_operand(position,globals,result,name,opType));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
      // Either not a form, or a system-defined form (no match rule).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
      if (position==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
        result = _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
        name   = _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
        opType = _opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
        --position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
        return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
    // Examine the left child and right child as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
    if (_lChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
      if (_lChild->base_operand(position, globals, result, name, opType))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
    if (_rChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
      if (_rChild->base_operand(position, globals, result, name, opType))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
// Recursive call on all operands' match rules in my match rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
uint  MatchNode::num_consts(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
  uint        index      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
  uint        num_consts = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
  const char *result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
  const char *opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
  for (uint position = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
       base_operand(position,globals,result,name,opType); position = index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
    ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
    if( ideal_to_const_type(opType) )        num_consts++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
  return num_consts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
// Recursive call on all operands' match rules in my match rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
// Constants in match rule subtree with specified type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
uint  MatchNode::num_consts(FormDict &globals, Form::DataType type) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
  uint        index      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
  uint        num_consts = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
  const char *result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
  const char *opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
  for (uint position = index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
       base_operand(position,globals,result,name,opType); position = index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
    ++index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
    if( ideal_to_const_type(opType) == type ) num_consts++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
  return num_consts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
// Recursive call on all operands' match rules in my match rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
uint  MatchNode::num_const_ptrs(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
  return  num_consts( globals, Form::idealP );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
bool  MatchNode::sets_result() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
  return   ( (strcmp(_name,"Set") == 0) ? true : false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
const char *MatchNode::reduce_right(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
  // If there is no right reduction, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
  const char      *rightStr    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
  // If we are a "Set", start from the right child.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
  const MatchNode *const mnode = sets_result() ?
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3369
    (const MatchNode *)this->_rChild :
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3370
    (const MatchNode *)this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
  // If our right child exists, it is the right reduction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
  if ( mnode->_rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
    rightStr = mnode->_rChild->_internalop ? mnode->_rChild->_internalop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
      : mnode->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
  // Else, May be simple chain rule: (Set dst operand_form), rightStr=NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
  return rightStr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3381
const char *MatchNode::reduce_left(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3382
  // If there is no left reduction, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3383
  const char  *leftStr  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3384
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3385
  // If we are a "Set", start from the right child.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3386
  const MatchNode *const mnode = sets_result() ?
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3387
    (const MatchNode *)this->_rChild :
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  3388
    (const MatchNode *)this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3390
  // If our left child exists, it is the left reduction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
  if ( mnode->_lChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3392
    leftStr = mnode->_lChild->_internalop ? mnode->_lChild->_internalop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
      : mnode->_lChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
    // May be simple chain rule: (Set dst operand_form_source)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
    if ( sets_result() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
      OperandForm *oper = globals[mnode->_opType]->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
      if( oper ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
        leftStr = mnode->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
  return leftStr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3404
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
//------------------------------count_instr_names------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
// Count occurrences of operands names in the leaves of the instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
// match rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
void MatchNode::count_instr_names( Dict &names ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
  if( _lChild ) _lChild->count_instr_names(names);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
  if( _rChild ) _rChild->count_instr_names(names);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
  if( !_lChild && !_rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
    uintptr_t cnt = (uintptr_t)names[_name];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
    cnt++;                      // One more name found
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
    names.Insert(_name,(void*)cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
//------------------------------build_instr_pred-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
// Build a path to 'name' in buf.  Actually only build if cnt is zero, so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
// can skip some leading instances of 'name'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
int MatchNode::build_instr_pred( char *buf, const char *name, int cnt ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
  if( _lChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
    if( !cnt ) strcpy( buf, "_kids[0]->" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
    cnt = _lChild->build_instr_pred( buf+strlen(buf), name, cnt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
    if( cnt < 0 ) return cnt;   // Found it, all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
  if( _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
    if( !cnt ) strcpy( buf, "_kids[1]->" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
    cnt = _rChild->build_instr_pred( buf+strlen(buf), name, cnt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
    if( cnt < 0 ) return cnt;   // Found it, all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
  if( !_lChild && !_rChild ) {  // Found a leaf
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
    // Wrong name?  Give up...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
    if( strcmp(name,_name) ) return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3436
    if( !cnt ) strcpy(buf,"_leaf");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
    return cnt-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
  return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
//------------------------------build_internalop-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
// Build string representation of subtree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
void MatchNode::build_internalop( ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
  char *iop, *subtree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
  const char *lstr, *rstr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
  // Build string representation of subtree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
  // Operation lchildType rchildType
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
  int len = (int)strlen(_opType) + 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
  lstr = (_lChild) ? ((_lChild->_internalop) ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
                       _lChild->_internalop : _lChild->_opType) : "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  rstr = (_rChild) ? ((_rChild->_internalop) ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
                       _rChild->_internalop : _rChild->_opType) : "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
  len += (int)strlen(lstr) + (int)strlen(rstr);
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51566
diff changeset
  3456
  subtree = (char *)AllocateHeap(len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
  sprintf(subtree,"_%s_%s_%s", _opType, lstr, rstr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
  // Hash the subtree string in _internalOps; if a name exists, use it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
  iop = (char *)_AD._internalOps[subtree];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
  // Else create a unique name, and add it to the hash table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  if (iop == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
    iop = subtree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
    _AD._internalOps.Insert(subtree, iop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
    _AD._internalOpNames.addName(iop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
    _AD._internalMatch.Insert(iop, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
  // Add the internal operand name to the MatchNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
  _internalop = iop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
  _result = iop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
void MatchNode::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
void MatchNode::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
  if (_lChild==0 && _rChild==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
    fprintf(fp," %s",_name);    // operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
    fprintf(fp," (%s ",_name);  // " (opcodeName "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
    if(_lChild) _lChild->output(fp); //               left operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
    if(_rChild) _rChild->output(fp); //                    right operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
    fprintf(fp,")");                 //                                 ")"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
int MatchNode::needs_ideal_memory_edge(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
  static const char *needs_ideal_memory_list[] = {
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3491
    "StoreI","StoreL","StoreP","StoreN","StoreNKlass","StoreD","StoreF" ,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
    "StoreB","StoreC","Store" ,"StoreFP",
13970
11a9630698a6 7199654: Remove LoadUI2LNode
vlivanov
parents: 13969
diff changeset
  3493
    "LoadI", "LoadL", "LoadP" ,"LoadN", "LoadD" ,"LoadF"  ,
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3494
    "LoadB" , "LoadUB", "LoadUS" ,"LoadS" ,"Load" ,
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3495
    "StoreVector", "LoadVector",
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 360
diff changeset
  3496
    "LoadRange", "LoadKlass", "LoadNKlass", "LoadL_unaligned", "LoadD_unaligned",
12957
f3cc386f349e 7174218: remove AtomicLongCSImpl intrinsics
twisti
parents: 11431
diff changeset
  3497
    "LoadPLocked",
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3498
    "StorePConditional", "StoreIConditional", "StoreLConditional",
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38658
diff changeset
  3499
    "CompareAndSwapB", "CompareAndSwapS", "CompareAndSwapI", "CompareAndSwapL", "CompareAndSwapP", "CompareAndSwapN",
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38658
diff changeset
  3500
    "WeakCompareAndSwapB", "WeakCompareAndSwapS", "WeakCompareAndSwapI", "WeakCompareAndSwapL", "WeakCompareAndSwapP", "WeakCompareAndSwapN",
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38658
diff changeset
  3501
    "CompareAndExchangeB", "CompareAndExchangeS", "CompareAndExchangeI", "CompareAndExchangeL", "CompareAndExchangeP", "CompareAndExchangeN",
55307
ed12027517c0 8224675: Late GC barrier insertion for ZGC
neliasso
parents: 54750
diff changeset
  3502
#if INCLUDE_SHENANDOAHGC
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52683
diff changeset
  3503
    "ShenandoahCompareAndSwapN", "ShenandoahCompareAndSwapP", "ShenandoahWeakCompareAndSwapP", "ShenandoahWeakCompareAndSwapN", "ShenandoahCompareAndExchangeP", "ShenandoahCompareAndExchangeN",
55307
ed12027517c0 8224675: Late GC barrier insertion for ZGC
neliasso
parents: 54750
diff changeset
  3504
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
    "StoreCM",
39419
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38658
diff changeset
  3506
    "GetAndSetB", "GetAndSetS", "GetAndAddI", "GetAndSetI", "GetAndSetP",
cc993a4ab581 8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents: 38658
diff changeset
  3507
    "GetAndAddB", "GetAndAddS", "GetAndAddL", "GetAndSetL", "GetAndSetN",
55307
ed12027517c0 8224675: Late GC barrier insertion for ZGC
neliasso
parents: 54750
diff changeset
  3508
    "ClearArray"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
  int cnt = sizeof(needs_ideal_memory_list)/sizeof(char*);
28954
7dda6c26cc98 8068977: Remove unused sun.misc.Unsafe prefetch intrinsic support
psandoz
parents: 26910
diff changeset
  3511
  if( strcmp(_opType,"PrefetchAllocation")==0 )
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
    return 1;
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3513
  if( strcmp(_opType,"CacheWB")==0 )
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3514
    return 1;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3515
  if( strcmp(_opType,"CacheWBPreSync")==0 )
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3516
    return 1;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3517
  if( strcmp(_opType,"CacheWBPostSync")==0 )
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55743
diff changeset
  3518
    return 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
  if( _lChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
    const char *opType = _lChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
    for( int i=0; i<cnt; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
      if( strcmp(opType,needs_ideal_memory_list[i]) == 0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
    if( _lChild->needs_ideal_memory_edge(globals) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
  if( _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
    const char *opType = _rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
    for( int i=0; i<cnt; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
      if( strcmp(opType,needs_ideal_memory_list[i]) == 0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
        return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
    if( _rChild->needs_ideal_memory_edge(globals) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
// TRUE if defines a derived oop, and so needs a base oop edge present
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
// post-matching.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
int MatchNode::needs_base_oop_edge() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
  if( !strcmp(_opType,"AddP") ) return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
  if( strcmp(_opType,"Set") ) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
  return !strcmp(_rChild->_opType,"AddP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
int InstructForm::needs_base_oop_edge(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
  if( is_simple_chain_rule(globals) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
    const char *src = _matrule->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
    OperandForm *src_op = globals[src]->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
    assert( src_op, "Not operand class of chain rule" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
    return src_op->_matrule ? src_op->_matrule->needs_base_oop_edge() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
  }                             // Else check instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
  return _matrule ? _matrule->needs_base_oop_edge() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
//-------------------------cisc spilling methods-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
// helper routines and methods for detecting cisc-spilling instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
//-------------------------cisc_spill_merge------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
int MatchNode::cisc_spill_merge(int left_spillable, int right_spillable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
  int cisc_spillable  = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
  // Combine results of left and right checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
  if( (left_spillable == Maybe_cisc_spillable) && (right_spillable == Maybe_cisc_spillable) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
    // neither side is spillable, nor prevents cisc spilling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
    cisc_spillable = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
  else if( (left_spillable == Maybe_cisc_spillable) && (right_spillable > Maybe_cisc_spillable) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
    // right side is spillable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
    cisc_spillable = right_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
  else if( (right_spillable == Maybe_cisc_spillable) && (left_spillable > Maybe_cisc_spillable) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
    // left side is spillable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
    cisc_spillable = left_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
  else if( (left_spillable == Not_cisc_spillable) || (right_spillable == Not_cisc_spillable) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
    // left or right prevents cisc spilling this instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
    cisc_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
    // Only allow one to spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
    cisc_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
  return cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
//-------------------------root_ops_match--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
bool static root_ops_match(FormDict &globals, const char *op1, const char *op2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
  // Base Case: check that the current operands/operations match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
  assert( op1, "Must have op's name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
  assert( op2, "Must have op's name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
  const Form *form1 = globals[op1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
  const Form *form2 = globals[op2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
  return (form1 == form2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3601
//-------------------------cisc_spill_match_node-------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
// Recursively check two MatchRules for legal conversion via cisc-spilling
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3603
int MatchNode::cisc_spill_match(FormDict& globals, RegisterForm* registers, MatchNode* mRule2, const char* &operand, const char* &reg_type) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
  int cisc_spillable  = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
  int left_spillable  = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
  int right_spillable = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
  // Check that each has same number of operands at this level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
  if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
    return Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  // Base Case: check that the current operands/operations match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  // or are CISC spillable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
  assert( _opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
  assert( mRule2->_opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
  const Form *form  = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  const Form *form2 = globals[mRule2->_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
  if( form == form2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
    cisc_spillable = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
    const InstructForm *form2_inst = form2 ? form2->is_instruction() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
    const char *name_left  = mRule2->_lChild ? mRule2->_lChild->_opType : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
    const char *name_right = mRule2->_rChild ? mRule2->_rChild->_opType : NULL;
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3624
    DataType data_type = Form::none;
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3625
    if (form->is_operand()) {
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3626
      // Make sure the loadX matches the type of the reg
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3627
      data_type = form->ideal_to_Reg_type(form->is_operand()->ideal_type(globals));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3628
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
    // Detect reg vs (loadX memory)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
    if( form->is_cisc_reg(globals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
        && form2_inst
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3632
        && data_type != Form::none
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  3633
        && (is_load_from_memory(mRule2->_opType) == data_type) // reg vs. (load memory)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
        && (name_left != NULL)       // NOT (load)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
        && (name_right == NULL) ) {  // NOT (load memory foo)
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3636
      const Form *form2_left = globals[name_left];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
      if( form2_left && form2_left->is_cisc_mem(globals) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
        cisc_spillable = Is_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
        operand        = _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
        reg_type       = _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
        return Is_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
        cisc_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
    // Detect reg vs memory
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3647
    else if (form->is_cisc_reg(globals) && form2 != NULL && form2->is_cisc_mem(globals)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
      cisc_spillable = Is_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
      operand        = _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
      reg_type       = _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
      return Is_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
      cisc_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
  // If cisc is still possible, check rest of tree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
  if( cisc_spillable == Maybe_cisc_spillable ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
    // Check that each has same number of operands at this level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
    if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) ) return Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
    // Check left operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
    if( (_lChild == NULL) && (mRule2->_lChild == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
      left_spillable = Maybe_cisc_spillable;
40088
02cc68c622b2 8161907: adlc: Fix crash in cisc_spill_match if _rChild == NULL
goetz
parents: 39433
diff changeset
  3665
    } else  if (_lChild != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
      left_spillable = _lChild->cisc_spill_match(globals, registers, mRule2->_lChild, operand, reg_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
    // Check right operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
    if( (_rChild == NULL) && (mRule2->_rChild == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
      right_spillable =  Maybe_cisc_spillable;
40088
02cc68c622b2 8161907: adlc: Fix crash in cisc_spill_match if _rChild == NULL
goetz
parents: 39433
diff changeset
  3672
    } else if (_rChild != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
      right_spillable = _rChild->cisc_spill_match(globals, registers, mRule2->_rChild, operand, reg_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
    // Combine results of left and right checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
    cisc_spillable = cisc_spill_merge(left_spillable, right_spillable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
  return cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3683
//---------------------------cisc_spill_match_rule------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
// Recursively check two MatchRules for legal conversion via cisc-spilling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
// This method handles the root of Match tree,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
// general recursive checks done in MatchNode
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3687
int  MatchRule::matchrule_cisc_spill_match(FormDict& globals, RegisterForm* registers,
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3688
                                           MatchRule* mRule2, const char* &operand,
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3689
                                           const char* &reg_type) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
  int cisc_spillable  = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  int left_spillable  = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  int right_spillable = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
  // Check that each sets a result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
  if( !(sets_result() && mRule2->sets_result()) ) return Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
  // Check that each has same number of operands at this level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
  if( (_lChild && !(mRule2->_lChild)) || (_rChild && !(mRule2->_rChild)) ) return Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
  // Check left operands: at root, must be target of 'Set'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
  if( (_lChild == NULL) || (mRule2->_lChild == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3701
    left_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
    // Do not support cisc-spilling instruction's target location
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
    if( root_ops_match(globals, _lChild->_opType, mRule2->_lChild->_opType) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
      left_spillable = Maybe_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
      left_spillable = Not_cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
  // Check right operands: recursive walk to identify reg->mem operand
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3712
  if (_rChild == NULL) {
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3713
    if (mRule2->_rChild == NULL) {
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3714
      right_spillable =  Maybe_cisc_spillable;
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3715
    } else {
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3716
      assert(0, "_rChild should not be NULL");
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50525
diff changeset
  3717
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
    right_spillable = _rChild->cisc_spill_match(globals, registers, mRule2->_rChild, operand, reg_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
  // Combine results of left and right checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
  cisc_spillable = cisc_spill_merge(left_spillable, right_spillable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
  return cisc_spillable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
//----------------------------- equivalent ------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
// Recursively check to see if two match rules are equivalent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
// This rule handles the root.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3731
bool MatchRule::equivalent(FormDict &globals, MatchNode *mRule2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
  // Check that each sets a result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
  if (sets_result() != mRule2->sets_result()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
  // Check that the current operands/operations match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
  assert( _opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
  assert( mRule2->_opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3740
  const Form *form  = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3741
  const Form *form2 = globals[mRule2->_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3742
  if( form != form2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3743
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
  if (_lChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3747
    if( !_lChild->equivalent(globals, mRule2->_lChild) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
  } else if (mRule2->_lChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
    return false; // I have NULL left child, mRule2 has non-NULL left child.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
  if (_rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
    if( !_rChild->equivalent(globals, mRule2->_rChild) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
  } else if (mRule2->_rChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
    return false; // I have NULL right child, mRule2 has non-NULL right child.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
  // We've made it through the gauntlet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
//----------------------------- equivalent ------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
// Recursively check to see if two match rules are equivalent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
// This rule handles the operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
bool MatchNode::equivalent(FormDict &globals, MatchNode *mNode2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
  if( !mNode2 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
  // Check that the current operands/operations match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
  assert( _opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  assert( mNode2->_opType, "Must have _opType");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  const Form *form  = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
  const Form *form2 = globals[mNode2->_opType];
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3776
  if( form != form2 ) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3777
    return false;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3778
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3779
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3780
  // Check that their children also match
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3781
  if (_lChild ) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3782
    if( !_lChild->equivalent(globals, mNode2->_lChild) )
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3783
      return false;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3784
  } else if (mNode2->_lChild) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3785
    return false; // I have NULL left child, mNode2 has non-NULL left child.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3786
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3787
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3788
  if (_rChild ) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3789
    if( !_rChild->equivalent(globals, mNode2->_rChild) )
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3790
      return false;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3791
  } else if (mNode2->_rChild) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3792
    return false; // I have NULL right child, mNode2 has non-NULL right child.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3793
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3794
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3795
  // We've made it through the gauntlet.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 7433
diff changeset
  3796
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
//-------------------------- has_commutative_op -------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
// Recursively check for commutative operations with subtree operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
// which could be swapped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
void MatchNode::count_commutative_op(int& count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
  static const char *commut_op_list[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
    "AddI","AddL","AddF","AddD",
46433
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3805
    "AddVB","AddVS","AddVI","AddVL","AddVF","AddVD",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
    "AndI","AndL",
46433
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3807
    "AndV",
53041
f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics
pli
parents: 52992
diff changeset
  3808
    "MaxI","MinI","MaxF","MinF","MaxD","MinD",
54066
1dbe0c210134 8214922: Add vectorization support for fmin/fmax
pli
parents: 53041
diff changeset
  3809
    "MaxV", "MinV",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
    "MulI","MulL","MulF","MulD",
54750
1851a532ddfe 8222074: Enhance auto vectorization for x86
sviswanathan
parents: 54564
diff changeset
  3811
    "MulVB","MulVS","MulVI","MulVL","MulVF","MulVD",
46433
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3812
    "OrI","OrL",
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3813
    "OrV",
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3814
    "XorI","XorL",
e7ebb7eaee28 8169697: AArch64: Vectorized MLA instruction not generated for some test cases
njian
parents: 43419
diff changeset
  3815
    "XorV"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
  int cnt = sizeof(commut_op_list)/sizeof(char*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
  if( _lChild && _rChild && (_lChild->_lChild || _rChild->_lChild) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
    // Don't swap if right operand is an immediate constant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
    bool is_const = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
    if( _rChild->_lChild == NULL && _rChild->_rChild == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
      FormDict &globals = _AD.globalNames();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
      const Form *form = globals[_rChild->_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
      if ( form ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
        OperandForm  *oper = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
        if( oper && oper->interface_type(globals) == Form::constant_interface )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
          is_const = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
    if( !is_const ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
      for( int i=0; i<cnt; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
        if( strcmp(_opType, commut_op_list[i]) == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
          count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
          _commutative_id = count; // id should be > 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
  if( _lChild )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
    _lChild->count_commutative_op(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
  if( _rChild )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
    _rChild->count_commutative_op(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
//-------------------------- swap_commutative_op ------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
// Recursively swap specified commutative operation with subtree operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
void MatchNode::swap_commutative_op(bool atroot, int id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
  if( _commutative_id == id ) { // id should be > 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
    assert(_lChild && _rChild && (_lChild->_lChild || _rChild->_lChild ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
            "not swappable operation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
    MatchNode* tmp = _lChild;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
    _lChild = _rChild;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
    _rChild = tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
    // Don't exit here since we need to build internalop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
  bool is_set = ( strcmp(_opType, "Set") == 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
  if( _lChild )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
    _lChild->swap_commutative_op(is_set, id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
  if( _rChild )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
    _rChild->swap_commutative_op(is_set, id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
  // If not the root, reduce this subtree to an internal operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
  if( !atroot && (_lChild || _rChild) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
    build_internalop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
//-------------------------- swap_commutative_op ------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
// Recursively swap specified commutative operation with subtree operands.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3873
void MatchRule::matchrule_swap_commutative_op(const char* instr_ident, int count, int& match_rules_cnt) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
  assert(match_rules_cnt < 100," too many match rule clones");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
  // Clone
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
  MatchRule* clone = new MatchRule(_AD, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
  // Swap operands of commutative operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
  ((MatchNode*)clone)->swap_commutative_op(true, count);
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51566
diff changeset
  3879
  char* buf = (char*) AllocateHeap(strlen(instr_ident) + 4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
  sprintf(buf, "%s_%d", instr_ident, match_rules_cnt++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
  clone->_result = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
  clone->_next = this->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
  this-> _next = clone;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
  if( (--count) > 0 ) {
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3886
    this-> matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3887
    clone->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
//------------------------------MatchRule--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
MatchRule::MatchRule(ArchDesc &ad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
  : MatchNode(ad), _depth(0), _construct(NULL), _numchilds(0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
    _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
MatchRule::MatchRule(ArchDesc &ad, MatchRule* mRule)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
  : MatchNode(ad, *mRule, 0), _depth(mRule->_depth),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
    _construct(mRule->_construct), _numchilds(mRule->_numchilds) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
    _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
MatchRule::MatchRule(ArchDesc &ad, MatchNode* mroot, int depth, char *cnstr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
                     int numleaves)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
  : MatchNode(ad,*mroot), _depth(depth), _construct(cnstr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
    _numchilds(0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
      _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
      mroot->_lChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
      mroot->_rChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
      delete mroot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
      _numleaves = numleaves;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
      _numchilds = (_lChild ? 1 : 0) + (_rChild ? 1 : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
MatchRule::~MatchRule() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
// Recursive call collecting info on top-level operands, not transitive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
// Implementation does not modify state of internal structures.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2128
diff changeset
  3919
void MatchRule::append_components(FormDict& locals, ComponentList& components, bool def_flag) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
  assert (_name != NULL, "MatchNode::build_components encountered empty node\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
  MatchNode::append_components(locals, components,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3923
                               false /* not necessarily a def */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
// Recursive call on all operands' match rules in my match rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
// Implementation does not modify state of internal structures  since they
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3928
// can be shared.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
// The MatchNode that is called first treats its
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
bool MatchRule::base_operand(uint &position0, FormDict &globals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
                             const char *&result, const char * &name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
                             const char * &opType)const{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
  uint position = position0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
  return (MatchNode::base_operand( position, globals, result, name, opType));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
bool MatchRule::is_base_register(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
  uint   position = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
  const char  *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
  const char  *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
  const char  *opType   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
  if (!base_operand(position, globals, result, name, opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
    position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
    if( base_operand(position, globals, result, name, opType) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
        (strcmp(opType,"RegI")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
         strcmp(opType,"RegP")==0 ||
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3949
         strcmp(opType,"RegN")==0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
         strcmp(opType,"RegL")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
         strcmp(opType,"RegF")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
         strcmp(opType,"RegD")==0 ||
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3953
         strcmp(opType,"VecS")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3954
         strcmp(opType,"VecD")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3955
         strcmp(opType,"VecX")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  3956
         strcmp(opType,"VecY")==0 ||
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30248
diff changeset
  3957
         strcmp(opType,"VecZ")==0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
         strcmp(opType,"Reg" )==0) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
Form::DataType MatchRule::is_base_constant(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
  uint         position = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
  const char  *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
  const char  *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
  const char  *opType   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
  if (!base_operand(position, globals, result, name, opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
    position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
    if (base_operand(position, globals, result, name, opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
      return ideal_to_const_type(opType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
bool MatchRule::is_chain_rule(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
  // Check for chain rule, and do not generate a match list for it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
  if ((_lChild == NULL) && (_rChild == NULL) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
    const Form *form = globals[_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
    // If this is ideal, then it is a base match, not a chain rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
    if ( form && form->is_operand() && (!form->ideal_only())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
  // Check for "Set" form of chain rule, and do not generate a match list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
  if (_rChild) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
    const char *rch = _rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
    const Form *form = globals[rch];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
    if ((!strcmp(_opType,"Set") &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
         ((form) && form->is_operand()))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
int MatchRule::is_ideal_copy() const {
57986
2172fd713350 8230428: Cleanup dead CastIP node code in formssel.cpp
thartmann
parents: 57804
diff changeset
  4002
  if (is_chain_rule(_AD.globalNames()) &&
2172fd713350 8230428: Cleanup dead CastIP node code in formssel.cpp
thartmann
parents: 57804
diff changeset
  4003
      _lChild && strncmp(_lChild->_opType, "stackSlot", 9) == 0) {
2172fd713350 8230428: Cleanup dead CastIP node code in formssel.cpp
thartmann
parents: 57804
diff changeset
  4004
    return 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
int MatchRule::is_expensive() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
  if( _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
    const char  *opType = _rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4012
    if( strcmp(opType,"AtanD")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
        strcmp(opType,"DivD")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
        strcmp(opType,"DivF")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
        strcmp(opType,"DivI")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
        strcmp(opType,"Log10D")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
        strcmp(opType,"ModD")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
        strcmp(opType,"ModF")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
        strcmp(opType,"ModI")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
        strcmp(opType,"SqrtD")==0 ||
48089
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
  4021
        strcmp(opType,"SqrtF")==0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
        strcmp(opType,"TanD")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
        strcmp(opType,"ConvD2F")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
        strcmp(opType,"ConvD2I")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
        strcmp(opType,"ConvD2L")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
        strcmp(opType,"ConvF2D")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
        strcmp(opType,"ConvF2I")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
        strcmp(opType,"ConvF2L")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
        strcmp(opType,"ConvI2D")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
        strcmp(opType,"ConvI2F")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
        strcmp(opType,"ConvI2L")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
        strcmp(opType,"ConvL2D")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
        strcmp(opType,"ConvL2F")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
        strcmp(opType,"ConvL2I")==0 ||
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
  4035
        strcmp(opType,"DecodeN")==0 ||
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
  4036
        strcmp(opType,"EncodeP")==0 ||
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  4037
        strcmp(opType,"EncodePKlass")==0 ||
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  4038
        strcmp(opType,"DecodeNKlass")==0 ||
41323
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41318
diff changeset
  4039
        strcmp(opType,"FmaD") == 0 ||
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 41318
diff changeset
  4040
        strcmp(opType,"FmaF") == 0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
        strcmp(opType,"RoundDouble")==0 ||
58421
6fc57e391539 8226721: Missing intrinsics for Math.ceil, floor, rint
neliasso
parents: 57986
diff changeset
  4042
        strcmp(opType,"RoundDoubleMode")==0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
        strcmp(opType,"RoundFloat")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
        strcmp(opType,"ReverseBytesI")==0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
        strcmp(opType,"ReverseBytesL")==0 ||
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3905
diff changeset
  4046
        strcmp(opType,"ReverseBytesUS")==0 ||
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3905
diff changeset
  4047
        strcmp(opType,"ReverseBytesS")==0 ||
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4048
        strcmp(opType,"ReplicateB")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4049
        strcmp(opType,"ReplicateS")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4050
        strcmp(opType,"ReplicateI")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4051
        strcmp(opType,"ReplicateL")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4052
        strcmp(opType,"ReplicateF")==0 ||
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4053
        strcmp(opType,"ReplicateD")==0 ||
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4054
        strcmp(opType,"AddReductionVI")==0 ||
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4055
        strcmp(opType,"AddReductionVL")==0 ||
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4056
        strcmp(opType,"AddReductionVF")==0 ||
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4057
        strcmp(opType,"AddReductionVD")==0 ||
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4058
        strcmp(opType,"MulReductionVI")==0 ||
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30248
diff changeset
  4059
        strcmp(opType,"MulReductionVL")==0 ||
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4060
        strcmp(opType,"MulReductionVF")==0 ||
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4061
        strcmp(opType,"MulReductionVD")==0 ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
        0 /* 0 to line up columns nicely */ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
bool MatchRule::is_ideal_if() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
  if( !_opType ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4071
    !strcmp(_opType,"If"            ) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
    !strcmp(_opType,"CountedLoopEnd");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
bool MatchRule::is_ideal_fastlock() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
    return (strcmp(_rChild->_opType,"FastLock") == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
bool MatchRule::is_ideal_membar() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4083
  if( !_opType ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
  return
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4085
    !strcmp(_opType,"MemBarAcquire") ||
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4086
    !strcmp(_opType,"MemBarRelease") ||
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10255
diff changeset
  4087
    !strcmp(_opType,"MemBarAcquireLock") ||
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10255
diff changeset
  4088
    !strcmp(_opType,"MemBarReleaseLock") ||
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4089
    !strcmp(_opType,"LoadFence" ) ||
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4090
    !strcmp(_opType,"StoreFence") ||
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4091
    !strcmp(_opType,"MemBarVolatile") ||
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22850
diff changeset
  4092
    !strcmp(_opType,"MemBarCPUOrder") ||
51566
904cf5407ac7 8209691: Allow MemBar on single memory slice
roland
parents: 51078
diff changeset
  4093
    !strcmp(_opType,"MemBarStoreStore") ||
904cf5407ac7 8209691: Allow MemBar on single memory slice
roland
parents: 51078
diff changeset
  4094
    !strcmp(_opType,"OnSpinWait");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
bool MatchRule::is_ideal_loadPC() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
    return (strcmp(_rChild->_opType,"LoadPC") == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
bool MatchRule::is_ideal_box() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
    return (strcmp(_rChild->_opType,"Box") == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
bool MatchRule::is_ideal_goto() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
  bool   ideal_goto = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
  if( _opType && (strcmp(_opType,"Goto") == 0) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
    ideal_goto = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
  return ideal_goto;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
bool MatchRule::is_ideal_jump() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
  if( _opType ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
    if( !strcmp(_opType,"Jump") )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
bool MatchRule::is_ideal_bool() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
  if( _opType ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
    if( !strcmp(_opType,"Bool") )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4137
Form::DataType MatchRule::is_ideal_load() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
  Form::DataType ideal_load = Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4140
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4141
    const char *opType = _rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
    ideal_load = is_load_from_memory(opType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
  return ideal_load;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4148
bool MatchRule::is_vector() const {
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4149
  static const char *vector_list[] = {
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4150
    "AddVB","AddVS","AddVI","AddVL","AddVF","AddVD",
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4151
    "SubVB","SubVS","SubVI","SubVL","SubVF","SubVD",
54750
1851a532ddfe 8222074: Enhance auto vectorization for x86
sviswanathan
parents: 54564
diff changeset
  4152
    "MulVB","MulVS","MulVI","MulVL","MulVF","MulVD",
48309
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
  4153
    "CMoveVD", "CMoveVF",
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4154
    "DivVF","DivVD",
54750
1851a532ddfe 8222074: Enhance auto vectorization for x86
sviswanathan
parents: 54564
diff changeset
  4155
    "AbsVB","AbsVS","AbsVI","AbsVL","AbsVF","AbsVD",
33088
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
  4156
    "NegVF","NegVD",
48089
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
  4157
    "SqrtVD","SqrtVF",
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4158
    "AndV" ,"XorV" ,"OrV",
54066
1dbe0c210134 8214922: Add vectorization support for fmin/fmax
pli
parents: 53041
diff changeset
  4159
    "MaxV", "MinV",
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4160
    "AddReductionVI", "AddReductionVL",
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4161
    "AddReductionVF", "AddReductionVD",
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30248
diff changeset
  4162
    "MulReductionVI", "MulReductionVL",
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 28954
diff changeset
  4163
    "MulReductionVF", "MulReductionVD",
52992
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52925
diff changeset
  4164
    "MulAddVS2VI",
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13893
diff changeset
  4165
    "LShiftCntV","RShiftCntV",
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4166
    "LShiftVB","LShiftVS","LShiftVI","LShiftVL",
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4167
    "RShiftVB","RShiftVS","RShiftVI","RShiftVL",
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4168
    "URShiftVB","URShiftVS","URShiftVI","URShiftVL",
54066
1dbe0c210134 8214922: Add vectorization support for fmin/fmax
pli
parents: 53041
diff changeset
  4169
    "MaxReductionV", "MinReductionV",
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4170
    "ReplicateB","ReplicateS","ReplicateI","ReplicateL","ReplicateF","ReplicateD",
58421
6fc57e391539 8226721: Missing intrinsics for Math.ceil, floor, rint
neliasso
parents: 57986
diff changeset
  4171
    "RoundDoubleModeV","LoadVector","StoreVector",
49384
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
  4172
    "FmaVD", "FmaVF","PopCountVI",
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4173
    // Next are not supported currently.
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4174
    "PackB","PackS","PackI","PackL","PackF","PackD","Pack2L","Pack2D",
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4175
    "ExtractB","ExtractUB","ExtractC","ExtractS","ExtractI","ExtractL","ExtractF","ExtractD"
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4176
  };
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4177
  int cnt = sizeof(vector_list)/sizeof(char*);
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4178
  if (_rChild) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4179
    const char  *opType = _rChild->_opType;
13893
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4180
    for (int i=0; i<cnt; i++)
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4181
      if (strcmp(opType,vector_list[i]) == 0)
8ffaa5b97ca6 7200233: C2: can't use expand rules for vector instruction rules
kvn
parents: 13886
diff changeset
  4182
        return true;
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4183
  }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4184
  return false;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4185
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  4186
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
3272
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4188
bool MatchRule::skip_antidep_check() const {
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4189
  // Some loads operate on what is effectively immutable memory so we
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4190
  // should skip the anti dep computations.  For some of these nodes
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4191
  // the rewritable field keeps the anti dep logic from triggering but
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4192
  // for certain kinds of LoadKlass it does not since they are
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4193
  // actually reading memory which could be rewritten by the runtime,
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4194
  // though never by generated code.  This disables it uniformly for
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4195
  // the nodes that behave like this: LoadKlass, LoadNKlass and
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4196
  // LoadRange.
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4197
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4198
    const char *opType = _rChild->_opType;
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4199
    if (strcmp("LoadKlass", opType) == 0 ||
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4200
        strcmp("LoadNKlass", opType) == 0 ||
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4201
        strcmp("LoadRange", opType) == 0) {
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4202
      return true;
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4203
    }
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4204
  }
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4205
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4206
  return false;
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4207
}
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4208
5a1e113bfed5 6857159: local schedule failed with checkcast of Thread.currentThread()
never
parents: 2348
diff changeset
  4209
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
Form::DataType MatchRule::is_ideal_store() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
  Form::DataType ideal_store = Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
  if ( _opType && (strcmp(_opType,"Set") == 0) && _rChild ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
    const char *opType = _rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
    ideal_store = is_store_to_memory(opType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
  return ideal_store;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
void MatchRule::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4226
// Write just one line.
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4227
void MatchRule::output_short(FILE *fp) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
  fprintf(fp,"MatchRule: ( %s",_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
  if (_lChild) _lChild->output(fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
  if (_rChild) _rChild->output(fp);
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4231
  fprintf(fp," )");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4232
}
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4233
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4234
void MatchRule::output(FILE *fp) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4235
  output_short(fp);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13970
diff changeset
  4236
  fprintf(fp,"\n   nesting depth = %d\n", _depth);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
  if (_result) fprintf(fp,"   Result Type = %s", _result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
  fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
//------------------------------Attribute--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
Attribute::Attribute(char *id, char* val, int type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
  : _ident(id), _val(val), _atype(type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
Attribute::~Attribute() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
int Attribute::int_val(ArchDesc &ad) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
  // Make sure it is an integer constant:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
  int result = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
  if (!_val || !ADLParser::is_int_token(_val, result)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
    ad.syntax_err(0, "Attribute %s must have an integer value: %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
                  _ident, _val ? _val : "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
void Attribute::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
} // Debug printer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
// Write to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
void Attribute::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
  fprintf(fp,"Attribute: %s  %s\n", (_ident?_ident:""), (_val?_val:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
//------------------------------FormatRule----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
FormatRule::FormatRule(char *temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
  : _temp(temp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
FormatRule::~FormatRule() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
void FormatRule::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
// Write to output files
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
void FormatRule::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
  fprintf(fp,"\nFormat Rule: \n%s", (_temp?_temp:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
  fprintf(fp,"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
}