src/cpu/sparc/vm/vm_version_sparc.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,35 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef CPU_SPARC_VM_VM_VERSION_SPARC_HPP + #define CPU_SPARC_VM_VM_VERSION_SPARC_HPP + + #include "runtime/globals_extension.hpp" + #include "runtime/vm_version.hpp" + class VM_Version: public Abstract_VM_Version { protected: enum Feature_Flag { v8_instructions = 0, hardware_mul32 = 1,
*** 142,146 **** --- 148,154 ---- static uint page_size_count() { return is_sun4v() ? 4 : 2; } // Calculates the number of parallel threads static unsigned int calc_parallel_worker_threads(); }; + + #endif // CPU_SPARC_VM_VM_VERSION_SPARC_HPP