Home | History | Annotate | Download | only in x64

Lines Matching refs:imm16

1763 void Assembler::ret(int imm16) {
1766 ASSERT(is_uint16(imm16));
1767 if (imm16 == 0) {
1771 emit(imm16 & 0xFF);
1772 emit((imm16 >> 8) & 0xFF);