Home
last modified time | relevance | path

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

/external/v8/src/x64/
Dassembler-x64.cc221 int32_t disp_value = 0; in Operand() local
224 disp_value = *bit_cast<const int32_t*>(&operand.buf_[disp_offset]); in Operand()
227 disp_value = static_cast<signed char>(operand.buf_[disp_offset]); in Operand()
231 DCHECK(offset >= 0 ? disp_value + offset > disp_value in Operand()
232 : disp_value + offset < disp_value); // No overflow. in Operand()
233 disp_value += offset; in Operand()
235 if (!is_int8(disp_value) || is_baseless) { in Operand()
239 Memory::int32_at(&buf_[disp_offset]) = disp_value; in Operand()
240 } else if (disp_value != 0 || (base_reg == 0x05)) { in Operand()
244 buf_[disp_offset] = static_cast<byte>(disp_value); in Operand()