Home | History | Annotate | Download | only in x64

Lines Matching refs:imm16

1626 void Assembler::ret(int imm16) {
1628 ASSERT(is_uint16(imm16));
1629 if (imm16 == 0) {
1633 emit(imm16 & 0xFF);
1634 emit((imm16 >> 8) & 0xFF);