comparison src/share/vm/runtime/registerMap.hpp @ 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 b92c45f2bc75
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
1 /* 1 /*
2 * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_RUNTIME_REGISTERMAP_HPP
26 #define SHARE_VM_RUNTIME_REGISTERMAP_HPP
27
28 #include "code/vmreg.hpp"
29 #include "utilities/globalDefinitions.hpp"
30 #ifdef TARGET_ARCH_x86
31 # include "register_x86.hpp"
32 #endif
33 #ifdef TARGET_ARCH_sparc
34 # include "register_sparc.hpp"
35 #endif
36 #ifdef TARGET_ARCH_zero
37 # include "register_zero.hpp"
38 #endif
24 39
25 class JavaThread; 40 class JavaThread;
26 41
27 // 42 //
28 // RegisterMap 43 // RegisterMap
112 127
113 void print_on(outputStream* st) const; 128 void print_on(outputStream* st) const;
114 void print() const; 129 void print() const;
115 130
116 // the following contains the definition of pd_xxx methods 131 // the following contains the definition of pd_xxx methods
117 # include "incls/_registerMap_pd.hpp.incl" 132 #ifdef TARGET_ARCH_x86
133 # include "registerMap_x86.hpp"
134 #endif
135 #ifdef TARGET_ARCH_sparc
136 # include "registerMap_sparc.hpp"
137 #endif
138 #ifdef TARGET_ARCH_zero
139 # include "registerMap_zero.hpp"
140 #endif
141
118 }; 142 };
143
144 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP