hotspot/src/share/vm/c1/c1_LIRGenerator.hpp
author rbackman
Wed, 04 Jun 2014 10:01:28 +0200
changeset 24933 c16c7a4ac386
parent 24442 4d4ae31dea26
child 28954 7dda6c26cc98
permissions -rw-r--r--
8031994: java/lang/Character/CheckProp test times out Reviewed-by: iveresov, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 17011
diff changeset
     2
 * Copyright (c) 2005, 2013, 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: 1374
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1374
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: 1374
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#ifndef SHARE_VM_C1_C1_LIRGENERATOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#define SHARE_VM_C1_C1_LIRGENERATOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "c1/c1_Instruction.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "c1/c1_LIR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "ci/ciMethodData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "utilities/sizes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// The classes responsible for code emission and register allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class LIRGenerator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class LIREmitter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class Invoke;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class SwitchRange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class LIRItem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
define_array(LIRItemArray, LIRItem*)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
define_stack(LIRItemList, LIRItemArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class SwitchRange: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  int _low_key;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int _high_key;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  BlockBegin* _sux;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  SwitchRange(int start_key, BlockBegin* sux): _low_key(start_key), _high_key(start_key), _sux(sux) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  void set_high_key(int key) { _high_key = key; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int high_key() const { return _high_key; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int low_key() const { return _low_key; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  BlockBegin* sux() const { return _sux; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
define_array(SwitchRangeArray, SwitchRange*)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
define_stack(SwitchRangeList, SwitchRangeArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
class ResolveNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
define_array(NodeArray, ResolveNode*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
define_stack(NodeList, NodeArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// Node objects form a directed graph of LIR_Opr
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Edges between Nodes represent moves from one Node to its destinations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
class ResolveNode: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  LIR_Opr    _operand;       // the source or destinaton
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  NodeList   _destinations;  // for the operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool       _assigned;      // Value assigned to this Node?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool       _visited;       // Node already visited?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  bool       _start_node;    // Start node already visited?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ResolveNode(LIR_Opr operand)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    : _operand(operand)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    , _assigned(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    , _visited(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    , _start_node(false) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  LIR_Opr operand() const           { return _operand; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int no_of_destinations() const    { return _destinations.length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  ResolveNode* destination_at(int i)     { return _destinations[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool assigned() const             { return _assigned; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  bool visited() const              { return _visited; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  bool start_node() const           { return _start_node; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // modifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void append(ResolveNode* dest)         { _destinations.append(dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void set_assigned()               { _assigned = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  void set_visited()                { _visited = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void set_start_node()             { _start_node = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// This is shared state to be used by the PhiResolver so the operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// arrays don't have to be reallocated for reach resolution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
class PhiResolverState: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  friend class PhiResolver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  NodeList _virtual_operands; // Nodes where the operand is a virtual register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  NodeList _other_operands;   // Nodes where the operand is not a virtual register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  NodeList _vreg_table;       // Mapping from virtual register to Node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  PhiResolverState() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void reset(int max_vregs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// class used to move value of phi operand to phi function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
class PhiResolver: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  LIRGenerator*     _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  PhiResolverState& _state; // temporary state cached by LIRGenerator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ResolveNode*   _loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  LIR_Opr _temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // access to shared state arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  NodeList& virtual_operands() { return _state._virtual_operands; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  NodeList& other_operands()   { return _state._other_operands;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  NodeList& vreg_table()       { return _state._vreg_table;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  ResolveNode* create_node(LIR_Opr opr, bool source);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ResolveNode* source_node(LIR_Opr opr)      { return create_node(opr, true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  ResolveNode* destination_node(LIR_Opr opr) { return create_node(opr, false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  void emit_move(LIR_Opr src, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  void move_to_temp(LIR_Opr src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void move_temp_to(LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  void move(ResolveNode* src, ResolveNode* dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  LIRGenerator* gen() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  PhiResolver(LIRGenerator* _lir_gen, int max_vregs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  ~PhiResolver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void move(LIR_Opr src, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// only the classes below belong in the same file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
class LIRGenerator: public InstructionVisitor, public BlockClosure {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   156
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  Compilation*  _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  ciMethod*     _method;    // method that we are compiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  PhiResolverState  _resolver_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  BlockBegin*   _block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  int           _virtual_register_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  Values        _instruction_for_operand;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  BitMap2D      _vreg_flags; // flags which can be set on a per-vreg basis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  LIR_List*     _lir;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   166
  BarrierSet*   _bs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  LIRGenerator* gen() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    return this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
24933
c16c7a4ac386 8031994: java/lang/Character/CheckProp test times out
rbackman
parents: 24442
diff changeset
   172
  void print_if_not_loaded(const NewInstance* new_instance) PRODUCT_RETURN;
c16c7a4ac386 8031994: java/lang/Character/CheckProp test times out
rbackman
parents: 24442
diff changeset
   173
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  LIR_List* lir(const char * file, int line) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    _lir->set_file_and_line(file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    return _lir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  LIR_List* lir() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    return _lir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // a simple cache of constants used within a block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  GrowableArray<LIR_Const*>       _constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  LIR_OprList                     _reg_for_constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  Values                          _unpinned_constants;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  friend class PhiResolver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // unified bailout support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void bailout(const char* msg) const            { compilation()->bailout(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool bailed_out() const                        { return compilation()->bailed_out(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void block_do_prolog(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void block_do_epilog(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // register allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  LIR_Opr rlock(Value instr);                      // lock a free register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  LIR_Opr rlock_result(Value instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  LIR_Opr rlock_result(Value instr, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  LIR_Opr rlock_byte(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  LIR_Opr rlock_callee_saved(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // get a constant into a register and get track of what register was used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  LIR_Opr load_constant(Constant* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  LIR_Opr load_constant(LIR_Const* constant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   209
  // Given an immediate value, return an operand usable in logical ops.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   210
  LIR_Opr load_immediate(int x, BasicType type);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   211
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void  set_result(Value x, LIR_Opr opr)           {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    assert(opr->is_valid(), "must set to valid value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    assert(x->operand()->is_illegal(), "operand should never change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    assert(!opr->is_register() || opr->is_virtual(), "should never set result to a physical register");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    x->set_operand(opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    assert(opr == x->operand(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    if (opr->is_virtual()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      _instruction_for_operand.at_put_grow(opr->vreg_number(), x, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void  set_no_result(Value x)                     { assert(!x->has_uses(), "can't have use"); x->clear_operand(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  friend class LIRItem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  LIR_Opr round_item(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  LIR_Opr force_to_spill(LIR_Opr value, BasicType t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  PhiResolverState& resolver_state() { return _resolver_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  void  move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void  move_to_phi(ValueStack* cur_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // code emission
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  void do_ArithmeticOp_Long   (ArithmeticOp*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  void do_ArithmeticOp_Int    (ArithmeticOp*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  void do_ArithmeticOp_FPU    (ArithmeticOp*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // platform dependent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  LIR_Opr getThreadPointer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void do_RegisterFinalizer(Intrinsic* x);
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 12377
diff changeset
   243
  void do_isInstance(Intrinsic* x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void do_getClass(Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void do_currentThread(Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  void do_MathIntrinsic(Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void do_ArrayCopy(Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void do_CompareAndSwap(Intrinsic* x, ValueType* type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void do_NIOCheckIndex(Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void do_FPIntrinsics(Intrinsic* x);
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8065
diff changeset
   251
  void do_Reference_get(Intrinsic* x);
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 17011
diff changeset
   252
  void do_update_CRC32(Intrinsic* x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void do_UnsafePrefetch(UnsafePrefetch* x, bool is_store);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  LIR_Opr call_runtime(BasicTypeArray* signature, LIRItemList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  LIR_Opr call_runtime(BasicTypeArray* signature, LIR_OprList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // convenience functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  LIR_Opr call_runtime(Value arg1, address entry, ValueType* result_type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  LIR_Opr call_runtime(Value arg1, Value arg2, address entry, ValueType* result_type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // GC Barriers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // generic interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8065
diff changeset
   267
  void pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val, bool do_load, bool patch, CodeEmitInfo* info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  void post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // specific implementations
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   271
  // pre barriers
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   272
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8065
diff changeset
   273
  void G1SATBCardTableModRef_pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8065
diff changeset
   274
                                         bool do_load, bool patch, CodeEmitInfo* info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // post barriers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   278
  void G1SATBCardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void CardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  static LIR_Opr result_register_for(ValueType* type, bool callee = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ciObject* get_jobject_constant(Value value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  LIRItemList* invoke_visit_arguments(Invoke* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  void invoke_load_arguments(Invoke* x, LIRItemList* args, const LIR_OprList* arg_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  void trace_block_entry(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // volatile field operations are never patchable because a klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // must be loaded to know it's volatile which means that the offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // it always known as well.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void volatile_field_store(LIR_Opr value, LIR_Address* address, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  void volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void put_Object_unsafe(LIR_Opr src, LIR_Opr offset, LIR_Opr data, BasicType type, bool is_volatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  void get_Object_unsafe(LIR_Opr dest, LIR_Opr src, LIR_Opr offset, BasicType type, bool is_volatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void arithmetic_call_op (Bytecodes::Code code, LIR_Opr result, LIR_OprList* args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   302
  void increment_counter(address counter, BasicType type, int step = 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  void increment_counter(LIR_Address* addr, int step = 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // is_strictfp is only needed for mul and div (and only generates different code on i486)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  void arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp, CodeEmitInfo* info = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // machine dependent.  returns true if it emitted code for the multiply
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  bool strength_reduce_multiply(LIR_Opr left, int constant, LIR_Opr result, LIR_Opr tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  void store_stack_parameter (LIR_Opr opr, ByteSize offset_from_sp_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
24933
c16c7a4ac386 8031994: java/lang/Character/CheckProp test times out
rbackman
parents: 24442
diff changeset
   312
  void klass2reg_with_patching(LIR_Opr r, ciMetadata* obj, CodeEmitInfo* info, bool need_resolve = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // this loads the length and compares against the index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void array_range_check          (LIR_Opr array, LIR_Opr index, CodeEmitInfo* null_check_info, CodeEmitInfo* range_check_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // For java.nio.Buffer.checkIndex
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  void nio_range_check            (LIR_Opr buffer, LIR_Opr index, LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void arithmetic_op_int  (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, LIR_Opr tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  void arithmetic_op_long (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, CodeEmitInfo* info = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  void arithmetic_op_fpu  (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp = LIR_OprFact::illegalOpr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void shift_op   (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr value, LIR_Opr count, LIR_Opr tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  void logic_op   (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr left, LIR_Opr right);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  void monitor_enter (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no, CodeEmitInfo* info_for_exception, CodeEmitInfo* info);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   328
  void monitor_exit  (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
24933
c16c7a4ac386 8031994: java/lang/Character/CheckProp test times out
rbackman
parents: 24442
diff changeset
   330
  void new_instance    (LIR_Opr  dst, ciInstanceKlass* klass, bool is_unresolved, LIR_Opr  scratch1, LIR_Opr  scratch2, LIR_Opr  scratch3,  LIR_Opr scratch4, LIR_Opr  klass_reg, CodeEmitInfo* info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // machine dependent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  void cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, int disp, BasicType type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, LIR_Opr disp, BasicType type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  void arraycopy_helper(Intrinsic* x, int* flags, ciArrayKlass** expected_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // returns a LIR_Address to address an array location.  May also
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // emit some code as part of address calculation.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // needs_card_mark is true then compute the full address for use by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // both the store and the card mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  LIR_Address* generate_address(LIR_Opr base,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
                                LIR_Opr index, int shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
                                int disp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                                BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  LIR_Address* generate_address(LIR_Opr base, int disp, BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    return generate_address(base, LIR_OprFact::illegalOpr, 0, disp, type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  LIR_Address* emit_array_address(LIR_Opr array_opr, LIR_Opr index_opr, BasicType type, bool needs_card_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   352
  // the helper for generate_address
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   353
  void add_large_constant(LIR_Opr src, int c, LIR_Opr dest);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   354
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // machine preferences and characteristics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  bool can_inline_as_constant(Value i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  bool can_inline_as_constant(LIR_Const* c) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  bool can_store_as_constant(Value i, BasicType type) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  LIR_Opr safepoint_poll_register();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   361
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   362
  void profile_branch(If* if_instr, If::Condition cond);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   363
  void increment_event_counter_impl(CodeEmitInfo* info,
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   364
                                    ciMethod *method, int frequency,
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   365
                                    int bci, bool backedge, bool notify);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   366
  void increment_event_counter(CodeEmitInfo* info, int bci, bool backedge);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   367
  void increment_invocation_counter(CodeEmitInfo *info) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   368
    if (compilation()->count_invocations()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   369
      increment_event_counter(info, InvocationEntryBci, false);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   370
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   371
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   372
  void increment_backedge_counter(CodeEmitInfo* info, int bci) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   373
    if (compilation()->count_backedges()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   374
      increment_event_counter(info, bci, true);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   375
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 21579
diff changeset
   377
  void decrement_age(CodeEmitInfo* info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  CodeEmitInfo* state_for(Instruction* x, ValueStack* state, bool ignore_xhandler = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  CodeEmitInfo* state_for(Instruction* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // allocates a virtual register for this instruction if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // one isn't already allocated.  Only for Phi and Local.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  LIR_Opr operand_for_instruction(Instruction *x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  void set_block(BlockBegin* block)              { _block = block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  void block_prolog(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void block_epilog(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  void do_root (Instruction* instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void walk    (Instruction* instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  void bind_block_entry(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  void start_block(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  LIR_Opr new_register(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  LIR_Opr new_register(Value value)              { return new_register(as_BasicType(value->type())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  LIR_Opr new_register(ValueType* type)          { return new_register(as_BasicType(type)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // returns a register suitable for doing pointer math
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  LIR_Opr new_pointer_register() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    return new_register(T_LONG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    return new_register(T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  static LIR_Condition lir_cond(If::Condition cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    LIR_Condition l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    switch (cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    case If::eql: l = lir_cond_equal;        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    case If::neq: l = lir_cond_notEqual;     break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    case If::lss: l = lir_cond_less;         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    case If::leq: l = lir_cond_lessEqual;    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    case If::geq: l = lir_cond_greaterEqual; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    case If::gtr: l = lir_cond_greater;      break;
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   418
    case If::aeq: l = lir_cond_aboveEqual;   break;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   419
    case If::beq: l = lir_cond_belowEqual;   break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    return l;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   424
#ifdef __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   425
  void do_soft_float_compare(If *x);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   426
#endif // __SOFTFP__
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   427
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  SwitchRangeArray* create_lookup_ranges(TableSwitch* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  SwitchRangeArray* create_lookup_ranges(LookupSwitch* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  void do_SwitchRanges(SwitchRangeArray* x, LIR_Opr value, BlockBegin* default_sux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
12377
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   434
  void do_RuntimeCall(address routine, int expected_arguments, Intrinsic* x);
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   435
#ifdef TRACE_HAVE_INTRINSICS
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   436
  void do_ThreadIDIntrinsic(Intrinsic* x);
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   437
  void do_ClassIDIntrinsic(Intrinsic* x);
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   438
#endif
21579
c396d68f3e48 8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents: 21095
diff changeset
   439
  ciKlass* profile_type(ciMethodData* md, int md_first_offset, int md_offset, intptr_t profiled_k,
c396d68f3e48 8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents: 21095
diff changeset
   440
                        Value arg, LIR_Opr& mdp, bool not_null, ciKlass* signature_at_call_k,
c396d68f3e48 8027631: "unexpected profiling mismatch" error with new type profiling
roland
parents: 21095
diff changeset
   441
                        ciKlass* callee_signature_k);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 18507
diff changeset
   442
  void profile_arguments(ProfileCall* x);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   443
  void profile_parameters(Base* x);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   444
  void profile_parameters_at_call(ProfileCall* x);
12377
ae6def2813e0 7160570: Intrinsification support for tracing framework
rbackman
parents: 11886
diff changeset
   445
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  Compilation*  compilation() const              { return _compilation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  FrameMap*     frame_map() const                { return _compilation->frame_map(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  ciMethod*     method() const                   { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  BlockBegin*   block() const                    { return _block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  IRScope*      scope() const                    { return block()->scope(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  int max_virtual_register_number() const        { return _virtual_register_number; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  void block_do(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // Flags that can be set on vregs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  enum VregFlag {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      must_start_in_memory = 0  // needs to be assigned a memory location at beginning, but may then be loaded in a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    , callee_saved     = 1    // must be in a callee saved register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    , byte_reg         = 2    // must be in a byte register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    , num_vreg_flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  LIRGenerator(Compilation* compilation, ciMethod* method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    : _compilation(compilation)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    , _method(method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    , _virtual_register_number(LIR_OprDesc::vreg_base)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    , _vreg_flags(NULL, 0, num_vreg_flags) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // for virtual registers, maps them back to Phi's or Local's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  Instruction* instruction_for_opr(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  Instruction* instruction_for_vreg(int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  void set_vreg_flag   (int vreg_num, VregFlag f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  bool is_vreg_flag_set(int vreg_num, VregFlag f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  void set_vreg_flag   (LIR_Opr opr,  VregFlag f) { set_vreg_flag(opr->vreg_number(), f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  bool is_vreg_flag_set(LIR_Opr opr,  VregFlag f) { return is_vreg_flag_set(opr->vreg_number(), f); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // statics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  static LIR_Opr exceptionOopOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  static LIR_Opr exceptionPcOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  static LIR_Opr divInOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  static LIR_Opr divOutOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  static LIR_Opr remOutOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  static LIR_Opr shiftCountOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  LIR_Opr syncTempOpr();
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   491
  LIR_Opr atomicLockOpr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // returns a register suitable for saving the thread in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // call_runtime_leaf if one is needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  LIR_Opr getThreadTemp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // visitor functionality
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  virtual void do_Phi            (Phi*             x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  virtual void do_Local          (Local*           x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  virtual void do_Constant       (Constant*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  virtual void do_LoadField      (LoadField*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  virtual void do_StoreField     (StoreField*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  virtual void do_ArrayLength    (ArrayLength*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  virtual void do_LoadIndexed    (LoadIndexed*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  virtual void do_StoreIndexed   (StoreIndexed*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  virtual void do_NegateOp       (NegateOp*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  virtual void do_ArithmeticOp   (ArithmeticOp*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  virtual void do_ShiftOp        (ShiftOp*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  virtual void do_LogicOp        (LogicOp*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  virtual void do_CompareOp      (CompareOp*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  virtual void do_IfOp           (IfOp*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  virtual void do_Convert        (Convert*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  virtual void do_NullCheck      (NullCheck*       x);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12957
diff changeset
   514
  virtual void do_TypeCast       (TypeCast*        x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  virtual void do_Invoke         (Invoke*          x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  virtual void do_NewInstance    (NewInstance*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  virtual void do_NewTypeArray   (NewTypeArray*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  virtual void do_NewObjectArray (NewObjectArray*  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  virtual void do_NewMultiArray  (NewMultiArray*   x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  virtual void do_CheckCast      (CheckCast*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  virtual void do_InstanceOf     (InstanceOf*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  virtual void do_MonitorEnter   (MonitorEnter*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  virtual void do_MonitorExit    (MonitorExit*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  virtual void do_Intrinsic      (Intrinsic*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  virtual void do_BlockBegin     (BlockBegin*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  virtual void do_Goto           (Goto*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  virtual void do_If             (If*              x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  virtual void do_IfInstanceOf   (IfInstanceOf*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  virtual void do_TableSwitch    (TableSwitch*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  virtual void do_LookupSwitch   (LookupSwitch*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  virtual void do_Return         (Return*          x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  virtual void do_Throw          (Throw*           x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  virtual void do_Base           (Base*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  virtual void do_OsrEntry       (OsrEntry*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  virtual void do_ExceptionObject(ExceptionObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  virtual void do_RoundFP        (RoundFP*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  virtual void do_UnsafeGetRaw   (UnsafeGetRaw*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  virtual void do_UnsafePutRaw   (UnsafePutRaw*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  virtual void do_UnsafeGetObject(UnsafeGetObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  virtual void do_UnsafePutObject(UnsafePutObject* x);
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
   541
  virtual void do_UnsafeGetAndSetObject(UnsafeGetAndSetObject* x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  virtual void do_UnsafePrefetchRead (UnsafePrefetchRead*  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  virtual void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  virtual void do_ProfileCall    (ProfileCall*     x);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   545
  virtual void do_ProfileReturnType (ProfileReturnType* x);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   546
  virtual void do_ProfileInvoke  (ProfileInvoke*   x);
8065
7ca689ce3d32 6809483: hotspot:::method_entry are not correctly generated for "method()V"
never
parents: 7397
diff changeset
   547
  virtual void do_RuntimeCall    (RuntimeCall*     x);
11886
feebf5c9f40c 7120481: storeStore barrier in constructor with final field
jiangli
parents: 9176
diff changeset
   548
  virtual void do_MemBar         (MemBar*          x);
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   549
  virtual void do_RangeCheckPredicate(RangeCheckPredicate* x);
17011
def8879c5b81 8011648: C1: optimized build is broken after 7153771
roland
parents: 16611
diff changeset
   550
#ifdef ASSERT
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   551
  virtual void do_Assert         (Assert*          x);
17011
def8879c5b81 8011648: C1: optimized build is broken after 7153771
roland
parents: 16611
diff changeset
   552
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
class LIRItem: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  Value         _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  LIRGenerator* _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  LIR_Opr       _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  bool          _destroys_register;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  LIR_Opr       _new_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  LIRGenerator* gen() const { return _gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  LIRItem(Value value, LIRGenerator* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    _destroys_register = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    _gen = gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    set_instruction(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  LIRItem(LIRGenerator* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    _destroys_register = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    _gen = gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    _result = LIR_OprFact::illegalOpr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    set_instruction(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  void set_instruction(Value value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    _value = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    _result = LIR_OprFact::illegalOpr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    if (_value != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
      _gen->walk(_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
      _result = _value->operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    _new_result = LIR_OprFact::illegalOpr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  Value value() const          { return _value;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  ValueType* type() const      { return value()->type(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  LIR_Opr result()             {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    assert(!_destroys_register || (!_result->is_register() || _result->is_virtual()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
           "shouldn't use set_destroys_register with physical regsiters");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    if (_destroys_register && _result->is_register()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
      if (_new_result->is_illegal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
        _new_result = _gen->new_register(type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
        gen()->lir()->move(_result, _new_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
      return _new_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
      return _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    return _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  void set_result(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  void load_item();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  void load_byte_item();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  void load_nonconstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  // load any values which can't be expressed as part of a single store instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  void load_for_store(BasicType store_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  void load_item_force(LIR_Opr reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  void dont_load_item() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    // do nothing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  void set_destroys_register() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    _destroys_register = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  bool is_constant() const { return value()->as_Constant() != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  bool is_stack()          { return result()->is_stack(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  bool is_register()       { return result()->is_register(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  ciObject* get_jobject_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  jint      get_jint_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  jlong     get_jlong_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  jfloat    get_jfloat_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  jdouble   get_jdouble_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  jint      get_address_constant() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   635
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   636
#endif // SHARE_VM_C1_C1_LIRGENERATOR_HPP