equal
deleted
inserted
replaced
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 |