src/hotspot/cpu/s390/assembler_s390.inline.hpp
changeset 50423 82599d53dd6d
parent 48331 a8e39cc7b88f
child 53244 9807daeb47c4
equal deleted inserted replaced
50422:04b3e0cc53bb 50423:82599d53dd6d
  1309 inline void Assembler::z_clij(Register r1, int64_t i2, branch_condition m3, Label& L)   { z_clij( r1, i2, m3, target(L)); }
  1309 inline void Assembler::z_clij(Register r1, int64_t i2, branch_condition m3, Label& L)   { z_clij( r1, i2, m3, target(L)); }
  1310 inline void Assembler::z_clgij(Register r1, int64_t i2, branch_condition m3, Label& L)  { z_clgij(r1, i2, m3, target(L)); }
  1310 inline void Assembler::z_clgij(Register r1, int64_t i2, branch_condition m3, Label& L)  { z_clgij(r1, i2, m3, target(L)); }
  1311 
  1311 
  1312 // branch never (nop), branch always
  1312 // branch never (nop), branch always
  1313 inline void Assembler::z_nop() { z_bcr(bcondNop, Z_R0); }
  1313 inline void Assembler::z_nop() { z_bcr(bcondNop, Z_R0); }
       
  1314 inline void Assembler::nop() { z_nop(); }
  1314 inline void Assembler::z_br(Register r2) { assert(r2 != Z_R0, "nop if target is Z_R0, use z_nop() instead"); z_bcr(bcondAlways, r2 ); }
  1315 inline void Assembler::z_br(Register r2) { assert(r2 != Z_R0, "nop if target is Z_R0, use z_nop() instead"); z_bcr(bcondAlways, r2 ); }
  1315 
  1316 
  1316 inline void Assembler::z_exrl(Register r1, Label& L) { z_exrl(r1, target(L)); }  // z10
  1317 inline void Assembler::z_exrl(Register r1, Label& L) { z_exrl(r1, target(L)); }  // z10
  1317 inline void Assembler::z_larl(Register r1, Label& L) { z_larl(r1, target(L)); }
  1318 inline void Assembler::z_larl(Register r1, Label& L) { z_larl(r1, target(L)); }
  1318 inline void Assembler::z_bru(   Label& L) { z_brc(bcondAlways, target(L)); }
  1319 inline void Assembler::z_bru(   Label& L) { z_brc(bcondAlways, target(L)); }