Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/x64/
Dassembler-x64.cc161 int32_t disp_value = 0; in Operand() local
164 disp_value = *BitCast<const int32_t*>(&operand.buf_[disp_offset]); in Operand()
167 disp_value = static_cast<signed char>(operand.buf_[disp_offset]); in Operand()
171 ASSERT(offset >= 0 ? disp_value + offset > disp_value in Operand()
172 : disp_value + offset < disp_value); // No overflow. in Operand()
173 disp_value += offset; in Operand()
175 if (!is_int8(disp_value) || is_baseless) { in Operand()
179 Memory::int32_at(&buf_[disp_offset]) = disp_value; in Operand()
180 } else if (disp_value != 0 || (base_reg == 0x05)) { in Operand()
184 buf_[disp_offset] = static_cast<byte>(disp_value); in Operand()