< prev index next >

src/share/vm/runtime/stubRoutines.hpp

Print this page

        

*** 82,117 **** 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 ! #ifdef TARGET_ARCH_MODEL_aarch64 # include "stubRoutines_aarch64.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; --- 82,107 ---- 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" ! #elif defined TARGET_ARCH_MODEL_aarch64 # include "stubRoutines_aarch64.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 >