hotspot/src/share/vm/asm/assembler.hpp
author jrose
Wed, 04 Mar 2009 09:58:39 -0800
changeset 2148 09c7f703773b
parent 2131 98f9cef66a34
child 2332 5c7b6f4ce0a1
permissions -rw-r--r--
6812678: macro assembler needs delayed binding of a few constants (for 6655638) Summary: minor assembler enhancements preparing for method handles Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
    25
// This file contains platform-independent assembler declarations.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class CodeBuffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class AbstractAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class Label;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
/**
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 * Labels represent destinations for control transfer instructions.  Such
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 * instructions can accept a Label as their target argument.  A Label is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 * bound to the current location in the code stream by calling the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 * MacroAssembler's 'bind' method, which in turn calls the Label's 'bind'
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 * method.  A Label may be referenced by an instruction before it's bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 * (i.e., 'forward referenced').  'bind' stores the current code offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 * in the Label object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 * If an instruction references a bound Label, the offset field(s) within
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 * the instruction are immediately filled in based on the Label's code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 * offset.  If an instruction references an unbound label, that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 * instruction is put on a list of instructions that must be patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 * (i.e., 'resolved') when the Label is bound.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 * 'bind' will call the platform-specific 'patch_instruction' method to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 * fill in the offset field(s) for each unresolved instruction (if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 * are any).  'patch_instruction' lives in one of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 * cpu/<arch>/vm/assembler_<arch>* files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
 * Instead of using a linked list of unresolved instructions, a Label has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 * an array of unresolved instruction code offsets.  _patch_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 * contains the total number of forward references.  If the Label's array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 * overflows (i.e., _patch_index grows larger than the array size), a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 * GrowableArray is allocated to hold the remaining offsets.  (The cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
 * size is 4 for now, which handles over 99.5% of the cases)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
 * Labels may only be used within a single CodeSection.  If you need
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 * to create references between code sections, use explicit relocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
class Label VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  enum { PatchCacheSize = 4 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // _loc encodes both the binding state (via its sign)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // and the binding locator (via its value) of a label.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // _loc >= 0   bound label, loc() encodes the target (jump) position
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // _loc == -1  unbound label
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  int _loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // References to instructions that jump to this unresolved label.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // These instructions need to be patched when the label is bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // using the platform-specific patchInstruction() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // To avoid having to allocate from the C-heap each time, we provide
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // a local cache and use the overflow only if we exceed the local cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  int _patches[PatchCacheSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int _patch_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  GrowableArray<int>* _patch_overflow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  Label(const Label&) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
   * After binding, be sure 'patch_instructions' is called later to link
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void bind_loc(int loc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    assert(loc >= 0, "illegal locator");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    assert(_loc == -1, "already bound");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    _loc = loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void bind_loc(int pos, int sect);  // = bind_loc(locator(pos, sect))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Iterates over all unresolved instructions for printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void print_instructions(MacroAssembler* masm) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
   * Returns the position of the the Label in the code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
   * The position is a 'locator', which encodes both offset and section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  int loc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    assert(_loc >= 0, "unbound label");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    return _loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int loc_pos() const;   // == locator_pos(loc())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int loc_sect() const;  // == locator_sect(loc())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  bool is_bound() const    { return _loc >=  0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool is_unbound() const  { return _loc == -1 && _patch_index > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  bool is_unused() const   { return _loc == -1 && _patch_index == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
   * Adds a reference to an unresolved displacement instruction to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
   * this unbound label
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
   * @param cb         the code buffer being patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
   * @param branch_loc the locator of the branch instruction in the code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void add_patch_at(CodeBuffer* cb, int branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
   * Iterate over the list of patches, resolving the instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
   * Call patch_instruction on each 'branch_loc' value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  void patch_instructions(MacroAssembler* masm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  void init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _loc = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    _patch_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _patch_overflow = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  Label() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   143
// A union type for code which has to assemble both constant and
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   144
// non-constant operands, when the distinction cannot be made
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   145
// statically.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   146
class RegisterConstant VALUE_OBJ_CLASS_SPEC {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   147
 private:
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   148
  Register _r;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   149
  intptr_t _c;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   150
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   151
 public:
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   152
  RegisterConstant(): _r(noreg), _c(0) {}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   153
  RegisterConstant(Register r): _r(r), _c(0) {}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   154
  RegisterConstant(intptr_t c): _r(noreg), _c(c) {}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   155
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   156
  Register as_register() const { assert(is_register(),""); return _r; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   157
  intptr_t as_constant() const { assert(is_constant(),""); return _c; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   158
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   159
  Register register_or_noreg() const { return _r; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   160
  intptr_t constant_or_zero() const  { return _c; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   161
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   162
  bool is_register() const { return _r != noreg; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   163
  bool is_constant() const { return _r == noreg; }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   164
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// The Abstract Assembler: Pure assembler doing NO optimizations on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// instruction level; i.e., what you write is what you get.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// The Assembler is generating code into a CodeBuffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
class AbstractAssembler : public ResourceObj  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  friend class Label;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  CodeSection* _code_section;          // section within the code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  address      _code_begin;            // first byte of code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  address      _code_limit;            // first byte after code buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  address      _code_pos;              // current code generation position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  OopRecorder* _oop_recorder;          // support for relocInfo::oop_type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // Code emission & accessing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  address addr_at(int pos) const       { return _code_begin + pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // This routine is called with a label is used for an address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Labels and displacements truck in offsets, but target must return a PC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  address target(Label& L);            // return _code_section->target(L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  bool is8bit(int x) const             { return -0x80 <= x && x < 0x80; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  bool isByte(int x) const             { return 0 <= x && x < 0x100; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  bool isShiftCount(int x) const       { return 0 <= x && x < 32; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void emit_byte(int x);  // emit a single byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  void emit_word(int x);  // emit a 16-bit word (not a wordSize word!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void emit_long(jint x); // emit a 32-bit word (not a longSize word!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void emit_address(address x); // emit an address (not a longSize word!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Instruction boundaries (required when emitting relocatable values).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  class InstructionMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
   private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    AbstractAssembler* _assm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    InstructionMark(AbstractAssembler* assm) : _assm(assm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      assert(assm->inst_mark() == NULL, "overlapping instructions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      _assm->set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    ~InstructionMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      _assm->clear_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  friend class InstructionMark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Make it return true on platforms which need to verify
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // instruction boundaries for some operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  inline static bool pd_check_instruction_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Label functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void print(Label& L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // Creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  AbstractAssembler(CodeBuffer* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // save end pointer back to code buf.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // ensure buf contains all code (call this before using/copying the code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  CodeBuffer*   code() const;          // _code_section->outer()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  CodeSection*  code_section() const   { return _code_section; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  int           sect() const;          // return _code_section->index()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  address       pc() const             { return _code_pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  int           offset() const         { return _code_pos - _code_begin; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  int           locator() const;       // CodeBuffer::locator(offset(), sect())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  OopRecorder*  oop_recorder() const   { return _oop_recorder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void      set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  address  inst_mark() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  void set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void clear_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // Constants in code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void a_byte(int x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  void a_long(jint x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void relocate(RelocationHolder const& rspec, int format = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void relocate(   relocInfo::relocType rtype, int format = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    if (rtype != relocInfo::none)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      relocate(Relocation::spec_simple(rtype), format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  static int code_fill_byte();         // used to pad out odd-sized code buffers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // Associate a comment with the current offset.  It will be printed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // along with the disassembly when printing nmethods.  Currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // only supported in the instruction section of the code buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  void block_comment(const char* comment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Label functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  void bind(Label& L); // binds an unbound label L to the current code position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // Move to a different section in the same code buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void set_code_section(CodeSection* cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Inform assembler when generating stub code and relocation info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  address    start_a_stub(int required_space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  void       end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // Ditto for constants.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  address    start_a_const(int required_space, int required_align = sizeof(double));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void       end_a_const();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // fp constants support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  address double_constant(jdouble c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    address ptr = start_a_const(sizeof(c), sizeof(c));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    if (ptr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      *(jdouble*)ptr = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      _code_pos = ptr + sizeof(c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      end_a_const();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    return ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  address float_constant(jfloat c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    address ptr = start_a_const(sizeof(c), sizeof(c));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    if (ptr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      *(jfloat*)ptr = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      _code_pos = ptr + sizeof(c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      end_a_const();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    return ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  address address_constant(address c, RelocationHolder const& rspec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    address ptr = start_a_const(sizeof(c), sizeof(c));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    if (ptr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
      relocate(rspec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      *(address*)ptr = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      _code_pos = ptr + sizeof(c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      end_a_const();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    return ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  inline address address_constant(Label& L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  inline address address_table_constant(GrowableArray<Label*> label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   305
  // Bootstrapping aid to cope with delayed determination of constants.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   306
  // Returns a static address which will eventually contain the constant.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   307
  // The value zero (NULL) stands instead of a constant which is still uncomputed.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   308
  // Thus, the eventual value of the constant must not be zero.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   309
  // This is fine, since this is designed for embedding object field
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   310
  // offsets in code which must be generated before the object class is loaded.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   311
  // Field offsets are never zero, since an object's header (mark word)
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   312
  // is located at offset zero.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   313
  RegisterConstant delayed_value(int(*value_fn)(), Register tmp, int offset = 0) {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   314
    return delayed_value(delayed_value_addr(value_fn), tmp, offset);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   315
  }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   316
  RegisterConstant delayed_value(address(*value_fn)(), Register tmp, int offset = 0) {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   317
    return delayed_value(delayed_value_addr(value_fn), tmp, offset);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   318
  }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   319
  virtual RegisterConstant delayed_value(intptr_t* delayed_value_addr, Register tmp, int offset) = 0;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   320
  // Last overloading is platform-dependent; look in assembler_<arch>.cpp.
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   321
  static intptr_t* delayed_value_addr(int(*constant_fn)());
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   322
  static intptr_t* delayed_value_addr(address(*constant_fn)());
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   323
  static void update_delayed_values();
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   324
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // Bang stack to trigger StackOverflowError at a safe location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // implementation delegates to machine-specific bang_stack_with_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  void generate_stack_overflow_check( int frame_size_in_bytes );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  virtual void bang_stack_with_offset(int offset) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
   * A platform-dependent method to patch a jump instruction that refers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
   * to this label.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
   * @param branch the location of the instruction to patch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
   * @param masm the assembler which generated the branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  void pd_patch_instruction(address branch, address target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
   * Platform-dependent method of printing an instruction that needs to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
   * patched.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
   *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
   * @param branch the instruction to be patched in the buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static void pd_print_patched_instruction(address branch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
#include "incls/_assembler_pd.hpp.incl"