src/hotspot/cpu/s390/assembler_s390.inline.hpp
changeset 54960 e46fe26d7f77
parent 53244 9807daeb47c4
equal deleted inserted replaced
54959:00425a850a2f 54960:e46fe26d7f77
  1342 inline void Assembler::z_brcl(branch_condition m, Label& L) { z_brcl(m, target(L)); }
  1342 inline void Assembler::z_brcl(branch_condition m, Label& L) { z_brcl(m, target(L)); }
  1343 
  1343 
  1344 
  1344 
  1345 // Instruction must start at passed address.
  1345 // Instruction must start at passed address.
  1346 // Extra check for illtraps with ID.
  1346 // Extra check for illtraps with ID.
  1347 inline int Assembler::instr_len(unsigned char *instr) {
  1347 inline unsigned int Assembler::instr_len(unsigned char *instr) {
  1348   switch ((*instr) >> 6) {
  1348   switch ((*instr) >> 6) {
  1349     case 0: return 2;
  1349     case 0: return 2;
  1350     case 1: // fallthru
  1350     case 1: // fallthru
  1351     case 2: return 4;
  1351     case 2: return 4;
  1352     case 3: return 6;
  1352     case 3: return 6;