src/share/vm/asm/assembler.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,51 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_ASM_ASSEMBLER_HPP + #define SHARE_VM_ASM_ASSEMBLER_HPP + + #include "code/oopRecorder.hpp" + #include "code/relocInfo.hpp" + #include "memory/allocation.hpp" + #include "utilities/debug.hpp" + #include "utilities/growableArray.hpp" + #include "utilities/top.hpp" + #ifdef TARGET_ARCH_x86 + # include "register_x86.hpp" + # include "vm_version_x86.hpp" + #endif + #ifdef TARGET_ARCH_sparc + # include "register_sparc.hpp" + # include "vm_version_sparc.hpp" + #endif + #ifdef TARGET_ARCH_zero + # include "register_zero.hpp" + # include "vm_version_zero.hpp" + #endif + // This file contains platform-independent assembler declarations. class CodeBuffer; class MacroAssembler; class AbstractAssembler;
*** 346,351 **** */ static void pd_print_patched_instruction(address branch); #endif // PRODUCT }; ! #include "incls/_assembler_pd.hpp.incl" --- 368,384 ---- */ static void pd_print_patched_instruction(address branch); #endif // PRODUCT }; ! #ifdef TARGET_ARCH_x86 ! # include "assembler_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "assembler_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "assembler_zero.hpp" ! #endif ! ! ! #endif // SHARE_VM_ASM_ASSEMBLER_HPP