Lines Matching refs:jump_location
824 const ZoneVector<uint8_t>::iterator& jump_location, int delta) { in PatchIndirectJumpWith8BitOperand() argument
825 Bytecode jump_bytecode = Bytecodes::FromByte(*jump_location); in PatchIndirectJumpWith8BitOperand()
827 ZoneVector<uint8_t>::iterator operand_location = jump_location + 1; in PatchIndirectJumpWith8BitOperand()
842 *jump_location = Bytecodes::ToByte(jump_bytecode); in PatchIndirectJumpWith8BitOperand()
849 const ZoneVector<uint8_t>::iterator& jump_location, int delta) { in PatchIndirectJumpWith16BitOperand() argument
850 DCHECK(Bytecodes::IsJumpConstantWide(Bytecodes::FromByte(*jump_location))); in PatchIndirectJumpWith16BitOperand()
851 ZoneVector<uint8_t>::iterator operand_location = jump_location + 1; in PatchIndirectJumpWith16BitOperand()
865 const ZoneVector<uint8_t>::iterator& jump_location) { in PatchJump() argument
866 Bytecode jump_bytecode = Bytecodes::FromByte(*jump_location); in PatchJump()
867 int delta = static_cast<int>(jump_target - jump_location); in PatchJump()
871 PatchIndirectJumpWith8BitOperand(jump_location, delta); in PatchJump()
874 PatchIndirectJumpWith16BitOperand(jump_location, delta); in PatchJump()