Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-array-writer.cc302 uint8_t operand_bytes[2]; in PatchJumpWith16BitOperand() local
307 WriteUnalignedUInt16(reinterpret_cast<Address>(operand_bytes), in PatchJumpWith16BitOperand()
317 WriteUnalignedUInt16(reinterpret_cast<Address>(operand_bytes), in PatchJumpWith16BitOperand()
322 bytecodes()->at(operand_location++) = operand_bytes[0]; in PatchJumpWith16BitOperand()
323 bytecodes()->at(operand_location) = operand_bytes[1]; in PatchJumpWith16BitOperand()
331 uint8_t operand_bytes[4]; in PatchJumpWith32BitOperand() local
332 WriteUnalignedUInt32(reinterpret_cast<Address>(operand_bytes), in PatchJumpWith32BitOperand()
339 bytecodes()->at(operand_location++) = operand_bytes[0]; in PatchJumpWith32BitOperand()
340 bytecodes()->at(operand_location++) = operand_bytes[1]; in PatchJumpWith32BitOperand()
341 bytecodes()->at(operand_location++) = operand_bytes[2]; in PatchJumpWith32BitOperand()
[all …]