< prev index next >

src/hotspot/cpu/x86/assembler_x86.cpp

Print this page
rev 50900 : [mq]: cleanup-asm.patch

@@ -2021,20 +2021,10 @@
     emit_int8(0x70 | cc);
     emit_int8(0);
   }
 }
 
-void Assembler::jccb_if_possible(Condition cc, Label& L) {
-
-#ifdef ASSERT
-  if (UseShenandoahGC) {
-    jcc(cc, L);
-  } else
-#endif
-    jccb(cc, L);
-}
-
 void Assembler::jmp(Address adr) {
   InstructionMark im(this);
   prefix(adr);
   emit_int8((unsigned char)0xFF);
   emit_operand(rsp, adr);

@@ -2104,20 +2094,10 @@
     emit_int8((unsigned char)0xEB);
     emit_int8(0);
   }
 }
 
-void Assembler::jmpb_if_possible(Label& L) {
-
-#ifdef ASSERT
-  if (UseShenandoahGC) {
-    jmp(L);
-  } else
-#endif
-    jmpb(L);
-}
-
 void Assembler::ldmxcsr( Address src) {
   if (UseAVX > 0 ) {
     InstructionMark im(this);
     InstructionAttr attributes(AVX_128bit, /* vex_w */ false, /* legacy_mode */ true, /* no_mask_reg */ true, /* uses_vl */ false);
     vex_prefix(src, 0, 0, VEX_SIMD_NONE, VEX_OPCODE_0F, &attributes);
< prev index next >