Searched refs:NativeGeneralJump (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DnativeInst_zero.hpp177 class NativeGeneralJump : public NativeInstruction { class in inherits:NativeInstruction
192 inline NativeGeneralJump* nativeGeneralJump_at(address address) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.cpp531 void NativeGeneralJump::verify() {
537 void NativeGeneralJump::insert_unconditional(address code_pos, address entry) {
553 void NativeGeneralJump::replace_mt_safe(address instr_addr, address code_buffer) {
555 NativeGeneralJump* n_jump = nativeGeneralJump_at (instr_addr); // checking that it is a jump
592 address NativeGeneralJump::jump_destination() const {
H A DnativeInst_x86.hpp43 // - - NativeGeneralJump
439 class NativeGeneralJump: public NativeInstruction { class in inherits:NativeInstruction
456 inline friend NativeGeneralJump* nativeGeneralJump_at(address address);
465 inline NativeGeneralJump* nativeGeneralJump_at(address address) {
466 NativeGeneralJump* jump = (NativeGeneralJump*)(address);
H A Dc1_CodeStubs_x86.cpp259 int PatchingStub::_patch_info_offset = -NativeGeneralJump::instruction_size;
269 masm->align(round_to(NativeGeneralJump::instruction_size, wordSize));
358 NativeGeneralJump::insert_unconditional((address)_pc_start, entry);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp161 NativeGeneralJump* br = nativeGeneralJump_at(addr());
179 NativeGeneralJump* br = nativeGeneralJump_at(addr());
H A DnativeInst_sparc.hpp43 // - - NativeGeneralJump
878 class NativeGeneralJump;
879 inline NativeGeneralJump* nativeGeneralJump_at(address address);
880 class NativeGeneralJump: public NativeInstruction { class in inherits:NativeInstruction
901 friend inline NativeGeneralJump* nativeGeneralJump_at(address address) {
902 NativeGeneralJump* jump = (NativeGeneralJump*)(address);
H A DnativeInst_sparc.cpp975 void NativeGeneralJump::verify() {
981 void NativeGeneralJump::insert_unconditional(address code_pos, address entry) {
985 NativeGeneralJump* ni = (NativeGeneralJump*) nativeInstruction_at(code_pos);
997 void NativeGeneralJump::replace_mt_safe(address instr_addr, address code_buffer) {
1001 NativeGeneralJump* h_jump = nativeGeneralJump_at (instr_addr); // checking that it is a call
1002 assert(NativeGeneralJump::instruction_size == 8, "wrong instruction size; must be 8");
1015 // jmp patching_stub; nop (NativeGeneralJump)
H A Dc1_CodeStubs_sparc.cpp250 int PatchingStub::_patch_info_offset = -NativeGeneralJump::instruction_size;
336 NativeGeneralJump::insert_unconditional((address)_pc_start, entry);
H A Dassembler_sparc.hpp581 friend class NativeGeneralJump;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp933 NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc());
990 NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc);
1064 NativeGeneralJump::replace_mt_safe(instr_pc, copy_buff);
1094 NativeGeneralJump::insert_unconditional(instr_pc, being_initialized_entry);

Completed in 74 milliseconds