Searched defs:NativeJump (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DnativeInst_zero.hpp40 // - - NativeJump
150 class NativeJump : public NativeInstruction { class in inherits:NativeInstruction
173 inline NativeJump* nativeJump_at(address address) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp41 // - - NativeJump
380 class NativeJump: public NativeInstruction { class in inherits:NativeInstruction
416 inline friend NativeJump* nativeJump_at(address address);
430 inline NativeJump* nativeJump_at(address address) {
431 NativeJump* jump = (NativeJump*)(address - NativeJump::instruction_offset);
537 inline bool NativeInstruction::is_jump() { return ubyte_at(0) == NativeJump::instruction_code ||
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.hpp42 // - - NativeJump
445 // That is, it is essentially the same as a NativeJump.
810 class NativeJump;
811 inline NativeJump* nativeJump_at(address address);
812 class NativeJump: public NativeInstruction { class in inherits:NativeInstruction
852 friend inline NativeJump* nativeJump_at(address address) {
853 NativeJump* jump = (NativeJump*)address;

Completed in 1975 milliseconds