hotspot/src/os/windows/vm/chaitin_windows.cpp
author ysr
Mon, 09 Feb 2009 12:26:05 -0800
changeset 2012 041fbc6030dd
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function Summary: replaced localtime() with localtime_r() on Solaris and Linux. Reviewed-by: apetrusenko, dholmes, jmasa
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 1999-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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_chaitin_windows.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Disallow the use of the frame pointer (EBP) for implicit null exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// on win95/98.  If we do not do this, the OS gets confused and gives a stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
void PhaseRegAlloc::pd_preallocate_hook() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  if (ImplicitNullChecks && !os::win32::is_nt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    for (uint block_num=1; block_num<_cfg._num_blocks; block_num++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
      Block *block = _cfg._blocks[block_num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
      Node *block_end = block->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
      if (block_end->is_MachNullCheck() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
          block_end->as_Mach()->ideal_Opcode() != Op_Con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
        // The last instruction in the block is an implicit null check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
        // Fix its input so that it does not load into the frame pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
        _matcher.pd_implicit_null_fixup(block_end->in(1)->as_Mach(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                                        block_end->as_MachNullCheck()->_vidx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // WIN64==itanium on XP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// Verify that no implicit null check uses the frame pointer (EBP) as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// its register on win95/98.  Use of the frame pointer in an implicit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// null check confuses the OS, yielding a stack error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void PhaseRegAlloc::pd_postallocate_verify_hook() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  if (ImplicitNullChecks && !os::win32::is_nt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    for (uint block_num=1; block_num<_cfg._num_blocks; block_num++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
      Block *block = _cfg._blocks[block_num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      Node *block_end = block->_nodes[block->_nodes.size()-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      if (block_end->is_MachNullCheck() && block_end->as_Mach()->ideal_Opcode() != Op_Con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
        // The last instruction in the block is an implicit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
        // null check.  Verify that this instruction does not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
        // use the frame pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
        int reg = get_reg_first(block_end->in(1)->in(block_end->as_MachNullCheck()->_vidx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
        assert(reg != EBP_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
               "implicit null check using frame pointer on win95/98");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // WIN64==itanium on XP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif