hotspot/src/share/vm/asm/assembler.cpp
author trims
Tue, 07 Oct 2008 11:01:35 -0700
changeset 1412 2bb3fe3e00ea
parent 1400 afd034bb8c2e
parent 1217 5eb97f366a6a
child 2131 98f9cef66a34
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
1217
5eb97f366a6a 6754988: Update copyright year
xdono
parents: 823
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  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
 *
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_assembler.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implementation of AbstractAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// The AbstractAssembler is generating code into a CodeBuffer. To make code generation faster,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// the assembler keeps a copy of the code buffers boundaries & modifies them when
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// emitting bytes rather than using the code buffers accessor functions all the time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The code buffer is updated via set_code_end(...) after emiting a whole instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
AbstractAssembler::AbstractAssembler(CodeBuffer* code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  if (code == NULL)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  CodeSection* cs = code->insts();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  cs->clear_mark();   // new assembler kills old mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _code_section = cs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _code_begin  = cs->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _code_limit  = cs->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _code_pos    = cs->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _oop_recorder= code->oop_recorder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  if (_code_begin == NULL)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    vm_exit_out_of_memory1(0, "CodeCache: no room for %s", code->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
void AbstractAssembler::set_code_section(CodeSection* cs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  assert(cs->outer() == code_section()->outer(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  assert(cs->is_allocated(), "need to pre-allocate this section");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  cs->clear_mark();  // new assembly into this section kills old mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _code_section = cs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _code_begin  = cs->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _code_limit  = cs->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _code_pos    = cs->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Inform CodeBuffer that incoming code and relocation will be for stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
address AbstractAssembler::start_a_stub(int required_space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  CodeBuffer*  cb = code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  CodeSection* cs = cb->stubs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  assert(_code_section == cb->insts(), "not in insts?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (cs->maybe_expand_to_ensure_remaining(required_space)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      && cb->blob() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  set_code_section(cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// Inform CodeBuffer that incoming code and relocation will be code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Should not be called if start_a_stub() returned NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
void AbstractAssembler::end_a_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert(_code_section == code()->stubs(), "not in stubs?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  set_code_section(code()->insts());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Inform CodeBuffer that incoming code and relocation will be for stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
address AbstractAssembler::start_a_const(int required_space, int required_align) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  CodeBuffer*  cb = code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  CodeSection* cs = cb->consts();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  assert(_code_section == cb->insts(), "not in insts?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  address end = cs->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int pad = -(intptr_t)end & (required_align-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    if (cb->blob() == NULL)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    end = cs->end();  // refresh pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (pad > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    while (--pad >= 0) { *end++ = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    cs->set_end(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  set_code_section(cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  return end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// Inform CodeBuffer that incoming code and relocation will be code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// Should not be called if start_a_const() returned NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void AbstractAssembler::end_a_const() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  assert(_code_section == code()->consts(), "not in consts?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  set_code_section(code()->insts());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void AbstractAssembler::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  sync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  ICache::invalidate_range(addr_at(0), offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void AbstractAssembler::a_byte(int x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  emit_byte(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
void AbstractAssembler::a_long(jint x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  emit_long(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// Labels refer to positions in the (to be) generated code.  There are bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// and unbound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// Bound labels refer to known positions in the already generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// offset() is the position the label refers to.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// Unbound labels refer to unknown positions in the code to be generated; it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// may contain a list of unresolved displacements that refer to it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void AbstractAssembler::print(Label& L) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  if (L.is_bound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    tty->print_cr("bound label to %d|%d", L.loc_pos(), L.loc_sect());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  } else if (L.is_unbound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    L.print_instructions((MacroAssembler*)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    tty->print_cr("label in inconsistent state (loc = %d)", L.loc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
void AbstractAssembler::bind(Label& L) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (L.is_bound()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // Assembler can bind a label more than once to the same place.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    guarantee(L.loc() == locator(), "attempt to redefine label");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  L.bind_loc(locator());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  L.patch_instructions((MacroAssembler*)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
void AbstractAssembler::generate_stack_overflow_check( int frame_size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (UseStackBanging) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // Each code entry causes one stack bang n pages down the stack where n
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // is configurable by StackBangPages.  The setting depends on the maximum
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // depth of VM call stack or native before going back into java code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // since only java code can raise a stack overflow exception using the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // stack banging mechanism.  The VM and native code does not detect stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // The code in JavaCalls::call() checks that there is at least n pages
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // available, so all entry code needs to do is bang once for the end of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // this shadow zone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // The entry code may need to bang additional pages if the framesize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // is greater than a page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    const int page_size = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    int bang_end = StackShadowPages*page_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // This is how far the previous frame's stack banging extended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    const int bang_end_safe = bang_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    if (frame_size_in_bytes > page_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      bang_end += frame_size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    int bang_offset = bang_end_safe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    while (bang_offset <= bang_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      // Need at least one stack bang at end of shadow zone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      bang_stack_with_offset(bang_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      bang_offset += page_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  } // end (UseStackBanging)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
void Label::add_patch_at(CodeBuffer* cb, int branch_loc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  assert(_loc == -1, "Label is unbound");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (_patch_index < PatchCacheSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    _patches[_patch_index] = branch_loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    if (_patch_overflow == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      _patch_overflow = cb->create_patch_overflow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    _patch_overflow->push(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  ++_patch_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void Label::patch_instructions(MacroAssembler* masm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(is_bound(), "Label is bound");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  CodeBuffer* cb = masm->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int target_sect = CodeBuffer::locator_sect(loc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  address target = cb->locator_address(loc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  while (_patch_index > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    --_patch_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    int branch_loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    if (_patch_index >= PatchCacheSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      branch_loc = _patch_overflow->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      branch_loc = _patches[_patch_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    int branch_sect = CodeBuffer::locator_sect(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    address branch = cb->locator_address(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    if (branch_sect == CodeBuffer::SECT_CONSTS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      // The thing to patch is a constant word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      *(address*)branch = target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    // Cross-section branches only work if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // intermediate section boundaries are frozen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    if (target_sect != branch_sect) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
      for (int n = MIN2(target_sect, branch_sect),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
               nlimit = (target_sect + branch_sect) - n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
           n < nlimit; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
        CodeSection* cs = cb->code_section(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
        assert(cs->is_frozen(), "cross-section branch needs stable offsets");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
#endif //ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    // Push the target offset into the branch instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    masm->pd_patch_instruction(branch, target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
void AbstractAssembler::block_comment(const char* comment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  if (sect() == CodeBuffer::SECT_INSTS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    code_section()->outer()->block_comment(offset(), comment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   249
bool MacroAssembler::needs_explicit_null_check(intptr_t offset) {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   250
  // Exception handler checks the nmethod's implicit null checks table
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   251
  // only when this method returns false.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   252
  if (UseCompressedOops) {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   253
    // The first page after heap_base is unmapped and
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   254
    // the 'offset' is equal to [heap_base + offset] for
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   255
    // narrow oop implicit null checks.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   256
    uintptr_t heap_base = (uintptr_t)Universe::heap_base();
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   257
    if ((uintptr_t)offset >= heap_base) {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   258
      // Normalize offset for the next check.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   259
      offset = (intptr_t)(pointer_delta((void*)offset, (void*)heap_base, 1));
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   260
    }
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   261
  }
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   262
  return offset < 0 || os::vm_page_size() <= offset;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   263
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
void Label::print_instructions(MacroAssembler* masm) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  CodeBuffer* cb = masm->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  for (int i = 0; i < _patch_index; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    int branch_loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    if (i >= PatchCacheSize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      branch_loc = _patch_overflow->at(i - PatchCacheSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      branch_loc = _patches[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    int branch_pos  = CodeBuffer::locator_pos(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    int branch_sect = CodeBuffer::locator_sect(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    address branch = cb->locator_address(branch_loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    tty->print_cr("unbound label");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    tty->print("@ %d|%d ", branch_pos, branch_sect);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    if (branch_sect == CodeBuffer::SECT_CONSTS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      tty->print_cr(PTR_FORMAT, *(address*)branch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    masm->pd_print_patched_instruction(branch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
#endif // ndef PRODUCT