Home
last modified time | relevance | path

Searched refs:hi_word (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/ppc/
Dassembler-ppc-inl.h569 int hi_word = static_cast<int>(offset >> 16); in PatchConstantPoolAccessInstruction() local
571 if (lo_word & 0x8000) hi_word++; in PatchConstantPoolAccessInstruction()
576 instr1 |= (hi_word & kImm16Mask); in PatchConstantPoolAccessInstruction()
672 int hi_word = itarget >> 16; in set_target_address_at()
674 instr1 |= hi_word; in set_target_address_at()
Dassembler-ppc.cc1741 int hi_word = static_cast<int>(hi_32 >> 16); in bitwise_mov() local
1743 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov()
1746 hi_word = static_cast<int>(((lo_32 >> 16) & 0xffff)); in bitwise_mov()
1748 oris(dst, dst, Operand(hi_word)); in bitwise_mov()
1751 int hi_word = static_cast<int>(value >> 16); in bitwise_mov() local
1753 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov()
1761 int hi_word = static_cast<int>(value >> 16); in bitwise_mov32() local
1763 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov32()
1774 int hi_word = static_cast<int>(value >> 16); in bitwise_add32() local
1776 if (lo_word & 0x8000) hi_word++; in bitwise_add32()
[all …]
Dmacro-assembler-ppc.h1302 inline void TestIfInt32(Register hi_word, Register lo_word, Register scratch,
1306 cmp(scratch, hi_word, cr);
/external/v8/src/s390/
Dmacro-assembler-s390.h1615 inline void TestIfInt32(Register hi_word, Register lo_word, in TestIfInt32() argument
1619 CmpP(scratch, hi_word); in TestIfInt32()