annotate src/os/windows/vm/chaitin_windows.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "opto/chaitin.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "opto/machnode.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Disallow the use of the frame pointer (EBP) for implicit null exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // on win95/98. If we do not do this, the OS gets confused and gives a stack
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // error.
a61af66fc99e Initial load
duke
parents:
diff changeset
32 void PhaseRegAlloc::pd_preallocate_hook() {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #ifndef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if (ImplicitNullChecks && !os::win32::is_nt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 for (uint block_num=1; block_num<_cfg._num_blocks; block_num++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Block *block = _cfg._blocks[block_num];
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Node *block_end = block->end();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 if (block_end->is_MachNullCheck() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
40 block_end->as_Mach()->ideal_Opcode() != Op_Con) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // The last instruction in the block is an implicit null check.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Fix its input so that it does not load into the frame pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _matcher.pd_implicit_null_fixup(block_end->in(1)->as_Mach(),
a61af66fc99e Initial load
duke
parents:
diff changeset
44 block_end->as_MachNullCheck()->_vidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // WIN64==itanium on XP
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Verify that no implicit null check uses the frame pointer (EBP) as
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // its register on win95/98. Use of the frame pointer in an implicit
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // null check confuses the OS, yielding a stack error.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void PhaseRegAlloc::pd_postallocate_verify_hook() {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #ifndef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (ImplicitNullChecks && !os::win32::is_nt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 for (uint block_num=1; block_num<_cfg._num_blocks; block_num++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 Block *block = _cfg._blocks[block_num];
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Node *block_end = block->_nodes[block->_nodes.size()-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
64 if (block_end->is_MachNullCheck() && block_end->as_Mach()->ideal_Opcode() != Op_Con) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // The last instruction in the block is an implicit
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // null check. Verify that this instruction does not
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // use the frame pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 int reg = get_reg_first(block_end->in(1)->in(block_end->as_MachNullCheck()->_vidx));
a61af66fc99e Initial load
duke
parents:
diff changeset
69 assert(reg != EBP_num,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 "implicit null check using frame pointer on win95/98");
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // WIN64==itanium on XP
a61af66fc99e Initial load
duke
parents:
diff changeset
76 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #endif