--- old/src/cpu/x86/vm/sharedRuntime_x86_32.cpp 2016-02-18 15:25:02.621909560 -0800 +++ new/src/cpu/x86/vm/sharedRuntime_x86_32.cpp 2016-02-18 15:25:02.492900527 -0800 @@ -339,6 +339,14 @@ return size > 16; } +size_t SharedRuntime::trampoline_size() { + return 16; +} + +void SharedRuntime::generate_trampoline(MacroAssembler *masm, address destination) { + __ jump(RuntimeAddress(destination)); +} + // The java_calling_convention describes stack locations as ideal slots on // a frame with no abi restrictions. Since we must observe abi restrictions // (like the placement of the register window) the slots must be biased by