Lines Matching refs:operand_location
273 size_t operand_location = jump_location + 1; in PatchJumpWith8BitOperand() local
274 DCHECK_EQ(bytecodes()->at(operand_location), k8BitJumpPlaceholder); in PatchJumpWith8BitOperand()
279 bytecodes()->at(operand_location) = static_cast<uint8_t>(delta); in PatchJumpWith8BitOperand()
290 bytecodes()->at(operand_location) = static_cast<uint8_t>(entry); in PatchJumpWith8BitOperand()
301 size_t operand_location = jump_location + 1; in PatchJumpWith16BitOperand() local
320 DCHECK(bytecodes()->at(operand_location) == k8BitJumpPlaceholder && in PatchJumpWith16BitOperand()
321 bytecodes()->at(operand_location + 1) == k8BitJumpPlaceholder); in PatchJumpWith16BitOperand()
322 bytecodes()->at(operand_location++) = operand_bytes[0]; in PatchJumpWith16BitOperand()
323 bytecodes()->at(operand_location) = operand_bytes[1]; in PatchJumpWith16BitOperand()
334 size_t operand_location = jump_location + 1; in PatchJumpWith32BitOperand() local
335 DCHECK(bytecodes()->at(operand_location) == k8BitJumpPlaceholder && in PatchJumpWith32BitOperand()
336 bytecodes()->at(operand_location + 1) == k8BitJumpPlaceholder && in PatchJumpWith32BitOperand()
337 bytecodes()->at(operand_location + 2) == k8BitJumpPlaceholder && in PatchJumpWith32BitOperand()
338 bytecodes()->at(operand_location + 3) == k8BitJumpPlaceholder); 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()
342 bytecodes()->at(operand_location) = operand_bytes[3]; in PatchJumpWith32BitOperand()