comparison src/share/vm/c1/c1_LinearScan.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 f02a8bbe6ed4
children 7223744c2784
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
1 /* 1 /*
2 * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2005, 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.
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 24
25 #ifndef SHARE_VM_C1_C1_LINEARSCAN_HPP
26 #define SHARE_VM_C1_C1_LINEARSCAN_HPP
27
28 #include "c1/c1_FpuStackSim.hpp"
29 #include "c1/c1_FrameMap.hpp"
30 #include "c1/c1_IR.hpp"
31 #include "c1/c1_Instruction.hpp"
32 #include "c1/c1_LIR.hpp"
33 #include "c1/c1_LIRGenerator.hpp"
34
25 class DebugInfoCache; 35 class DebugInfoCache;
26 class FpuStackAllocator; 36 class FpuStackAllocator;
27 class IRScopeDebugInfo; 37 class IRScopeDebugInfo;
28 class Interval; 38 class Interval;
29 class IntervalWalker; 39 class IntervalWalker;
953 963
954 #endif // ifndef PRODUCT 964 #endif // ifndef PRODUCT
955 965
956 966
957 // Pick up platform-dependent implementation details 967 // Pick up platform-dependent implementation details
958 # include "incls/_c1_LinearScan_pd.hpp.incl" 968 #ifdef TARGET_ARCH_x86
969 # include "c1_LinearScan_x86.hpp"
970 #endif
971 #ifdef TARGET_ARCH_sparc
972 # include "c1_LinearScan_sparc.hpp"
973 #endif
974
975
976 #endif // SHARE_VM_C1_C1_LINEARSCAN_HPP