Home | History | Annotate | Download | only in x64

Lines Matching refs:imm16

1916 void Assembler::ret(int imm16) {
1918 ASSERT(is_uint16(imm16));
1919 if (imm16 == 0) {
1923 emit(imm16 & 0xFF);
1924 emit((imm16 >> 8) & 0xFF);