< prev index next >

src/cpu/x86/vm/assembler_x86.hpp

Print this page
rev 12152 : [mq]: verification.patch

*** 1264,1273 **** --- 1264,1274 ---- // Conditional jump to a 8-bit offset to L. // WARNING: be very careful using this for forward jumps. If the label is // not bound within an 8-bit offset of this instruction, a run-time error // will occur. void jccb(Condition cc, Label& L); + void jccb_if_possible(Condition cc, Label& L); void jmp(Address entry); // pc <- entry // Label operations & relative jumps (PPUM Appendix D) void jmp(Label& L, bool maybe_short = true); // unconditional jump to L
*** 1277,1286 **** --- 1278,1288 ---- // Unconditional 8-bit offset jump to L. // WARNING: be very careful using this for forward jumps. If the label is // not bound within an 8-bit offset of this instruction, a run-time error // will occur. void jmpb(Label& L); + void jmpb_if_possible(Label& L); void ldmxcsr( Address src ); void leal(Register dst, Address src);
< prev index next >