Searched refs:SIGN_EXT_IMM16 (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 1633 im_val = SIGN_EXT_IMM16(im_val); in ExecuteGeneric() 1680 im_val = SIGN_EXT_IMM16(im_val); in ExecuteGeneric() 1720 uintptr_t im_val = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 1734 int32_t im_val = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 2244 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 2258 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 2273 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 3113 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 3127 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() 3141 int offset = SIGN_EXT_IMM16(instr->Bits(15, 0)); in ExecuteGeneric() [all …]
|
D | assembler-ppc-inl.h | 371 offset += SIGN_EXT_IMM16(instr_at(pc + kInstrSize) & kImm16Mask); in GetConstantPoolOffset() 374 offset = SIGN_EXT_IMM16((instr_at(pc) & kImm16Mask)); in GetConstantPoolOffset()
|
D | assembler-ppc.cc | 441 link = SIGN_EXT_IMM16((instr & kImm16Mask)); in target_at() 1406 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1416 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1426 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov32() 1440 addis(dst, src, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_add32() 1441 addic(dst, dst, Operand(SIGN_EXT_IMM16(lo_word))); in bitwise_add32()
|
D | disasm-ppc.cc | 316 int32_t value = SIGN_EXT_IMM16(instr->Bits(15, 0) & ~3); in FormatOption()
|
D | constants-ppc.h | 48 #define SIGN_EXT_IMM16(imm) ((static_cast<int>(imm) << 16) >> 16) macro
|
/external/v8/src/s390/ |
D | assembler-s390.cc | 432 int16_t imm16 = SIGN_EXT_IMM16((instr & kImm16Mask)); in target_at() 447 int16_t imm16 = SIGN_EXT_IMM16((instr & kImm16Mask)); in target_at()
|
D | disasm-s390.cc | 346 int32_t value = SIGN_EXT_IMM16(instr->Bits(15, 0) & ~3); in FormatDisplacement()
|
D | constants-s390.h | 49 #define SIGN_EXT_IMM16(imm) ((static_cast<int>(imm) << 16) >> 16) macro
|