comparison src/share/vm/c1x/c1x_CodeInstaller.cpp @ 2045:9c96c873c42b

Fix includes to match new hotspot mechanism.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:45:09 +0100
parents 00bc9eaf0e24
children cf75612bdaa5
comparison
equal deleted inserted replaced
2044:06f017f7daa7 2045:9c96c873c42b
20 * CA 95054 USA or visit www.sun.com if you need additional information or 20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions. 21 * have any questions.
22 * 22 *
23 */ 23 */
24 24
25 # include "incls/_precompiled.incl" 25 #include "precompiled.hpp"
26 # include "incls/_c1x_CodeInstaller.cpp.incl" 26 #include "c1x/c1x_Compiler.hpp"
27 #include "c1x/c1x_CodeInstaller.hpp"
28 #include "c1x/c1x_TargetMethod.hpp"
29 #include "c1x/c1x_VmIds.hpp"
30 #include "c1/c1_Runtime1.hpp"
31 #include "vmreg_x86.inline.hpp"
27 32
28 33
29 // TODO this should be handled in a more robust way - not hard coded... 34 // TODO this should be handled in a more robust way - not hard coded...
30 Register CPU_REGS[] = { rax, rcx, rdx, rbx, rsp, rbp, rsi, rdi, r8, r9, r10, r11, r12, r13, r14, r15 }; 35 Register CPU_REGS[] = { rax, rcx, rdx, rbx, rsp, rbp, rsi, rdi, r8, r9, r10, r11, r12, r13, r14, r15 };
31 bool OOP_ALLOWED[] = {true, true, true, true, false, false, true, true, true, true, false, true, true, true, true, true}; 36 bool OOP_ALLOWED[] = {true, true, true, true, false, false, true, true, true, true, false, true, true, true, true, true};