Searched defs:jump (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DicBuffer_sparc.cpp71 NativeJump* jump = nativeJump_at(move->next_instruction_address()); local
72 return jump->jump_destination();
78 NativeJump* jump = nativeJump_at(move->next_instruction_address()); local
H A DnativeInst_sparc.hpp853 NativeJump* jump = (NativeJump*)address; local
855 jump->verify();
857 return jump;
866 // Insertion of native jump instruction
868 // MT-safe insertion of native jump at verified method entry
902 NativeGeneralJump* jump = (NativeGeneralJump*)(address); local
904 jump->verify();
906 return jump;
909 // Insertion of native general jump instruction
H A Dassembler_sparc.cpp723 void MacroAssembler::jump(const AddressLiteral& addrlit, Register temp, int offset, const char* file, int line) { function in class:MacroAssembler
/openjdk7/hotspot/src/cpu/x86/vm/
H A DicBuffer_x86.cpp57 masm->jump(ExternalAddress(entry_point));
63 NativeJump* jump = nativeJump_at(move->next_instruction_address()); local
64 return jump->jump_destination();
71 // Verifies the jump
72 NativeJump* jump = nativeJump_at(move->next_instruction_address()); local
H A DnativeInst_x86.hpp378 // jump rel32off
395 // 64bit can't produce this so it used jump to self.
396 // Now 32bit and 64bit use jump to self as the unresolved address
399 // return -1 if jump to self
407 val = -5; // jump to self
423 // Insertion of native jump instruction
425 // MT-safe insertion of native jump at verified method entry
431 NativeJump* jump = (NativeJump*)(address - NativeJump::instruction_offset); local
433 jump->verify();
435 return jump;
466 NativeGeneralJump* jump = (NativeGeneralJump*)(address); local
[all...]
H A Dassembler_x86.cpp426 // If "which" is call32_operand, selects the displacement of a call or jump.
1459 // Note: could eliminate cond. jumps to this jump if condition
1519 // the forward jump will not run beyond 256 bytes, use jmpb to
1799 // gcc will tail jump and try and reverse the parameters completely
1801 // that doesn't need to swap the args at the tail jump the bug is
5778 // 32bit can do a case table jump in one instruction but we no longer allow the base
5780 void MacroAssembler::jump(ArrayAddress entry) { function in class:MacroAssembler
6405 // 32bit can do a case table jump in one instruction but we no longer allow the base
6407 void MacroAssembler::jump(ArrayAddress entry) { function in class:MacroAssembler
7078 // This used to conditionally jump t
7895 void MacroAssembler::jump(AddressLiteral dst) { function in class:MacroAssembler
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DPermuteArgsTest.java140 static int jump(int i, int min, int max) { method in class:PermuteArgsTest
142 // jump faster
175 arity = jump(arity, arity0*2, MAX_ARITY);
238 omit = jump(omit, (start == 0 && j == 0 ? MARGIN : 0), maxOmit);
240 start = jump(start, (j == 0 ? MARGIN : 0), maxStart);
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx.h87 int row, col, jump; // dithering indexes member in struct:ImageRect
126 void initRect(ImageRect * pRect, int x, int y, int width, int height, int jump,
H A Dsplashscreen_gif.c235 int jump = interlacedJumps[pass]; local
238 int numPassLines = (desc->Height + jump - ofs - 1) / jump;
240 int numLines = (ch + jump - ofs - 1) / jump;
247 numLines , jump, stride, pBitmapBits, &splash->imageFormat);
H A Dsplashscreen_gfx_impl.c203 initRect(ImageRect * pRect, int x, int y, int width, int height, int jump, argument
212 pRect->stride = stride * jump;
217 pRect->jump = jump;
264 row += pDstRect->jump;
282 row += pDstRect->jump;
/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.cpp308 // In both of these cases the only thing being modifed is the jump/call target and these
528 NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); local
531 assert(jump->jump_destination() == (address)-1 || jump->jump_destination() == entry, "b) MT-unsafe modification of inline cache");
535 jump->set_jump_destination(entry);
537 // Update jump to call
591 NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); local
593 jump->set_jump_destination((address)-1);
670 NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); local
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java256 turtle.jump();
261 turtle.jump();
367 public void jump() { method in class:CLSTurtle
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp778 // the patch site is rewritten to jump to being_init, instead of
933 NativeGeneralJump* jump = nativeGeneralJump_at(caller_frame.pc()); variable
934 address instr_pc = jump->jump_destination();
937 // the jump has not been patched yet
938 // The jump destination is slow case and therefore not part of the stubs
990 NativeGeneralJump* jump = nativeGeneralJump_at(instr_pc); variable
991 if (jump->jump_destination() == being_initialized_entry) {
H A Dc1_LIR.hpp2094 // jump is an unconditional branch
2095 void jump(BlockBegin* block) { function in class:LIR_List
2098 void jump(CodeStub* stub) { function in class:LIR_List
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c1109 int jump = (((signed char)(code[offset+1])) << 8) + code[offset+2]; local
1110 int target = offset + jump;
1112 CCerror(context, "Illegal target of jump or branch");
1123 int jump = (((signed char)(code[offset+1])) << 24) + local
1126 int target = offset + jump;
1128 CCerror(context, "Illegal target of jump or branch");

Completed in 348 milliseconds