hotspot/src/share/vm/c1/c1_LIRAssembler.hpp
author roland
Thu, 21 Mar 2013 09:27:54 +0100
changeset 16611 6807a703dd6b
parent 13886 8d82c4dfa722
child 18507 61bfc8995bb3
permissions -rw-r--r--
7153771: array bound check elimination for c1 Summary: when possible optimize out array bound checks, inserting predicates when needed. Reviewed-by: never, kvn, twisti Contributed-by: thomaswue <thomas.wuerthinger@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11886
diff changeset
     2
 * Copyright (c) 2000, 2012, 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: 5334
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5334
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: 5334
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: 6461
diff changeset
    25
#ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    26
#define SHARE_VM_C1_C1_LIRASSEMBLER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    28
#include "c1/c1_CodeStubs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    29
#include "ci/ciMethodData.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11886
diff changeset
    30
#include "oops/methodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    31
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class Compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ScopeValue;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    35
class BarrierSet;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class LIR_Assembler: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  C1_MacroAssembler* _masm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  CodeStubList*      _slow_case_stubs;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    41
  BarrierSet*        _bs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  Compilation*       _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  FrameMap*          _frame_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  BlockBegin*        _current_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  Instruction*       _pending_non_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int                _pending_non_safepoint_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 5052
diff changeset
    50
  Label              _unwind_handler_entry;
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 5052
diff changeset
    51
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  BlockList          _branch_target_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void check_no_unbound_labels();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  FrameMap* frame_map() const { return _frame_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  void set_current_block(BlockBegin* b) { _current_block = b; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  BlockBegin* current_block() const { return _current_block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // non-safepoint debug info management
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void flush_debug_info(int before_pc_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    if (_pending_non_safepoint != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      if (_pending_non_safepoint_offset < before_pc_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
        record_non_safepoint_debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      _pending_non_safepoint = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  void process_debug_info(LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  void record_non_safepoint_debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // unified bailout support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void bailout(const char* msg) const            { compilation()->bailout(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool bailed_out() const                        { return compilation()->bailed_out(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // code emission patterns and accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  void check_codespace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool needs_icache(ciMethod* method) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // returns offset of icache check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  int check_icache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  void jobject2reg(jobject o, Register reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  void jobject2reg_with_patching(Register reg, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11886
diff changeset
    87
  void metadata2reg(Metadata* o, Register reg);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11886
diff changeset
    88
  void klass2reg_with_patching(Register reg, CodeEmitInfo* info);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11886
diff changeset
    89
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void emit_stubs(CodeStubList* stub_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // addresses
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    93
  Address as_Address(LIR_Address* addr);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    94
  Address as_Address_lo(LIR_Address* addr);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    95
  Address as_Address_hi(LIR_Address* addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // debug information
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5334
diff changeset
    98
  void add_call_info(int pc_offset, CodeEmitInfo* cinfo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void add_debug_info_for_branch(CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void add_debug_info_for_div0_here(CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void add_debug_info_for_null_check_here(CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void set_24bit_FPU();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void reset_FPU();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void fpop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void fxch(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void fld(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void ffree(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void breakpoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void push(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void pop(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // patching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  void append_patching_stub(PatchingStub* stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  LIR_Assembler(Compilation* c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  ~LIR_Assembler();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  C1_MacroAssembler* masm() const                { return _masm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  Compilation* compilation() const               { return _compilation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  ciMethod* method() const                       { return compilation()->method(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  CodeOffsets* offsets() const                   { return _compilation->offsets(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  int code_offset() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  address pc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  int  initial_frame_size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // test for constants which can be encoded directly in instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  static bool is_small_constant(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static LIR_Opr receiverOpr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static LIR_Opr osrBufferPointer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  void emit_slow_case_stubs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  void emit_static_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  void emit_code_stub(CodeStub* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void add_call_info_here(CodeEmitInfo* info)                              { add_call_info(code_offset(), info); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // code patterns
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   148
  int  emit_exception_handler();
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 5052
diff changeset
   149
  int  emit_unwind_handler();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void emit_exception_entries(ExceptionInfoList* info_list);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   151
  int  emit_deopt_handler();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  void emit_code(BlockList* hir);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void emit_block(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void emit_lir_list(LIR_List* list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // any last minute peephole optimizations are performed here.  In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // particular sparc uses this for delay slot filling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void peephole(LIR_List* list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void emit_string_compare(LIR_Opr left, LIR_Opr right, LIR_Opr dst, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  void return_op(LIR_Opr result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // returns offset of poll instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int safepoint_poll(LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  void const2reg  (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  void const2stack(LIR_Opr src, LIR_Opr dest);
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   170
  void const2mem  (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void reg2stack  (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void reg2reg    (LIR_Opr src, LIR_Opr dest);
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   173
  void reg2mem    (LIR_Opr src, LIR_Opr dest, BasicType type,
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   174
                   LIR_PatchCode patch_code, CodeEmitInfo* info,
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   175
                   bool pop_fpu_stack, bool wide, bool unaligned);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void stack2reg  (LIR_Opr src, LIR_Opr dest, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void mem2reg    (LIR_Opr src, LIR_Opr dest, BasicType type,
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   179
                   LIR_PatchCode patch_code,
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   180
                   CodeEmitInfo* info, bool wide, bool unaligned);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void prefetchr  (LIR_Opr src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void prefetchw  (LIR_Opr src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void shift_op(LIR_Code code, LIR_Opr left, jint  count, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void move_regs(Register from_reg, Register to_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void swap_reg(Register a, Register b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  void emit_op0(LIR_Op0* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void emit_op1(LIR_Op1* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void emit_op2(LIR_Op2* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void emit_op3(LIR_Op3* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void emit_opBranch(LIR_OpBranch* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void emit_opLabel(LIR_OpLabel* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void emit_arraycopy(LIR_OpArrayCopy* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void emit_opConvert(LIR_OpConvert* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void emit_alloc_obj(LIR_OpAllocObj* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void emit_alloc_array(LIR_OpAllocArray* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void emit_opTypeCheck(LIR_OpTypeCheck* op);
6461
cfc616b49f58 6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents: 6453
diff changeset
   202
  void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void emit_compare_and_swap(LIR_OpCompareAndSwap* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  void emit_lock(LIR_OpLock* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  void emit_call(LIR_OpJavaCall* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  void emit_rtcall(LIR_OpRTCall* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  void emit_profile_call(LIR_OpProfileCall* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void emit_delay(LIR_OpDelay* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op);
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   213
#ifdef ASSERT
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   214
  void emit_assert(LIR_OpAssert* op);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13886
diff changeset
   215
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void move_op(LIR_Opr src, LIR_Opr result, BasicType type,
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   221
               LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void comp_mem_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);  // info set for null exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr result, LIR_Op2* op);
7713
1e06d2419258 7009231: C1: Incorrect CAS code for longs on SPARC 32bit
iveresov
parents: 7427
diff changeset
   225
  void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4752
diff changeset
   227
  void call(        LIR_OpJavaCall* op, relocInfo::relocType rtype);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4752
diff changeset
   228
  void ic_call(     LIR_OpJavaCall* op);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4752
diff changeset
   229
  void vtable_call( LIR_OpJavaCall* op);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 4752
diff changeset
   230
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  void osr_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  void build_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
5334
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 5052
diff changeset
   235
  void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info);
b2d040a8d375 6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents: 5052
diff changeset
   236
  void unwind_op(LIR_Opr exceptionOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  void monitor_address(int monitor_ix, LIR_Opr dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  void align_backward_branch_target();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  void align_call(LIR_Code code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void negate(LIR_Opr left, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void leal(LIR_Opr left, LIR_Opr dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void membar();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void membar_acquire();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void membar_release();
11886
feebf5c9f40c 7120481: storeStore barrier in constructor with final field
jiangli
parents: 10508
diff changeset
   250
  void membar_loadload();
feebf5c9f40c 7120481: storeStore barrier in constructor with final field
jiangli
parents: 10508
diff changeset
   251
  void membar_storestore();
feebf5c9f40c 7120481: storeStore barrier in constructor with final field
jiangli
parents: 10508
diff changeset
   252
  void membar_loadstore();
feebf5c9f40c 7120481: storeStore barrier in constructor with final field
jiangli
parents: 10508
diff changeset
   253
  void membar_storeload();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void get_thread(LIR_Opr result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  void verify_oop_map(CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
   258
  void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp);
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
   259
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   260
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   261
# include "c1_LIRAssembler_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   262
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   263
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   264
# include "c1_LIRAssembler_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   265
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   266
#ifdef TARGET_ARCH_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   267
# include "c1_LIRAssembler_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   268
#endif
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   269
#ifdef TARGET_ARCH_ppc
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   270
# include "c1_LIRAssembler_ppc.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7713
diff changeset
   271
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   272
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   274
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6461
diff changeset
   275
#endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP