Home
last modified time | relevance | path

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

/external/v8/src/codegen/x64/
Dassembler-x64.cc147 int32_t disp_value = 0; in Operand() local
150 disp_value = ReadUnalignedValue<int32_t>( in Operand()
154 disp_value = static_cast<signed char>(operand.data().buf[disp_offset]); in Operand()
158 DCHECK(offset >= 0 ? disp_value + offset > disp_value in Operand()
159 : disp_value + offset < disp_value); // No overflow. in Operand()
160 disp_value += offset; in Operand()
162 if (!is_int8(disp_value) || is_baseless) { in Operand()
167 disp_value); in Operand()
168 } else if (disp_value != 0 || (base_reg == 0x05)) { in Operand()
172 data_.buf[disp_offset] = static_cast<byte>(disp_value); in Operand()