< prev index next >

src/share/vm/runtime/stubRoutines.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2014, 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, 2015, 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.
*** 97,129 **** max_size_of_parameters = 256 // max. parameter size supported by megamorphic lookups }; // Dependencies friend class StubGenerator; ! #ifdef TARGET_ARCH_MODEL_x86_32 # include "stubRoutines_x86_32.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_x86_64 # include "stubRoutines_x86_64.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_sparc # include "stubRoutines_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_zero # include "stubRoutines_zero.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_arm ! # include "stubRoutines_arm.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_ppc_32 ! # include "stubRoutines_ppc_32.hpp" ! #endif ! #ifdef TARGET_ARCH_MODEL_ppc_64 # include "stubRoutines_ppc_64.hpp" #endif - static jint _verify_oop_count; static address _verify_oop_subroutine_entry; static address _call_stub_return_address; // the return PC, when returning to a call stub static address _call_stub_entry; --- 97,120 ---- max_size_of_parameters = 256 // max. parameter size supported by megamorphic lookups }; // Dependencies friend class StubGenerator; ! #if defined STUBROUTINES_MD_HPP ! # include STUBROUTINES_MD_HPP ! #elif defined TARGET_ARCH_MODEL_x86_32 # include "stubRoutines_x86_32.hpp" ! #elif defined TARGET_ARCH_MODEL_x86_64 # include "stubRoutines_x86_64.hpp" ! #elif defined TARGET_ARCH_MODEL_sparc # include "stubRoutines_sparc.hpp" ! #elif defined TARGET_ARCH_MODEL_zero # include "stubRoutines_zero.hpp" ! #elif defined TARGET_ARCH_MODEL_ppc_64 # include "stubRoutines_ppc_64.hpp" #endif static jint _verify_oop_count; static address _verify_oop_subroutine_entry; static address _call_stub_return_address; // the return PC, when returning to a call stub static address _call_stub_entry;
< prev index next >